:root {
  color-scheme: dark;
  --ink: #050706;
  --ink-soft: #0b100d;
  --surface: rgba(10, 16, 13, 0.76);
  --surface-solid: #0d1411;
  --white: #f7fbf8;
  --muted: #a8b3ac;
  --line: rgba(231, 255, 241, 0.16);
  --green: #1cff8b;
  --green-deep: #009b58;
  --gold: #e9bf68;
  --gold-pale: #fff0bd;
  --danger: #ff6f6f;
  --header-height: 76px;
  --page-pad: 20px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.sheet-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.experience-stage,
.experience-stage canvas,
.experience-fallback,
.experience-aura,
.experience-grain,
.experience-vignette {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-stage {
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
  pointer-events: none;
}

.experience-stage canvas {
  display: block;
  z-index: 2;
  opacity: 0;
  transition: opacity 900ms var(--ease-out);
}

.webgl-ready .experience-stage canvas {
  opacity: 1;
}

.experience-fallback {
  z-index: 1;
  background-color: #06110c;
  background-image:
    radial-gradient(circle at 52% 40%, rgba(28, 255, 139, 0.21), transparent 26%),
    radial-gradient(circle at 48% 55%, rgba(233, 191, 104, 0.14), transparent 38%),
    linear-gradient(180deg, #030504, #07130d 58%, #030504);
}

.experience-aura {
  z-index: 3;
  opacity: 0.55;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 45%), rgba(75, 255, 166, 0.1), transparent 27%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.45));
  transition: opacity 500ms ease;
}

.experience-grain {
  z-index: 4;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.experience-vignette {
  z-index: 5;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.82);
}

.experience-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--page-pad) 0;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms var(--ease-out);
}

.experience-header.is-condensed {
  border-color: var(--line);
  background: rgba(5, 7, 6, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.experience-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  line-height: 1;
  font-weight: 830;
}

.experience-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(28, 255, 139, 0.9);
}

.desktop-navigation,
.header-action {
  display: none;
}

.menu-trigger {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(9, 15, 12, 0.74);
  color: var(--white);
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.menu-trigger span:nth-child(2) {
  width: 68%;
  margin-left: auto;
}

.mobile-navigation {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: calc(28px + env(safe-area-inset-top)) 24px calc(24px + env(safe-area-inset-bottom));
  background: rgba(3, 5, 4, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 300ms ease, visibility 300ms, transform 500ms var(--ease-out);
}

.mobile-navigation[hidden] {
  display: flex;
}

.mobile-navigation.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-navigation > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.mobile-navigation-close {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.mobile-navigation nav {
  display: grid;
  gap: 4px;
  margin: auto 0;
}

.mobile-navigation nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 740;
}

.scene-navigation {
  position: fixed;
  z-index: 40;
  right: 14px;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.scene-track {
  position: relative;
  width: 1px;
  height: 88px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scene-track i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(28, 255, 139, 0.9);
  transition: height 700ms var(--ease-out);
}

main {
  position: relative;
  z-index: 10;
}

.scene-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + env(safe-area-inset-top) + 38px) calc(var(--page-pad) + 20px) calc(76px + env(safe-area-inset-bottom)) var(--page-pad);
}

.scene-copy {
  width: min(100%, 560px);
  opacity: 0.34;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

.scene-section.is-active .scene-copy,
.scene-section:focus-within .scene-copy {
  opacity: 1;
  transform: translateY(0);
}

.scene-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 780;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 20px;
  font-weight: 810;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 620px;
  font-size: 54px;
}

h2 {
  font-size: 46px;
}

h1 em,
h2 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.scene-copy > p,
.package-intro > p {
  max-width: 490px;
  margin-bottom: 28px;
  color: #c3cdc7;
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy {
  align-self: flex-end;
  margin-bottom: 9vh;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.primary-action,
.package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--green);
  color: #02180e;
  font-size: 14px;
  font-weight: 820;
  box-shadow: 0 10px 30px rgba(0, 215, 112, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover,
.package-action:hover {
  background: #68ffb3;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 236, 126, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
}

.primary-action:active,
.package-action:active {
  transform: translateY(0) scale(0.985);
}

.text-action {
  min-height: 46px;
  padding: 14px 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 720;
}

.text-action span {
  display: inline-block;
  margin-left: 7px;
  color: var(--green);
}

.scene-signal {
  position: absolute;
  right: 30px;
  bottom: calc(30px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.scene-signal span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.scene-signal strong {
  font-size: 9px;
}

.scroll-cue {
  position: absolute;
  left: var(--page-pad);
  bottom: calc(20px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--green);
  animation: scrollLine 1800ms ease-in-out infinite;
}

.signal-list {
  display: grid;
  gap: 1px;
  max-width: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.signal-list span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 16px;
  background: rgba(5, 9, 7, 0.72);
  color: #dce4df;
  font-size: 13px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.signal-list b {
  color: var(--green);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.pillar-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 480px;
}

.pillar-orbit span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(7, 12, 9, 0.7);
  color: #d6ded9;
  font-size: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.method-sequence {
  display: grid;
  gap: 0;
  max-width: 520px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-sequence li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

.method-sequence b {
  color: var(--green);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.method-sequence span {
  font-size: 15px;
  font-weight: 680;
}

.package-scene {
  display: block;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 52px);
  background: linear-gradient(180deg, transparent, rgba(3, 5, 4, 0.7) 10%, rgba(3, 5, 4, 0.95) 28%, #030504 55%);
}

.package-intro {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.package-intro > p {
  margin-right: auto;
  margin-left: auto;
}

.package-grid {
  display: grid;
  gap: 12px;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 24px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 15, 12, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: transform 300ms var(--ease-out), border-color 300ms ease, background 300ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(28, 255, 139, 0.8);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 450ms var(--ease-out);
}

.package-card:hover,
.package-card:focus-within {
  border-color: rgba(103, 255, 180, 0.48);
  background: rgba(12, 22, 17, 0.92);
  transform: translateY(-5px);
}

.package-card:hover::before,
.package-card:focus-within::before {
  transform: scaleX(1);
}

.package-card-featured {
  border-color: rgba(28, 255, 139, 0.48);
  background: rgba(8, 28, 19, 0.9);
  box-shadow: 0 22px 70px rgba(0, 225, 116, 0.09);
}

.package-card-featured::before {
  transform: scaleX(1);
}

.package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.package-head span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.package-head small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 780;
}

.package-card h3 {
  margin-bottom: 9px;
  font-size: 30px;
  line-height: 1.05;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 48px;
  margin-bottom: 18px;
}

.package-price strong {
  font-size: 31px;
  line-height: 1;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.package-price span {
  color: var(--muted);
  font-size: 11px;
}

.package-card > p {
  min-height: 72px;
  margin-bottom: 18px;
  color: #b8c3bc;
  font-size: 13px;
  line-height: 1.55;
}

.package-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-top: 1px solid var(--line);
  color: #dce4df;
  font-size: 12px;
  line-height: 1.4;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(28, 255, 139, 0.8);
}

.package-action {
  width: 100%;
  margin-top: auto;
}

.package-trust {
  width: min(100%, 800px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.experience-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 1220px);
  margin: 60px auto 0;
  padding: 26px 0 calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: #7f8b84;
  font-size: 10px;
}

.experience-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.experience-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.offer-sheet {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms;
}

.offer-sheet[hidden] {
  display: flex;
}

.offer-sheet.is-open {
  opacity: 1;
  visibility: visible;
}

.offer-sheet-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.offer-sheet-panel {
  position: relative;
  width: 100%;
  max-height: 92svh;
  padding: 30px 20px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  border-top: 1px solid rgba(111, 255, 185, 0.34);
  border-radius: 8px 8px 0 0;
  background: #0b110e;
  transform: translateY(100%);
  transition: transform 500ms var(--ease-out);
}

.offer-sheet.is-open .offer-sheet-panel {
  transform: translateY(0);
}

.offer-sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 26px;
}

.offer-sheet-panel h2 {
  max-width: 520px;
  padding-right: 42px;
  font-size: 34px;
}

.offer-sheet-panel > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.offer-sheet form {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.offer-sheet label {
  display: grid;
  gap: 7px;
  color: #cdd6d0;
  font-size: 11px;
  font-weight: 720;
}

.offer-sheet label small {
  color: var(--muted);
  font-weight: 500;
}

.offer-sheet input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.offer-sheet input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 255, 139, 0.12);
}

.offer-sheet input[aria-invalid="true"] {
  border-color: var(--danger);
}

.offer-sheet button[type="submit"] {
  width: 100%;
}

.offer-sheet button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.offer-form-note,
.offer-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.offer-form-status.is-success {
  color: var(--green);
}

.offer-form-status.is-error {
  color: #ff9b9b;
}

.noscript-message {
  position: fixed;
  z-index: 300;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@media (min-width: 760px) {
  :root {
    --header-height: 88px;
    --page-pad: 42px;
  }

  .experience-header {
    padding-right: 42px;
    padding-left: 42px;
  }

  .desktop-navigation {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 30px;
    transform: translateX(-50%);
  }

  .desktop-navigation a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #b4bfb8;
    font-size: 11px;
    font-weight: 690;
  }

  .desktop-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
  }

  .desktop-navigation a:hover::after,
  .desktop-navigation a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 740;
    transition: border-color 180ms ease, background 180ms ease;
  }

  .header-action:hover {
    border-color: var(--green);
    background: rgba(28, 255, 139, 0.08);
  }

  .menu-trigger {
    display: none;
  }

  .scene-navigation {
    right: 28px;
  }

  .scene-section {
    padding-right: 8vw;
    padding-left: 8vw;
  }

  .scene-copy.align-right {
    margin-left: auto;
  }

  .hero-copy {
    align-self: center;
    margin-bottom: 0;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  h1 {
    font-size: 82px;
  }

  h2 {
    font-size: 66px;
  }

  .scene-signal {
    display: flex;
  }

  .scroll-cue {
    left: 42px;
  }

  .method-sequence li {
    grid-template-columns: 62px 1fr;
    min-height: 56px;
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-card-featured {
    transform: translateY(-14px);
  }

  .package-card-featured:hover,
  .package-card-featured:focus-within {
    transform: translateY(-20px);
  }

  .experience-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .offer-sheet {
    align-items: center;
    padding: 30px;
  }

  .offer-sheet-panel {
    width: min(100%, 560px);
    max-height: 88vh;
    padding: 38px;
    border: 1px solid rgba(111, 255, 185, 0.34);
    border-radius: 8px;
    transform: translateY(28px) scale(0.97);
  }

  .offer-sheet.is-open .offer-sheet-panel {
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 96px;
  }

  h2 {
    font-size: 76px;
  }

  .scene-copy > p,
  .package-intro > p {
    font-size: 18px;
  }

  .package-card {
    padding: 28px 26px 24px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 40px;
  }

  .scene-copy > p {
    font-size: 15px;
  }

  .mobile-navigation nav a {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .experience-grain {
    display: none;
  }
}

@media (forced-colors: active) {
  .experience-stage {
    display: none;
  }

  .scene-copy {
    opacity: 1;
    transform: none;
  }
}
