*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ============================================================
   Local Fonts
   ============================================================ */

@font-face {
  font-family: 'Syne';
  src: url('/assets/fonts/syne-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('/assets/fonts/syne-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('/assets/fonts/syne-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('/assets/fonts/syne-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin-300-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   Root
   ================================================= */

:root {
  --navy:   #142C4E;
  --navy2:  #0e2040;
  --teal:   #2DD4BF;
  --teal2:  #1ab8a4;
  --tealText: #0B766C;
  --gold:   #FBBF24;
  --gold2:  #e0a910;
  --light:  #C8D8EC;
  --bg:      #EEF3F9;
  --white:  #ffffff;
  --text:   #142C4E;
  --muted:  #496a88;
}

html { scroll-behavior: smooth; }


:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}


/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.skip-link:focus {
  top: 16px;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(238,243,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,44,78,0.08);
}
.nav-logo { height: 28px; width: auto; flex-shrink: 0; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--navy); text-decoration: none; background: var(--gold);
  padding: 8px 18px; border-radius: 4px; transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(20,44,78,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 57px; left: 0; right: 0;
  background: rgba(238,243,249,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,44,78,0.1);
  z-index: 99;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.nav-drawer.open {
  max-height: 300px;
  padding: 16px 0 20px;
}
.nav-drawer a {
  display: block;
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 12px 28px;
  transition: color 0.15s, background 0.15s;
}
.nav-drawer a:hover { color: var(--navy); background: rgba(20,44,78,0.04); }
.nav-drawer .nav-cta {
  display: block;
  margin: 12px 24px 0;
  text-align: center;
  padding: 12px 28px;
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
}

/* ── FAQ ── */
.faq { background: var(--white); border-top: 1px solid rgba(20,44,78,0.06); }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(20,44,78,0.08); border-radius: 8px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(20,44,78,0.07); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.15s;
}
.faq-q:hover { background: #f4f8fc; }
.faq-q.open { color: var(--tealText); background: rgba(45,212,191,0.04); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(20,44,78,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s ease;
}
.faq-q.open .faq-icon {
  background: var(--teal);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 12px; height: 12px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.faq-q.open .faq-icon svg { stroke: var(--navy); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 24px 60px; overflow: hidden; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; width: min(600px, 120vw); height: min(600px, 120vw);
  border-radius: 50%; border: 1px solid rgba(45,212,191,0.12);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 0 40px rgba(45,212,191,0.04), 0 0 0 80px rgba(45,212,191,0.025), 0 0 0 130px rgba(45,212,191,0.015);
  pointer-events: none; animation: ringPulse 6s ease-in-out infinite;
}
@keyframes ringPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.hero-logo { width: min(300px, 75vw); height: auto; margin-bottom: 36px; animation: fadeUp 0.7s ease both; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--tealText); margin-bottom: 16px; animation: fadeUp 0.7s 0.1s ease both; position: relative; z-index: 2;
}
.hero h1 {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(32px, 8vw, 64px); font-weight: 800;
  line-height: 1.1; color: var(--navy); margin-bottom: 20px; animation: fadeUp 0.7s 0.2s ease both; position: relative; z-index: 2; max-width: 720px;
}
.hero h1 span { color: var(--tealText); position: relative; display: inline-block; }
.hero h1 span::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: underlineIn 0.5s 0.9s ease forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero p { font-size: clamp(16px, 2.5vw, 19px); font-weight: 300; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 36px; animation: fadeUp 0.7s 0.3s ease both; position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; animation: fadeUp 0.7s 0.4s ease both; position: relative; z-index: 2; }

.btn-primary {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .05em; color: var(--navy);
  background: var(--gold); padding: 14px 28px; border-radius: 5px; text-decoration: none; border: none; cursor: pointer; transition: 0.18s;
  box-shadow: 0 4px 16px rgba(251,191,36,0.3);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,191,36,0.4); }

.btn-secondary {
  font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--navy);
  background: transparent; padding: 14px 28px; border-radius: 5px; text-decoration: none; border: 2px solid rgba(20,44,78,0.2); cursor: pointer; transition: 0.18s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--tealText); transform: translateY(-2px); }

/* ── SCROLL HINT ── */
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.4; animation: fadeUp 1s 1s ease both; z-index: 2; }
.scroll-hint span { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--navy); }
.scroll-arrow { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--navy), transparent); animation: scrollDrop 1.5s ease-in-out infinite; }
@keyframes scrollDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; padding: 72px 24px; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-label { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--tealText); margin-bottom: 12px; }
.section-title { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(24px, 5vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 580px; margin-bottom: 48px; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }

/* ── FEATURES ── */
.features { background: var(--white); border-top: 1px solid rgba(20,44,78,0.06); border-bottom: 1px solid rgba(20,44,78,0.06); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2px; background: rgba(20,44,78,0.06); }
@media (min-width: 600px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card { padding: 28px 24px; background: var(--white); position: relative; overflow: hidden; transition: 0.2s; }
.feature-card:hover { background: #f4f8fc; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--teal); transition: height 0.3s ease; }
.feature-card:hover::before { height: 100%; }
.feature-icon { width: 40px; height: 40px; background: rgba(45,212,191,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 20px; height: 20px; stroke: var(--teal2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-title { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── STATS ── */
.stats { background: var(--navy); padding: 56px 24px; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { background: var(--navy2); padding: 32px 20px; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-number { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(32px, 6vw, 48px); font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-unit { color: var(--gold); }
.stat-label { font-size: 12px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(200,216,236,0.6); }

/* ── HOW IT WORKS ── */
.how { background: var(--bg); }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; left: 19px; top: 24px; bottom: 24px; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--navy)); border-radius: 2px; }
@media (min-width: 700px) { .steps::before { left: 50%; transform: translateX(-50%); } }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 0 0 36px; position: relative; }
@media (min-width: 700px) {
  .step { width: 50%; padding: 0 40px 36px 0; }
  .step:nth-child(even) { align-self: flex-end; padding: 0 0 36px 40px; flex-direction: row-reverse; }
  .step:nth-child(even) .step-body { text-align: right; }
}
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--teal); font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(45,212,191,0.2); }
.step-title { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; margin-top: 8px; }
.step-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, #1a3a62 100%); padding: 72px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(24px, 5vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; line-height: 1.15; }
.cta-band p { font-size: 16px; font-weight: 300; color: var(--light); margin-bottom: 32px; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: var(--navy2); padding: 32px 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
footer img { height: 24px; width: auto; margin-bottom: 14px; opacity: 0.9; }
footer p { font-size: 12px; color: rgba(200,216,236,0.72); letter-spacing: .04em; }

/* ── BACK TO TOP FAB RESTORED ── */
#fab-top { appearance: none; border: 0; background: transparent; padding: 0; position: fixed; bottom: 28px; right: 24px; width: 52px; height: 52px; z-index: 200; cursor: pointer; opacity: 0; transform: translateY(16px) scale(0.9); transition: 0.3s; pointer-events: none; }
#fab-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#fab-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
#fab-ring-track { fill: none; stroke: rgba(45,212,191,0.15); stroke-width: 3; }
#fab-ring-progress { fill: none; stroke: var(--teal); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 138.2; stroke-dashoffset: 138.2; transition: stroke-dashoffset 0.1s linear; }
#fab-compass { position: absolute; inset: 8px; transition: filter 0.2s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ── SLASHED ZERO ── */
.sz {
  font-variant-numeric: slashed-zero;
  font-feature-settings: 'zero' 1;
  display: inline-block;
  position: relative;
}
/* Fallback slash overlay for fonts that don't support 'zero' */
.sz::after {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  width: 1.5px;
  height: 46%;
  background: currentColor;
  transform: translateX(-50%) rotate(22deg);
  transform-origin: center;
  pointer-events: none;
  border-radius: 1px;
  opacity: 0.9;
}

/* ── ACCESSIBILITY / MOTION PREFERENCES ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* === PROMO BAR === */
.promo-bar {
  position: fixed;
  top: var(--nav-height, 57px);
  left: 0;
  right: 0;
  z-index: 99;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  background: var(--teal2);
}
.promo-bar.open {
  background: var(--teal2);
}
.promo-bar.closed {
  background: #8B1F1F;
}
.promo-bar a {
  color: var(--gold);
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-bar a:hover {
  color: var(--gold2);
}
.promo-bar strong {
  font-weight: 700;
  color: var(--white);
}

body.has-promo-bar .nav-drawer {
  top: calc(var(--nav-height, 57px) + var(--promo-offset, 0px));
}

.hero {
  padding-top: calc(var(--nav-height, 72px) + var(--promo-offset, 0px) + 2rem);
}

body.ea-page.has-promo-bar .hero {
  padding-top: calc(var(--nav-height, 72px) + var(--promo-offset, 0px) + 2rem);
}

/* ── SHARED SITE CHROME (homepage + early access) ── */
h1 em, h2 em {
  font-style: italic;
  color: #0B766C;
  font-weight: inherit;
}
.nav-links a:not(.nav-cta) {
  position: relative;
  display: inline-block;
  padding: 5px 14px;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::before,
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 16px;
  border-color: rgba(45, 212, 191, 0.3);
  border-style: solid;
  transition: border-color 0.2s;
}
.nav-links a:not(.nav-cta)::before {
  left: 0;
  border-width: 1px 0 1px 1px;
  border-radius: 2px 0 0 2px;
}
.nav-links a:not(.nav-cta)::after {
  right: 0;
  border-width: 1px 1px 1px 0;
  border-radius: 0 2px 2px 0;
}
.nav-links a:not(.nav-cta):hover { color: #2DD4BF; }
.nav-links a:not(.nav-cta):hover::before,
.nav-links a:not(.nav-cta):hover::after { border-color: rgba(45, 212, 191, 0.9); }
.cta-band h2 em { color: #2DD4BF; }
.hero-offer-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--tealText);
  max-width: 520px;
  line-height: 1.6;
  margin: -12px auto 28px;
  position: relative;
  z-index: 2;
}
.section-label--light { color: var(--teal); }
.section-title--light { color: var(--white); }
.section-sub--light { color: var(--light); }

/* Static FAQ list (early-access page) */
.faq-list--static {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 44, 78, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.faq-list--static .faq-item {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(20, 44, 78, 0.07);
}
.faq-list--static .faq-item:last-child { border-bottom: none; }
.faq-list--static .faq-static-q {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-list--static .faq-static-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  margin: 0;
}

/* Early-access hero campaign blocks sit above hero-actions */
.ea-hero-campaign {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* ── HOW IT WORKS ZIGZAG ── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.how-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(20,44,78,0.12);
  transform: translateX(-50%);
}
.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.how-step-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.how-step-spacer {
  /* empty column for alternating alignment */
}
.how-step-badge {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal2);
  background: rgba(45,212,191,0.1);
  border-radius: 3px;
  padding: 2px 7px;
  display: inline-block;
  width: fit-content;
}
.how-step-num {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 4px;
}
.how-step-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.how-step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 640px) {
  .how-steps::before { left: 16px; }
  .how-step { grid-template-columns: 1fr; gap: 12px; }
  .how-step-spacer { display: none; }
  .how-step--right { direction: ltr; }
}
