:root {
  --ink: #08090c;
  --ink-soft: #101217;
  --panel: #13161c;
  --paper: #f4f6f5;
  --muted: #a7adb8;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #26e7ff;
  --pink: #ff2bd6;
  --lime: #a8ff78;
  --max: 1240px;
  --header: 84px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--cyan); color: #001014; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .022;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1001;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
  padding: 0 clamp(22px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(8, 9, 12, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(38, 231, 255, .55);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(38, 231, 255, .14), rgba(255, 43, 214, .06));
  color: var(--cyan);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -.03em;
  box-shadow: inset 0 0 18px rgba(38, 231, 255, .08), 0 0 24px rgba(38, 231, 255, .08);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy b { font-size: 14px; letter-spacing: .03em; text-transform: uppercase; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 42px); }
.site-nav > a:not(.nav-cta) { color: #c9cdd4; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.site-nav > a:not(.nav-cta):hover { color: var(--cyan); }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(38, 231, 255, .38);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  background: rgba(38, 231, 255, .06);
}
.nav-cta:hover { background: var(--cyan); color: var(--ink); }
.menu-toggle { display: none; }

.section-pad { padding: clamp(90px, 12vw, 170px) clamp(22px, 5vw, 76px); }
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header) + clamp(70px, 8vw, 120px));
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(30px, 7vw, 110px);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid, .cta-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 78% 40%, rgba(255, 43, 214, .11), transparent 34%), radial-gradient(circle at 20% 8%, rgba(38, 231, 255, .12), transparent 30%), linear-gradient(to bottom, transparent 65%, var(--ink));
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(38, 231, 255, .13); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; right: -90px; top: 8%; animation: orbitSpin 24s linear infinite; }
.orbit-two { width: 420px; height: 420px; right: 60px; top: 18%; border-style: dashed; border-color: rgba(255, 43, 214, .16); animation: orbitSpin 18s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 10px currentColor; }
.hero h1, .section-intro h2, .watch-heading h2, .truth h2, .about h2, .roadmap h2, .faq h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(52px, 7.8vw, 116px);
  line-height: .92;
  letter-spacing: -.062em;
  font-weight: 900;
}
.hero h1 { max-width: 880px; }
.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan) 5%, #87f6ff 42%, var(--pink) 98%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(38, 231, 255, .13));
}
.hero-lede {
  max-width: 700px;
  margin: 34px 0 0;
  color: #c3c8d0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 38px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button-primary { color: #041013; background: var(--cyan); box-shadow: 0 12px 42px rgba(38, 231, 255, .15); }
.button-primary:hover { box-shadow: 0 16px 55px rgba(38, 231, 255, .28); }
.button-primary span { font-size: 18px; }
.button-ghost { border-color: var(--line); color: var(--paper); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.button-large { min-height: 66px; padding-inline: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.32); font-size: 14px; font-weight: 800; }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }

.micro-proof { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 46px; padding-top: 25px; border-top: 1px solid var(--line); color: #bdc2ca; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.micro-proof i { margin-right: 5px; color: #66707d; font-style: normal; font-size: 10px; }

.hero-visual { position: relative; justify-self: center; width: min(38vw, 520px); aspect-ratio: 1; transform-style: preserve-3d; }
.portrait-frame {
  position: absolute;
  inset: 9%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: #dbe0e4;
  box-shadow: 0 40px 100px rgba(0,0,0,.48), 0 0 0 18px rgba(255,255,255,.025), 0 0 80px rgba(38,231,255,.12);
}
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 50%, rgba(38,231,255,.22)); mix-blend-mode: color; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.08); }
.portrait-halo { position: absolute; inset: -4%; border: 1px dashed rgba(38,231,255,.35); border-radius: 50%; animation: orbitSpin 22s linear infinite; }
.portrait-halo::before, .portrait-halo::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.portrait-halo::before { top: 12%; left: 15%; }
.portrait-halo::after { right: 4%; bottom: 27%; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(15,17,23,.8); box-shadow: 0 20px 60px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.float-card-top { top: 10%; right: -7%; }
.float-card-bottom { bottom: 6%; left: -8%; display: block; min-width: 154px; }
.float-card small { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.float-card b { display: block; font-size: 13px; text-transform: uppercase; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff3564; box-shadow: 0 0 0 6px rgba(255,53,100,.12), 0 0 14px #ff3564; animation: pulse 1.8s ease infinite; }
@keyframes pulse { 50% { transform: scale(.72); opacity: .7; } }
.signal-bars { height: 38px; display: flex; gap: 4px; align-items: flex-end; margin-top: 8px; }
.signal-bars span { flex: 1; height: var(--h); border-radius: 2px 2px 0 0; background: linear-gradient(to top, var(--pink), var(--cyan)); }
.visual-caption { position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%); margin: 0; width: max-content; color: #8b929d; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-caption span { color: var(--cyan); margin: 0 7px; }
.scroll-cue { position: absolute; bottom: 26px; left: clamp(22px,5vw,76px); display: flex; align-items: center; gap: 14px; color: #767e89; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue i { width: 48px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

.signal-strip { overflow: hidden; padding: 21px 0; border-block: 1px solid var(--line); background: #0c0e13; transform: rotate(-1.3deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; animation: ticker 28s linear infinite; color: #e5e8eb; font-size: clamp(16px, 2vw, 25px); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ticker-track b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.method { max-width: var(--max); margin: 0 auto; }
.section-intro { display: grid; grid-template-columns: 1fr .72fr; column-gap: 90px; align-items: end; }
.section-intro .eyebrow { grid-column: 1 / -1; }
.section-intro h2, .watch-heading h2, .truth h2, .about h2, .roadmap h2, .faq h2, .final-cta h2 { font-size: clamp(42px, 6vw, 84px); }
.section-intro h2 em, .about h2 em { color: var(--cyan); font-style: normal; }
.section-intro > p:last-child { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 72px; }
.method-card { position: relative; min-height: 520px; padding: 36px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.method-card::after { content: ""; position: absolute; inset: auto -30% -45% 25%; height: 70%; border-radius: 50%; background: radial-gradient(circle, rgba(38,231,255,.11), transparent 64%); opacity: 0; transition: opacity .35s; }
.method-card:hover { transform: translateY(-8px); border-color: rgba(38,231,255,.38); background: linear-gradient(145deg, rgba(38,231,255,.07), rgba(255,255,255,.015)); }
.method-card:hover::after { opacity: 1; }
.card-number { position: absolute; right: 28px; top: 24px; color: #505660; font-weight: 900; font-size: 12px; }
.card-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 48px 0 68px; border: 1px solid rgba(38,231,255,.26); border-radius: 18px; background: rgba(38,231,255,.05); color: var(--cyan); }
.card-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.method-card h3 { max-width: 270px; margin: 0 0 17px; font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.method-card p { color: var(--muted); font-size: 14px; }
.method-card ul { display: grid; gap: 9px; margin: 24px 0 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.method-card li::before { content: "+"; margin-right: 8px; color: var(--pink); }

.watch-section { background: var(--paper); color: var(--ink); }
.watch-section > * { max-width: var(--max); margin-inline: auto; }
.watch-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.watch-heading .eyebrow { color: #087b89; }
.watch-heading .text-link { border-color: rgba(0,0,0,.25); }
.featured-video { display: grid; grid-template-columns: 1.45fr .55fr; margin-top: 70px; overflow: hidden; border-radius: 28px; background: var(--ink); color: var(--paper); }
.video-shell { aspect-ratio: 16/9; background: #000; }
.video-shell iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-copy { padding: clamp(30px, 4vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.video-label, .video-kicker { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.video-copy h3 { margin: 16px 0; font-size: clamp(28px, 3.4vw, 50px); line-height: .96; letter-spacing: -.05em; }
.video-copy p { color: #aeb4bd; font-size: 14px; }
.video-copy .button { align-self: flex-start; margin-top: 18px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.video-card { padding: 14px 14px 26px; border: 1px solid rgba(0,0,0,.12); border-radius: 20px; transition: transform .3s ease, background .3s ease; }
.video-card:hover { transform: translateY(-7px); background: white; }
.thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 13px; background: #111; }
.thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.video-card:hover img { transform: scale(1.05); filter: saturate(1.12); }
.play-button { position: absolute; left: 16px; bottom: 16px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--cyan); color: var(--ink); font-size: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.video-card .video-kicker { display: block; margin: 22px 8px 8px; color: #087b89; }
.video-card h3 { min-height: 60px; margin: 0 8px 18px; font-size: 21px; line-height: 1.1; letter-spacing: -.035em; }
.watch-link { margin: auto 8px 0; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.watch-link i { color: #087b89; font-style: normal; }

.truth { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.35fr .65fr; gap: 110px; align-items: end; }
.truth-statement > p { color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.outline-text { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.52); }
.truth-copy { color: #b2b7c0; font-size: 17px; }
.truth-copy p { margin: 0 0 22px; }
.hand-note { display: inline-block; margin-top: 24px; color: var(--cyan); font-family: "Comic Sans MS", cursive; font-size: 14px; transform: rotate(-2deg); }

.about { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 9vw, 140px); align-items: center; max-width: var(--max); margin: 0 auto; }
.about::before { content: ""; position: absolute; z-index: -1; width: 380px; height: 380px; left: -10%; background: rgba(255,43,214,.09); filter: blur(100px); }
.about-visual { position: relative; }
.about-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 180px 180px 24px 24px; border: 1px solid var(--line); background: #dce1e5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.about-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,9,12,.54), transparent 55%); }
.about-stamp { position: absolute; right: -25px; bottom: 35px; width: 106px; height: 106px; border-radius: 50%; display: grid; place-items: center; align-content: center; border: 1px solid rgba(38,231,255,.5); background: rgba(8,9,12,.88); box-shadow: 0 12px 35px rgba(0,0,0,.4); transform: rotate(8deg); }
.about-stamp span { color: var(--cyan); font-weight: 900; font-size: 27px; line-height: 1; }
.about-stamp small { color: #99a2ad; font-size: 6px; letter-spacing: .14em; }
.about-copy .about-lede { margin: 32px 0 18px; color: var(--paper); font-size: 20px; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.about-lede) { color: var(--muted); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 38px 0 30px; }
.stat-grid div { padding-top: 18px; border-top: 1px solid var(--line); }
.stat-grid strong { display: block; color: var(--cyan); font-size: clamp(30px, 3vw, 45px); line-height: 1; letter-spacing: -.05em; }
.stat-grid span { display: block; margin-top: 9px; color: #9299a4; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.roadmap { background: #0d0f14; }
.roadmap > * { max-width: var(--max); margin-inline: auto; }
.roadmap-heading { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; }
.roadmap-heading .eyebrow { align-self: start; }
.roadmap-list { margin-top: 78px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.roadmap-list li { display: grid; grid-template-columns: .42fr 1.58fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.roadmap-list > li > span { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.roadmap-list div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; }
.roadmap-list b { font-size: 23px; line-height: 1.1; letter-spacing: -.03em; }
.roadmap-list p { margin: 0; color: var(--muted); font-size: 14px; }

.faq { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; font-size: 18px; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--cyan); font-size: 24px; font-weight: 400; transition: transform .25s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: -4px 0 30px; color: var(--muted); font-size: 14px; }

.final-cta { position: relative; min-height: 850px; display: grid; place-items: center; overflow: hidden; border-top: 1px solid var(--line); }
.final-cta::before { content: ""; position: absolute; inset: 15% 22%; background: radial-gradient(ellipse, rgba(38,231,255,.12), rgba(255,43,214,.08), transparent 65%); filter: blur(35px); }
.cta-grid { mask-image: radial-gradient(circle at center, black, transparent 68%); transform: perspective(800px) rotateX(63deg) scale(1.35); transform-origin: center bottom; opacity: .62; }
.lead-funnel { position: relative; width: min(100%, var(--max)); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.lead-copy h2 { font-size: clamp(42px, 5.5vw, 78px); }
.lead-copy > p:not(.eyebrow) { max-width: 550px; margin: 28px 0; color: #b2b8c1; font-size: 18px; }
.lead-copy > small { display: block; margin-top: 28px; color: #777f8a; font-size: 10px; letter-spacing: .05em; }
.lead-steps { display: grid; gap: 12px; margin-top: 34px; }
.lead-steps span { display: flex; gap: 15px; align-items: center; color: #d5d9de; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.lead-steps i { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(38,231,255,.35); border-radius: 50%; color: var(--cyan); font-size: 9px; font-style: normal; }
.lead-form { position: relative; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(38,231,255,.24); border-radius: 28px; background: rgba(15,18,24,.92); box-shadow: 0 32px 90px rgba(0,0,0,.38); backdrop-filter: blur(20px); }
.lead-form::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: radial-gradient(circle at 95% 5%, rgba(255,43,214,.12), transparent 36%); }
.form-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.form-heading strong { font-size: 30px; line-height: 1; letter-spacing: -.04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.lead-form label > span { color: #c7ccd3; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; outline: 0; background: rgba(255,255,255,.045); color: var(--paper); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.lead-form input:not([type="checkbox"]), .lead-form select { height: 52px; padding: 0 15px; }
.lead-form textarea { min-height: 116px; padding: 14px 15px; resize: vertical; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #686f7a; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--cyan); background: rgba(38,231,255,.05); box-shadow: 0 0 0 3px rgba(38,231,255,.1); }
.lead-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.lead-form select option { background: #13161c; color: var(--paper); }
.lead-form .consent-row { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; margin: 4px 0 22px; cursor: pointer; }
.lead-form .consent-row input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--cyan); }
.lead-form .consent-row span { color: #8d949f; font-size: 10px; font-weight: 600; letter-spacing: .02em; line-height: 1.5; text-transform: none; }
.lead-form .button { width: 100%; border: 0; cursor: pointer; }
.lead-form > small { display: block; margin-top: 14px; color: #777f8a; font-size: 10px; text-align: center; }

.success-page { min-height: 100svh; background: radial-gradient(circle at 50% 10%, rgba(38,231,255,.12), transparent 35%), var(--ink); }
.success-shell { min-height: 100svh; display: grid; place-items: center; padding: 30px 20px; }
.success-card { width: min(100%, 680px); padding: clamp(32px, 7vw, 72px); border: 1px solid rgba(38,231,255,.22); border-radius: 30px; background: rgba(15,18,24,.92); box-shadow: 0 34px 100px rgba(0,0,0,.45); text-align: center; }
.success-card .brand { justify-content: center; margin-bottom: 48px; }
.success-check { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 28px; border: 1px solid rgba(168,255,120,.5); border-radius: 50%; background: rgba(168,255,120,.08); color: var(--lime); font-size: 34px; }
.success-card .eyebrow { justify-content: center; }
.success-card h1 { margin: 17px 0 22px; font-size: clamp(46px, 8vw, 76px); line-height: .98; letter-spacing: -.06em; }
.success-card > p:not(.eyebrow) { max-width: 510px; margin: 0 auto 30px; color: var(--muted); }
.success-card .button { margin: 0 auto; }
.success-card > small { display: block; margin-top: 18px; color: #777f8a; font-size: 10px; }

.site-footer { padding: 30px clamp(22px,5vw,76px); display: grid; grid-template-columns: 1fr 1fr auto 1fr; gap: 30px; align-items: center; border-top: 1px solid var(--line); color: #9199a4; font-size: 11px; }
.site-footer p { margin: 0; color: var(--paper); font-weight: 700; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--cyan); }
.site-footer > small { justify-self: end; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.method-card:nth-child(2), .video-card:nth-child(2) { transition-delay: .1s; }
.method-card:nth-child(3), .video-card:nth-child(3) { transition-delay: .2s; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr .72fr; gap: 35px; }
  .hero-visual { width: min(38vw, 440px); }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 0; }
  .card-icon { margin-bottom: 40px; }
  .featured-video { grid-template-columns: 1fr; }
  .video-copy { padding: 35px; }
  .truth { gap: 50px; }
  .about { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .faq { gap: 50px; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .site-footer p { display: none; }
  .site-footer > small { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --header: 72px; }
  .brand-copy { display: none; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 0; border-radius: 10px; background: rgba(255,255,255,.05); color: white; }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px; padding: 100px 30px; background: rgba(8,9,12,.97); transform: translateY(-105%); opacity: 0; visibility: hidden; transition: transform .4s ease, opacity .4s ease, visibility .4s; }
  .menu-open .site-header { height: 100svh; align-items: flex-start; padding-top: 14px; background: #08090c; border-color: transparent; backdrop-filter: none; }
  .menu-open .site-nav { position: absolute; height: 100%; }
  .menu-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a:not(.nav-cta) { font-size: 28px; }
  .nav-cta { margin-top: 15px; padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; align-items: start; padding-top: 130px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(82vw, 500px); margin: 35px auto 50px; }
  .scroll-cue { display: none; }
  .section-intro { grid-template-columns: 1fr; }
  .section-intro > p:last-child { margin-top: 28px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card h3 { min-height: 0; }
  .truth { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .roadmap-heading { grid-template-columns: 1fr; }
  .roadmap-list li { grid-template-columns: .35fr 1.65fr; }
  .faq { grid-template-columns: 1fr; }
  .lead-funnel { grid-template-columns: 1fr; }
  .lead-copy { max-width: 680px; }
}

@media (max-width: 560px) {
  .section-pad { padding-inline: 20px; }
  .site-header { padding-inline: 18px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .micro-proof { gap: 15px 22px; }
  .float-card-top { right: -2%; }
  .float-card-bottom { left: -2%; }
  .watch-heading { align-items: start; flex-direction: column; }
  .featured-video { border-radius: 18px; }
  .video-copy { padding: 28px 24px; }
  .about-stamp { right: -6px; }
  .stat-grid { gap: 8px; }
  .stat-grid strong { font-size: 31px; }
  .stat-grid span { letter-spacing: .05em; }
  .roadmap-list li { grid-template-columns: 1fr; gap: 13px; }
  .roadmap-list div { grid-template-columns: 1fr; gap: 13px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 25px 20px; border-radius: 20px; }
  .form-heading { align-items: start; flex-direction: column-reverse; }
  .lead-form .button { padding-inline: 18px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .site-footer > small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
