/* ============================================================
   IMERSÃO HERMES AGENT — Sales Page
   Dashmaker brand · "J.A.R.V.I.S. Command Console" direction
   ============================================================ */

:root {
  /* ============ THEME TOKENS — edit only this block to re-skin the page ============ */
  /* PALETTE "Arc Reactor": electric-cyan HUD on near-black; warm amber owns the buy layer. */
  /* surfaces (dark-first, faintly cyan-tinted instrument glass) */
  --black: #0a0a0b;
  --black-2: #0c1113;
  --panel: #0e1517;
  --panel-2: #121b1e;
  --line: #1c2a2c;
  --line-2: #25373b;

  /* PRIMARY accent = electric cyan — atmosphere: HUD, neural net, glow, links, brackets */
  --orange: #22d3ee;             /* name kept so existing rules stay valid */
  --orange-soft: #3be8ff;
  --gold: #2dd4bf;               /* SECONDARY accent (teal) — gradient tail */
  --accent-rgb: 34, 211, 238;    /* primary cyan as rgb() for translucent fills */
  --accent-2-rgb: 45, 212, 191;  /* secondary teal as rgb() for translucent fills */
  --ink-accent: #04141a;         /* dark ink for text on bright cyan fills */

  /* SELL accent = warm amber — owns CTA fills, the big price, urgency (the lone warm pop) */
  --sell: #fbbf24;
  --sell-soft: #ffd24d;
  --sell-rgb: 251, 191, 36;
  --sell-ink: #1a1206;           /* dark ink for text on amber CTAs */

  /* signature headline gradient (cyan -> teal — deliberately NOT cyan->purple) */
  --grad-from: #3be8ff;
  --grad-mid: #22d3ee;
  --grad-to: #2dd4bf;

  /* neural-network canvas colours (rgb triplets, read by script.js) */
  --neural-line: 34, 211, 238;   /* node-to-node links */
  --neural-link: 59, 232, 255;   /* cursor links */
  --neural-node: 103, 232, 249;  /* node dots */
  /* ============ end theme tokens ============ */

  /* neutrals / text */
  --white: #ffffff;
  --ink: #ededf2;
  --muted: #9a9aa6;
  --muted-2: #6c6c78;

  --grad: linear-gradient(120deg, var(--grad-from) 0%, var(--grad-mid) 60%, var(--grad-to) 100%);
  --grad-soft: linear-gradient(135deg, rgba(var(--accent-2-rgb),.16), rgba(var(--accent-rgb),.16));
  --sell-grad: linear-gradient(180deg, var(--sell-soft), var(--sell));
  --glow: 0 0 36px rgba(var(--accent-rgb), .35);

  --f-head: 'Montserrat', 'Arial Black', sans-serif;
  --f-body: 'Inter', Arial, Helvetica, sans-serif;
  --f-mono: 'JetBrains Mono', Consolas, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--f-body);
  background: var(--black);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ===== Ambient background layers ===== */
#neural {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}

.grid-floor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--accent-rgb),.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb),.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}

.scanlines {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0, rgba(0,0,0,0) 2px, rgba(0,0,0,.18) 3px, rgba(0,0,0,0) 4px);
  opacity: .35; mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.10) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 1;
  transition: opacity .4s; opacity: 0;
  will-change: transform;
}

.scan-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(var(--accent-rgb),.8);
  z-index: 200;
}

/* keep content above ambient */
.nav, main, .footer, .sticky-cta { position: relative; z-index: 2; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 880px; }

.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(var(--accent-rgb),.3);
  border-radius: 100px;
  background: rgba(var(--accent-rgb),.06);
}

.mono { font-family: var(--f-mono); }

.section__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  max-width: 18ch;
}
.section__title.section__title { } /* noop */

.section__lead {
  font-size: clamp(16px, 1.9vw, 20px);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 48px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.line-mute { color: var(--muted-2); }
.star { color: var(--orange); filter: drop-shadow(0 0 6px rgba(var(--accent-rgb),.6)); }
.strike { color: var(--muted-2); text-decoration: line-through; text-decoration-color: var(--orange); }

/* ===== Buttons ===== */
.btn {
  --b: var(--orange);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-head); font-weight: 700;
  font-size: 14px; letter-spacing: .03em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  padding: 14px 24px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s;
  white-space: nowrap;
}
.btn--lg { padding: 18px 30px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--sell);
  color: var(--sell-ink);
  box-shadow: 0 10px 30px rgba(var(--sell-rgb),.32), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary:hover { background: var(--sell-soft); transform: translateY(-2px); box-shadow: 0 16px 46px rgba(var(--sell-rgb),.55); }
.btn--primary .btn__tag {
  background: rgba(0,0,0,.2); color: var(--sell-ink); padding: 3px 10px; border-radius: 100px; font-size: 13px;
}

.btn--ghost {
  background: rgba(255,255,255,.03); color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.btn--nav {
  background: var(--sell); color: var(--sell-ink);
  border: 1px solid var(--sell); padding: 9px 16px; font-size: 13px;
  box-shadow: 0 6px 20px rgba(var(--sell-rgb),.28);
}
.btn--nav:hover { background: var(--sell-soft); border-color: var(--sell-soft); color: var(--sell-ink); transform: translateY(-1px); }
.btn--nav .btn__price { font-family: var(--f-mono); opacity: .85; }

/* ===== HUD corner brackets ===== */
.hud__corner {
  position: absolute; width: 16px; height: 16px;
  border: 2px solid var(--orange); opacity: .8; pointer-events: none;
}
.hud__corner--tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hud__corner--tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.hud__corner--bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.hud__corner--br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 22px;
  padding: 14px var(--pad);
  background: rgba(10,10,11,.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
  z-index: 100;
}
.nav.scrolled { background: rgba(10,10,11,.85); border-bottom-color: var(--line); padding-top: 10px; padding-bottom: 10px; }

.nav__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-right: auto; }
.nav__chev { color: var(--orange); font-family: var(--f-mono); font-weight: 700; letter-spacing: -2px; }
.nav__logo { height: 32px; width: auto; display: block; }
.nav__name { font-family: var(--f-head); font-weight: 800; letter-spacing: .04em; color: var(--white); font-size: 16px; }
.nav__name-accent { color: var(--orange); margin-left: 6px; }

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 500;
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--orange); transition: width .25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 150px var(--pad) 90px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero__reactor {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; pointer-events: none; z-index: 0; opacity: .5;
}
.reactor__ring {
  position: absolute; inset: 0; margin: auto; border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb),.3);
}
.reactor__ring--1 { width: 100%; height: 100%; animation: spin 24s linear infinite; border-style: dashed; }
.reactor__ring--2 { width: 72%; height: 72%; animation: spin 18s linear infinite reverse; border-color: rgba(var(--accent-2-rgb),.25); }
.reactor__ring--3 { width: 44%; height: 44%; animation: spin 12s linear infinite; border-style: dotted; }
.reactor__core {
  position: absolute; inset: 0; margin: auto; width: 24%; height: 24%; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.55), rgba(var(--accent-rgb),0) 70%);
  animation: pulse 3.4s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(.9); opacity: .7; } 50% { transform: scale(1.08); opacity: 1; } }

.hero__inner { position: relative; z-index: 2; min-width: 0; }

.hero__status {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; margin-bottom: 26px;
  background: rgba(255,255,255,.02);
}
.hero__status .dot { width: 8px; height: 8px; border-radius: 50%; background: #46e07f; box-shadow: 0 0 10px #46e07f; animation: blink 2s infinite; }
.hero__status .dot--live { background: #ff4d4d; box-shadow: 0 0 10px #ff4d4d; animation: blink 1.4s infinite; }
.hero__status .sep { color: var(--line-2); }
@keyframes blink { 50% { opacity: .35; } }

.hero__title {
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(30px, 4.7vw, 54px); line-height: 1.05; letter-spacing: -.025em;
  margin-bottom: 24px; text-wrap: balance;
}

.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 56ch; margin-bottom: 34px; }
.hero__sub strong { color: var(--ink); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.hero__reassure {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 12.5px; color: var(--muted-2); letter-spacing: .04em;
}
.hero__reassure span { color: var(--muted); }

/* HUD terminal */
.hud {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(20,20,24,.92), rgba(14,14,17,.92));
  border: 1px solid var(--line-2); border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), var(--glow);
  overflow: hidden; min-height: 290px; min-width: 0;
  backdrop-filter: blur(6px);
}
.hud__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(0,0,0,.25); }
.hud__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.hud__dot:nth-child(1) { background: #ff5f56; }
.hud__dot:nth-child(2) { background: #ffbd2e; }
.hud__dot:nth-child(3) { background: #27c93f; }
.hud__title { margin-left: 8px; font-size: 12px; color: var(--muted-2); }
.hud__body { padding: 18px 18px 22px; font-size: 13px; line-height: 1.85; color: var(--ink); min-height: 230px; }
.hud__body .ok { color: #46e07f; }
.hud__body .cmd { color: var(--orange); }
.hud__body .dim { color: var(--muted-2); }
.hud__body .cursor { display: inline-block; width: 8px; height: 15px; background: var(--orange); animation: blink 1s steps(2) infinite; vertical-align: -2px; }

.scroll-cue {
  position: absolute; left: var(--pad); bottom: 26px;
  font-size: 11px; letter-spacing: .25em; color: var(--muted-2);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(6px); opacity: .5; } }

/* hero right column: mascot + terminal stacked */
.hero__side { display: flex; flex-direction: column; gap: 22px; align-items: stretch; justify-content: center; min-width: 0; position: relative; z-index: 2; }
.hero__mascot { align-self: center; width: clamp(150px, 19vw, 196px); margin: 0; }
.hero__mascot__frame {
  position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line-2);
  background: radial-gradient(circle at 50% 30%, rgba(var(--accent-rgb),.1), rgba(0,0,0,.4));
  box-shadow: var(--glow);
}
.hero__mascot__frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06);
  filter: invert(1) brightness(1.05);
}
/* cyan scan sweep over the portrait */
.hero__mascot__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--accent-rgb),.16) 50%, transparent 100%);
  height: 40%; animation: scan 4.5s ease-in-out infinite;
}
@keyframes scan { 0%,100% { transform: translateY(-60%); opacity: 0; } 50% { transform: translateY(180%); opacity: 1; } }
.hero__mascot figcaption { text-align: center; margin-top: 11px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

/* ============================================================
   2. PROOF BAR
   ============================================================ */
.proofbar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(var(--accent-rgb),.03); overflow: hidden; padding: 16px 0;
  position: relative; z-index: 2;
}
.proofbar__track { display: flex; gap: 56px; width: max-content; animation: marquee 36s linear infinite; }
.proofbar:hover .proofbar__track { animation-play-state: paused; }
.proofbar__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); white-space: nowrap; font-weight: 500; }
.proofbar__ic { font-size: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   DATE / URGENCY BAR + COUNTDOWN
   ============================================================ */
.datebar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(var(--sell-rgb), .04);
  padding: 22px var(--pad); position: relative; z-index: 2;
}
.datebar__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 30px; text-align: center;
}
.datebar__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; }
.datebar__badge { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink); font-weight: 500; white-space: nowrap; }
.datebar__badge .ic { font-size: 18px; }
.datebar__dim { color: var(--muted-2); }

.countdown { display: flex; align-items: center; gap: 7px; }
.cd {
  display: flex; flex-direction: column; align-items: center; min-width: 54px;
  background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 8px 9px;
}
.cd__n { font-family: var(--f-head); font-weight: 800; font-size: 26px; line-height: 1; color: var(--sell); font-variant-numeric: tabular-nums; }
.cd__l { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; }
.cd__sep { font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--muted-2); align-self: flex-start; margin-top: 6px; }
.cd-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: 15px; color: #ff4d4d;
  border: 1px solid rgba(255,77,77,.4); border-radius: 100px; padding: 8px 16px;
  background: rgba(255,77,77,.08); animation: blink 1.6s infinite;
}

/* ============================================================
   TIMELINE (programação das 4 horas)
   ============================================================ */
.timeline { margin: 8px 0 4px; }
.tl { display: grid; grid-template-columns: 58px 26px 1fr; align-items: start; }
.tl__time {
  font-size: 15px; font-weight: 700; color: var(--orange); text-align: right;
  padding-top: 1px; letter-spacing: .01em;
}
.tl__rail { position: relative; align-self: stretch; min-height: 100%; }
.tl__rail::before {
  content: ''; position: absolute; left: 11px; top: 7px; bottom: -6px; width: 2px;
  background: linear-gradient(var(--line-2), var(--line-2));
}
.tl:last-child .tl__rail::before { display: none; }
.tl__dot {
  position: absolute; left: 4px; top: 3px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--orange); box-shadow: 0 0 12px rgba(var(--accent-rgb),.55);
}
.tl__body { padding: 0 0 28px 4px; }
.tl:last-child .tl__body { padding-bottom: 4px; }
.tl__title { font-family: var(--f-head); font-weight: 700; font-size: clamp(16px, 2vw, 19px); color: var(--white); margin-bottom: 6px; }
.tl__body p { color: var(--muted); font-size: 15px; }
.tl__body p strong { color: var(--ink); }
.tl__note { text-align: center; color: var(--muted-2); font-size: 12px; margin-top: 6px; }
.tl__cta { text-align: center; margin-top: 26px; }

/* ============================================================
   3. DOR
   ============================================================ */
.painlist { list-style: none; margin: 8px 0 38px; }
.painlist li {
  position: relative;
  padding: 16px 0 16px 30px; border-bottom: 1px dashed var(--line);
  font-size: clamp(15px, 1.8vw, 18px); color: var(--muted);
}
.painlist li strong { color: var(--ink); font-weight: 600; }
.painlist__x { position: absolute; left: 0; top: 17px; color: #ff5f56; font-weight: 700; }
.pain__close {
  font-family: var(--f-head); font-weight: 700; font-size: clamp(19px, 2.6vw, 28px);
  line-height: 1.3; letter-spacing: -.01em;
}

/* ============================================================
   4. VIRADA
   ============================================================ */
.turn__panel {
  position: relative; padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(160deg, rgba(var(--accent-rgb),.06), rgba(20,20,24,.5));
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden;
}
.turn__title { font-family: var(--f-head); font-weight: 800; font-size: clamp(24px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 30px; }
.ladder { display: flex; align-items: stretch; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.ladder__step {
  flex: 1 1 150px; display: flex; flex-direction: column; gap: 6px;
  padding: 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: rgba(0,0,0,.25);
}
.ladder__k { font-size: 11px; letter-spacing: .15em; color: var(--muted-2); }
.ladder__step span:last-child { font-size: 15px; }
.ladder__step--win { border-color: var(--orange); background: rgba(var(--accent-rgb),.08); box-shadow: var(--glow); }
.ladder__step--win .ladder__k { color: var(--orange); }
.ladder__arrow { display: flex; align-items: center; color: var(--muted-2); font-size: 20px; }
.turn__p { color: var(--muted); font-size: clamp(15px, 1.8vw, 18px); margin-bottom: 14px; }
.turn__p strong { color: var(--ink); }
.turn__p--accent { color: var(--ink); font-weight: 500; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative; padding: 30px 26px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 24px 50px rgba(0,0,0,.45); }
.card:hover::before { transform: scaleX(1); }
.card__ic { font-size: 32px; margin-bottom: 16px; filter: drop-shadow(0 4px 12px rgba(var(--accent-rgb),.25)); }
.card__title { font-family: var(--f-head); font-weight: 700; font-size: 19px; margin-bottom: 10px; color: var(--white); }
.card p { color: var(--muted); font-size: 15px; }
.card p strong { color: var(--ink); }
.card p em { color: var(--orange); font-style: normal; }

.card--profile .card__badge {
  position: absolute; top: 20px; right: 20px; font-size: 10px; letter-spacing: .12em;
  color: var(--muted-2); border: 1px solid var(--line); padding: 4px 8px; border-radius: 100px;
}
.card--diff .card__ic { font-size: 38px; }

/* ============================================================
   7. BUILD / checklist
   ============================================================ */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  position: relative;
  background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 16px 18px 16px 46px; font-size: clamp(15px, 1.7vw, 17px); color: var(--muted);
  transition: border-color .2s, transform .2s;
}
.checklist li:hover { border-color: rgba(var(--accent-rgb),.4); transform: translateX(4px); }
.checklist li strong { color: var(--ink); }
.checklist__c { color: var(--orange); font-weight: 700; }
.checklist li > .checklist__c { position: absolute; left: 18px; top: 16px; }
.checklist__hl { border-color: rgba(var(--accent-rgb),.45); background: rgba(var(--accent-rgb),.06); }

/* ============================================================
   8. MODULES accordion
   ============================================================ */
.modules { display: grid; gap: 12px; margin-top: 8px; }
.mod {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  overflow: hidden; transition: border-color .2s;
}
.mod[open] { border-color: rgba(var(--accent-rgb),.4); }
.mod summary {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer;
  list-style: none; user-select: none;
}
.mod summary::-webkit-details-marker { display: none; }
.mod__n { font-size: 14px; color: var(--orange); font-weight: 700; min-width: 28px; }
.mod__t { font-family: var(--f-head); font-weight: 600; font-size: clamp(15px, 1.9vw, 18px); color: var(--white); flex: 1; }
.mod__chev { font-family: var(--f-mono); font-size: 22px; color: var(--muted-2); transition: transform .25s; line-height: 1; }
.mod[open] .mod__chev { transform: rotate(45deg); color: var(--orange); }
.mod__c { padding: 0 20px 20px 64px; color: var(--muted); font-size: 15px; }
.mod--star { background: linear-gradient(180deg, rgba(var(--accent-rgb),.05), var(--panel-2)); }
.mod--final { border-color: rgba(var(--accent-rgb),.5); background: linear-gradient(180deg, rgba(var(--accent-rgb),.1), var(--panel-2)); }
.mod--final .mod__t { color: var(--orange); }

/* ============================================================
   BONUS
   ============================================================ */
.bonus { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 36px; }
.bonus__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px;
  transition: border-color .2s, transform .2s;
}
.bonus__item:hover { border-color: rgba(var(--accent-rgb),.4); transform: translateY(-4px); }
.bonus__ic { font-size: 26px; flex-shrink: 0; }
.bonus__item h3 { font-family: var(--f-head); font-weight: 700; font-size: 16.5px; color: var(--white); margin-bottom: 4px; }
.bonus__item p { color: var(--muted); font-size: 14px; }
.bonus__close { text-align: center; font-family: var(--f-head); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px); }

/* ============================================================
   12. OFFER / PRICE
   ============================================================ */
.offer { text-align: center; }
.offer .eyebrow, .offer .section__title, .offer .section__lead { margin-left: auto; margin-right: auto; }
.offer .section__title { max-width: none; }
.offer .section__lead strong { color: var(--ink); }

.pricecard {
  position: relative; margin: 12px auto 0; max-width: 540px; text-align: center;
  padding: clamp(32px, 5vw, 50px) clamp(24px, 4vw, 44px);
  background: linear-gradient(180deg, var(--panel), var(--black-2));
  border: 1px solid var(--orange); border-radius: var(--r-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(var(--accent-rgb),.1), var(--glow);
  overflow: hidden;
}
.pricecard__glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),.18), transparent 60%);
  pointer-events: none;
}
.pricecard__name {
  display: inline-block; font-size: 12px; letter-spacing: .16em; color: var(--orange);
  border: 1px solid rgba(var(--accent-rgb),.35); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.pricecard__price { position: relative; z-index: 1; margin-bottom: 26px; }
.pricecard__from { display: block; color: var(--muted); font-size: 15px; margin-bottom: 4px; }
.pricecard__from s { color: var(--muted-2); }
.pricecard__big { display: flex; align-items: flex-start; justify-content: center; gap: 4px; line-height: 1; }
.pricecard__big .cur { font-family: var(--f-head); font-weight: 700; font-size: clamp(26px, 4vw, 36px); color: var(--sell); margin-top: 10px; }
.pricecard__big .val { font-family: var(--f-head); font-weight: 900; font-size: clamp(78px, 14vw, 120px); background: var(--sell-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -.04em; filter: drop-shadow(0 6px 26px rgba(var(--sell-rgb),.35)); }
.pricecard__once { display: block; font-size: 12px; letter-spacing: .08em; color: var(--muted-2); margin-top: 6px; }

.pricecard__list { list-style: none; text-align: left; margin: 0 auto 28px; max-width: 360px; display: grid; gap: 11px; position: relative; z-index: 1; }
.pricecard__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink); }

.pricecard__safe { margin-top: 16px; font-size: 12px; color: var(--muted-2); position: relative; z-index: 1; }

/* ============================================================
   13. GUARANTEE
   ============================================================ */
.guarantee {
  display: flex; gap: clamp(24px, 5vw, 48px); align-items: center; flex-wrap: wrap;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(150deg, rgba(var(--accent-rgb),.06), rgba(20,20,24,.4));
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
}
.guarantee__seal {
  flex-shrink: 0; width: 130px; height: 130px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed var(--orange);
  background: radial-gradient(circle, rgba(var(--accent-rgb),.14), transparent 70%);
  box-shadow: var(--glow);
}
.guarantee__num { font-family: var(--f-head); font-weight: 900; font-size: 52px; line-height: 1; color: var(--orange); }
.guarantee__days { font-size: 12px; letter-spacing: .24em; color: var(--ink); margin-top: 2px; }
.guarantee__txt { flex: 1 1 320px; }
.guarantee__txt h2 { font-family: var(--f-head); font-weight: 800; font-size: clamp(22px, 3.2vw, 32px); line-height: 1.12; margin-bottom: 14px; }
.guarantee__txt p { color: var(--muted); margin-bottom: 10px; }
.guarantee__txt p strong { color: var(--ink); }
.guarantee__kick { color: var(--orange) !important; font-weight: 600; font-style: italic; }

/* ============================================================
   14. INSTRUCTOR
   ============================================================ */
.instructor { display: flex; gap: clamp(24px, 4vw, 40px); align-items: center; flex-wrap: wrap; }
.instructor__avatar {
  flex-shrink: 0; width: 156px; height: 156px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--glow);
}
.instructor__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.instructor__bio { flex: 1 1 320px; }
.instructor__name { font-family: var(--f-head); font-weight: 800; font-size: clamp(22px, 3vw, 30px); margin-bottom: 4px; }
.instructor__role { display: block; color: var(--orange); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.instructor__bio p { color: var(--muted); margin-bottom: 10px; }
.instructor__bio strong { color: var(--ink); }

/* ============================================================
   15. FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--panel); overflow: hidden; transition: border-color .2s; }
.faq__item[open] { border-color: rgba(var(--accent-rgb),.4); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--f-head); font-weight: 600; font-size: clamp(15px, 1.9vw, 17px); color: var(--white);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { font-family: var(--f-mono); font-size: 22px; color: var(--muted-2); transition: transform .25s; flex-shrink: 0; }
.faq__item[open] .faq__chev { transform: rotate(45deg); color: var(--orange); }
.faq__a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ============================================================
   16. FINAL CTA
   ============================================================ */
.finalcta { text-align: center; overflow: hidden; }
.finalcta__reactor { position: absolute; inset: 0; margin: auto; width: 520px; height: 520px; opacity: .35; pointer-events: none; z-index: 0; }
.finalcta .container { position: relative; z-index: 2; }
.finalcta__title { font-family: var(--f-head); font-weight: 900; font-size: clamp(28px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 22px; }
.finalcta__p { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 56ch; margin: 0 auto 34px; }
.finalcta__p strong { color: var(--ink); }
.finalcta__re { justify-content: center; margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 44px 0; background: var(--black-2); }
.footer__inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer__brand { font-family: var(--f-head); font-weight: 800; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 10px; }
.footer__logo { height: 28px; width: auto; vertical-align: middle; }
.footer__copy { color: var(--muted); font-size: 14px; }
.footer__note { color: var(--muted-2); font-size: 12px; max-width: 60ch; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 12px;
  background: var(--sell); color: var(--sell-ink); text-decoration: none;
  font-family: var(--f-head); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: .03em;
  padding: 16px; border-radius: var(--r-md);
  box-shadow: 0 12px 34px rgba(var(--sell-rgb),.45);
}
.sticky-cta__price { background: rgba(0,0,0,.2); padding: 4px 12px; border-radius: 100px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3) { transition-delay: .16s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero__reactor { opacity: .25; right: -30%; }
  .hud { max-width: 520px; }
  .cards--3 { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .btn--nav { display: none; }
  .scroll-cue { display: none; }

  /* mobile/tablet nav drawer */
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0a0a0b; border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px rgba(0,0,0,.6);
    padding: 8px 0;
  }
  .nav__links.open a { padding: 14px var(--pad); border-bottom: 1px solid var(--line); }
  .nav__links.open a:last-child { border-bottom: none; }
  .nav__links.open a::after { display: none; }
}

@media (max-width: 680px) {
  .cards--3 { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: 1fr; }
  .ladder__arrow { display: none; }
  .ladder__step { flex-basis: 100%; }
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 90px; }
  .mod__c { padding-left: 20px; }

  /* full-width CTAs so long labels never overflow narrow screens */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .btn { white-space: normal; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  #neural { display: none; }
  .proofbar__track { animation: none; }
}
