/* ===== Design tokens ===== */
:root {
  --violet: #451DA2;
  --violet-light: #8B66E7;
  --lavender: #C9BCF2;
  --amber: #F2591F;
  --bg-1: #0C0817;
  --bg-2: #120A28;
  --white: #FFFFFF;
  --body: #EDEAF6;
  --muted: rgba(237, 234, 246, 0.72);
  --faint: rgba(237, 234, 246, 0.55);
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--body);
  font-family: var(--font-b);
  overflow-x: clip;
}

a { color: var(--violet-light); text-decoration: none; }
a:hover { color: var(--amber); }
::selection { background: var(--violet); color: var(--white); }

img { max-width: 100%; }

.amber { color: var(--amber); }

/* anchor targets sit under the fixed nav */
section[id], #request-access { scroll-margin-top: 64px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== shared bits ===== */
.wrap-1192 { max-width: 1192px; margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--violet-light);
  text-transform: uppercase;
  text-align: center;
}

.h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
  text-align: center;
  max-width: 900px;
}
.h2.nowrap { white-space: nowrap; font-size: clamp(19px, 5vw, 52px); }

.lead-p {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
  color: var(--muted);
  text-align: center;
  max-width: 680px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border: none;
}

/* ===== divider ===== */
.divider {
  position: relative;
  height: 1px;
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(139, 102, 231, 0) 0%, rgba(139, 102, 231, 0.35) 18%, rgba(139, 102, 231, 0.35) 82%, rgba(139, 102, 231, 0) 100%);
}
.divider .diamond {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 7px; height: 7px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  box-shadow: 0 0 14px rgba(139, 102, 231, 0.8);
}
.divider .halo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 24px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(69, 29, 162, 0.35) 0%, rgba(69, 29, 162, 0) 70%);
  pointer-events: none;
}

/* ===== section backgrounds ===== */
.alt-bg {
  background: radial-gradient(ellipse 70% 45% at 50% 25%, rgba(69, 29, 162, 0.14) 0%, rgba(69, 29, 162, 0) 70%), linear-gradient(180deg, #0C0817 0%, #1A0F38 45%, #0C0817 100%);
}
.grid-bg { position: relative; isolation: isolate; overflow: clip; }
.grid-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(139, 102, 231, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 102, 231, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 74%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 74%);
  z-index: -1;
  pointer-events: none;
}
.ribbon {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(72px);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(12, 8, 23, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.35s ease;
}
.nav::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(139, 102, 231, 0) 0%, rgba(139, 102, 231, 0.45) 20%, rgba(139, 102, 231, 0.45) 80%, rgba(139, 102, 231, 0) 100%);
}
.nav.is-condensed { padding: 10px 32px; }
.nav-logo { display: flex; align-items: center; }
.btn-nav {
  color: var(--white);
  background: var(--violet);
  padding: 11px 22px;
  font-size: 13px;
}
.btn-nav:hover { background: var(--amber); color: var(--bg-1); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 96px 24px 90px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 65% 55% at 50% 46%, rgba(12, 8, 23, 0.62) 0%, rgba(12, 8, 23, 0.28) 55%, rgba(12, 8, 23, 0.55) 100%);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 1;
  background: linear-gradient(180deg, rgba(12, 8, 23, 0) 0%, #0C0817 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 980px; gap: 28px;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(69, 29, 162, 0.22);
  border: 1px solid rgba(139, 102, 231, 0.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--lavender);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  animation: badgeDot 2.4s ease-in-out infinite;
}
@keyframes badgeDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 89, 31, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(242, 89, 31, 0); }
}

.hero-h1 {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(31px, 7vw, 92px); line-height: 1.06; letter-spacing: -0.03em;
  margin: 0; color: var(--white);
}
.hero-lead {
  font-weight: 600; font-size: clamp(18px, 2.2vw, 23px); line-height: 1.55;
  margin: 0; max-width: 760px; color: var(--body);
}
.hero-para {
  font-weight: 400; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.65;
  margin: 0; max-width: 680px; color: var(--muted);
}

.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.btn-primary {
  color: var(--white); background: var(--violet);
  padding: 17px 34px;
  box-shadow: 0 0 32px rgba(69, 29, 162, 0.55);
}
.btn-primary:hover { background: var(--amber); color: var(--bg-1); transform: translateY(-2px); box-shadow: 0 0 36px rgba(242, 89, 31, 0.35); }
.btn-secondary {
  font-weight: 500; color: var(--lavender);
  padding: 17px 26px;
  border: 1px solid rgba(139, 102, 231, 0.35);
}
.btn-secondary:hover { border-color: var(--violet-light); color: var(--white); }
.rot90 { display: inline-block; transform: rotate(90deg); }

.scarcity {
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 18px 14px; margin-top: 18px; padding: 12px 22px; border-radius: 999px; max-width: 100%;
  background: rgba(18, 10, 40, 0.5); border: 1px solid rgba(139, 102, 231, 0.25);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.scarcity-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: rgba(237, 234, 246, 0.65); }
.scarcity-dots { display: inline-flex; gap: 5px; }
.scarcity-count { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--amber); }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; border: 1px solid transparent; }
.dot-filled { background: var(--amber); border-color: var(--amber); }
.dot-empty { background: transparent; border-color: rgba(139, 102, 231, 0.45); }
.dot-pulse { animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.scroll-indicator {
  position: relative; z-index: 2; margin-top: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-lines { display: flex; align-items: center; gap: 16px; }
.scroll-line { display: inline-block; height: 1px; width: 90px; }
.scroll-line-l { background: linear-gradient(90deg, rgba(139, 102, 231, 0) 0%, rgba(139, 102, 231, 0.45) 100%); }
.scroll-line-r { background: linear-gradient(90deg, rgba(139, 102, 231, 0.45) 0%, rgba(139, 102, 231, 0) 100%); }
.scroll-text { font-size: 11px; font-weight: 600; letter-spacing: 0.32em; color: var(--lavender); }
.mouse {
  position: relative; width: 20px; height: 30px; border: 1px solid rgba(139, 102, 231, 0.45);
  border-radius: 12px; display: flex; justify-content: center;
}
.mouse-dot {
  position: absolute; top: 5px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 8px rgba(242, 89, 31, 0.7);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

@media (max-width: 768px) {
  .badge { flex-direction: column; gap: 4px; border-radius: 18px; padding: 10px 20px; }
  .badge-sep { display: none; }
  .badge-sub { color: rgba(201, 188, 242, 0.75); }
  .nav { padding: 12px 16px; }
  .nav.is-condensed { padding: 8px 16px; }
  .btn-nav { font-size: 11px; padding: 8px 13px; }
}

/* ===== MODULE JOURNEY ===== */
.journey { position: relative; }
.journey-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; padding: 70px 24px 0; box-sizing: border-box; position: relative;
}
.journey-ribbon {
  left: -15%; right: -15%; top: 34%; height: 240px; transform: rotate(-7deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.17) 30%, rgba(237, 234, 246, 0.09) 50%, rgba(69, 29, 162, 0.17) 70%, rgba(69, 29, 162, 0) 100%);
}
.journey-frame-wrap { perspective: 1400px; }
.journey-frame {
  border-radius: 18px; border: 1px solid rgba(139, 102, 231, 0.35);
  background: rgba(18, 10, 40, 0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 80px rgba(69, 29, 162, 0.45), 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: rotateX(7deg) scale(0.96);
  transition: transform 0.1s linear;
}
.journey-chrome {
  display: flex; align-items: center; gap: 8px; padding: 12px 18px;
  border-bottom: 1px solid rgba(139, 102, 231, 0.2);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(139, 102, 231, 0.35); }
.chrome-dot:nth-child(2) { background: rgba(139, 102, 231, 0.25); }
.chrome-dot:nth-child(3) { background: rgba(139, 102, 231, 0.15); }
.chrome-address {
  margin: 0 auto; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: rgba(201, 188, 242, 0.55);
  background: rgba(12, 8, 23, 0.5); padding: 4px 16px; border-radius: 6px;
}
.journey-shots {
  position: relative; height: min(69vh, 830px); aspect-ratio: 3072 / 2887; max-width: 92vw;
}
.journey-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.journey-shot-2 { opacity: 0; transition: opacity 0.15s linear; }

.journey-indicator {
  display: inline-flex; align-items: center; gap: 16px; padding: 13px 28px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 29, 162, 0.5), rgba(69, 29, 162, 0.3));
  border: 1px solid rgba(139, 102, 231, 0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(69, 29, 162, 0.5), inset 0 1px 0 rgba(139, 102, 231, 0.35);
}
.journey-dots { display: inline-flex; gap: 7px; align-items: center; }
.journey-dot { background: rgba(139, 102, 231, 0.35); box-shadow: none; transition: background 0.3s ease, box-shadow 0.3s ease; }
.journey-dot.is-active { background: var(--amber); box-shadow: 0 0 10px rgba(242, 89, 31, 0.8); }
.journey-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; color: var(--white);
  font-variant-numeric: tabular-nums; text-shadow: 0 0 18px rgba(139, 102, 231, 0.6);
}

@media (min-width: 769px) {
  .journey { height: 260vh; }
  .journey-inner { position: sticky; top: 0; height: 100vh; overflow: hidden; isolation: isolate; }
}
@media (max-width: 768px) {
  .journey-inner { padding: 90px 16px; }
  .journey-frame { border-radius: 14px; transform: none; box-shadow: 0 0 50px rgba(69, 29, 162, 0.4); }
  .journey-frame-wrap { perspective: none; width: 100%; max-width: 560px; }
  .journey-shots { height: auto; max-width: none; }
  .journey-shot-2 { transition: opacity 0.9s ease; }
  .chrome-dot { width: 8px; height: 8px; }
  .journey-indicator { gap: 12px; padding: 11px 22px; }
  .journey-label { font-size: 11px; letter-spacing: 0.14em; }
}

/* ===== PROBLEM HOOK ===== */
.hook {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 170px 24px 150px;
}
.hook-h2 {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 58px); line-height: 1.14; letter-spacing: -0.02em;
  margin: 0; color: var(--white); max-width: 800px;
}
.hook-rows { display: flex; flex-direction: column; gap: 34px; margin-top: 70px; max-width: 1000px; }
.hook-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  column-gap: 14px; row-gap: 8px;
  font-size: clamp(16px, 1.9vw, 21px); font-weight: 500; line-height: 1.5;
}
.hook-lead {
  color: var(--body); opacity: 0; transition: opacity 0.5s ease, filter 0.5s ease;
}
.hook-row.is-lead .hook-lead { opacity: 1; }
.hook-row.is-undercut .hook-lead { opacity: 0.45; filter: saturate(0.4); }
.hook-arrow { display: inline-flex; align-items: center; opacity: 0; transition: opacity 0.45s ease; }
.hook-row.is-undercut .hook-arrow { opacity: 1; }
.hook-arrow-line {
  display: inline-block; height: 2px; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, rgba(139, 102, 231, 0.25), var(--amber));
  transition: width 0.4s ease-out;
}
.hook-row.is-undercut .hook-arrow-line { width: 36px; }
.hook-arrow-head { color: var(--amber); font-size: 0.9em; margin-left: 2px; }
.hook-tail {
  color: rgba(237, 234, 246, 0.78); opacity: 0; transform: translateX(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hook-row.is-undercut .hook-tail { opacity: 1; transform: translateX(0); }

.hook-payoff {
  font-family: var(--font-h); font-weight: 600;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.35; letter-spacing: -0.01em;
  margin: 84px 0 0; color: var(--white);
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hook-payoff.is-visible { opacity: 1; transform: translateY(0); }

/* ===== BEFORE / AFTER ===== */
.ba { position: relative; padding: 150px 24px; box-sizing: border-box; isolation: isolate; overflow: clip; }
.ba-ribbon { left: -10%; right: -10%; top: 8%; height: 220px; transform: rotate(6deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.13) 35%, rgba(237, 234, 246, 0.06) 55%, rgba(69, 29, 162, 0.13) 75%, rgba(69, 29, 162, 0) 100%);
}
.ba-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.ba-eyebrow { max-width: 720px; line-height: 1.7; }

.ba-cols { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 18px; margin-top: 80px; align-items: start; }
.ba-col-head { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.ba-col-title { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; color: rgba(237, 234, 246, 0.55); text-transform: uppercase; }
.ba-col-title-viz { color: var(--lavender); }
.ba-col-sub { font-size: 13px; font-weight: 500; font-style: italic; color: rgba(237, 234, 246, 0.42); }
.ba-col-sub-viz { color: rgba(201, 188, 242, 0.6); }
.ba-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 420px; margin-top: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 8px;
  background: rgba(148, 143, 166, 0.08); border: 1px solid rgba(148, 143, 166, 0.18);
  color: rgba(200, 196, 214, 0.6); font-size: 12px; font-weight: 500;
}
.chip huge-icon { color: rgba(200, 196, 214, 0.7); }
.chip:nth-child(1) { transform: rotate(-2.5deg); }
.chip:nth-child(2) { transform: rotate(2deg) translateY(2px); }
.chip:nth-child(3) { transform: rotate(-1.5deg); }
.chip:nth-child(4) { transform: rotate(3deg); }
.chip:nth-child(5) { transform: rotate(-3deg) translateY(1px); }
.chip:nth-child(6) { transform: rotate(1.5deg); }
.chip:nth-child(7) { transform: rotate(-2deg) translateY(2px); }
.chip:nth-child(8) { transform: rotate(2.5deg); }
.ba-viz-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 34px; border-radius: 12px; margin-top: 6px;
  background: rgba(69, 29, 162, 0.3); border: 1px solid rgba(139, 102, 231, 0.55);
  box-shadow: 0 0 34px rgba(69, 29, 162, 0.6);
}

.ba-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 54px; }
.ba-row { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 14px; align-items: stretch; }
.ba-pain, .ba-answer {
  display: flex; gap: 14px; align-items: center; padding: 22px 24px; border-radius: 14px;
  font-size: 15px; font-weight: 400; line-height: 1.6; text-align: left;
}
.ba-pain {
  background: rgba(148, 143, 166, 0.05); border: 1px solid rgba(148, 143, 166, 0.12);
  color: rgba(216, 212, 230, 0.92);
  opacity: 0; transition: opacity 0.5s ease, filter 0.5s ease;
}
.ba-row.is-lead .ba-pain { opacity: 1; }
.ba-row.is-answer .ba-pain { opacity: 0.72; filter: saturate(0.5); }
.ba-answer {
  background: rgba(69, 29, 162, 0.16); border: 1px solid rgba(139, 102, 231, 0.32);
  box-shadow: inset 0 1px 0 rgba(139, 102, 231, 0.18); color: var(--body);
  opacity: 0; transform: translateX(26px);
  transition: opacity 0.55s ease 0.05s, transform 0.55s ease 0.05s;
}
.ba-row.is-answer .ba-answer { opacity: 1; transform: translateX(0); }
.mark {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; font-size: 11px; margin-top: 1px;
}
.mark-x { border: 1px solid rgba(148, 143, 166, 0.35); color: rgba(200, 196, 214, 0.65); }
.mark-check { background: rgba(242, 89, 31, 0.16); border: 1px solid rgba(242, 89, 31, 0.5); color: var(--amber); }
.ba-connector { display: flex; align-items: center; justify-content: center; }
.connector-line {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(148, 143, 166, 0.35), var(--violet-light));
  transform: scaleX(0); transform-origin: left center; opacity: 0;
  transition: transform 0.5s ease 0.15s, opacity 0.4s ease 0.15s;
}
.ba-row.is-answer .connector-line { transform: scaleX(1); opacity: 1; }

@media (max-width: 768px) {
  .ba-cols, .ba-row { grid-template-columns: 1fr; }
  .ba-cols > div:nth-child(2) { display: none; }
  .ba-rows { gap: 40px; }
  .ba-connector { justify-content: flex-start; padding-left: 32px; height: 26px; }
  .connector-line { width: 2px; height: 26px; background: linear-gradient(180deg, rgba(148, 143, 166, 0.35), var(--violet-light)); transform: scaleY(0); transform-origin: top center; }
  .ba-row.is-answer .connector-line { transform: scaleY(1); }
}

/* ===== THE METHOD ===== */
.method { position: relative; padding: 150px 24px; }
.method-track { position: relative; max-width: 720px; margin: 80px auto 0; display: flex; flex-direction: column; gap: 64px; }
.method-line { position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: rgba(139, 102, 231, 0.16); border-radius: 2px; }
.method-fill {
  position: absolute; left: 27px; top: 28px; width: 2px; height: 0; max-height: calc(100% - 56px);
  background: linear-gradient(180deg, var(--violet), var(--violet-light)); border-radius: 2px;
  box-shadow: 0 0 12px rgba(139, 102, 231, 0.6); transition: height 0.25s linear;
}
.method-step { position: relative; display: grid; grid-template-columns: 56px 1fr; column-gap: 26px; align-items: start; }
.method-num {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%;
  background: #110A26; border: 1px solid rgba(139, 102, 231, 0.25);
  font-family: var(--font-h); font-weight: 600; font-size: 17px; font-variant-numeric: tabular-nums;
  color: rgba(201, 188, 242, 0.55); z-index: 1;
  transition: color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}
.method-body { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; opacity: 0.25; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.method-step.is-lit .method-num {
  color: var(--amber); background: #241153; border-color: rgba(139, 102, 231, 0.7);
  box-shadow: 0 0 24px rgba(69, 29, 162, 0.7), 0 0 10px rgba(242, 89, 31, 0.25);
}
.method-step.is-lit .method-body { opacity: 1; transform: translateY(0); }
.method-body h3 { font-family: var(--font-h); font-weight: 600; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.01em; margin: 0; color: var(--white); }
.method-body p { font-size: clamp(14px, 1.7vw, 16px); font-weight: 400; line-height: 1.65; margin: 0; color: var(--muted); max-width: 560px; }

/* ===== WHY IT MATTERS ===== */
.wim { position: relative; padding: 150px 24px; box-sizing: border-box; isolation: isolate; overflow: clip; }
.wim-ribbon { left: -10%; right: -10%; top: 42%; height: 230px; transform: rotate(-5deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.14) 32%, rgba(237, 234, 246, 0.07) 52%, rgba(69, 29, 162, 0.14) 72%, rgba(69, 29, 162, 0) 100%);
}
.wim-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 70px; }
.wim-card {
  display: flex; flex-direction: column; gap: 16px; padding: 34px 30px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(69, 29, 162, 0.13) 0%, rgba(18, 10, 40, 0.6) 100%);
  border: 1px solid rgba(139, 102, 231, 0.22);
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.7s ease, border-color 0.7s ease, box-shadow 0.7s ease;
}
.wim-card:nth-child(1) { transition-delay: 0s; }
.wim-card:nth-child(2) { transition-delay: 0.16s; }
.wim-card:nth-child(3) { transition-delay: 0.32s; }
.wim.is-visible .wim-card { opacity: 1; transform: translateY(0); }
.wim-card.is-active { transform: translateY(-7px); border-color: rgba(139, 102, 231, 0.55); box-shadow: 0 16px 44px rgba(12, 8, 23, 0.55), 0 0 34px rgba(69, 29, 162, 0.4); }
.wim-chip {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px;
  background: conic-gradient(from 220deg, var(--violet), var(--violet-light), var(--violet));
  box-shadow: 0 0 22px rgba(69, 29, 162, 0.5); color: var(--white);
}
.wim-card h3 { font-family: var(--font-h); font-weight: 600; font-size: clamp(18px, 2vw, 22px); line-height: 1.35; letter-spacing: -0.01em; margin: 0; color: var(--white); }
.wim-card p { font-size: 15px; font-weight: 400; line-height: 1.65; margin: 0; color: var(--muted); }

@media (max-width: 768px) { .wim-cards { grid-template-columns: 1fr; } }

/* ===== IDENTITY SHIFT ===== */
.is { position: relative; display: flex; flex-direction: column; align-items: center; padding: 150px 24px; isolation: isolate; overflow: clip; }
.is-ribbon { left: -15%; right: -15%; top: 30%; height: 240px; transform: rotate(7deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.15) 30%, rgba(237, 234, 246, 0.07) 50%, rgba(69, 29, 162, 0.15) 70%, rgba(69, 29, 162, 0) 100%);
}
.is-list { display: flex; flex-direction: column; gap: 26px; margin-top: 64px; max-width: 640px; width: 100%; }
.is-item {
  display: flex; align-items: center; gap: 18px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  font-size: clamp(16px, 2vw, 20px); font-weight: 500; line-height: 1.55; color: var(--body); text-align: left;
}
.is-item.is-visible { opacity: 1; transform: translateY(0); }
.is-check {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(242, 89, 31, 0.16); border: 1px solid rgba(242, 89, 31, 0.55);
  font-size: 14px; color: var(--amber);
  transform: scale(0.3); transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-item.is-visible .is-check { transform: scale(1); }
.is-item .dim { color: rgba(237, 234, 246, 0.5); }
.is-payoff {
  font-family: var(--font-h); font-weight: 600; font-size: clamp(20px, 2.8vw, 32px); line-height: 1.4; letter-spacing: -0.01em;
  margin: 76px 0 0; color: var(--white); text-align: center; max-width: 820px;
  opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.is-payoff.is-visible { opacity: 1; transform: translateY(0); }

/* ===== FOUNDER STORY ===== */
.founder { position: relative; padding: 150px 24px; box-sizing: border-box; }
.founder::before { -webkit-mask-image: radial-gradient(ellipse 34% 46% at 34% 30%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 74%); mask-image: radial-gradient(ellipse 34% 46% at 34% 30%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 74%); }
.founder-h2 {
  font-family: var(--font-h); font-weight: 700; font-size: clamp(26px, 4vw, 48px); line-height: 1.16; letter-spacing: -0.02em;
  margin: 0 0 70px; color: var(--white); text-align: center;
}
.founder-grid { max-width: 1032px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.founder-portrait-col { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }
.founder-portrait {
  position: relative; width: 100%; max-width: 300px; aspect-ratio: 3 / 4; border-radius: 16px;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, rgba(139, 102, 231, 0.38) 0%, rgba(69, 29, 162, 0.22) 55%, rgba(30, 18, 64, 0.9) 100%), linear-gradient(180deg, #241553 0%, #170F33 100%);
  border: 1px solid rgba(139, 102, 231, 0.3);
  box-shadow: 0 0 44px rgba(69, 29, 162, 0.35);
  overflow: hidden;
}
.founder-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-family: var(--font-h); font-weight: 600; font-size: 19px; color: var(--white); }
.founder-title { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: var(--violet-light); text-transform: uppercase; }
.founder-story { display: flex; flex-direction: column; gap: 26px; }
.founder-story p { font-size: 17px; font-weight: 400; line-height: 1.75; margin: 0; color: rgba(237, 234, 246, 0.85); }
.founder-standalone { font-family: var(--font-h); font-weight: 600; font-size: 21px; margin: 6px 0 !important; color: var(--white); }
.founder-amber { color: var(--amber); font-weight: 500; }
.founder-link { color: var(--violet-light); text-decoration: underline; text-underline-offset: 3px; }
.founder-link:hover { color: var(--amber); }

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait-col { position: static; }
}

/* ===== REQUEST ACCESS ===== */
.ra { position: relative; padding: 150px 24px; box-sizing: border-box; isolation: isolate; overflow: clip; }
.ra-ribbon-1 { left: -15%; right: -15%; top: 16%; height: 250px; transform: rotate(-6deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.15) 30%, rgba(237, 234, 246, 0.08) 50%, rgba(69, 29, 162, 0.15) 70%, rgba(69, 29, 162, 0) 100%);
}
.ra-ribbon-2 { left: -15%; right: -15%; bottom: 6%; height: 180px; transform: rotate(4deg);
  background: linear-gradient(90deg, rgba(69, 29, 162, 0) 0%, rgba(69, 29, 162, 0.1) 35%, rgba(237, 234, 246, 0.05) 55%, rgba(69, 29, 162, 0.1) 75%, rgba(69, 29, 162, 0) 100%);
}
.ra-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.ra-pitch { display: flex; flex-direction: column; gap: 24px; }
.ra-pitch .eyebrow, .ra-pitch .h2, .ra-pitch .lead-p { text-align: left; margin: 0; max-width: none; }
.ra-benefits { display: flex; flex-direction: column; gap: 20px; margin-top: 12px; }
.ra-benefit { display: flex; gap: 16px; align-items: flex-start; }
.ra-benefit-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(69, 29, 162, 0.3); border: 1px solid rgba(139, 102, 231, 0.35); color: var(--lavender);
}
.ra-benefit-title { font-size: 15px; font-weight: 600; color: var(--white); }
.ra-benefit-desc { font-size: 14px; font-weight: 400; line-height: 1.6; color: rgba(237, 234, 246, 0.65); }

.ra-panel {
  background: #140C2C; border: 1px solid rgba(139, 102, 231, 0.3); border-radius: 20px; padding: 34px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.ra-form-wrap { display: flex; flex-direction: column; gap: 18px; }
.ra-head { display: flex; flex-direction: column; gap: 6px; }
.ra-title { font-family: var(--font-h); font-weight: 600; font-size: 22px; color: var(--white); }
.ra-subtitle { font-size: 13px; font-weight: 400; font-style: italic; color: rgba(237, 234, 246, 0.6); }

.ra-toggle { display: flex; background: #0F0922; border: 1px solid rgba(139, 102, 231, 0.25); border-radius: 10px; padding: 4px; }
.ra-toggle-btn {
  flex: 1; padding: 10px 8px; border: none; border-radius: 7px;
  font-family: var(--font-b); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
  background: transparent; color: rgba(201, 188, 242, 0.7);
  transition: background 0.25s ease, color 0.25s ease;
}
.ra-toggle-btn.is-active { background: var(--violet); color: var(--white); }

.ra-capacity { display: flex; flex-direction: column; gap: 8px; }
.ra-capacity-row { display: flex; justify-content: space-between; align-items: baseline; }
.ra-capacity-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: rgba(201, 188, 242, 0.7); }
.ra-capacity-count { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--amber); }
.ra-progress { height: 6px; border-radius: 3px; background: rgba(139, 102, 231, 0.16); overflow: hidden; }
.ra-progress-fill { width: 66.6%; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--violet), var(--amber)); }

.ra-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ra-field { position: relative; display: flex; flex-direction: column; gap: 6px; }
.ra-field-full { grid-column: 1 / -1; }
.ra-label { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: rgba(201, 188, 242, 0.8); }
.ra-field input, .ra-field select {
  background: #0F0922; border: 1px solid rgba(139, 102, 231, 0.28); border-radius: 10px;
  padding: 13px 40px 13px 14px; color: var(--body); font-family: var(--font-b); font-size: 15px;
  width: 100%; box-sizing: border-box; transition: border-color 0.25s ease;
}
.ra-field select { appearance: none; -webkit-appearance: none; cursor: pointer; color: rgba(201, 188, 242, 0.45); }
.ra-field.is-valid select { color: var(--body); }
.ra-field input:focus, .ra-field select:focus { border-color: var(--violet-light); outline: none; }
.ra-check {
  position: absolute; right: 13px; bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(242, 89, 31, 0.16); border: 1px solid rgba(242, 89, 31, 0.55); font-size: 10px; color: var(--amber);
  opacity: 0; transform: scale(0.4); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.ra-field.is-valid .ra-check { opacity: 1; transform: scale(1); }
.ra-chevron {
  position: absolute; right: 16px; bottom: 21px; width: 6px; height: 6px;
  border-right: 1.5px solid rgba(201, 188, 242, 0.6); border-bottom: 1.5px solid rgba(201, 188, 242, 0.6);
  transform: rotate(45deg); pointer-events: none; transition: right 0.3s ease;
}
.ra-field.is-valid .ra-chevron { right: 42px; }

.ra-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-b); font-weight: 600; font-size: 14px; letter-spacing: 0.08em;
  padding: 16px 28px; border: none; border-radius: 10px; margin-top: 22px; width: 100%; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
.ra-submit:focus-visible { outline: 2px solid var(--violet-light); outline-offset: 2px; }
.ra-submit-beta { color: var(--white); background: var(--violet); box-shadow: 0 0 28px rgba(69, 29, 162, 0.5); }
.ra-submit-beta:hover { background: var(--amber); color: var(--bg-1); transform: translateY(-1px); }
.ra-submit-notify { color: var(--bg-1); background: var(--amber); box-shadow: 0 0 28px rgba(242, 89, 31, 0.35); }
.ra-submit-notify:hover { filter: brightness(1.08); transform: translateY(-1px); }
.ra-submit[disabled] { opacity: 0.6; cursor: default; transform: none; filter: none; }
.ra-footer { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12px; color: rgba(237, 234, 246, 0.55); }
.ra-footer huge-icon { color: rgba(201, 188, 242, 0.6); }

.ra-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ra-error {
  margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 13px; text-align: center;
  color: #ffb4ad; background: rgba(255, 90, 79, 0.1); border: 1px solid rgba(255, 90, 79, 0.28);
}

/* toggle between beta / notify presentation */
.ra-panel[data-mode="beta"] .ra-submit-notify,
.ra-panel[data-mode="beta"] .ra-footer-notify { display: none; }
.ra-panel[data-mode="notify"] .ra-submit-beta,
.ra-panel[data-mode="notify"] .ra-footer-beta,
.ra-panel[data-mode="notify"] .ra-capacity,
.ra-panel[data-mode="notify"] .ra-beta-only { display: none; }

.ra-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 40px 10px; }
.ra-success[data-shown] { display: flex; }
.ra-success-check {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(242, 89, 31, 0.16); border: 1px solid rgba(242, 89, 31, 0.55); font-size: 24px; color: var(--amber);
}
.ra-success-title { font-family: var(--font-h); font-weight: 600; font-size: 22px; color: var(--white); }
.ra-success-desc { font-size: 15px; line-height: 1.6; color: rgba(237, 234, 246, 0.7); }

@media (max-width: 768px) { .ra-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FOOTER ===== */
.footer {
  position: relative; padding: 64px 24px 56px;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer-divider { width: min(880px, 92vw); position: absolute; left: 50%; top: 0; transform: translateX(-50%); margin: 0; }
.footer-divider .diamond { top: 0; }
.footer-text { font-size: 13px; font-weight: 400; line-height: 1.6; color: rgba(237, 234, 246, 0.55); max-width: 640px; }
