/* Qnetic VSL funnel - matched to the live CI (invest.qnetic.energy Webflow + qnetic-invest-landing Vercel).
   Tokens, fonts, nav, buttons, eyebrows, cards, gradients, and footer mirror the real components.
   Inter + heading-display. Solid navy sticky nav. rounded-full green pills. rounded-2xl cards.
   shadow-card-deck on floating media. No invented flourishes. */

:root {
  --brand-navy: #142f40;
  --brand-navy-deep: #0e2230;
  --navy-soft: #1a4a45;
  --qnetic-green: #65b677;
  --qnetic-green-dark: #3e824d;
  --qnetic-dark-blue: #295e80;
  --ink: #0a0a0a;
  --ink-soft: #444;
  --paper: #f1f1f1;
  --paper-soft: #f7f7f7;

  --maxw: 80rem; /* 1280px, matches the live max-w-[80rem] */
  --shadow-card-deck: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.mono { font-variant-numeric: tabular-nums; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .wrap { padding: 0 40px; } }

.heading-display { letter-spacing: -0.04em; line-height: 1; font-weight: 500; }

/* ---------- Section theming ---------- */
.s-dark {
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.8);
  --fg-faint: rgba(255, 255, 255, 0.55);
  --hair: rgba(255, 255, 255, 0.12);
  --eyebrow: var(--qnetic-green);
  background: var(--brand-navy);
  color: var(--fg);
}
.s-light {
  --fg: var(--brand-navy);
  --fg-muted: var(--ink-soft);
  --fg-faint: rgba(10, 10, 10, 0.5);
  --hair: rgba(10, 10, 10, 0.10);
  --eyebrow: var(--qnetic-green-dark);
  background: #ffffff;
  color: var(--fg);
}
.s-roadmap { background: linear-gradient(180deg, #f7f7f7 0%, #eaeaea 100%); }
.s-hero {
  position: relative;
  background-color: var(--brand-navy);
  background-image:
    linear-gradient(180deg, transparent 50%, var(--brand-navy) 96%),
    radial-gradient(ellipse 80% 60% at 70% 28%, rgba(101, 182, 119, 0.18), transparent 70%),
    radial-gradient(ellipse 65% 55% at 4% 55%, rgba(41, 94, 128, 0.32), transparent 70%),
    linear-gradient(150deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  color: #fff;
}
.hero-field {
  position: absolute; inset: 0 0 0 auto; width: 45%; z-index: 0; pointer-events: none;
  background: url("assets/qnetic_field.webp") center right/cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.55) 80%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.55) 80%, #000 100%);
}

section.block { padding: 80px 0; }
@media (min-width: 1024px) { section.block { padding: 112px 0; } }
section.block.tight { padding: 48px 0; }

/* ---------- Type ---------- */
h1 { font-weight: 500; letter-spacing: -0.04em; line-height: 1; font-size: clamp(36px, 5vw, 60px); }
h2 { font-weight: 500; letter-spacing: -0.04em; line-height: 1.02; font-size: clamp(30px, 4vw, 44px); }
h3 { font-weight: 500; letter-spacing: -0.02em; }
.accent { color: var(--qnetic-green); font-weight: 700; }
.s-light .accent { color: var(--qnetic-green-dark); }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--eyebrow); display: block; margin-bottom: 16px; }
.lede { font-size: 18px; color: var(--fg-muted); max-width: 60ch; }
.body { color: var(--fg-muted); font-size: 17px; line-height: 1.6; max-width: 64ch; }
.body + .body { margin-top: 16px; }

/* ---------- Nav / logo ---------- */
.topbar { position: sticky; top: 0; z-index: 50; background: var(--brand-navy); color: #fff; }
/* VSL: keep the logo, remove the visible nav bar */
.topbar-bare { position: absolute; inset: 0 0 auto; z-index: 55; background: transparent; pointer-events: none; }
.topbar-bare .nav-inner { max-width: none; justify-content: flex-start; padding: 22px 40px; }
.topbar-bare .brand { pointer-events: auto; }
@media (max-width: 700px) { .topbar-bare .nav-inner { padding: 18px 20px; } }

/* sticky bottom bar: invest-unlock countdown -> CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--brand-navy-deep); border-top: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.3); padding-bottom: env(safe-area-inset-bottom); transform: translateY(103%); transition: transform 0.35s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }
.sticky-cta-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 20px; }
@media (min-width: 1024px) { .sticky-cta-inner { padding: 12px 40px; } }
.sticky-cta-info { display: grid; line-height: 1.25; min-width: 0; }
.sticky-cta-info b { font-size: 14px; font-weight: 600; color: #fff; }
.sticky-cta-info span { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta-count { flex: none; font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: var(--qnetic-green); font-variant-numeric: tabular-nums; }
.sticky-cta.unlocked .cta-count { display: none; }
.sticky-cta .btn { flex: none; }
.sticky-cta.unlocked .sticky-secondary { display: none; }
/* button hidden until unlock (id beats .btn's display:inline-flex, so [hidden] alone won't work) */
#cta-btn { display: none; }
.sticky-cta.unlocked #cta-btn { display: inline-flex; }
@media (max-width: 560px) { .sticky-cta-info b { font-size: 13px; } .sticky-cta-info span { font-size: 11px; } .cta-count { font-size: 22px; } .sticky-cta .btn { padding: 12px 18px; font-size: 13px; } .cta-extra { display: none; } }
/* keep the footer clear of the fixed bar */
body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

/* ---------- VSL hero (autoplay video sized to the viewport) ---------- */
.vsl-hero { display: flex; flex-direction: column; align-items: stretch; min-height: 100svh; padding: 66px 0 0; }
.vsl-wrap { flex: 1; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.webinar-head { margin: 0; }
.vsl-h1 { max-width: 100%; margin: 0 auto; text-align: center; font-size: clamp(24px, 3.1vw, 38px); line-height: 1.12; }
.vsl-h1 .accent { display: block; }
.vsl-player { position: relative; width: min(920px, 93vw, calc(max(400px, 100svh - 400px) * 16 / 9)); aspect-ratio: 16 / 9; margin: 0 auto; border-radius: 16px; overflow: hidden; background: #000 url("assets/full_metal.webp") center / cover no-repeat; box-shadow: var(--shadow-card-deck); }
.vsl-player #yt-player, .vsl-player iframe, .vsl-player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: contain; background: #000; }
/* Fullscreen: letterbox on non-16:9 screens instead of cropping the edges */
.vsl-player:fullscreen { background: #000; }
.vsl-player:-webkit-full-screen { background: #000; }
/* transparent cover: blocks YouTube's own controls/seek (custom controls sit above it) */
.vsl-cover { position: absolute; inset: 0; z-index: 2; background: transparent; cursor: pointer; }
/* custom controls: mute toggle + fullscreen, bottom-right */
.vsl-controls { position: absolute; z-index: 4; right: 12px; bottom: 58px; display: flex; gap: 8px; }
.vsl-btn { width: 40px; height: 40px; border-radius: 10px; border: 0; cursor: pointer; display: grid; place-items: center; background: rgba(10, 20, 28, 0.6); color: #fff; backdrop-filter: blur(4px); transition: background 0.2s var(--ease); }
.vsl-btn:hover { background: rgba(10, 20, 28, 0.85); }
.vsl-btn svg { width: 20px; height: 20px; }
/* The hidden attribute does not apply to SVG-namespace elements; enforce it so
   the mute button shows exactly one icon at a time. */
.vsl-btn svg[hidden] { display: none; }
/* Paused indicator (pure indicator; the cover handles the click) */
.vsl-playhint { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(10, 20, 28, 0.75); border: 1px solid rgba(255, 255, 255, 0.28); display: none; align-items: center; justify-content: center; pointer-events: none; backdrop-filter: blur(4px); }
.vsl-playhint svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.vsl-player.is-paused .vsl-playhint { display: flex; }
.vsl-player.is-paused .vsl-sound-hint { display: none; }
/* initial tap-for-sound hint, centered; dismisses on first unmute */
.vsl-sound-hint { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; border: 0; cursor: pointer; background: rgba(10, 20, 28, 0.75); color: #fff; font-size: 14px; font-weight: 600; backdrop-filter: blur(4px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); transition: opacity 0.25s var(--ease); }
.vsl-sound-hint svg { width: 18px; height: 18px; }
.vsl-sound-hint.hidden { display: none; }
.vsl-player:fullscreen { width: 100vw; height: 100vh; border-radius: 0; aspect-ratio: auto; }
.vsl-note { max-width: 60ch; margin: 0 auto; text-align: center; font-size: 13px; line-height: 1.45; color: var(--fg-muted); }
#hero-usps { width: 100%; margin-top: 16px; border-radius: 0; box-shadow: none; }
#hero-usps .usp-band-inner { padding: 20px; }
@media (min-width: 820px) { #hero-usps .usp-band-inner { padding: 24px 40px; gap: 38px; } }
@media (max-width: 700px) { .vsl-hero { padding-top: 58px; } .vsl-wrap { transform: none; } .vsl-player { width: min(94vw, calc(max(260px, 100svh - 445px) * 16 / 9)); } }

/* ---------- Checkout (DealMaker handoff) ---------- */
.checkout-sec { overflow: hidden; padding: 74px 0 96px; }
.checkout-wrap { position: relative; z-index: 1; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 960px) { .checkout-grid { grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr); gap: 42px; } }
.checkout-copy { max-width: 390px; }
.checkout-copy .eyebrow { margin-bottom: 14px; }
.checkout-copy h2 { max-width: 11ch; color: #fff; font-size: clamp(32px, 4.4vw, 48px); line-height: 0.98; text-wrap: balance; }
.checkout-copy .checkout-sub { max-width: 31ch; margin-top: 16px; font-size: 15px; line-height: 1.55; color: var(--fg-muted); }
.checkout-legal-note { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--hair); color: rgba(255, 255, 255, 0.56); font-size: 11.5px; line-height: 1.5; }
.checkout-panel { min-width: 0; }
@media (max-width: 700px) { .checkout-sec { padding: 56px 0 84px; } .checkout-copy h2 { max-width: 14ch; } }

.checkout-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.checkout-head .eyebrow { display: block; }
.checkout-head h2 { color: #fff; }
.checkout-sub { margin-top: 14px; font-size: 15px; line-height: 1.55; color: var(--fg-muted); }

/* perks / bonus tiers ladder */
.perks { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.perk { position: relative; flex: 1 1 92px; min-width: 92px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left; padding: 11px 12px 10px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.035); transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease); }
button.perk { width: 100%; font: inherit; color: inherit; cursor: pointer; }
.perk:hover { border-color: rgba(101, 182, 119, 0.38); transform: translateY(-1px); }
.perk:focus-visible { outline: 2px solid var(--qnetic-green); outline-offset: 3px; }
.perk.is-selected { border-color: var(--qnetic-green); background: rgba(101, 182, 119, 0.13); box-shadow: inset 0 0 0 1px rgba(101, 182, 119, 0.42); }
.perk-inv { font-size: 11.5px; font-weight: 650; color: rgba(255, 255, 255, 0.64); }
.perk-bonus { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; color: #fff; }
.perk-note { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-faint); }
.perk-best { border-color: rgba(101, 182, 119, 0.55); background: rgba(101, 182, 119, 0.1); box-shadow: inset 0 0 0 1px rgba(101, 182, 119, 0.4); }
.perk-best .perk-bonus { color: var(--qnetic-green); }
.perk-badge { position: absolute; top: -8px; right: 8px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-navy); background: var(--qnetic-green); border-radius: 999px; padding: 3px 7px; white-space: nowrap; }

/* ---------- Checkout lock overlay ---------- */
.paypanel { position: relative; }
.paypanel-lock { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 30px; border-radius: 16px; background: rgba(14, 34, 48, 0.82); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.paypanel.unlocked .paypanel-lock { display: none; }
.pl-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(101, 182, 119, 0.15); color: var(--qnetic-green); }
.pl-icon svg { width: 23px; height: 23px; }
.paypanel-lock b { font-size: 17px; font-weight: 600; color: #fff; }
.paypanel-lock span { max-width: 42ch; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.7); }
.paypanel-lock #lock-count { color: var(--qnetic-green); font-variant-numeric: tabular-nums; }
.lock-skip { margin-top: 6px; border: 1px solid rgba(101, 182, 119, 0.45); border-radius: 999px; background: rgba(101, 182, 119, 0.1); color: var(--qnetic-green); cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; padding: 10px 16px; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.lock-skip:hover { background: var(--qnetic-green); color: var(--brand-navy); }
.lock-skip:focus-visible { outline: 2px solid var(--qnetic-green); outline-offset: 3px; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 20px; }
@media (min-width: 1024px) { .nav-inner { padding: 12px 40px; } }
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav-links { display: none; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; gap: 28px; } }
.nav-links a { font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.8); transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--qnetic-green); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-status { font-size: 13px; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--qnetic-green); flex: none; }
@media (max-width: 700px) { .nav-status { display: none; } }
/* Nav CTA: same .btn/.btn-primary system, nav-sized */
.btn.nav-cta { padding: 8px 20px; font-size: 14px; }

/* ---------- Buttons (rounded-full green pills) ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-sans); font-weight: 500; font-size: 15px; padding: 13px 28px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease); }
.btn-primary { background: var(--qnetic-green); color: var(--brand-navy); }
.btn-primary:hover { background: var(--qnetic-green-dark); color: #fff; }
.btn-ghost { background: transparent; color: rgba(255, 255, 255, 0.92); border-color: rgba(255, 255, 255, 0.3); }
.btn-ghost:hover { border-color: var(--qnetic-green); color: var(--qnetic-green); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ---------- Hero (page 1) ---------- */
.hero { position: relative; padding: 28px 0 64px; overflow: hidden; }
@media (min-width: 1024px) { .hero { padding: 40px 0 96px; } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { font-weight: 700; }
.hero .lede { margin-bottom: 4px; max-width: 56ch; }
.hero-media { position: relative; }

/* centered VSL hero (eyebrow + headline + subline above a compact centered video, opt-in below) */
.hero-centered { text-align: center; padding: 16px 0 56px; }
@media (min-width: 1024px) { .hero-centered { padding: 22px 0 64px; } }
.hero-col { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.hero-centered h1 { max-width: 100%; font-size: clamp(26px, 3.2vw, 40px); margin: 0 auto 16px; text-wrap: balance; }
/* First (white) sentence gets its own line on desktop; the accent clause breaks below */
.hero-centered h1 .accent { display: block; max-width: 30ch; margin: 0 auto; }
.hero-centered .lede { max-width: 64ch; margin: 0 auto; font-size: 17px; }
.hero-centered .hero-trust { margin-top: 16px; }
.hero-centered .hero-media { margin-top: 26px; }
.hero-centered .videoframe { max-width: 680px; margin: 0 auto; }
.hero-centered .video-cap { justify-content: center; margin-top: 10px; }
.hero-cta { margin-top: 26px; }
.hero-cta-note { margin-top: 13px; font-size: 13px; color: var(--fg-muted); }
.vsl-wrap .hero-cta { display: flex; flex-direction: column; align-items: center; margin-top: 0; }
.vsl-wrap .hero-cta .btn-lg { padding: 11px 28px; font-size: 15px; }
.vsl-wrap .hero-cta-note { margin-top: 7px; font-size: 12px; }

/* the-deal / pricing terms */
.deal-layout { display: grid; gap: 34px; align-items: start; }
@media (min-width: 980px) { .deal-layout { grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr); gap: 54px; } }
.deal-copy { max-width: 420px; }
.deal-copy .eyebrow { margin-bottom: 18px; }
.deal-copy h2 { max-width: 11ch; color: #fff; }
.deal-copy .sh-body { margin-top: 20px; color: var(--fg-muted); font-size: 17px; line-height: 1.55; }
.deal-ticket { display: grid; gap: 0; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 18px; overflow: hidden; background: rgba(12, 38, 54, 0.82); box-shadow: 0 36px 90px -48px rgba(3, 13, 20, 0.9); }
@media (min-width: 820px) { .deal-ticket { grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr); } }
.deal-main { display: grid; align-content: center; min-height: 168px; padding: 28px 30px; border-bottom: 1px solid var(--hair); background: linear-gradient(180deg, rgba(101, 182, 119, 0.16), rgba(101, 182, 119, 0.04)); }
@media (min-width: 820px) { .deal-main { border-right: 1px solid var(--hair); border-bottom: 0; } }
.deal-main span { color: rgba(255, 255, 255, 0.62); font-size: 12px; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.deal-main b { margin-top: 8px; color: #fff; font-size: clamp(46px, 6vw, 76px); font-weight: 650; letter-spacing: -0.055em; line-height: 0.92; font-variant-numeric: tabular-nums; }
.deal-terms { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .deal-terms { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.deal-term { min-width: 0; padding: 22px 16px 20px; border-bottom: 1px solid var(--hair); border-right: 0; background: transparent; text-align: left; }
@media (min-width: 640px) { .deal-term { border-right: 1px solid var(--hair); } .deal-term:last-child { border-right: 0; } }
.deal-term b { display: block; font-size: clamp(19px, 2vw, 26px); font-weight: 650; letter-spacing: -0.035em; color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.deal-term span { display: block; margin-top: 6px; font-size: 12px; color: var(--fg-muted); }
.deal-bonus-row { grid-column: 1 / -1; display: grid; gap: 14px; padding: 20px 24px 24px; border-bottom: 1px solid var(--hair); }
.deal-bonus-label { color: var(--qnetic-green); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.deal-cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 24px 22px; }
.deal-cta-note { font-size: 13px; color: var(--fg-faint); }
.machine-cta { margin-top: 26px; display: flex; justify-content: center; }
.section-cta { margin-top: 30px; display: flex; justify-content: center; }
.section-cta .btn { min-width: 260px; }
@media (max-width: 639px) { .section-cta .btn { width: 100%; } }
.hero-centered .hero-field {
  width: 100%; opacity: 0.14;
  -webkit-mask-image: radial-gradient(125% 80% at 50% 0%, #000 24%, transparent 72%);
  mask-image: radial-gradient(125% 80% at 50% 0%, #000 24%, transparent 72%);
}

.videoframe { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: var(--shadow-card-deck); }
.videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { margin-top: 14px; font-size: 13px; color: var(--fg-faint); display: flex; align-items: center; gap: 8px; }

/* opt-in card */
.optin { margin-top: 28px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--hair); border-radius: 16px; padding: 24px; }
.optin h3 { font-size: 19px; margin-bottom: 4px; }
.optin p.sub { font-size: 13.5px; color: var(--fg-muted); margin-bottom: 18px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 12.5px; color: var(--fg-muted); font-weight: 400; }
.field input { font: inherit; font-size: 15px; color: #fff; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--hair); border-radius: 999px; padding: 13px 18px; width: 100%; transition: border-color 0.2s var(--ease); }
.field input::placeholder { color: var(--fg-faint); }
.field input:focus { outline: none; border-color: var(--qnetic-green); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 16px; font-size: 12px; color: var(--fg-faint); line-height: 1.45; }
.consent input { margin-top: 2px; width: 15px; height: 15px; flex: none; accent-color: var(--qnetic-green); }
.optin-foot { margin-top: 12px; font-size: 11.5px; color: var(--fg-faint); text-align: center; }

/* ---------- Proof strip ---------- */
.proof-lead { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); text-align: center; margin-bottom: 24px; }
.proof-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px; }
.logo-chip { background: #fff; border-radius: 12px; padding: 14px 22px; display: grid; place-items: center; }
.logo-chip img { height: 28px; width: auto; object-fit: contain; }
.proof-stat { font-size: 15px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.proof-stat strong { color: var(--qnetic-green-dark); font-weight: 700; font-size: 18px; }
.proof-sep { width: 1px; height: 22px; background: var(--hair); }

/* ---------- Why-it-wins: product render + editorial benefit list ---------- */
.bw-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 40px; }
@media (min-width: 900px) { .bw-split { grid-template-columns: 0.82fr 1.18fr; gap: 60px; } }
.bw-visual {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5;
  display: grid; place-items: center; padding: 36px; background-color: var(--brand-navy);
  background-image:
    radial-gradient(ellipse 90% 65% at 50% 8%, rgba(101, 182, 119, 0.24), transparent 70%),
    radial-gradient(ellipse 80% 60% at 18% 96%, rgba(41, 94, 128, 0.4), transparent 70%);
}
.bw-visual img { width: auto; max-height: 92%; max-width: 64%; filter: drop-shadow(0 34px 56px rgba(0, 0, 0, 0.55)); }
.bw-list { display: grid; }
.bw-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--hair); }
.bw-item:first-child { border-top: 0; padding-top: 0; }
.bw-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: rgba(62, 130, 77, 0.1); color: var(--qnetic-green-dark); display: grid; place-items: center; }
.bw-ic svg { width: 21px; height: 21px; }
.bw-item p { font-size: 16.5px; line-height: 1.5; color: var(--ink-soft); margin: 0; padding-top: 7px; }
.bw-item .lead { color: var(--qnetic-green-dark); font-weight: 700; }
.backed-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 16px; margin-top: 52px; }
.backed-row .lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-right: 4px; }

/* press marquee (as featured in) - matches the live qnetic-marquee, on white */
.pm-section { background: #fff; padding: 34px 0; border-bottom: 1px solid rgba(10, 10, 10, 0.06); }
.pm-wrap { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pm-track { display: flex; width: max-content; align-items: center; margin: 0; padding: 4px 0; list-style: none; animation: pm-scroll 48s linear infinite; }
.pm-wrap:hover .pm-track { animation-play-state: paused; }
.pm-track li { flex-shrink: 0; display: flex; padding: 0 7px; }
.press-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(10, 10, 10, 0.08); border-radius: 999px; padding: 6px 15px 6px 7px; box-shadow: 0 1px 2px rgba(10, 10, 10, 0.05); }
.press-chip img { height: 18px; width: 18px; object-fit: contain; border-radius: 4px; }
.press-chip span { font-size: 12.5px; font-weight: 600; color: var(--brand-navy); letter-spacing: -0.01em; white-space: nowrap; }
@keyframes pm-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pm-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* proof marquee below VSL */
.usp-band { overflow: hidden; background: var(--qnetic-green-dark); color: #eef8f1; }
.usp-band-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: row; align-items: center; gap: 16px; }
.usp-band-label { flex: none; white-space: nowrap; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.35; color: rgba(255, 255, 255, 0.82); }
@media (max-width: 819px) { .usp-band-label { font-size: 10.5px; letter-spacing: 0.14em; } }
.usp-marquee { flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 92%, transparent); }
.usp-track { display: flex; width: max-content; align-items: center; margin: 0; padding: 0; list-style: none; animation: pm-scroll 42s linear 2s infinite; }
.usp-marquee:hover .usp-track { animation-play-state: paused; }
.usp-track li { flex: none; display: inline-flex; align-items: baseline; gap: 8px; padding: 0 36px; white-space: nowrap; }
.usp-track li::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.58); flex: none; transform: translateY(-1px); }
.usp-track strong { color: #fff; font-size: clamp(15px, 1.35vw, 18px); font-weight: 850; line-height: 1; letter-spacing: -0.02em; }
.usp-track span { color: rgba(238, 248, 241, 0.74); font-size: 11px; font-weight: 750; line-height: 1; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 700px) {
  .usp-track { animation-duration: 36s; }
  .usp-track li { padding: 0 24px; }
  .usp-track strong { font-size: 14px; }
  .usp-track span { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) { .usp-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 12px 22px; } }

/* press band (green full-bleed, left label + white logo slider) */
.press-band { background: var(--qnetic-green-dark); overflow: hidden; }
.press-band-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 14px; padding: 20px; }
@media (min-width: 820px) { .press-band-inner { flex-direction: row; align-items: center; gap: 40px; padding: 22px 40px; } }
.press-band-label { flex: none; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.35; color: rgba(255, 255, 255, 0.9); }
.press-band-marquee { flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 90%, transparent); }
.press-band .pm-track { padding: 0; gap: 0; animation-duration: 22s; }
.press-band .pm-track li { flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 0 46px; }
.press-band .pm-track img { height: 36px; width: auto; object-fit: contain; opacity: 0.95; }
.press-band-muted { background: #526168; border: 0; }
.press-band-muted .press-band-label { color: rgba(255, 255, 255, 0.78); }
.press-band-muted .pm-track img { opacity: 0.96; }
@media (max-width: 700px) { .press-band .pm-track img { height: 30px; } .press-band .pm-track li { padding: 0 30px; } }

/* logo marquee (pedigree) - uniform white logos on the navy team band */
.lm-wrap { margin-top: 30px; }
.lm-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; }
.logo-marquee { overflow: hidden; }
.lm-inner { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.lm-track { display: flex; align-items: center; gap: 60px; width: max-content; animation: pm-scroll 40s linear infinite; }
.logo-marquee:hover .lm-track { animation-play-state: paused; }
.lm-track img { height: 26px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; }
@media (prefers-reduced-motion: reduce) { .lm-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 26px 48px; } }

/* ---------- Split header (live pattern) ---------- */
.split-head { display: grid; gap: 24px; margin-bottom: 48px; }
@media (min-width: 1024px) { .split-head { grid-template-columns: repeat(12, 1fr); gap: 48px; } .split-head h2 { grid-column: span 6; } .split-head h2:only-child { grid-column: span 9; max-width: 24ch; } .split-head .sh-body { grid-column: span 6; } }
.split-head .sh-body { color: var(--fg-muted); font-size: 18px; line-height: 1.6; }

/* editorial split */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } .split.rev { grid-template-columns: 0.9fr 1.1fr; } }
.media-shot { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card-deck); }
.media-shot img, .media-shot video { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.machine-copy { padding: clamp(24px, 3vw, 34px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)); box-shadow: 0 30px 80px -54px rgba(0, 0, 0, 0.92); }
.machine-copy .eyebrow { margin-bottom: 14px; }
.machine-copy h2 { max-width: 14ch; font-size: clamp(31px, 4.2vw, 50px); line-height: 1.01; text-wrap: balance; }
.machine-copy .body { margin-top: 14px; max-width: 54ch; font-size: 16px; line-height: 1.55; }
.machine-copy .machine-cta { justify-content: flex-start; }

/* spec strip */
.spec-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 24px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; overflow: hidden; background: rgba(10, 31, 43, 0.36); }
.spec { background: transparent; padding: 19px 20px; border-right: 1px solid rgba(255, 255, 255, 0.11); border-bottom: 1px solid rgba(255, 255, 255, 0.11); }
.spec:nth-child(2n) { border-right: 0; }
.spec:nth-last-child(-n + 2) { border-bottom: 0; }
.s-light .spec { background: #fff; }
.spec .v { font-weight: 650; font-size: clamp(24px, 2.8vw, 30px); letter-spacing: -0.035em; color: #fff; }
.spec .k { font-size: 13px; color: var(--fg-muted); margin-top: 5px; }

/* ---------- Reasons grid (live 5-up) ---------- */
.reasons-head { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: end; margin-bottom: 44px; }
@media (min-width: 768px) { .reasons-head { grid-template-columns: 1fr 1fr; } .reasons-head p { justify-self: end; text-align: right; } }
.reasons-head p { max-width: 42ch; color: var(--fg-muted); font-size: 16px; }
.reason-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .reason-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reason-grid { grid-template-columns: repeat(5, 1fr); } }
.reason { display: flex; flex-direction: column; gap: 12px; border-radius: 16px; border: 1px solid rgba(101, 182, 119, 0.14); background: var(--brand-navy); padding: 24px; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.reason:hover { border-color: rgba(101, 182, 119, 0.4); background: var(--navy-soft); }
.reason .badge { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(101, 182, 119, 0.14); color: var(--qnetic-green); font-weight: 600; font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.reason h3 { font-size: 16px; font-weight: 600; line-height: 1.25; color: #fff; margin-top: 2px; }
.reason p { font-size: 13.5px; color: rgba(255, 255, 255, 0.72); line-height: 1.55; }
.reason p .em { color: var(--qnetic-green); font-weight: 600; }

/* ---------- Reasons bento (feature stat + varied tiles) ---------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .bento { grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 1fr 1fr; } .bento .feat { grid-column: 1; grid-row: 1 / span 2; } }
.bento-card { position: relative; display: flex; flex-direction: column; gap: 9px; border-radius: 18px; padding: 24px; background: var(--brand-navy); border: 1px solid rgba(101, 182, 119, 0.14); transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.bento-card:hover { border-color: rgba(101, 182, 119, 0.4); background: var(--navy-soft); }
.bento-card h3 { font-size: 16px; font-weight: 600; line-height: 1.25; color: #fff; }
.bento-card > p { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); }
.bento-card .em { color: var(--qnetic-green); font-weight: 600; }
.bento-num { font-size: 34px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--qnetic-green); }
.bento-link { margin-top: auto; padding-top: 8px; font-size: 12.5px; font-weight: 600; color: var(--qnetic-green); display: inline-flex; align-items: center; gap: 6px; }
.bento-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.bento .feat { justify-content: center; gap: 12px; padding: 34px 32px; border-color: rgba(101, 182, 119, 0.3);
  background-color: var(--brand-navy-deep);
  background-image: radial-gradient(ellipse 100% 70% at 15% 100%, rgba(101, 182, 119, 0.2), transparent 68%); }
.bento .feat:hover { background-color: var(--brand-navy-deep); }
.bento-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--qnetic-green); }
.bento-stat { font-size: clamp(52px, 6.5vw, 74px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.92; color: #fff; }
.bento-lead { font-size: 15.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.86); max-width: 32ch; }
.bento-note { font-size: 12px; color: rgba(255, 255, 255, 0.5); }

/* backed-by chip row (opaque marks render correctly on white chips) */
.backers { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.backers .lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-right: 4px; }
.backers .chip { display: inline-flex; align-items: center; gap: 11px; background: #fff; border: 1px solid rgba(10,10,10,0.08); border-radius: 12px; padding: 9px 17px 9px 11px; box-shadow: 0 1px 2px rgba(10,10,10,0.05); }
.backers .chip img { height: 26px; width: 26px; border-radius: 7px; object-fit: contain; }
.backers .chip .nm { display: grid; line-height: 1.2; }
.backers .chip .nm b { font-size: 13.5px; font-weight: 600; color: var(--brand-navy); letter-spacing: -0.01em; }
.backers .chip .nm small { font-size: 11px; font-weight: 500; color: var(--fg-faint); }

/* pull quote */
.pullquote { margin-top: 56px; max-width: 900px; }
.pullquote blockquote { font-weight: 500; letter-spacing: -0.01em; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.32; border-left: 3px solid var(--qnetic-green); padding-left: 26px; }
.s-light .pullquote blockquote { border-left-color: var(--qnetic-green-dark); }
.pullquote cite { display: block; margin-top: 16px; padding-left: 29px; font-style: normal; font-size: 14px; color: var(--fg-muted); }

/* competitive advantage radar */
.radar-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; margin-top: 12px; }
@media (min-width: 1024px) { .radar-grid { grid-template-columns: 0.92fr 1.08fr; gap: 64px; } }
.radar-panel { background: var(--paper-soft); border: 1px solid rgba(10,10,10,0.05); border-radius: 16px; padding: 28px; }
.radar-panel img { width: 100%; height: auto; }
@media (min-width: 1024px) { .radar-panel { padding: 40px; } }
.radar-copy h3 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 500; color: var(--brand-navy); letter-spacing: -0.02em; }
.radar-copy > p { margin-top: 14px; }
.cmp-list { margin-top: 28px; display: grid; gap: 0; }
.cmp-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(10,10,10,0.09); }
.cmp-row:first-child { border-top: 0; }
.cmp-row .k { font-size: 14.5px; font-weight: 500; color: var(--brand-navy); }
.cmp-row .k small { display: block; font-size: 12.5px; font-weight: 400; color: var(--fg-faint); margin-top: 3px; letter-spacing: 0; }
.cmp-row .v { font-size: 14px; font-weight: 600; color: var(--qnetic-green-dark); white-space: nowrap; }

/* ---------- Webinar / video section ---------- */
.webinar-head { text-align: center; max-width: 760px; margin: 0 auto 8px; }
.replay-badge { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--qnetic-green); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.webinar-player { position: relative; aspect-ratio: 16 / 9; max-width: 1024px; margin: 0 auto; border-radius: 16px; overflow: hidden; background: var(--brand-navy-deep); box-shadow: var(--shadow-card-deck); display: grid; place-items: center; }
.webinar-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.webinar-player .placeholder { text-align: center; padding: 20px; }
.play-btn { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; background: rgba(255, 255, 255, 0.95); display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); transition: transform 0.25s var(--ease); }
.webinar-player:hover .play-btn { transform: scale(1.05); }
.play-btn svg { width: 28px; height: 28px; margin-left: 3px; }
.webinar-player .ph-title { color: #fff; font-weight: 500; font-size: 17px; margin-bottom: 4px; }
.webinar-player .ph-note { font-size: 12.5px; color: var(--fg-faint); }

/* ---------- Invest: investor-type pills (live InvestorTypeModal) ---------- */
.invest-head { text-align: center; max-width: 620px; margin: 56px auto 28px; }
.invest-head h3 { font-size: clamp(22px, 2.6vw, 28px); }
.invest-head p { color: var(--fg-muted); margin-top: 10px; font-size: 15px; }
.track-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
@media (min-width: 640px) { .track-grid { grid-template-columns: 1fr 1fr; } }
.track-card { position: relative; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--hair); border-radius: 16px; padding: 26px 26px 28px; cursor: pointer; text-align: left; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.track-card:hover { border-color: rgba(101, 182, 119, 0.5); background: rgba(255, 255, 255, 0.055); }
.track-card.active { border-color: var(--qnetic-green); background: rgba(101, 182, 119, 0.09); box-shadow: inset 0 0 0 1px rgba(101, 182, 119, 0.45); }
.track-pill { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--hair); border-radius: 999px; padding: 5px 13px; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 16px; transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease); }
.track-pill::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; opacity: 0.55; }
.track-card.active .track-pill { border-color: rgba(101, 182, 119, 0.45); background: rgba(101, 182, 119, 0.14); color: var(--qnetic-green); }
.track-card.active .track-pill::before { opacity: 1; }
.track-min { font-weight: 500; font-size: 32px; letter-spacing: -0.03em; line-height: 1; }
.track-min span { font-size: 14px; font-weight: 400; color: var(--fg-muted); letter-spacing: 0; }
.track-desc { font-size: 13px; color: var(--fg-muted); margin-top: 12px; line-height: 1.5; }
.track-card .track-check { position: absolute; top: 22px; right: 22px; width: 20px; height: 20px; border-radius: 999px; border: 1.5px solid var(--hair); display: grid; place-items: center; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.track-card .track-check svg { width: 11px; height: 11px; opacity: 0; transition: opacity 0.15s var(--ease); }
.track-card.active .track-check { border-color: var(--qnetic-green); background: var(--qnetic-green); }
.track-card.active .track-check svg { opacity: 1; }

/* payment panel */
.paypanel { max-width: 760px; margin: 24px auto 0; background: var(--brand-navy-deep); border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card-deck); }
.paypanel-head { padding: 24px 28px; border-bottom: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.paypanel-head h3 { font-size: 20px; }
.terms { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.term { font-size: 13px; color: var(--fg-muted); }
.term b { color: #fff; font-weight: 600; display: block; font-size: 16px; }
.paypanel-body { padding: 28px; }

/* direct checkout handoff */
.dm-frame { display: grid; gap: 12px; }
.checkout-handoff { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 0; border: 0; border-radius: 0; background: transparent; text-align: left; }
.checkout-handoff[hidden] { display: none; }
.checkout-handoff b { color: #fff; font-size: 18px; font-weight: 650; letter-spacing: -0.01em; }
.checkout-handoff p { max-width: 38ch; color: var(--fg-muted); font-size: 13px; line-height: 1.45; }
.checkout-direct-note { margin-top: 2px; color: var(--fg-faint) !important; font-size: 12px !important; }
.checkout-handoff .btn { margin-top: 0; min-width: 230px; }

.checkout-panel .paypanel { max-width: none; margin: 0; border-radius: 16px; background: rgba(13, 42, 57, 0.74); box-shadow: 0 24px 70px -42px rgba(3, 13, 20, 0.88); }
.checkout-panel .paypanel-head { display: grid; grid-template-columns: 1fr; align-items: center; gap: 18px; padding: 22px 24px; border-bottom-color: rgba(255, 255, 255, 0.1); }
@media (min-width: 820px) { .checkout-panel .paypanel-head { grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1.48fr); } }
.checkout-panel .paypanel-head h3 { font-size: 19px; line-height: 1.1; }
.checkout-panel .terms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; width: 100%; }
@media (min-width: 680px) { .checkout-panel .terms { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.checkout-panel .term { color: rgba(255, 255, 255, 0.68); font-size: 12.5px; line-height: 1.35; }
.checkout-panel .term b { font-size: 17px; letter-spacing: -0.02em; }
.checkout-panel .paypanel-body { padding: 21px 24px 22px; }
@media (max-width: 700px) {
  .checkout-panel .paypanel-head, .checkout-panel .paypanel-body { padding-left: 20px; padding-right: 20px; }
  .checkout-handoff { grid-template-columns: 1fr; }
  .checkout-handoff .btn { width: 100%; min-width: 0; }
}

/* ---------- Press strip (labeled chips, light band) ---------- */
.press-lead { text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 8px; }

/* ---------- Backers (SOSV lead bar + Kingscrowd roundtable) ---------- */
.bk-lead { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid rgba(10,10,10,0.06); border-radius: 16px; padding: 20px 24px; box-shadow: 0 1px 3px rgba(10,10,10,0.04); }
@media (min-width: 640px) { .bk-lead { flex-direction: row; align-items: center; gap: 22px; } }
.bk-lead > img { height: 46px; width: 46px; flex: none; border-radius: 12px; object-fit: contain; }
.bk-lead-main { flex: 1; }
.bk-lead-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.bk-lead-top b { font-size: 18px; font-weight: 700; color: var(--brand-navy); letter-spacing: -0.01em; }
.bk-tag { font-size: 11.5px; font-weight: 700; color: var(--qnetic-green-dark); background: rgba(101,182,119,0.13); border-radius: 999px; padding: 3px 11px; }
.bk-lead-main > p { margin-top: 5px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); max-width: 62ch; }
.bk-amount { font-size: 19px; font-weight: 700; color: var(--qnetic-green-dark); flex: none; }
@media (min-width: 640px) { .bk-amount { text-align: right; } }
.bk-figure { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
@media (min-width: 900px) { .bk-figure { grid-template-columns: 1fr 1fr; gap: 40px; } }
.bk-quote-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bk-quote-head img { height: 40px; width: 40px; object-fit: contain; }
.bk-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--qnetic-green-dark); background: rgba(101,182,119,0.13); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.bk-quote blockquote { margin-top: 18px; font-size: 17px; line-height: 1.55; color: var(--ink); }
.bk-quote figcaption { margin-top: 18px; border-top: 1px solid rgba(10,10,10,0.1); padding-top: 15px; }
.bk-quote figcaption b { font-size: 14px; font-weight: 700; color: var(--brand-navy); display: block; }
.bk-quote figcaption span { font-size: 12px; color: var(--ink-soft); }

/* ---------- Validation (single navy card, dividered) ---------- */
.val-card { background: var(--brand-navy); border-radius: 22px; padding: 34px 26px; }
@media (min-width: 1024px) { .val-card { padding: 44px 40px; } }
.val-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--qnetic-green); margin-bottom: 28px; }
.val-row { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .val-row { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (min-width: 1024px) { .val-row { grid-template-columns: repeat(5, 1fr); gap: 0; } }
.val { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
@media (min-width: 1024px) { .val { padding: 0 26px; } .val:first-child { padding-left: 0; } .val + .val { border-left: 1px solid rgba(255,255,255,0.1); } }
.val .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(101,182,119,0.15); color: var(--qnetic-green); display: grid; place-items: center; }
.val .ic svg { width: 22px; height: 22px; }
.val b { font-size: 15px; font-weight: 700; color: #fff; }
.val p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.65); }
.val-dl { display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 12px; font-weight: 600; color: var(--qnetic-green); }
.val-dl:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Comparison table (Qnetic vs lithium-ion) ---------- */
.cmp-table { width: 100%; }
.cmp-th, .cmp-tr { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 12px; }
.cmp-th { padding-bottom: 10px; }
.cmp-th span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.cmp-th .q { color: var(--qnetic-green-dark); }
.cmp-th .l { color: var(--ink-soft); }
.cmp-tr { align-items: start; padding: 14px 0; border-top: 1px solid rgba(10,10,10,0.1); }
.cmp-tr .d { font-size: 13.5px; font-weight: 600; color: var(--brand-navy); }
.cmp-tr .q, .cmp-tr .l { display: flex; gap: 7px; font-size: 13px; line-height: 1.4; }
.cmp-tr .q { color: var(--qnetic-green-dark); font-weight: 500; }
.cmp-tr .l { color: var(--ink-soft); }
.cmp-tr i { font-style: normal; flex: none; margin-top: 1px; }
.cmp-tr .q i { color: var(--qnetic-green); font-weight: 700; }
.cmp-tr .l i { opacity: 0.5; }

/* ---------- Investor quotes (lead feature + crowd, dark) ---------- */
.iq-lead { margin-top: 44px; display: grid; grid-template-columns: 1fr; gap: 26px; background: rgba(255,255,255,0.04); border: 1px solid var(--hair); border-radius: 22px; padding: 30px; }
@media (min-width: 1024px) { .iq-lead { grid-template-columns: 220px 1fr; gap: 44px; align-items: center; padding: 44px; } }
.iq-lead-who { display: flex; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .iq-lead-who { flex-direction: column; align-items: flex-start; gap: 18px; } }
.iq-ava { width: 64px; height: 64px; border-radius: 999px; flex: none; overflow: hidden; display: grid; place-items: center; background: rgba(101,182,119,0.16); color: var(--qnetic-green); font-weight: 700; font-size: 20px; box-shadow: 0 0 0 2px rgba(101,182,119,0.4); }
.iq-ava img { width: 100%; height: 100%; object-fit: cover; }
.iq-pill { display: inline-block; background: var(--qnetic-green); color: var(--brand-navy); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; border-radius: 999px; padding: 4px 11px; }
.iq-name { margin-top: 12px; font-size: 16px; font-weight: 700; color: #fff; }
.iq-amt { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.iq-mark { width: 38px; height: auto; color: var(--qnetic-green); margin-bottom: 14px; }
.iq-lead-body blockquote { font-size: 20px; line-height: 1.5; color: rgba(255,255,255,0.95); }
@media (min-width: 640px) { .iq-lead-body blockquote { font-size: 22px; } }
.iq-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .iq-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .iq-grid { grid-template-columns: repeat(3, 1fr); } }
.iq-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border: 1px solid var(--hair); border-radius: 16px; padding: 22px 24px; }
.iq-q { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.88); flex: 1; }
.iq-by { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.iq-mono { width: 36px; height: 36px; border-radius: 999px; flex: none; overflow: hidden; display: grid; place-items: center; background: rgba(101,182,119,0.14); color: var(--qnetic-green); font-weight: 600; font-size: 12.5px; }
.iq-mono img { width: 100%; height: 100%; object-fit: cover; }
.iq-who { display: grid; line-height: 1.3; }
.iq-who b { font-size: 13.5px; font-weight: 600; color: #fff; }
.iq-who small { font-size: 11.5px; color: var(--fg-muted); }

/* pedigree marquee reuse */
.pedigree { margin-top: 52px; }
.pedigree .lm-label { text-align: center; }

/* ---------- Team (LP Team: bio cards + pedigree logos + LinkedIn) ---------- */
.tm-head { display: grid; gap: 18px; margin-bottom: 48px; }
@media (min-width: 1024px) { .tm-head { grid-template-columns: repeat(12, 1fr); gap: 48px; align-items: end; } .tm-head h2 { grid-column: span 7; } .tm-intro { grid-column: span 5; } }
.tm-head h2 { color: var(--brand-navy); font-size: clamp(30px, 3.6vw, 44px); }
.tm-intro { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.tm-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
.tm-card { display: flex; flex-direction: column; gap: 22px; border: 1px solid rgba(10, 10, 10, 0.1); background: #fff; border-radius: 16px; padding: 24px; }
@media (min-width: 560px) { .tm-card { flex-direction: row; gap: 26px; padding: 30px; } }
.tm-photo { width: 116px; height: 116px; flex: none; border-radius: 999px; object-fit: cover; }
@media (min-width: 560px) { .tm-photo { width: 148px; height: 148px; } }
.tm-body { flex: 1; min-width: 0; }
.tm-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tm-body h3 { font-size: 18px; font-weight: 600; letter-spacing: 0.03em; color: var(--brand-navy); }
.tm-role { margin-top: 4px; font-size: 13.5px; color: var(--qnetic-green-dark); }
.tm-li { flex: none; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-soft); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.tm-li:hover { background: rgba(10, 10, 10, 0.05); color: #0a66c2; }
.tm-bio { margin-top: 14px; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.tm-logos { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.tm-logos img { height: 20px; width: auto; max-width: 5.5rem; object-fit: contain; filter: grayscale(1) brightness(0.4); }

/* ---------- Roadmap vertical (LP Milestones) ---------- */
.rmv { position: relative; list-style: none; margin: 0; padding: 0; }
.rmv-item { position: relative; display: grid; gap: 10px; border-left: 1px solid rgba(255, 255, 255, 0.15); padding: 0 0 40px 30px; }
.rmv-item:last-child { border-color: transparent; padding-bottom: 0; }
@media (min-width: 640px) { .rmv-item { grid-template-columns: 8rem 1fr; gap: 32px; padding-left: 40px; } }
.rmv-dot { position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 999px; transform: translateX(-50%); background: rgba(255, 255, 255, 0.4); }
.rmv-dot.first { background: var(--qnetic-green); box-shadow: 0 0 0 4px rgba(101, 182, 119, 0.2); }
.rmv-date { font-size: 18px; font-weight: 700; color: var(--qnetic-green); font-variant-numeric: tabular-nums; }
.rmv-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.rmv-items li { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.rmv-disc { margin-top: 44px; font-size: 12px; max-width: 80ch; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }

/* ---------- FAQ (LP Faq: split heading + numbered cards) ---------- */
.faq-split { display: grid; gap: 40px; }
@media (min-width: 1024px) { .faq-split { grid-template-columns: repeat(12, 1fr); gap: 64px; } .faq-head { grid-column: span 4; position: sticky; top: 96px; align-self: start; } .faq-list { grid-column: span 8; } }
.faq-head h2 { color: var(--brand-navy); font-size: clamp(30px, 3.6vw, 44px); }
.faq-head .lbl { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
.faq-list { display: grid; gap: 12px; }
.faq-list .faq-item { border: 1px solid rgba(10, 10, 10, 0.1); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-list .faq-item summary { display: flex; align-items: flex-start; gap: 16px; padding: 19px 22px; cursor: pointer; list-style: none; }
.faq-list .faq-item summary::-webkit-details-marker { display: none; }
.faq-list .faq-item summary .n { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; margin-top: 2px; }
@media (max-width: 560px) { .faq-list .faq-item summary .n { display: none; } }
.faq-list .faq-item summary .q { flex: 1; font-size: 16px; font-weight: 500; color: var(--brand-navy); line-height: 1.4; }
.faq-list .faq-item summary::after { content: "+"; flex: none; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; border: 1px solid rgba(10, 10, 10, 0.12); color: var(--brand-navy); font-size: 19px; line-height: 1; transition: transform 0.2s var(--ease); }
.faq-list .faq-item[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq-list .faq-item .a { border-top: 1px solid rgba(10, 10, 10, 0.06); padding: 15px 22px 22px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: none; }
.faq-list .faq-item .a p { max-width: 72ch; }
.faq-list .faq-item .a a { color: var(--qnetic-green-dark); text-decoration: underline; text-underline-offset: 3px; }
.faq-main { display: block; }
@media (min-width: 1024px) { .faq-main { grid-column: span 8; } }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.faq-tab { border-radius: 999px; border: 1px solid rgba(10, 10, 10, 0.1); background: #fff; color: var(--ink-soft); padding: 8px 16px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.faq-tab:hover { color: var(--brand-navy); }
.faq-tab.is-active { background: var(--brand-navy); color: #fff; border-color: transparent; }
.faq-cat-heading { margin: 0 0 20px; font-size: clamp(20px, 2.4vw, 24px); font-weight: 500; color: var(--qnetic-green-dark); }
.faq-panel[hidden] { display: none; }

/* ---------- Roadmap (horizontal timeline, live pattern) ---------- */
.rm-timeline { position: relative; display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; list-style: none; }
.rm-timeline > .rm-item { list-style: none; }
@media (min-width: 1024px) { .rm-timeline { grid-template-columns: repeat(5, 1fr); gap: 32px; } }
.rm-line { display: none; }
@media (min-width: 1024px) { .rm-line { display: block; position: absolute; left: 14px; top: 14px; height: 2px; width: 100%; background: rgba(101, 182, 119, 0.3); } }
.rm-item { position: relative; }
.rm-marker { display: flex; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .rm-marker { display: block; } }
.rm-dot { width: 28px; height: 28px; border-radius: 999px; border: 2px solid var(--qnetic-green); background: #fff; display: grid; place-items: center; flex: none; }
.rm-dot span { width: 8px; height: 8px; border-radius: 999px; background: var(--qnetic-green); }
.rm-date { font-size: 22px; font-weight: 500; color: var(--brand-navy); }
@media (min-width: 1024px) { .rm-date { margin-top: 16px; font-size: 26px; } }
.rm-items { margin-top: 12px; display: grid; gap: 8px; }
.rm-items li { list-style: none; border: 1px solid rgba(10, 10, 10, 0.1); background: rgba(255, 255, 255, 0.8); border-radius: 12px; padding: 12px; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
@media (min-width: 768px) { .team { grid-template-columns: repeat(4, 1fr); } }
.member .avatar { width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.05); margin-bottom: 14px; border: 1px solid var(--hair); }
.member .avatar img { width: 100%; height: 100%; object-fit: cover; }
.member .nm { font-weight: 500; font-size: 17px; }
.member .rl { font-size: 13px; color: var(--fg-muted); margin-top: 3px; }

/* ---------- Risk ---------- */
.risk { background: var(--paper-soft); border: 1px solid var(--hair); border-radius: 16px; padding: 30px; margin-top: 22px; }
.risk h3 { font-size: 19px; margin-bottom: 14px; }
.risk ul { list-style: none; display: grid; gap: 12px; }
.risk li { font-size: 15px; color: var(--fg-muted); padding-left: 24px; position: relative; }
.risk li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 999px; background: var(--qnetic-green-dark); }

/* ---------- CTA ---------- */
.cta-strip { text-align: center; }
.cta-strip h2 { margin-bottom: 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer (live black legal footer) ---------- */
footer { background: #000; color: var(--paper); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 64px 20px; }
@media (min-width: 1024px) { .footer-inner { padding: 80px 40px; } }
.footer-top { display: flex; flex-direction: column; gap: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 32px; }
@media (min-width: 640px) { .footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-top img { height: 28px; width: auto; }
.footer-grid { display: grid; gap: 40px; padding: 40px 0; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(12, 1fr); } .footer-grid .fg-sources { grid-column: span 3; } .footer-grid .fg-legal { grid-column: span 9; } }
.fg-sources p.h { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.fg-sources ol { margin-top: 16px; display: grid; gap: 8px; list-style: none; font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.fg-sources a:hover { color: #fff; }
.fg-sources .num { font-family: ui-monospace, monospace; margin-right: 8px; }
.fg-legal { display: grid; gap: 24px; }
.fg-legal p { font-size: 12px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }
.fg-legal a { text-decoration: underline; text-underline-offset: 4px; }
.fg-legal a:hover { color: #fff; }
.footer-copy { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.6); }

/* ---------- CRO additions ---------- */
/* above-fold trust line */
.hero-trust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; align-items: center; font-size: 14px; color: var(--fg-muted); }
.hero-trust strong { color: var(--qnetic-green); font-weight: 700; }
.hero-trust .sep { opacity: 0.35; }

/* form reassurance */
.optin-reassure { margin-top: 12px; font-size: 12.5px; color: var(--fg-muted); text-align: center; display: flex; gap: 7px; align-items: center; justify-content: center; }
.optin-reassure svg { width: 14px; height: 14px; flex: none; }
.field .opt { color: var(--fg-faint); font-weight: 400; }

/* funding progress */
.progress-wrap { max-width: 760px; margin: 0 auto; }
.progress-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--fg-muted); margin-bottom: 9px; }
.progress-meta b { color: #fff; font-weight: 600; font-size: 15px; }
.progress-track { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.progress-fill { height: 100%; background: var(--qnetic-green); border-radius: 999px; }

/* FAQ (native details) */
.faq { max-width: 820px; margin: 8px auto 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item summary { cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 16px; color: var(--brand-navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--qnetic-green-dark); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 0 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 72ch; }

/* ---------- Opt-in modal ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 18, 26, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn 0.25s var(--ease); }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 440px; max-height: calc(100vh - 40px); overflow-y: auto; background: #fff; color: var(--ink); border-radius: 20px; padding: 32px 30px; box-shadow: var(--shadow-card-deck); animation: modalIn 0.3s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 999px; border: 0; background: rgba(10, 10, 10, 0.06); color: var(--ink-soft); font-size: 20px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background 0.2s var(--ease); }
.modal-close:hover { background: rgba(10, 10, 10, 0.12); }
.modal-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; padding-right: 28px; }
.modal-card .sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.modal-card .field label { color: var(--ink-soft); }
.modal-card .field[hidden] { display: none !important; }
.modal-card .field .opt { color: rgba(10, 10, 10, 0.45); }
.modal-card .field input { background: #fff; border: 1px solid rgba(10, 10, 10, 0.14); color: var(--ink); }
.modal-card .field input::placeholder { color: rgba(10, 10, 10, 0.38); }
.modal-card .field input:focus { border-color: var(--qnetic-green); box-shadow: 0 0 0 3px rgba(101, 182, 119, 0.2); }
.modal-card .consent { color: rgba(10, 10, 10, 0.55); }
.modal-card .consent input { accent-color: var(--qnetic-green-dark); }
.modal-card .optin-reassure { color: var(--ink-soft); }
.modal-card .optin-foot { color: rgba(10, 10, 10, 0.5); }

/* two-step opt-in: accreditation gate */
.optin-step[hidden] { display: none; }
.acc-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0 14px; }
.acc-choice { text-align: center; border: 1px solid rgba(10, 10, 10, 0.14); border-radius: 14px; min-height: 64px; padding: 18px; background: #fff; cursor: pointer; display: grid; place-items: center; gap: 4px; transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.acc-choice:hover { border-color: var(--qnetic-green); background: rgba(101, 182, 119, 0.05); box-shadow: 0 0 0 3px rgba(101, 182, 119, 0.12); }
.acc-choice b { font-size: 18px; font-weight: 600; color: var(--ink); }
.acc-choice span { font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }
@media (max-width: 520px) { .acc-choices { grid-template-columns: 1fr; } }
.acc-back { background: none; border: 0; padding: 0; margin-bottom: 12px; font-size: 13px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: color 0.2s var(--ease); }
.acc-back:hover { color: var(--ink); }

/* ---------- Helpers ---------- */
.nowrap { white-space: nowrap; }
/* Scroll-reveal removed: content is always visible (no opacity:0 hiding). */

/* ---------- Responsive helpers ---------- */
@media (max-width: 1023px) { .hero-field { width: 100%; opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- 2026-07 CRO additions ---------- */

/* Hero: replay honesty badge alignment + personalized greeting */
.webinar-head { display: flex; flex-direction: column; align-items: center; }
.webinar-head .replay-badge { margin-bottom: 12px; }
.vsl-greet { margin: 8px auto 0; font-size: 14px; font-weight: 600; color: var(--qnetic-green); text-align: center; }

/* Why-now: copy + stat rows left, storage-farm render right */
.wn-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 940px) { .wn-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; } }
.wn-copy h2 { max-width: 18ch; }
.wn-body { margin-top: 18px; max-width: 52ch; font-size: 17px; line-height: 1.55; color: var(--fg-muted); }
.wn-stats { margin-top: 30px; border-top: 1px solid var(--hair); }
.wn-stat { display: grid; grid-template-columns: minmax(120px, 150px) 1fr; gap: 18px; align-items: baseline; padding: 15px 0 14px; border-bottom: 1px solid var(--hair); }
.wn-stat b { font-size: clamp(21px, 2.2vw, 27px); font-weight: 650; letter-spacing: -0.03em; line-height: 1.1; }
.wn-stat span { font-size: 13.5px; line-height: 1.5; color: var(--fg-muted); }
.wn-stat sup { font-size: 10px; }
.wn-stat a { color: inherit; }
.wn-photo { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px -42px rgba(3, 13, 20, 0.55); }
.wn-photo img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.wn-photo figcaption { padding: 10px 14px; font-size: 11.5px; color: var(--fg-faint); background: rgba(12, 38, 54, 0.04); }

/* Deal ticket: bonus-schedule note (factual loss framing) */
.deal-bonus-note { font-size: 12px; line-height: 1.5; color: var(--fg-faint); }

/* Founders note (editorial, bio-sourced) */
.founders-note { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin: 0 0 40px; padding: 22px 26px; border: 1px solid var(--hair); border-radius: 16px; background: rgba(12, 38, 54, 0.03); }
.fn-photos { flex: none; display: flex; }
.fn-photos img { width: 58px; height: 58px; border-radius: 999px; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 10px rgba(3, 13, 20, 0.18); }
.fn-photos img + img { margin-left: -14px; }
.fn-body { flex: 1; min-width: 260px; }
.fn-line { font-size: 15.5px; line-height: 1.55; }
.founders-note figcaption { margin-top: 8px; font-size: 12px; font-weight: 650; color: var(--fg-muted); }

/* Roadmap: use-of-proceeds line */
.rmv-proceeds { max-width: 62ch; margin: 18px 0 56px; font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); }

/* Checkout: focal selection block (one big number, then one action) */
.sel-block { display: grid; gap: 4px; padding: 16px 0 20px; margin-bottom: 20px; border-bottom: 1px solid var(--hair); }
.sel-label { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.sel-amount { font-size: clamp(32px, 3.8vw, 42px); font-weight: 650; letter-spacing: -0.045em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.sel-shares { font-size: 13.5px; line-height: 1.5; color: var(--qnetic-green); }

/* Checkout: amount picker chips (the one interactive element) */
.pp-sub { font-size: 13px; color: var(--fg-muted); }
.pp-sub b { color: #fff; font-weight: 600; }
.amount-picker .sel-label { display: block; margin-bottom: 10px; }
.amount-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.amt-chip { display: grid; gap: 1px; justify-items: center; min-width: 84px; padding: 9px 12px 8px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.22); background: transparent; cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease); }
.amt-chip:hover { border-color: rgba(101, 182, 119, 0.6); transform: translateY(-1px); }
.amt-chip:focus-visible { outline: 2px solid var(--qnetic-green); outline-offset: 2px; }
.amt-chip b { font-size: 14px; font-weight: 650; color: #fff; font-variant-numeric: tabular-nums; }
.amt-chip span { font-size: 10.5px; font-weight: 700; color: var(--fg-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.amt-chip.is-selected { background: var(--qnetic-green); border-color: var(--qnetic-green); }
.amt-chip.is-selected b, .amt-chip.is-selected span { color: var(--brand-navy); }

/* Deal ticket: informational bonus ladder (not interactive) */
.ladder { display: grid; border-top: 1px solid var(--hair); }
.ladder-row { display: flex; align-items: baseline; gap: 12px; padding: 9px 0 8px; border-bottom: 1px solid var(--hair); }
.ladder-amt { flex: none; min-width: 92px; font-size: 14px; font-weight: 650; color: #fff; font-variant-numeric: tabular-nums; }
.ladder-bonus { font-size: 13px; color: var(--fg-muted); }
.ladder-best .ladder-bonus { color: var(--qnetic-green); font-weight: 650; }
.ladder-tag { margin-left: auto; align-self: center; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-navy); background: var(--qnetic-green); border-radius: 999px; padding: 3px 8px; white-space: nowrap; }

/* Deal ticket: compact on mobile */
@media (max-width: 639px) {
  .deal-main { min-height: 0; padding: 18px 20px 16px; }
  .deal-main b { margin-top: 4px; font-size: 40px; }
  .deal-terms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .deal-term { padding: 13px 12px 12px; }
  .deal-term b { font-size: 15px; }
  .deal-term span { margin-top: 3px; font-size: 10.5px; }
  .deal-bonus-row { padding: 16px 20px 18px; }
}

/* Checkout: quiet operational note under the CTA */
.checkout-pay-note { margin-top: 12px; text-align: center; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }

/* Checkout: reassurance cluster (cancel window, escrow, KYC), deliberately quiet */
.reassure-list { margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--hair); list-style: none; display: grid; gap: 7px; }
.reassure-list li { position: relative; padding-left: 20px; font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.62); }
.reassure-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 11px; height: 11px; border-radius: 999px; background: rgba(101, 182, 119, 0.16) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M20 6L9 17l-5-5" stroke="%2365b677" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / 7px no-repeat; }

/* Lock panel: progress toward the deal walkthrough (goal gradient) */
.lock-progress { width: min(300px, 72%); height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); overflow: hidden; }
.lock-progress span { display: block; width: 0; height: 100%; border-radius: 999px; background: var(--qnetic-green); transition: width 0.6s var(--ease); }

/* ---------- Variant B: "webinar room" (?variant=room / #room) ---------- */

/* Locked room: only the hero and the legal footer exist. */
body.mode-room:not(.room-open) section:not(#invest) { display: none; }
body.mode-room:not(.room-open) .sticky-cta { display: none; }
body.mode-room:not(.room-open) .hero-cta { display: none; }

/* In-hero lock state (hidden outside room mode / after unlock) */
.room-lock { display: none; }
body.mode-room:not(.room-open) .room-lock { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 4px; }
.room-lock-line { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, 0.72); }
.room-lock-line svg { width: 15px; height: 15px; color: var(--qnetic-green); }
.room-lock-line b { color: var(--qnetic-green); font-variant-numeric: tabular-nums; }

/* Unfold moment: sections fade in when the room opens */
body.mode-room.room-open section:not(#invest) { animation: room-in 0.7s var(--ease) both; }
@keyframes room-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { body.mode-room.room-open section:not(#invest) { animation: none; } }

/* ---------- V2 additions: agenda, chapters, news, filing line ---------- */

/* Opt-in agenda (what the webinar covers) */
.agenda-grid { margin-top: 34px; display: grid; gap: 16px; }
@media (min-width: 700px) { .agenda-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .agenda-grid { grid-template-columns: repeat(4, 1fr); } }
.agenda-card { display: flex; flex-direction: column; gap: 8px; background: #fff; border: 1px solid rgba(10,10,10,0.07); border-radius: 16px; padding: 22px; box-shadow: 0 1px 3px rgba(10,10,10,0.04); }
.agenda-card .ag-min { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--qnetic-green-dark); }
.agenda-card h3 { font-size: 16.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.agenda-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.agenda-note { margin-top: 14px; font-size: 12px; color: rgba(10,10,10,0.45); }
.agenda-cta { margin-top: 26px; }

/* In-player chapter progress (YouTube-style segmented track, non-seekable).
   Segments are proportional to the measured beats; per-segment fill tracks the
   video; the dashed lock at the end marks the offering unlock. Built by app.js. */
.vsl-progress { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 34px 16px 12px; background: linear-gradient(180deg, rgba(10,20,28,0) 0%, rgba(10,20,28,0.74) 100%); pointer-events: none; display: flex; flex-direction: column; gap: 8px; }
.vp-label { display: flex; align-items: baseline; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.88); text-shadow: 0 1px 2px rgba(0,0,0,0.45); }
.vp-label b { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--qnetic-green); font-variant-numeric: tabular-nums; }
.vp-row { display: flex; align-items: center; gap: 9px; }
.vp-track { flex: 1; display: flex; gap: 3px; }
.vp-seg { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.3); overflow: hidden; }
.vp-seg i { display: block; height: 100%; width: 0%; background: var(--qnetic-green); }
.vp-lock { flex: none; display: flex; align-items: center; justify-content: center; width: 21px; height: 21px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,0.55); background: rgba(10,20,28,0.55); transition: all 0.3s var(--ease); }
.vp-lock svg { width: 10px; height: 10px; color: rgba(255,255,255,0.8); }
.vsl-progress.is-unlocked .vp-lock { border-style: solid; border-color: var(--qnetic-green); background: var(--qnetic-green); }
.vsl-progress.is-unlocked .vp-lock svg { color: var(--brand-navy-deep); }
@media (max-width: 640px) { .vsl-progress { padding: 26px 12px 10px; gap: 6px; } .vp-label { font-size: 11px; } .vsl-controls { bottom: 52px; } }

/* In the news: featured video story + logo-led press rows (all verified) */
.news-grid { margin-top: 34px; display: grid; gap: 16px; }
@media (min-width: 900px) { .news-grid { grid-template-columns: 1.05fr 1fr; align-items: stretch; } }
.nc-meta { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--qnetic-green); }
.nc-meta span { font-weight: 500; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.45); }
.nc-link { font-size: 12.5px; color: rgba(255,255,255,0.55); display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s var(--ease); }
.news-feat { display: flex; flex-direction: column; border-radius: 18px; overflow: hidden; background: var(--brand-navy); border: 1px solid rgba(101,182,119,0.14); transition: border-color 0.2s var(--ease); }
.news-feat:hover { border-color: rgba(101,182,119,0.45); }
.news-feat:hover .nc-link { color: var(--qnetic-green); }
.news-feat-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.news-feat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.news-feat:hover .news-feat-media img { transform: scale(1.04); }
.news-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.news-play span { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: rgba(10,20,28,0.72); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(3px); transition: transform 0.25s var(--ease); }
.news-feat:hover .news-play span { transform: scale(1.08); }
.news-play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.news-feat-body { padding: 18px 22px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-feat-body h3 { font-size: 16px; font-weight: 600; line-height: 1.4; color: #fff; }
.news-feat-body .nc-link { margin-top: auto; }
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-row { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: var(--brand-navy); border: 1px solid rgba(101,182,119,0.14); border-radius: 14px; padding: 14px 18px; transition: border-color 0.2s var(--ease); }
.news-row:hover { border-color: rgba(101,182,119,0.45); }
.news-row-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.news-row-top img { height: 15px; width: auto; max-width: 130px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); opacity: 0.85; }
.news-row-top time { font-size: 11.5px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.news-row h3 { font-size: 13.5px; font-weight: 600; line-height: 1.45; color: rgba(255,255,255,0.88); transition: color 0.2s var(--ease); }
.news-row:hover h3 { color: #fff; }
.news-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* Offering panel filing line (document trust row) */
.pp-filing { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(10,10,10,0.14); font-size: 12px; line-height: 1.5; color: var(--ink-soft); }
.pp-filing svg { flex: none; margin-top: 1px; color: var(--qnetic-green-dark); }
.pp-filing a { color: var(--qnetic-green-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Customer-value stats (webinar economics beat, transcript 13:06).
   Flat stat band: rule + number + kicker + one line. No boxes, so it reads as
   three figures rather than three paragraphs. */
.cv-stats { margin-top: 38px; display: grid; gap: 26px; }
@media (min-width: 768px) { .cv-stats { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.cv-stat { border-top: 2px solid rgba(62, 130, 77, 0.4); padding-top: 16px; }
.cv-stat b { display: block; font-size: 36px; font-weight: 700; color: var(--qnetic-green-dark); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.cv-stat .cv-k { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.cv-stat span { display: block; font-size: 13px; line-height: 1.55; color: var(--ink-soft); max-width: 34ch; }
.cv-note { margin-top: 20px; margin-bottom: 26px; font-size: 12px; color: rgba(10,10,10,0.4); }

/* Use cases: plain definition rows. Name left, one sentence right. */
.uc-list { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.uc-row { display: grid; gap: 5px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
@media (min-width: 760px) { .uc-row { grid-template-columns: 240px 1fr; gap: 36px; align-items: baseline; } }
.uc-row h3 { font-size: 15.5px; font-weight: 600; line-height: 1.35; color: #fff; }
.uc-row p { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.68); max-width: 62ch; }

/* Why-now source line (webinar attribution) */
.wn-source { margin-top: 14px; font-size: 12px; color: rgba(10, 10, 10, 0.4); }

/* Webinar-audit additions: team note, second backer line, use-case subtitle */
.tm-note { margin-top: 22px; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); max-width: 72ch; }
.tm-note b { color: var(--ink); }
.bk-second { margin-top: 14px; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); max-width: 76ch; }
.uc-sub { margin-top: 14px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); max-width: 58ch; font-style: italic; }

/* Prototype progression strip (roadmap section, dark band) */
.proto-strip { margin: 30px 0 34px; display: grid; gap: 14px; }
@media (min-width: 760px) { .proto-strip { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.proto-card { margin: 0; background: var(--brand-navy); border: 1px solid rgba(101, 182, 119, 0.16); border-radius: 16px; overflow: hidden; }
.proto-card img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; display: block; }
.proto-card figcaption { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; }
.proto-card b { font-size: 14.5px; font-weight: 600; color: var(--qnetic-green); }
.proto-card span { font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.65); }

/* The lithium problem, staged like the webinar: three beats, then the fire */

@media (max-width: 640px) {
}

/* Prototype strip grows to four cards on wide screens */
@media (min-width: 1100px) { .proto-strip { grid-template-columns: repeat(4, 1fr); } }

/* Closing end-cap */
.closing-wrap { max-width: 720px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.closing-body { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.72); max-width: 52ch; }

/* Machine USP checklist (webinar's strongest points) */
.machine-usps { margin: 20px 0 6px; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 20px; }
@media (max-width: 640px) { .machine-usps { grid-template-columns: 1fr; } }
.machine-usps li { position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.75); }
.machine-usps li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--qnetic-green); font-weight: 700; }

/* Intro video facade (opt-in page) */
.yt-facade { position: relative; cursor: pointer; }
.yt-facade > img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.yt-facade .facade-play { z-index: 2; }
.yt-facade.is-playing > img { display: none; }
.yt-facade.is-playing { cursor: default; }
.facade-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(10, 20, 28, 0.75); border: 1px solid rgba(255, 255, 255, 0.28); backdrop-filter: blur(4px); transition: transform 0.25s var(--ease); }
.yt-facade:hover .facade-play { transform: translate(-50%, -50%) scale(1.08); }
.facade-play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.yt-facade.is-playing .facade-play { display: none; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Hero trust bar: SOSV logo + flag */
.hero-trust .ht-logo { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .ht-logo img { height: 18px; width: auto; background: #fff; padding: 2px 6px; border-radius: 5px; display: inline-block; box-sizing: content-box; }
.hero-trust .ht-flag { font-size: 15px; }

/* Section CTAs on the opt-in page: centered at all sizes, matching the
   briefing page's section CTAs */
.agenda-cta { display: flex; justify-content: center; }

/* Hero countdown (locked state of the hero CTA slot) */
.hero-count { display: inline-flex; align-items: center; gap: 12px; padding: 13px 26px; border-radius: 999px; background: rgba(10, 20, 28, 0.55); border: 1px dashed rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.85); }
.hero-count svg { width: 17px; height: 17px; flex: none; color: var(--qnetic-green); }
.hero-count .hc-label { font-size: 14px; }
.hero-count .hc-count { font-size: 20px; font-weight: 700; color: var(--qnetic-green); font-variant-numeric: tabular-nums; line-height: 1; }

/* The hidden attribute must always win, even against .btn's display rule */
[hidden] { display: none !important; }

/* AI "three numbers" band (dark variant of cv-stats) */
.uc-stats { margin: 34px 0 44px; display: grid; gap: 26px; }
@media (min-width: 768px) { .uc-stats { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
.uc-stat { border-top: 2px solid rgba(122, 190, 138, 0.45); padding-top: 16px; }
.uc-stat b { display: block; font-size: 36px; font-weight: 700; color: var(--qnetic-green, #7abe8a); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.uc-stat .uc-k { display: block; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.92); margin-bottom: 5px; }
.uc-stat span { display: block; font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); max-width: 36ch; }
.uc-source { margin: -26px 0 44px; font-size: 12px; color: rgba(255, 255, 255, 0.35); }

/* ---- Reg D terms, rendered by regd-terms.js inside the paypanel ----------
   Visible only when the visitor's stored accreditation answer is yes.
   The static page carries no terms; see regd-terms.js for the rules. */
.regd-terms { margin: 0 0 1.1rem; }
.regd-terms-list { margin: 0; }
.regd-terms-list > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.25rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.regd-terms-list dt { font-size: 0.85rem; opacity: 0.75; }
.regd-terms-list dd { margin: 0; font-weight: 600; font-size: 0.95rem; text-align: right; }
.regd-terms-pending {
  margin: 0.9rem 0 0; font-size: 0.78rem; line-height: 1.5;
  background: #faeeda; color: #854f0b; border-radius: 8px; padding: 0.7rem 0.85rem;
}
@media (max-width: 640px) {
  .regd-terms-list > div { flex-direction: column; gap: 0.15rem; }
  .regd-terms-list dd { text-align: left; }
}
