/* ── Home / Landing page ──────────────────────────────────────────── */

/* ─── PAGE LOADER ─────────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease 0.1s, visibility 0.7s ease 0.1s;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  display: block; margin: 0 auto 28px;
}
.loader-logo img { height: 56px; width: auto; display: block; margin: 0 auto; }
.loader-tagline {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(245,242,241,0.25);
  margin-bottom: 32px; display: block;
}
.loader-bar-track {
  width: 100px; height: 1px;
  background: rgba(255,255,255,0.08); margin: 0 auto; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--accent);
  animation: loader-fill 0.85s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loader-fill { from { width: 0; } to { width: 100%; } }

/* ─── CURSOR ──────────────────────────────────────────────────────── */
.home-body { cursor: none; overflow-x: hidden; }

#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(197,254,0,0.35); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease, opacity 0.3s ease;
}
.home-body:has(a:hover) #cursor,
.home-body:has(button:hover) #cursor { width: 18px; height: 18px; }
.home-body:has(a:hover) #cursor-ring,
.home-body:has(button:hover) #cursor-ring { width: 50px; height: 50px; border-color: rgba(197,254,0,0.2); }

/* Pause all CSS animations when the tab is hidden — frees the GPU/compositor
   so Chrome doesn't evict the globe's WebGL context on refocus. */
html.tab-hidden *,
html.tab-hidden *::before,
html.tab-hidden *::after {
  animation-play-state: paused !important;
}

/* Skip painting offscreen sections to reduce memory/compositor footprint.
   contain-intrinsic-size keeps layout stable so scroll positions don't jump. */
.home-callout,
.home-pricing {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ─── HOME HEADER ─────────────────────────────────────────────────── */
.home-header {
  background: #1a1a1a;
  padding: 0 clamp(48px, 5vw, 96px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s;
}
.home-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.home-header-logo { display: flex; align-items: center; text-decoration: none; }
.home-header-links {
  list-style: none; display: flex; align-items: center; gap: 32px;
}
.home-header-links a {
  font-size: 13px; font-weight: 500; color: rgba(245,242,241,0.65);
  text-decoration: none; transition: color 0.15s;
}
.home-header-links a:hover { color: var(--text-on-dark); }
.home-header-actions { display: flex; align-items: center; gap: 12px; }
.home-header-signin {
  font-size: 13px; font-weight: 500; color: rgba(245,242,241,0.65);
  text-decoration: none; transition: color 0.15s; cursor: none;
}
.home-header-signin:hover { color: var(--text-on-dark); }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--accent-text);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: var(--radius-pill);
  text-decoration: none; border: none; cursor: none; white-space: nowrap;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}
.btn-nav-cta:hover {
  background: var(--accent-hover); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(197,254,0,0.25); color: var(--accent-text);
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 560px;
  height: calc(100vh - 68px - 50px);
  max-height: 760px;
  background: #1a1a1a;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Subtle mesh */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Ambient orbs — pre-softened radials, no filter, no animation (GPU-safe) */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  /* Above the globe so lime glow bleeds into the text area */
  z-index: 4;
  width: 700px; height: 700px;
  background: radial-gradient(circle,
    rgba(197,254,0,0.055) 0%,
    rgba(197,254,0,0.035) 22%,
    rgba(197,254,0,0.018) 45%,
    rgba(197,254,0,0.008) 68%,
    transparent 90%);
  top: 10%; left: -160px;
}
.hero-orb-2 {
  z-index: 1;
  width: 440px; height: 440px;
  background: radial-gradient(circle,
    rgba(60,120,255,0.032) 0%,
    rgba(60,120,255,0.018) 32%,
    rgba(60,120,255,0.008) 60%,
    transparent 88%);
  top: 50%; left: 20%;
}

/* Hero content — left column, no grid */
.hero-content {
  position: relative; z-index: 5;
  padding: 0 0 0 8%;
  max-width: 52%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(197,254,0,0.12); border: 1px solid rgba(197,254,0,0.28);
  border-radius: var(--radius-pill); padding: 8px 16px 8px 10px;
  margin-bottom: 18px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: badge-pulse 2.2s infinite;
}
.hero-badge-text { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.3px; }
@keyframes badge-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.0vw, 60px);
  font-weight: 900; line-height: 1.04; letter-spacing: -2.0px;
  color: var(--text-on-dark); margin-bottom: 14px;
}
.hero-headline .accent-word { color: var(--accent); }

.hero-sub {
  font-size: 15px; line-height: 1.55;
  color: rgba(245,242,241,0.82); font-weight: 400;
  max-width: 460px; margin-bottom: 20px;
}
.hero-sub em {
  position: relative;
  font-style: normal; color: var(--text-on-dark); font-weight: 600;
  padding: 0 2px;
}
.hero-sub em::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: -0.12em;
  height: 0.5em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 26' preserveAspectRatio='none'><path d='M4 16 Q 40 7 95 12 Q 150 16 205 10 Q 260 5 298 13 Q 312 16 316 15 Q 308 22 260 20 Q 200 18 148 22 Q 95 25 46 21 Q 14 19 4 16 Z' fill='%23c5fe00'/><path d='M30 18 Q 80 14 140 17 Q 200 20 270 17' fill='none' stroke='%23c5fe00' stroke-width='1.4' stroke-linecap='round' opacity='0.55'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  pointer-events: none;
}

.hero-actions { display: flex; align-items: center; gap: 16px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-text);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-pill);
  text-decoration: none; border: none; cursor: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(197,254,0,0.3); color: var(--accent-text);
}

/* Hero CTA — glow ring via transform/opacity (GPU-cheap, no box-shadow animation) */
.btn-hero-cta {
  font-size: 15px; padding: 15px 34px;
  box-shadow: 0 0 28px rgba(197,254,0,0.35), 0 4px 16px rgba(197,254,0,0.2);
  position: relative;
}
.btn-hero-cta::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center,
    rgba(197,254,0,0.45) 0%,
    rgba(197,254,0,0.22) 45%,
    transparent 75%);
  z-index: -1;
  opacity: 0.55;
  transform: scale(1);
  animation: hero-cta-pulse 2.8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes hero-cta-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}
.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 64px rgba(197,254,0,0.7), 0 8px 28px rgba(197,254,0,0.4);
}

.btn-ghost-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(245,242,241,0.72); font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: none; transition: color 0.15s;
}
.btn-ghost-link:hover { color: var(--text-on-dark); }
.btn-ghost-link svg { opacity: 0.7; transition: opacity 0.15s, transform 0.2s; }
.btn-ghost-link:hover svg { opacity: 1; transform: translateY(2px); }

/* Globe — absolutely positioned, bleeds off right/top/bottom */
.hero-globe-wrap {
  position: absolute;
  right: -16%;
  top: -10%;
  width: 80vw;
  height: 130vh;
  z-index: 2;
}

/* Left gradient — covers canvas edge at ~36%, creates soft globe reveal */
.hero-globe-fade-left {
  position: absolute;
  top: 0; bottom: 0;
  left: 30%; width: 420px;
  background: linear-gradient(to right, #1a1a1a 0%, #1a1a1a 30%, transparent 100%);
  z-index: 3; pointer-events: none;
}

/* Bottom gradient — softens globe lower edge into marquee */
.hero-globe-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
  z-index: 3; pointer-events: none;
}

/* ─── MARQUEE — dark extension of hero ───────────────────────────── */
.home-marquee {
  /* No border, seamlessly extends the dark hero zone */
  padding: 12px 0;
  overflow: hidden;
  background: #1a1a1a;
  position: relative; z-index: 10;
  /* Ambient cast — marquee floats above white, bleeding downward */
  box-shadow: 0 24px 48px -18px rgba(26,26,26,0.55), 0 8px 18px -6px rgba(26,26,26,0.35);
}
.home-marquee::before, .home-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.home-marquee::before { left: 0; background: linear-gradient(to right, #1a1a1a, transparent); }
.home-marquee::after  { right: 0; background: linear-gradient(to left, #1a1a1a, transparent); }

.marquee-track {
  display: flex; gap: 10px;
  animation: marquee-scroll 44s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Chips — glass on dark */
.dest-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-pill); padding: 9px 16px;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.dest-chip:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16); }
.dest-chip .flag { font-size: 16px; }
.dest-chip .name { font-size: 13px; font-weight: 600; color: rgba(245,242,241,0.75); }
.diff {
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  padding: 2px 8px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.easy     { background: rgba(0,192,127,0.14);  color: #4ade80; }
.moderate { background: rgba(245,166,35,0.14); color: #fbbf24; }
.hard     { background: rgba(239,68,68,0.14);  color: #f87171; }


/* ─── FEATURES ────────────────────────────────────────────────────── */
.home-features {
  padding: 104px clamp(48px, 5vw, 96px);
  background: var(--bg-primary); position: relative; overflow: hidden;
}
/* Asymmetric dark bleed — echoes globe's right-side presence, keeps left clean */
.home-features::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 62%; height: 180px; pointer-events: none; z-index: 0;
  background: linear-gradient(195deg, rgba(26,26,26,0.14) 0%, rgba(26,26,26,0.05) 45%, transparent 80%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%);
}
.home-features > * { position: relative; z-index: 1; }
.section-eyebrow {
  font-size: 16px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.dark-eyebrow { color: rgba(197,254,0,0.55); }
.dark-eyebrow::before { background: rgba(197,254,0,0.4); }

.features-intro-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
  margin-bottom: 80px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
.features-h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 3.5vw, 60px);
  font-weight: 900; line-height: 1.07; letter-spacing: -2px; color: var(--text-primary);
}
.features-h2 em { font-style: normal; color: var(--text-primary); font-weight: 900; }
.features-desc {
  font-size: 15px; line-height: 1.75; color: var(--text-secondary);
  font-weight: 400; align-self: end;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(0,0,0,0.06); border-radius: var(--radius-xl); overflow: hidden;
  max-width: 1400px; margin: 0 auto;
}
.feat-card {
  background: white; padding: 40px 36px;
  transition: background 0.28s cubic-bezier(0.25,1,0.5,1);
}
.feat-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 2px; margin-bottom: 20px;
  transition: color 0.28s cubic-bezier(0.25,1,0.5,1);
}
.feat-icon {
  width: 40px; height: 40px; background: var(--bg-tertiary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background 0.28s cubic-bezier(0.25,1,0.5,1);
}
.feat-icon svg {
  width: 18px; height: 18px; stroke: var(--text-secondary); fill: none; stroke-width: 1.5;
  transition: stroke 0.28s cubic-bezier(0.25,1,0.5,1);
}
.feat-title {
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.3px;
  transition: color 0.28s cubic-bezier(0.25,1,0.5,1);
}
.feat-desc {
  font-size: 13px; line-height: 1.72; color: var(--text-secondary);
  transition: color 0.28s cubic-bezier(0.25,1,0.5,1);
}

/* Lime takeover on hover — full card repaints, all children inherit the pairing */
.feat-card:hover { background: var(--accent); }
.feat-card:hover .feat-num   { color: rgba(56,75,0,0.55); }
.feat-card:hover .feat-icon  { background: rgba(56,75,0,0.12); }
.feat-card:hover .feat-icon svg { stroke: var(--accent-text); }
.feat-card:hover .feat-title { color: var(--accent-text); }
.feat-card:hover .feat-desc  { color: rgba(56,75,0,0.78); }

/* ─── HOW IT WORKS — pinned card stack ────────────────────────────── */
.home-how {
  position: relative;
  background: var(--surface-dark);
  padding: 96px clamp(48px, 5vw, 96px);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-how > .how-inner { width: 100%; }
/* Grey grid — subtle architectural lattice on the dark surface */
.home-how::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 55%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 55%, transparent 95%);
  pointer-events: none; z-index: 0;
}
/* Reverse bleed — dark seeps up into features section above */
.home-how .how-bleed-top {
  position: absolute; top: -140px; left: 0; right: 0; height: 140px;
  background: linear-gradient(to top, var(--surface-dark) 0%, rgba(26,26,26,0.65) 40%, rgba(26,26,26,0.25) 75%, transparent 100%);
  pointer-events: none; z-index: 2;
}
.home-how > .how-inner { position: relative; z-index: 1; }
.how-inner {
  max-width: 1240px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 44% 1fr; gap: 80px; align-items: start;
}

/* ── Copy column (left) ── */
.how-copy { position: relative; padding-top: 40px; }
.how-copy-stack {
  position: relative;
  min-height: 280px;
  margin-top: 8px;
}
.how-copy-step {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25,1,0.5,1);
  pointer-events: none;
}
.how-copy-step.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.how-step-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 4px;
  color: var(--accent); opacity: 0.75; margin-bottom: 16px;
}
.how-step-h {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3.3vw, 56px);
  font-weight: 900; line-height: 1.04; letter-spacing: -2px;
  color: var(--text-on-dark); margin-bottom: 20px;
}
.how-step-h em { font-style: normal; color: var(--accent); }
.how-step-p {
  font-size: 15px; line-height: 1.72; color: rgba(245,242,241,0.55);
  font-weight: 400; max-width: 440px;
}

/* Stepper */
.how-stepper {
  display: flex; align-items: center; gap: 10px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
button.how-dot {
  appearance: none; background: transparent; border: 0; padding: 0;
  font: inherit; color: inherit;
}
.how-dot {
  width: 20px; height: 20px; position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.25,1,0.5,1);
}
.how-dot:hover .how-dot-ring {
  background: rgba(197,254,0,0.55);
  transform: scale(1.25);
}
.how-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.how-dot-ring {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
}
.how-dot.active .how-dot-ring {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(197,254,0,0.2), 0 0 16px rgba(197,254,0,0.5);
}
.how-dot-line {
  flex: 1; height: 1px; background: rgba(255,255,255,0.08); max-width: 44px;
}

/* ── Card stack (right) ── */
.how-stack-wrap {
  position: relative;
  height: 520px;
  perspective: 1600px;
}
/* Ambient glow behind the card stack — pre-softened radials, no blur filter (GPU-cheap) */
.how-stack-wrap::before {
  content: ''; position: absolute;
  inset: -120px -160px -120px -80px;
  background:
    radial-gradient(ellipse 65% 55% at 55% 50%,
      rgba(255,255,255,0.085) 0%,
      rgba(255,255,255,0.055) 22%,
      rgba(255,255,255,0.025) 48%,
      rgba(255,255,255,0.008) 72%,
      transparent 90%),
    radial-gradient(ellipse 40% 35% at 72% 28%,
      rgba(197,254,0,0.055) 0%,
      rgba(197,254,0,0.02) 45%,
      transparent 80%);
  pointer-events: none; z-index: 0;
}
.how-stack-wrap > .how-stack { position: relative; z-index: 1; }
.how-stack {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.stk-card {
  position: absolute; inset: 0;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 28px 30px;
  display: flex; flex-direction: column;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 12px 32px -14px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,255,255,0.9) inset;
  will-change: transform, opacity;
  transform-origin: 50% 0%;
}
.stk-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(197,254,0,0.05), transparent 55%);
  pointer-events: none;
}

/* Shared card header */
.stk-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; z-index: 1; }
.stk-chip {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent);
  padding: 5px 10px; border-radius: 999px;
}
.stk-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; font-weight: 700; text-transform: uppercase; }
.stk-meta-flag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.stk-meta-flag .fi { width: 18px; height: 13px; border-radius: 2px; }
.stk-meta-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--success); }
.stk-live-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); animation: badge-pulse 2s infinite; }

/* — Card 1: Assessment — */
.stk-progress { height: 4px; background: var(--bg-tertiary); border-radius: 2px; margin-bottom: 24px; overflow: hidden; position: relative; z-index: 1; }
.stk-progress-fill { width: 32%; height: 100%; background: linear-gradient(90deg, var(--accent), #a8dc00); border-radius: 2px; }
.qc-question {
  font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  letter-spacing: -0.4px; color: var(--text-primary); margin-bottom: 20px; position: relative; z-index: 1;
  line-height: 1.25;
}
.qc-options { display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 1; }
.qc-opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-secondary);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
}
.qc-opt-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.18); flex-shrink: 0; background: #fff; }
.qc-opt-text { flex: 1; color: var(--text-primary); }
.qc-opt-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: var(--accent-text); display: flex; align-items: center; justify-content: center; }
.qc-opt-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}
.qc-opt-tag.warn { background: rgba(239,68,68,0.1); color: var(--error); }
.qc-opt.active {
  background: rgba(197,254,0,0.12);
  border-color: var(--accent);
  color: var(--text-primary);
}
.qc-opt.active .qc-opt-dot { border-color: var(--accent); background: var(--accent); }
.stk-foot { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.stk-foot-link { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stk-foot-cta {
  font-size: 12px; font-weight: 700;
  color: var(--accent-text); background: var(--accent);
  padding: 8px 18px; border-radius: 999px;
}

/* — Card 2: Score reveal — */
.stk-card-2 { justify-content: space-between; }
.rpm-wrap { position: relative; display: flex; flex-direction: column; align-items: center; padding: 10px 0 0; z-index: 1; }
.rpm-svg { width: min(380px, 100%); height: auto; }
.rpm-score-wrap { margin-top: -48px; text-align: center; position: relative; z-index: 2; }
.rpm-score {
  font-family: var(--font-display); font-size: 80px; font-weight: 900;
  color: var(--text-primary); line-height: 1; letter-spacing: -3px;
}
.rpm-band {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-secondary); margin-top: 6px;
}
.rpm-insight {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding: 14px 16px;
  background: rgba(197,254,0,0.14);
  border: 1px solid rgba(56,75,0,0.12);
  border-radius: 12px;
  font-size: 13px; color: var(--accent-text); font-weight: 600;
  position: relative; z-index: 1;
}
.rpm-insight-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-text); flex-shrink: 0; }

/* Update RPM SVG needle to darker stroke for white bg */
.stk-card-2 .rpm-svg line { stroke: var(--text-primary); }

/* — Card 3: Dashboard — */
.dsh-top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; position: relative; z-index: 1; }
.dsh-ring { width: 84px; height: 84px; position: relative; flex-shrink: 0; }
.dsh-ring svg { width: 100%; height: 100%; }
.dsh-ring svg circle:first-child { stroke: var(--bg-tertiary); }
.dsh-ring-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px;
}
.dsh-top-text { flex: 1; }
.dsh-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.dsh-sub { font-size: 14px; color: var(--text-primary); font-weight: 600; letter-spacing: -0.2px; }
.dsh-accent { color: var(--success); font-weight: 700; }
.dsh-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; margin-bottom: 16px; }
.dsh-cell {
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.dsh-cell-k { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.dsh-cell-v { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -1px; }
.dsh-cell-v.dim { color: var(--warning); }
.dsh-cell-bar { display: block; height: 3px; background: rgba(0,0,0,0.06); border-radius: 2px; overflow: hidden; margin-top: 2px; }
.dsh-cell-bar span { display: block; height: 100%; background: var(--accent-text); border-radius: 2px; }
.dsh-cell:nth-child(2) .dsh-cell-bar span { background: var(--warning); }
.dsh-pill {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--accent-text);
  background: rgba(197,254,0,0.25);
  padding: 6px 14px; border-radius: 999px;
  margin-top: auto; position: relative; z-index: 1;
}

/* — Card 4: Action plan — */
.ms-header { margin-bottom: 16px; position: relative; z-index: 1; }
.ms-header-t { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.3px; margin-bottom: 3px; }
.ms-header-s { font-size: 12px; color: var(--text-muted); }
.ms-list { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.ms-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 12px 14px;
}
.ms-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.18);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: transparent;
}
.ms-item.done .ms-check {
  background: var(--accent); border-color: var(--accent); color: var(--accent-text);
}
.ms-item.done { background: rgba(197,254,0,0.1); border-color: rgba(197,254,0,0.35); }
.ms-item.done .ms-t { color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.2); }
.ms-body { flex: 1; min-width: 0; }
.ms-t { font-size: 13px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.2px; margin-bottom: 2px; }
.ms-s { font-size: 11px; color: var(--text-muted); }
.ms-impact {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--accent-text); letter-spacing: -0.5px;
  background: var(--accent);
  padding: 3px 10px; border-radius: 999px;
  flex-shrink: 0;
}
.ms-projected { margin-top: auto; padding-top: 14px; position: relative; z-index: 1; }
.ms-proj-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.ms-proj-row span { font-size: 11px; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; }
.ms-proj-row strong { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.ms-proj-bar { position: relative; height: 6px; background: var(--bg-tertiary); border-radius: 3px; overflow: hidden; }
.ms-proj-now { position: absolute; left: 0; top: 0; bottom: 0; background: var(--accent-text); border-radius: 3px; }
.ms-proj-gain { position: absolute; top: 0; bottom: 0; background: var(--accent); border-radius: 3px; }

/* — Card 5: Visa Confidence — */
.stk-card-5 { padding: 26px 28px; gap: 16px; }
.rdy-intro { margin-top: 4px; }
.rdy-h {
  font-family: var(--font-heading); font-size: clamp(20px, 1.9vw, 26px); font-weight: 900;
  letter-spacing: -0.6px; color: var(--text-primary); line-height: 1.15; margin-bottom: 8px;
}
.rdy-h em { font-style: normal; color: var(--accent-text); background: var(--accent); padding: 0 6px; border-radius: 4px; }
.rdy-p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.rdy-match-list { display: flex; flex-direction: column; gap: 8px; }
.rdy-match {
  display: grid;
  grid-template-columns: 22px 22px 1fr auto;
  align-items: center; gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px; padding: 10px 14px;
}
.rdy-match--best {
  background: linear-gradient(135deg, rgba(197,254,0,0.14), rgba(197,254,0,0.04));
  border-color: rgba(56,75,0,0.18);
  box-shadow: 0 6px 18px -8px rgba(197,254,0,0.45);
}
.rdy-match-rank {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  color: var(--text-muted); letter-spacing: 0.5px;
}
.rdy-match--best .rdy-match-rank { color: var(--accent-text); }
.rdy-match-flag { width: 22px; height: 16px; border-radius: 3px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.rdy-match-body { min-width: 0; }
.rdy-match-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.rdy-match-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.rdy-match-badge {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--accent-text); background: var(--accent);
  padding: 2px 7px; border-radius: 999px;
}
.rdy-match-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--success); padding: 2px 6px;
  background: rgba(0,192,127,0.1); border-radius: 999px;
}
.rdy-match-tag--soft { color: var(--warning); background: rgba(245,166,35,0.12); }
.rdy-match-bar { height: 4px; background: rgba(0,0,0,0.07); border-radius: 2px; overflow: hidden; }
.rdy-match-bar i {
  display: block; height: 100%;
  background: var(--accent-text); border-radius: 2px;
}
.rdy-match--best .rdy-match-bar i { background: var(--accent); }
.rdy-match-score {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.8px;
}
.rdy-match--best .rdy-match-score { color: var(--accent-text); }

/* — Card 6: Cleared for takeoff — */
.stk-card-6 {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.stk-card-6::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(197,254,0,0.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(197,254,0,0.06), transparent 50%);
  pointer-events: none;
}
.stk-card-6 .stk-chip { background: rgba(197,254,0,0.12); color: var(--accent); border: 1px solid rgba(197,254,0,0.25); }
.stk-card-6 .stk-meta-live { color: var(--accent); }
.stk-card-6 .stk-live-dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(197,254,0,0.18); }
.clr-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; margin-top: 8px;
}
.clr-stamp-ring { filter: drop-shadow(0 14px 36px rgba(197,254,0,0.35)); }
.clr-title {
  font-family: var(--font-heading); font-size: clamp(26px, 2.6vw, 34px); font-weight: 900;
  letter-spacing: -1px; color: var(--accent); line-height: 1.05;
}
.clr-sub {
  font-size: 12.5px; color: rgba(245,242,241,0.68);
  letter-spacing: 0.3px; margin-top: -6px;
}
.clr-boarding {
  width: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 14px 18px; margin-top: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(197,254,0,0.28);
  border-radius: 12px;
}
.clr-bp-left, .clr-bp-right { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.clr-bp-right { align-items: flex-end; }
.clr-bp-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(245,242,241,0.42);
}
.clr-bp-dest {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--text-on-dark);
}
.clr-bp-dest .fi { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.clr-bp-score {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--accent); letter-spacing: -1.2px; line-height: 1;
}
.clr-bp-score em { font-style: normal; font-size: 13px; color: rgba(245,242,241,0.4); font-weight: 600; margin-left: 2px; }
.clr-bp-divider { width: 1px; height: 32px; background: rgba(197,254,0,0.2); }
.clr-cta {
  margin-top: 6px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.3px;
  color: var(--accent-text); background: var(--accent);
  padding: 12px 26px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(197,254,0,0.35);
  text-decoration: none; display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.clr-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(197,254,0,0.45); }

/* Mobile fallback — cards flow naturally, no pinning */
.stk-card--flow {
  position: relative !important; inset: auto !important;
  transform: none !important; opacity: 1 !important;
  margin-bottom: 16px; height: auto; min-height: 460px;
}

/* ─── CALLOUT ─────────────────────────────────────────────────────── */
.home-callout {
  padding: 88px clamp(48px, 5vw, 96px); background: var(--bg-tertiary);
  position: relative; overflow: hidden;
}
.callout-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.callout-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.callout-h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
  color: var(--text-primary); margin-bottom: 10px;
}
.callout-sub { font-size: 15px; color: var(--text-secondary); font-weight: 400; }
.callout-cta-wrap { flex-shrink: 0; text-align: center; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-dark); color: var(--text-on-dark);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: var(--radius-pill);
  text-decoration: none; border: none; cursor: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}
.btn-dark:hover {
  background: #2a2a2a; transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); color: var(--text-on-dark);
}
.callout-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.3px; }

/* ─── PRICING ─────────────────────────────────────────────────────── */
.home-pricing { padding: 104px clamp(48px, 5vw, 96px); background: var(--bg-primary); }
.pricing-header-wrap { max-width: 1400px; margin: 0 auto 36px; }
.pricing-h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 3.5vw, 60px);
  font-weight: 900; line-height: 1.07; letter-spacing: -2px;
  color: var(--text-primary); margin-top: 16px;
}
.pricing-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.plan-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl); padding: 36px 32px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s; box-shadow: var(--shadow-card);
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.plan-card--soon { opacity: 0.55; pointer-events: none; }
.plan-card--soon::after {
  content: 'Coming soon'; position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill); padding: 3px 10px;
}
.plan-card.featured { border-color: rgba(0,0,0,0.12); background: var(--surface-dark); }
.plan-card.featured .plan-name { color: var(--text-on-dark); }
.plan-card.featured .plan-desc { color: rgba(245,242,241,0.45); }
.plan-card.featured .plan-period { color: rgba(245,242,241,0.35); }
.plan-card.featured .plan-feats li { color: rgba(245,242,241,0.35); }
.plan-card.featured .plan-feats li.on { color: rgba(245,242,241,0.85); }
.plan-card.featured .plan-feats li::before { background: rgba(255,255,255,0.12); }
.plan-card.featured .plan-feats li.on::before { background: var(--success); }
.plan-card.featured .plan-feats { border-top-color: rgba(255,255,255,0.07); }
.plan-badge {
  display: inline-flex; align-items: center;
  background: var(--accent); color: var(--accent-text);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--radius-pill);
}
.plan-badge-slot {
  min-height: 28px; margin-bottom: 16px;
  display: flex; align-items: flex-start;
}
.plan-name {
  font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--text-primary); margin-bottom: 6px;
}
.plan-desc {
  font-size: 13px; line-height: 1.5; color: var(--text-secondary);
  margin-bottom: 14px; min-height: 2.9em;
}
.plan-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 6px;
}
.plan-title-row .plan-name { margin-bottom: 0; }
.plan-price {
  font-family: var(--font-display); font-size: 64px; font-weight: 800;
  letter-spacing: -2px; line-height: 1; color: var(--text-primary); margin-bottom: 6px;
}
.plan-card.featured .plan-price { color: var(--accent); }
.plan-period { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.plan-cta {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--radius-md); font-size: 13px; font-weight: 700;
  text-decoration: none; cursor: none; margin-bottom: 28px;
  transition: all 0.15s; font-family: var(--font-body);
}
.plan-cta.outline { border: 1.5px solid rgba(0,0,0,0.12); color: var(--text-secondary); }
.plan-cta.outline:hover { border-color: var(--text-primary); color: var(--text-primary); }
.plan-cta.solid { background: var(--accent); color: var(--accent-text); border: none; }
.plan-cta.solid:hover { background: var(--accent-hover); }
.plan-cta.ghost { border: 1.5px solid rgba(0,0,0,0.07); color: var(--text-muted); }
.plan-feats {
  list-style: none; border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 24px; display: flex; flex-direction: column; gap: 10px; margin-top: auto;
}
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.plan-feats li.on { color: var(--text-primary); }
.plan-feats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,0.12); flex-shrink: 0; }
.plan-feats li.on::before { background: var(--success); }

/* Pricing — v3 additions */
.pricing-sub {
  font-size: 15px; line-height: 1.5; color: var(--text-secondary);
  margin-top: 14px; max-width: none; font-weight: 400;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pricing-launch-wrap {
  max-width: 1400px; margin: 0 auto 28px;
  display: flex; justify-content: flex-start;
}
.pricing-launch-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 999px;
  padding: 8px 18px 8px 14px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(197, 254, 0, 0.28);
}
.pricing-launch-banner .plb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-text); box-shadow: 0 0 0 4px rgba(56,75,0,0.18);
  animation: plb-pulse 2s ease-in-out infinite;
}
@keyframes plb-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(56,75,0,0.18); }
  50%     { box-shadow: 0 0 0 8px rgba(56,75,0,0.05); }
}
.pricing-launch-banner .plb-text { color: var(--accent-text); font-weight: 600; }
.pricing-launch-banner .plb-timer {
  font-family: var(--font-display); font-weight: 700;
  color: var(--text-on-dark); letter-spacing: 0.5px;
  padding: 3px 12px; border-radius: var(--radius-sm);
  background: var(--surface-dark);
  font-variant-numeric: tabular-nums;
}
.pricing-launch-banner .plb-fine {
  color: var(--accent-text); opacity: 0.75; font-size: 12px;
  padding-left: 14px; border-left: 1px solid rgba(56,75,0,0.28);
}

/* Plan scope — concise eligibility line below desc */
.plan-scope {
  font-family: var(--font-body);
  font-size: 12.5px; line-height: 1.45;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.plan-card.featured .plan-scope {
  background: rgba(197, 254, 0, 0.14);
  color: rgba(245, 242, 241, 0.92);
  border: 1px solid rgba(197, 254, 0, 0.25);
}
.plan-scope.hidden { display: none; }

.plan-price-wrap { margin-bottom: 20px; min-height: 118px; display: flex; flex-direction: column; justify-content: flex-start; }
.plan-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.plan-price-row.hidden, .plan-launch-tag.hidden { display: none; }
.plan-price-strike {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--text-muted); text-decoration: line-through;
  text-decoration-thickness: 1.5px; letter-spacing: -0.5px;
}
.plan-card.featured .plan-price-strike { color: rgba(245,242,241,0.35); }
.plan-launch-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--text-secondary); background: transparent;
  padding: 4px 0; border-radius: 0;
}
.plan-launch-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(197, 254, 0, 0.2);
  flex-shrink: 0;
}
.plan-card.featured .plan-launch-tag {
  background: transparent; color: rgba(245, 242, 241, 0.75);
}
.plan-card.featured .plan-launch-tag::before {
  box-shadow: 0 0 0 3px rgba(197, 254, 0, 0.18);
}
.plan-price-wrap .plan-period { margin-top: 10px; margin-bottom: 0; }

.plan-badge--alt { background: var(--surface-dark); color: var(--text-on-dark); }

.pack-toggle {
  display: inline-flex; gap: 2px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-pill); padding: 3px;
  align-self: center; flex-shrink: 0;
}
.plan-card.featured .pack-toggle { background: rgba(255,255,255,0.08); }
.plan-card.featured .pack-opt { color: rgba(245,242,241,0.55); }
.plan-card.featured .pack-opt:hover { color: var(--text-on-dark); }
.plan-card.featured .pack-opt.active { background: var(--accent); color: var(--accent-text); }
.pack-opt {
  appearance: none; background: transparent; border: 0;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  color: var(--text-muted); padding: 5px 11px;
  border-radius: var(--radius-pill); cursor: none;
  transition: background 0.18s, color 0.18s;
}
.pack-opt:hover { color: var(--text-primary); }
.pack-opt.active {
  background: var(--surface-dark); color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.feat-lock {
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm); padding: 2px 7px; margin-left: 8px;
  font-weight: 600;
}

/* ─── WHY NAVIER ──────────────────────────────────────────────────── */
.home-why {
  padding: 120px clamp(48px, 5vw, 96px); background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.home-why::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(197,254,0,0.06), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.03), transparent 50%);
}
.why-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.why-eyebrow { margin-bottom: 24px; }
.why-top {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) 1.1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 96px;
}
.why-header { max-width: 560px; }
.why-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.0vw, 48px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.6px;
  color: var(--text-primary); margin-top: 0;
}
.why-headline em {
  font-style: normal; color: var(--text-primary);
  background: linear-gradient(180deg, transparent 60%, var(--accent) 60%, var(--accent) 92%, transparent 92%);
  padding: 0 4px;
}

/* Stat block: big numbers framing the arrow */
.why-stat {
  margin-bottom: 0;
  padding: 40px 36px;
  background: var(--surface-dark); color: var(--text-on-dark);
  border-radius: var(--radius-2xl);
  position: relative; overflow: hidden;
}
.why-stat::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,254,0,0.14), transparent 70%);
  pointer-events: none;
}
.why-stat-line {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: nowrap;
  position: relative;
}
.why-stat-big { text-align: center; display: flex; flex-direction: column-reverse; gap: 10px; }
.why-stat-num {
  font-family: var(--font-display); font-size: clamp(44px, 4.4vw, 68px);
  font-weight: 800; letter-spacing: -2px; line-height: 1;
  color: var(--text-on-dark);
  font-variant-numeric: tabular-nums;
}
.why-stat-num em { font-style: normal; color: var(--accent); }
.why-stat-yr {
  font-family: var(--font-display); font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800; letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}
.why-stat-arrow {
  width: 56px; height: 22px; color: rgba(245,242,241,0.4);
  flex-shrink: 0;
}
.why-stat-wrap { display: flex; flex-direction: column; gap: 18px; }
.why-stat-caption {
  text-align: left; font-size: 14px; line-height: 1.65;
  color: var(--text-secondary); margin: 0; font-weight: 400;
  padding: 0 4px;
}

/* Four beats grid */
.why-beats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 80px;
}
.why-beat {
  background: var(--bg-primary);
  border-radius: var(--radius-xl); padding: 32px 30px;
  box-shadow: var(--shadow-card);
  position: relative; transition: box-shadow 0.25s, transform 0.25s;
}
.why-beat:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.why-beat-reveal { opacity: 0; transform: translateY(24px); }
.why-beat-reveal.is-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.why-beat-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--accent-text);
  background: var(--accent); padding: 3px 9px;
  border-radius: var(--radius-sm); display: inline-block;
  margin-bottom: 18px;
}
.why-beat-title {
  font-family: var(--font-heading); font-size: 19px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.4px;
  line-height: 1.3; margin-bottom: 12px;
}
.why-beat-body {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary);
  margin: 0;
}

/* Mission close */
.why-mission {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding-top: 24px;
}
.why-mission-pull {
  font-family: var(--font-heading); font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700; letter-spacing: -0.6px; line-height: 1.4;
  color: var(--text-primary); margin: 0 0 24px;
}
.why-mission-p {
  font-size: 16px; line-height: 1.85; color: var(--text-secondary);
  margin: 0;
}
.why-mission-accent {
  position: relative;
  isolation: isolate;
  color: var(--text-primary);
  padding: 0 4px;
}
.why-mission-accent::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: -0.18em;
  height: 0.7em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 32' preserveAspectRatio='none'><path d='M6 18 Q 50 8 110 14 Q 175 20 245 11 Q 320 3 380 15 Q 395 19 396 17 Q 386 27 325 24 Q 250 22 180 27 Q 110 31 52 26 Q 16 23 6 18 Z' fill='%23c5fe00'/><path d='M40 22 Q 110 18 185 21 Q 260 24 345 21' fill='none' stroke='%23c5fe00' stroke-width='1.8' stroke-linecap='round' opacity='0.55'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}
.why-mission-pull { position: relative; }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.home-faq { padding: 104px clamp(48px, 5vw, 96px) 32px; background: var(--surface-dark); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-h { margin-bottom: 64px; }
.faq-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.04;
  color: var(--text-on-dark); margin-top: 12px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-q-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: none; border: none; text-align: left; cursor: none;
}
.faq-q-text {
  font-size: 15px; font-weight: 500; color: var(--text-on-dark);
  letter-spacing: -0.2px; font-family: var(--font-heading);
}
.faq-toggle {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
}
.faq-toggle svg { width: 12px; height: 12px; stroke: rgba(245,242,241,0.35); fill: none; stroke-width: 2; transition: stroke 0.2s; }
.faq-q-btn[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); background: rgba(197,254,0,0.09); border-color: rgba(197,254,0,0.22); }
.faq-q-btn[aria-expanded="true"] .faq-toggle svg { stroke: var(--accent); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-ans.open { max-height: 240px; }
.faq-ans-body { padding: 0 0 22px; font-size: 14px; line-height: 1.8; color: rgba(245,242,241,0.42); max-width: 580px; }

/* ─── FINAL CTA ───────────────────────────────────────────────────── */
.home-final-cta {
  padding: 48px clamp(48px, 5vw, 96px) 128px; background: var(--surface-dark);
  text-align: center; position: relative; overflow: hidden;
}
.home-final-cta::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}
.cta-ambient-glow {
  position: absolute; bottom: -220px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(197,254,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 16px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: rgba(197,254,0,0.55); margin-bottom: 28px;
}
.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900; line-height: 0.96; letter-spacing: -3.5px;
  color: var(--text-on-dark); margin-bottom: 24px;
}
.cta-headline em { font-style: normal; color: var(--accent); }
.cta-sub { font-size: 16px; line-height: 1.65; color: rgba(245,242,241,0.42); margin-bottom: 40px; }
.cta-fine { font-size: 11px; color: rgba(245,242,241,0.18); margin-top: 14px; letter-spacing: 0.3px; }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.home-footer { background: #111; border-top: 1px solid rgba(255,255,255,0.05); padding: 56px clamp(48px, 5vw, 96px) 40px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 28px;
}
.footer-logo {
  display: inline-flex; align-items: center; text-decoration: none;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 8px 18px;
}
.footer-logo img { height: 32px; width: auto; display: block; }

/* Back-to-top floating button */
.back-to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 999px;
  background: #1a1a1a; color: var(--accent);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #242424; border-color: rgba(197,254,0,0.35); }
.back-to-top:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.back-to-top svg { width: 20px; height: 20px; }
.footer-brand p { font-size: 13px; color: rgba(245,242,241,0.28); max-width: 220px; margin-top: 14px; line-height: 1.65; }
.footer-cols { display: flex; gap: 72px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,242,241,0.18); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(245,242,241,0.32); text-decoration: none; font-weight: 400; transition: color 0.15s; }
.footer-col a:hover { color: rgba(245,242,241,0.72); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(245,242,241,0.18); }
.footer-status-row { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(245,242,241,0.18); }
.footer-status-dot { width: 5px; height: 5px; background: var(--success); border-radius: 50%; }

/* ─── GSAP REVEAL BASE STATES ─────────────────────────────────────── */
.js-ready .gsap-reveal,
.js-ready .gsap-reveal-left,
.js-ready .gsap-reveal-right { opacity: 0; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { max-width: 80%; padding: 60px 24px 60px; }
  .hero-globe-wrap { right: -40%; top: 0; width: 100vw; height: 80vh; opacity: 0.45; }
  .features-intro-wrap { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 32px; }
  .how-copy { padding-top: 0; }
  .how-copy-stack { min-height: 0; }
  .how-copy-step { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; margin-bottom: 28px; }
  .how-stepper { display: none; }
  .home-how { min-height: 0; padding: 72px 24px 96px; }
  .how-stack-wrap { height: auto; display: flex; flex-direction: column; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-sub { white-space: normal; }
  .plan-desc { min-height: 0; }
  .plan-toggle-slot { min-height: 0; }
  .plan-price-wrap { min-height: 0; }
  .plan-badge-slot { min-height: 0; margin-bottom: 12px; }
  .why-beats { grid-template-columns: 1fr; }
  .why-top { grid-template-columns: 1fr; gap: 32px; }
  .why-stat { padding: 36px 24px; }
  .why-stat-line { gap: 20px; }
  .why-stat-arrow { transform: rotate(90deg); }
  .home-why { padding: 80px 24px; }
  .pricing-launch-banner { flex-direction: column; align-items: flex-start; }
  .pricing-launch-banner .plb-fine { border-left: 0; padding-left: 0; }
  .callout-inner { flex-direction: column; text-align: center; }
  .callout-cta-wrap { text-align: center; }
  .footer-top { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 28px; }
  .home-body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .btn-primary, .btn-dark, .btn-nav-cta, .plan-cta, .faq-q-btn, a { cursor: pointer; }
}
@media (max-width: 768px) {
  .home-features, .home-score-section, .home-callout,
  .home-pricing, .home-faq, .home-final-cta, .home-footer { padding-left: 20px; padding-right: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 50px 20px 50px; max-width: 100%; }
  .hero-globe-wrap { opacity: 0.3; }
  .hero-headline { letter-spacing: -1.5px; }
}
