/* APOE v3 — Dark canvas, FitnessGenes blue branding.
   Same architecture as v2 but the plum/violet accent is replaced with FG blue
   (--fg-blue-400 / 500 / 600). */

* { box-sizing: border-box; }

:root {
  /* Dark canvas */
  --v2-black: #07070A;
  --v2-ink: #0C0C11;
  --v2-panel: #111118;
  --v2-panel-2: #16161E;
  --v2-line: rgba(255,255,255,0.08);
  --v2-line-strong: rgba(255,255,255,0.16);
  --v2-text: #E9E6F2;
  --v2-text-muted: #A29DB4;
  --v2-text-dim: #6E6982;

  /* Accent — FitnessGenes blue family */
  --v2-plum: #3898EC;          /* primary FG blue (was plum) */
  --v2-plum-2: #0772E4;        /* deeper FG blue */
  --v2-plum-deep: #01384F;     /* FG navy */
  --v2-amber: #09B1F8;         /* bright cyan-blue highlight */
  --v2-rose: #FF6B8A;          /* hero pulse — kept for warmth on E4 */

  /* Typography */
  --v2-serif: "Fraunces", "Tiempos", Georgia, serif;
  --v2-sans: "Montserrat", "Inter", system-ui, sans-serif;
  --v2-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
}

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=JetBrains+Mono:wght@400;500&display=swap");

html, body {
  background: var(--v2-black);
  color: var(--v2-text);
  font-family: var(--v2-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-v2 {
  background: var(--v2-black);
  color: var(--v2-text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a { color: var(--v2-plum); text-decoration: none; }
a:hover { color: #fff; }

/* ============ Container ============ */
.v2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.v2-container--narrow { max-width: 920px; }

/* ============ Top utility bar ============ */
.v2-bar {
  background: #000;
  color: #B0AAC0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--v2-line);
}
.v2-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.v2-bar b { color: var(--v2-plum); font-weight: 600; }
.v2-bar-right { display: flex; gap: 22px; }
.v2-bar-right span { display: flex; align-items: center; gap: 8px; }
.v2-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--v2-plum); display: inline-block; }
.v2-dot--live { background: #6FE3A8; box-shadow: 0 0 0 0 #6FE3A8; animation: v2-pulse-dot 2.4s infinite; }
@keyframes v2-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(111,227,168,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(111,227,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,227,168,0); }
}

/* ============ Nav ============ */
.v2-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,10,0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--v2-line);
}
.v2-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-logo img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.v2-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0; padding: 0;
}
.v2-nav ul a {
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.v2-nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--v2-plum);
  transition: right 220ms ease;
}
.v2-nav ul a:hover { color: #fff; }
.v2-nav ul a:hover::after { right: 0; }
.v2-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--v2-plum);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 180ms;
}
.v2-nav-cta:hover { background: var(--v2-plum-2); color: #fff; }
.v2-nav-cta::after { content: "→"; transition: transform 180ms; }
.v2-nav-cta:hover::after { transform: translateX(3px); }

/* ============ HERO ============ */
.v2-hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 78% 28%, rgba(138, 111, 217, 0.22) 0%, transparent 60%),
    radial-gradient(1200px 700px at 8% 80%, rgba(75, 45, 142, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: -2;
}
.v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(900px 700px at 50% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(900px 700px at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}
.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v2-plum);
  margin: 0 0 28px;
}
.v2-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--v2-plum);
  opacity: 0.6;
}
.v2-hero h1 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #fff;
  text-wrap: balance;
}
.v2-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--v2-plum) 0%, var(--v2-amber) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.v2-hero h1 .v2-strike {
  position: relative;
  display: inline-block;
}
.v2-hero h1 .v2-strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 56%;
  height: 4px;
  background: var(--v2-rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: v2-strike 1.2s cubic-bezier(0.7,0,0.3,1) 0.8s forwards;
}
@keyframes v2-strike {
  to { transform: scaleX(1); }
}
.v2-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--v2-text-muted);
  max-width: 540px;
  margin: 0 0 40px;
  font-weight: 400;
}
.v2-hero-lede b {
  color: var(--v2-text);
  font-weight: 600;
}
.v2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--v2-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 200ms cubic-bezier(0.2,0.8,0.2,1), background 200ms, color 200ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
}
.v2-btn--primary {
  background: var(--v2-plum);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(56, 152, 236, 0.35);
}
.v2-btn--primary:hover {
  background: var(--v2-plum-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px rgba(56, 152, 236, 0.55);
}
.v2-btn--ghost {
  background: transparent;
  color: var(--v2-text);
  border: 1px solid var(--v2-line-strong);
}
.v2-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--v2-plum);
  color: #fff;
  transform: translateY(-2px);
}
.v2-btn--lg { padding: 20px 32px; font-size: 16px; }
.v2-btn .arr { transition: transform 200ms; }
.v2-btn:hover .arr { transform: translateX(4px); }

/* Hero stat ribbon */
.v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  padding: 24px 0;
  max-width: 540px;
}
.v2-hero-stat {
  padding: 0 20px;
  border-right: 1px solid var(--v2-line);
}
.v2-hero-stat:last-child { border-right: 0; padding-right: 0; }
.v2-hero-stat:first-child { padding-left: 0; }
.v2-hero-stat-num {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.v2-hero-stat-label {
  font-size: 12px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ============ Hero VISUAL — animated brain / DNA scene ============ */
.v2-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.v2-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Aurora — soft multi-color glow behind brain */
.v2-aurora {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(56,152,236,0.55) 0%, transparent 45%),
    radial-gradient(circle at 70% 35%, rgba(9,177,248,0.45) 0%, transparent 50%),
    radial-gradient(circle at 55% 75%, rgba(255,107,138,0.40) 0%, transparent 48%),
    radial-gradient(circle at 25% 70%, rgba(111,227,168,0.35) 0%, transparent 50%);
  filter: blur(38px);
  opacity: 0.85;
  animation: v2-aurora 12s ease-in-out infinite;
}
@keyframes v2-aurora {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33%      { transform: rotate(120deg) scale(1.08); }
  66%      { transform: rotate(240deg) scale(0.95); }
}

/* Concentric pulsing rings — now thicker + gradient + colored */
.v2-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid;
  opacity: 0;
  animation: v2-ring 4.5s ease-out infinite;
  border-color: var(--v2-plum);
  box-shadow: 0 0 24px rgba(56,152,236,0.4), inset 0 0 24px rgba(56,152,236,0.2);
}
.v2-ring--2 {
  animation-delay: 1.2s;
  border-color: var(--v2-amber);
  box-shadow: 0 0 24px rgba(9,177,248,0.45), inset 0 0 24px rgba(9,177,248,0.2);
}
.v2-ring--3 {
  animation-delay: 2.4s;
  border-color: var(--v2-rose);
  box-shadow: 0 0 24px rgba(255,107,138,0.4), inset 0 0 24px rgba(255,107,138,0.18);
}
@keyframes v2-ring {
  0%   { transform: scale(0.5); opacity: 0; }
  10%  { opacity: 0.85; }
  100% { transform: scale(1.05); opacity: 0; }
}

/* Slow rotating gradient rings — conic sweeps */
.v2-ring-spin {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  padding: 1.5px;
  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      var(--v2-plum) 40deg,
      var(--v2-amber) 80deg,
      transparent 130deg,
      transparent 220deg,
      var(--v2-rose) 280deg,
      transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.6;
  animation: v2-spin 14s linear infinite;
}
.v2-ring-spin--b {
  inset: 12%;
  background:
    conic-gradient(from 180deg,
      transparent 0deg,
      var(--v2-amber) 50deg,
      transparent 120deg,
      transparent 240deg,
      var(--v2-plum) 300deg,
      transparent 360deg);
  animation: v2-spin-rev 18s linear infinite;
  opacity: 0.45;
}
@keyframes v2-spin     { to { transform: rotate(360deg); } }
@keyframes v2-spin-rev { to { transform: rotate(-360deg); } }

/* Orbiting colored dots */
.v2-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  animation: v2-spin 9s linear infinite;
}
.v2-orbit--b { inset: 8%;  animation-duration: 13s; animation-direction: reverse; }
.v2-orbit--c { inset: 16%; animation-duration: 11s; }
.v2-orbit--d { inset: 22%; animation-duration: 16s; animation-direction: reverse; }

.v2-orbit-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px; height: 12px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--v2-plum);
  box-shadow: 0 0 14px currentColor, 0 0 28px currentColor;
}
.v2-orbit-dot--cyan  { background: var(--v2-amber); color: var(--v2-amber); }
.v2-orbit-dot--rose  { background: var(--v2-rose);  color: var(--v2-rose); top: auto; bottom: -6px; }
.v2-orbit-dot--amber { background: #F2B36A;         color: #F2B36A; left: -6px; top: 50%; transform: translateY(-50%); }
.v2-orbit-dot--green { background: #6FE3A8;         color: #6FE3A8; left: auto; right: -6px; top: 50%; transform: translateY(-50%); }

/* Twinkling sparks scattered around */
.v2-spark {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 8px currentColor, 0 0 16px currentColor;
  animation: v2-twinkle 3.6s ease-in-out infinite;
}
.v2-spark--1 { top: 12%; left: 22%; color: var(--v2-amber); animation-delay: 0s; }
.v2-spark--2 { top: 28%; right: 18%; color: var(--v2-rose); animation-delay: 0.9s; }
.v2-spark--3 { bottom: 24%; left: 14%; color: #6FE3A8; animation-delay: 1.8s; }
.v2-spark--4 { bottom: 14%; right: 26%; color: var(--v2-plum); animation-delay: 2.7s; }
@keyframes v2-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  40%, 60% { opacity: 1; transform: scale(1.4); }
}

/* Brain svg in centre */
.v2-brain {
  position: relative;
  width: 62%;
  filter: drop-shadow(0 0 24px rgba(56,152,236,0.45)) drop-shadow(0 0 40px rgba(9,177,248,0.25));
  animation: v2-float 8s ease-in-out infinite;
  z-index: 2;
}
.v2-brain path { fill: none; stroke: rgba(255,255,255,0.22); stroke-width: 1; }
.v2-brain .v2-brain-glow { stroke: var(--v2-plum); stroke-width: 1.8; opacity: 0; animation: v2-pulse-stroke 3.4s ease-in-out infinite; filter: drop-shadow(0 0 6px currentColor); }
.v2-brain .v2-brain-glow--2 { animation-delay: 1.1s; stroke: var(--v2-amber); }
.v2-brain .v2-brain-glow--3 { animation-delay: 2.2s; stroke: var(--v2-rose); }
@keyframes v2-pulse-stroke {
  0%, 100% { opacity: 0; }
  40%, 60% { opacity: 1; }
}
@keyframes v2-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Floating data chips around brain */
.v2-chip {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--v2-line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-family: var(--v2-mono);
  letter-spacing: 0.04em;
  color: var(--v2-text);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: v2-float 6s ease-in-out infinite;
  white-space: nowrap;
}
.v2-chip-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--v2-plum);
}
.v2-chip-dot--rose { background: var(--v2-rose); }
.v2-chip-dot--amber { background: var(--v2-amber); }
.v2-chip-dot--green { background: #6FE3A8; }
.v2-chip-1 { top: 8%; left: -2%;  animation-delay: 0.4s; }
.v2-chip-2 { top: 22%; right: -4%; animation-delay: 1.6s; }
.v2-chip-3 { top: 46%; left: -8%;  animation-delay: 2.8s; }
.v2-chip-4 { bottom: 18%; right: 2%; animation-delay: 0.9s; }
.v2-chip strong { color: #fff; font-weight: 600; }

/* "Highest risk" callout overlapping the visual */
.v2-callout {
  position: absolute;
  bottom: -16px;
  left: -10px;
  background: linear-gradient(135deg, #1F1428, #0F0716);
  border: 1px solid var(--v2-plum-deep);
  border-radius: 18px;
  padding: 18px 22px;
  max-width: 280px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(183, 156, 232, 0.15);
}
.v2-callout-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-plum);
  font-weight: 700;
  margin-bottom: 8px;
}
.v2-callout-title {
  font-family: var(--v2-serif);
  font-size: 22px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.v2-callout-body {
  font-size: 13px;
  color: var(--v2-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ============ Hemsworth quote band ============ */
.v2-quote {
  position: relative;
  padding: 80px 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(138, 111, 217, 0.12), transparent 70%),
    var(--v2-ink);
}
.v2-quote-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.v2-quote-mark {
  font-family: var(--v2-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--v2-plum);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}
.v2-quote-text {
  font-family: var(--v2-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.v2-quote-text em {
  font-style: italic;
  color: var(--v2-plum);
}
.v2-quote-attr {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  font-weight: 600;
}
.v2-quote-attr b {
  color: var(--v2-text);
  font-weight: 600;
}

/* ============ Sections ============ */
.v2-section {
  padding: 120px 0;
  position: relative;
}
.v2-section--alt {
  background: var(--v2-panel);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-section-head {
  max-width: 800px;
  margin: 0 0 64px;
}
.v2-section-head--center {
  text-align: center;
  margin: 0 auto 64px;
}
.v2-section-head h2 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
  text-wrap: balance;
}
.v2-section-head h2 em {
  font-style: italic;
  color: var(--v2-plum);
}
.v2-section-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--v2-text-muted);
  max-width: 640px;
  margin: 0;
  font-weight: 400;
}
.v2-section-head--center p { margin-left: auto; margin-right: auto; }

/* ============ Variants explainer (E2 / E3 / E4) ============ */
.v2-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-variant {
  position: relative;
  padding: 36px 32px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line);
  border-radius: 24px;
  transition: transform 240ms ease, border-color 240ms;
  overflow: hidden;
}
.v2-variant::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--v2-plum), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms;
  pointer-events: none;
}
.v2-variant:hover::before { opacity: 1; }
.v2-variant:hover { transform: translateY(-4px); }
.v2-variant--e4 {
  border-color: rgba(183, 156, 232, 0.35);
  background: linear-gradient(180deg, #1A1226, #100B19);
}
.v2-variant-code {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.v2-variant--e4 .v2-variant-code {
  background: linear-gradient(135deg, var(--v2-plum) 0%, var(--v2-amber) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.v2-variant-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.v2-variant--e2 .v2-variant-tag { background: rgba(111,227,168,0.12); color: #6FE3A8; }
.v2-variant--e3 .v2-variant-tag { background: rgba(255,255,255,0.08); color: var(--v2-text-muted); }
.v2-variant--e4 .v2-variant-tag { background: rgba(255,107,138,0.14); color: #FF8DA7; }
.v2-variant h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.v2-variant p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--v2-text-muted);
  margin: 0;
  font-weight: 400;
}
.v2-variant-stat {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--v2-line);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.v2-variant-stat-num {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.01em;
}
.v2-variant-stat-label {
  font-size: 12px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
}

/* ============ Risk-factor self-check tiles ============ */
.v2-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.v2-symptom {
  position: relative;
  text-align: left;
  padding: 24px;
  border-radius: 18px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms, background 200ms;
  font-family: inherit;
  color: inherit;
  overflow: hidden;
}
.v2-symptom:hover {
  border-color: var(--v2-plum-deep);
  transform: translateY(-2px);
}
.v2-symptom.is-checked {
  background: linear-gradient(135deg, rgba(138,111,217,0.18), rgba(138,111,217,0.05));
  border-color: var(--v2-plum);
}
.v2-symptom-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--v2-line-strong);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 180ms;
}
.v2-symptom.is-checked .v2-symptom-check {
  background: var(--v2-plum);
  border-color: var(--v2-plum);
}
.v2-symptom.is-checked .v2-symptom-check::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.v2-symptom-ico {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--v2-plum);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(183,156,232,0.10);
}
.v2-symptom h4 {
  font-family: var(--v2-sans);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin: 0 0 8px;
  padding-right: 24px;
}
.v2-symptom p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--v2-text-muted);
  margin: 0;
  font-weight: 400;
}
.v2-symptoms-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0E1A24, #07111A);
  border: 1px solid var(--v2-plum-deep);
  flex-wrap: wrap;
}
.v2-symptoms-summary--mobile { display: none; }
.v2-symptoms-meter {
  flex: 0 0 320px;
  min-width: 240px;
}
.v2-symptoms-meter-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.v2-symptoms-meter-tier {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.v2-symptoms-meter-tier--empty { color: var(--v2-text-dim); }
.v2-symptoms-meter-tier--low   { color: #6FE3A8; }
.v2-symptoms-meter-tier--mid   { color: var(--v2-amber); }
.v2-symptoms-meter-tier--high  { color: #FF8DA7; }
.v2-symptoms-meter-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.v2-symptoms-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #6FE3A8 0%, var(--v2-amber) 50%, #FF6B8A 100%);
  transition: width 360ms cubic-bezier(0.2,0.8,0.2,1);
  border-radius: 999px;
}
.v2-symptoms-meter-fill--empty { background: rgba(255,255,255,0.18); }
.v2-symptoms-meter-scale {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
}
.v2-symptoms-summary-text {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
  flex: 1;
  min-width: 260px;
}
.v2-symptoms-summary-text b {
  color: var(--v2-plum);
  font-weight: 500;
}
.v2-symptoms-summary-text small {
  display: block;
  font-family: var(--v2-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--v2-text-muted);
  margin-top: 8px;
  letter-spacing: 0;
}

/* ============ How it works ============ */
.v2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-step {
  padding: 40px 28px;
  border-right: 1px solid var(--v2-line);
  position: relative;
  transition: background 240ms;
}
.v2-step:last-child { border-right: 0; }
.v2-step:hover { background: rgba(183,156,232,0.04); }
.v2-step-num {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--v2-plum);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--v2-line);
}
.v2-step h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.v2-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--v2-text-muted);
  margin: 0;
  font-weight: 400;
}

/* ============ Sample report mock ============ */
.v2-report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.v2-report-mock {
  background: linear-gradient(160deg, #1A1226, #0B0712);
  border: 1px solid var(--v2-line-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(183,156,232,0.08);
}
.v2-report-mock-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--v2-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--v2-mono);
  letter-spacing: 0.06em;
  color: var(--v2-text-dim);
  background: rgba(0,0,0,0.3);
}
.v2-report-mock-head b { color: var(--v2-plum); }
.v2-report-mock-head .v2-rm-tabs {
  display: flex;
  gap: 18px;
}
.v2-report-mock-body { padding: 32px 28px; }
.v2-rm-priority {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,107,138,0.14);
  color: #FF8DA7;
  margin-bottom: 18px;
}
.v2-rm-headline {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.v2-rm-headline b {
  background: linear-gradient(135deg, var(--v2-plum) 0%, var(--v2-amber) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 500;
}
.v2-rm-rows {
  border-top: 1px solid var(--v2-line);
  margin-bottom: 24px;
}
.v2-rm-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--v2-line);
  font-size: 13px;
}
.v2-rm-row span { color: var(--v2-text-dim); }
.v2-rm-row b { color: #fff; font-weight: 600; font-family: var(--v2-mono); letter-spacing: 0.04em; }
.v2-rm-actions {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  padding: 16px;
}
.v2-rm-actions-head {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-plum);
  font-weight: 700;
  margin-bottom: 12px;
}
.v2-rm-action {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--v2-line);
}
.v2-rm-action:first-of-type { border-top: 0; }
.v2-rm-action-tag {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-text-muted);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  height: fit-content;
}
.v2-rm-action-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--v2-text);
  font-weight: 500;
}

/* ============ Why act now timeline ============ */
.v2-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.v2-timeline::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v2-plum-deep) 20%, var(--v2-plum-deep) 80%, transparent);
}
.v2-tl {
  position: relative;
  padding-top: 52px;
}
.v2-tl::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 22px;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--v2-black);
  border: 2px solid var(--v2-plum);
}
.v2-tl--now::before {
  background: var(--v2-plum);
  box-shadow: 0 0 0 6px rgba(183,156,232,0.18);
}
.v2-tl-age {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--v2-plum);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.v2-tl h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.v2-tl p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--v2-text-muted);
  margin: 0;
  font-weight: 400;
}

/* ============ Pricing ============ */
.v2-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v2-price {
  position: relative;
  padding: 40px 36px;
  border-radius: 24px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line);
  display: flex;
  flex-direction: column;
}
.v2-price--featured {
  background: linear-gradient(160deg, #1F1428, #0F0716);
  border: 1px solid var(--v2-plum);
  box-shadow: 0 30px 60px -16px rgba(138,111,217,0.4);
}
.v2-price-badge {
  position: absolute;
  top: -12px; left: 36px;
  background: var(--v2-plum);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.v2-price-name {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-plum);
  margin-bottom: 16px;
}
.v2-price h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.v2-price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 24px 0;
}
.v2-price-tag-num {
  font-family: var(--v2-serif);
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.v2-price-tag-suffix {
  font-size: 14px;
  color: var(--v2-text-muted);
}
.v2-price ul {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  border-top: 1px solid var(--v2-line);
}
.v2-price li {
  padding: 12px 0;
  border-bottom: 1px solid var(--v2-line);
  font-size: 14px;
  color: var(--v2-text);
  display: flex;
  gap: 12px;
}
.v2-price li::before {
  content: "✓";
  color: var(--v2-plum);
  font-weight: 700;
  flex: 0 0 auto;
}
.v2-price-cta { margin-top: auto; }

/* ============ FAQ ============ */
.v2-faq {
  border-top: 1px solid var(--v2-line);
}
.v2-faq-item {
  border-bottom: 1px solid var(--v2-line);
}
.v2-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 200ms;
}
.v2-faq-q:hover { color: var(--v2-plum); }
.v2-faq-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--v2-line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--v2-text);
  transition: transform 240ms, background 200ms;
}
.v2-faq-item.is-open .v2-faq-toggle {
  transform: rotate(45deg);
  background: var(--v2-plum);
  color: #fff;
  border-color: var(--v2-plum);
}
.v2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease, padding 360ms ease;
  padding: 0;
}
.v2-faq-item.is-open .v2-faq-a {
  max-height: 600px;
  padding: 0 60px 32px 0;
}
.v2-faq-a p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--v2-text-muted);
  margin: 0;
  font-weight: 400;
}

/* ============ Partners strip ============ */
.v2-partners {
  padding: 64px 0;
  border-top: 1px solid var(--v2-line);
}
.v2-partners-head {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  margin-bottom: 32px;
  font-weight: 600;
}
.v2-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 32px;
}
.v2-partners-grid img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.85;
  transition: opacity 200ms;
}
.v2-partners-grid img:hover { opacity: 1; }

/* ============ Final CTA ============ */
.v2-final {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 50% 50%, rgba(183,156,232,0.18), transparent 65%);
  pointer-events: none;
}
.v2-final h2 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 28px;
  max-width: 880px;
  position: relative;
  text-wrap: balance;
}
.v2-final h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--v2-plum), var(--v2-amber));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.v2-final p {
  font-size: 18px;
  color: var(--v2-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  font-weight: 400;
}

/* ============ Medical disclaimer ============ */
.v2-medical {
  padding: 32px 0;
  background: var(--v2-ink);
  border-top: 1px solid var(--v2-line);
}
.v2-medical-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.v2-medical-icon {
  flex: 0 0 auto;
  font-family: var(--v2-serif);
  font-weight: 700;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--v2-text-dim);
  color: var(--v2-text-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.v2-medical p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--v2-text-dim);
  margin: 0;
  font-weight: 400;
}

/* ============ Footer ============ */
/* ============ Footer (FG style, dark theme colours) ============ */
.v2-footer {
  background: #000;
  color: #fff;
  padding: 64px 0 24px;
  border-top: 1px solid var(--v2-line);
  font-size: 14px;
}
.v2-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  font-size: 14px;
}
.v2-footer h4 {
  font-family: var(--v2-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--v2-plum);
  margin: 0 0 16px;
  font-weight: 600;
}
.v2-footer ul { list-style: none; padding: 0; margin: 0; }
.v2-footer li { margin-bottom: 10px; }
.v2-footer a {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 14px;
}
.v2-footer a:hover { color: #fff; text-decoration: underline; }
.v2-fbrand img { height: 40px; width: auto; filter: brightness(0) invert(1); display: block; }
.v2-fsocial { display: flex; gap: 12px; margin-top: 18px; }
.v2-fsocial a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: background 180ms, color 180ms;
}
.v2-fsocial a:hover { background: var(--v2-plum); color: #fff; }
.v2-footer-bottom {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid var(--v2-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 1080px) {
  .v2-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .v2-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Quiz modal (dark) ============ */
.v2-quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: v2-fade 240ms ease;
}
@keyframes v2-fade { from { opacity: 0; } to { opacity: 1; } }
.v2-quiz {
  width: 100%;
  max-width: 720px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line-strong);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -16px rgba(0,0,0,0.6);
  animation: v2-rise 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes v2-rise {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.v2-quiz-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--v2-line);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 180ms;
}
.v2-quiz-close:hover { background: var(--v2-plum); color: #fff; border-color: var(--v2-plum); }
.v2-quiz-progress {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 32px;
}
.v2-quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--v2-plum), var(--v2-amber));
  transition: width 320ms ease;
}
.v2-quiz-step {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--v2-plum);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.v2-quiz h3 {
  font-family: var(--v2-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.v2-quiz-sub {
  font-size: 15px;
  color: var(--v2-text-muted);
  margin: 0 0 28px;
  line-height: 1.55;
  font-weight: 400;
}
.v2-quiz-options {
  display: grid;
  gap: 12px;
}
.v2-quiz-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--v2-line);
  cursor: pointer;
  transition: all 180ms;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--v2-text);
  text-align: left;
}
.v2-quiz-opt:hover {
  background: rgba(183,156,232,0.08);
  border-color: var(--v2-plum-deep);
}
.v2-quiz-opt.is-selected {
  background: rgba(183,156,232,0.15);
  border-color: var(--v2-plum);
  color: #fff;
}
.v2-quiz-opt-arrow {
  color: var(--v2-text-dim);
  transition: transform 180ms, color 180ms;
}
.v2-quiz-opt:hover .v2-quiz-opt-arrow,
.v2-quiz-opt.is-selected .v2-quiz-opt-arrow {
  color: var(--v2-plum);
  transform: translateX(4px);
}
.v2-quiz-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 13px;
  color: var(--v2-text-dim);
}
.v2-quiz-back {
  background: transparent;
  border: 0;
  color: var(--v2-text-muted);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.v2-quiz-back:hover { color: #fff; }
.v2-quiz-result-tier {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
}
.v2-quiz-result-tier--low { background: rgba(111,227,168,0.14); color: #6FE3A8; }
.v2-quiz-result-tier--mid { background: rgba(242,179,106,0.14); color: var(--v2-amber); }
.v2-quiz-result-tier--high { background: rgba(255,107,138,0.14); color: #FF8DA7; }
.v2-quiz-result-meter {
  margin: 24px 0 32px;
}
.v2-quiz-result-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.v2-quiz-result-fill {
  height: 100%;
  background: linear-gradient(90deg, #6FE3A8 0%, var(--v2-amber) 50%, #FF6B8A 100%);
  transition: width 600ms cubic-bezier(0.2,0.8,0.2,1);
}
.v2-quiz-result-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
}

/* ============ Tweaks panel ============ */
.v2-tweaks {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  background: var(--v2-panel);
  border: 1px solid var(--v2-line-strong);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.6);
  z-index: 100;
  font-size: 13px;
}
.v2-tweaks h4 {
  font-family: var(--v2-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-plum);
  margin: 0 0 16px;
}
.v2-tweak-row {
  margin-bottom: 14px;
}
.v2-tweak-row label {
  display: block;
  font-size: 11px;
  color: var(--v2-text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.v2-tweak-row select,
.v2-tweak-row input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  color: var(--v2-text);
  font-family: inherit;
  font-size: 13px;
}
.v2-tweak-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--v2-text);
  cursor: pointer;
}
.v2-tweak-toggle input { accent-color: var(--v2-plum); }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .v2-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .v2-hero-visual { max-width: 460px; margin: 0 auto; }
  .v2-report { grid-template-columns: 1fr; gap: 40px; }
  .v2-variants { grid-template-columns: 1fr; }
  .v2-symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-steps { grid-template-columns: repeat(2, 1fr); }
  .v2-step:nth-child(2) { border-right: 0; }
  .v2-step:nth-child(1), .v2-step:nth-child(2) { border-bottom: 1px solid var(--v2-line); }
  .v2-timeline { grid-template-columns: 1fr; }
  .v2-timeline::before { display: none; }
  .v2-pricing { grid-template-columns: 1fr; }
  .v2-partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .v2-container { padding: 0 20px; }
  .v2-hero { padding: 56px 0; }
  .v2-section { padding: 80px 0; }
  .v2-bar-right { display: none; }
  .v2-nav ul { display: none; }
  .v2-symptoms-grid { grid-template-columns: 1fr; }
  .v2-steps { grid-template-columns: 1fr; }
  .v2-step { border-right: 0; border-bottom: 1px solid var(--v2-line); }
  .v2-step:last-child { border-bottom: 0; }
  .v2-hero h1 { font-size: 44px; }
  .v2-symptoms-summary { padding: 20px; }
  .v2-symptoms-summary--desktop { display: none; }
  .v2-symptoms-summary--mobile { display: flex; }

  /* Hero visual: keep the brain animation, drop the orbiting chips
     + callout so the scene doesn't pile on top of itself at narrow widths. */
  .v2-hero-visual {
    max-width: 320px;
    aspect-ratio: 1 / 1;
  }
  .v2-chip { display: none; }
  .v2-callout { display: none; }

  /* Risk-check section: hide the tap-grid + inline meter on mobile.
     Only the "Prefer a guided check?" CTA card is shown. */
  .v2-symptoms-grid { display: none; }
  .v2-symptoms-summary--desktop { display: none; }
}
