/* =====================================================================
   Edgewise — design system v4 · "OroNotte"
   Night-blue canvas. Gold #E8B97A primary + coral #FF3864 warm accent.
   Type: Fraunces (display serif) · Inter (UI) · JetBrains Mono (numbers)
   ===================================================================== */

:root {
  --bg:        #0B1020;
  --bg-2:      #0E1426;
  --surface:   #161D2E;
  --surface-2: #1C2438;
  --border:    rgba(232,185,122,0.10);
  --border-2:  rgba(232,185,122,0.22);

  --text:      #EDEFF5;
  --text-dim:  #AEB6C6;
  --text-mute: #6E7689;

  --gold:      #E8B97A;
  --gold-soft: rgba(232,185,122,0.14);
  --gold-line: rgba(232,185,122,0.34);
  --gold-deep: #C99A52;
  --coral:     #FF3864;
  --coral-soft:rgba(255,56,100,0.16);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overscroll-behavior-y: contain; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  font-variant-numeric: oldstyle-nums proportional-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* Headings use tabular lining figures for crisp display */
h1, h2, h3, .mono, .plan__price .mono, .teaser__profit, .board__bignum {
  font-variant-numeric: lining-nums tabular-nums;
}

/* Brand-coloured text selection — instant "someone designed this" signal */
::selection { background: var(--gold); color: #0B1020; }
::-moz-selection { background: var(--gold); color: #0B1020; }

/* Custom scrollbar (desktop only — progressive) */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb {
    background: var(--surface-2); border: 3px solid var(--bg); border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
  html { scrollbar-color: var(--surface-2) var(--bg); scrollbar-width: thin; }
}

/* Accessible, on-brand focus rings (never the browser default blue) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; letter-spacing: -0.01em; }
.serif { font-family: var(--font-serif); font-weight: 500; }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.muted { color: var(--text-dim); }

/* Inline links — elegant underline reveal */
a.link, .link {
  color: var(--text);
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .4s var(--ease-out), color .2s ease;
}
a.link:hover, .link:hover { color: var(--gold); background-size: 100% 1px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; }

/* Editorial rule — a quiet gold hairline, not a hard border */
.rule {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
  opacity: 0.5;
  margin: 0;
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow .bar {
  width: 22px; height: 1.5px;
  background: var(--gold);
  flex: none;
}
.eyebrow__num {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.eyebrow--on { color: rgba(255,255,255,0.7); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--wide { max-width: 860px; }
.section-title {
  font-size: clamp(30px, 4.4vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-title .serif { color: var(--gold); font-weight: 400; }
.section-sub { color: var(--text-dim); margin-top: 18px; font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--solid { background: var(--gold); color: #0B1020; }
.btn--solid:hover { background: #F2C98A; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--text { color: var(--text-dim); padding: 14px 6px; }
.btn--text:hover { color: var(--text); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- background fx ---------- */
.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

/* Mobile: kill heavy paint (grain/orb/grid) for IG in-app browser performance */
@media (max-width: 760px), (prefers-reduced-data: reduce) {
  .fx__grain, .fx__orb, .fx__grid { display: none !important; }
  .fx { background:
      radial-gradient(ellipse 90% 50% at 70% 0%, var(--gold-soft), transparent 60%);
  }
}
.fx__grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 1%); }
}
.fx__orb {
  position: absolute;
  top: -10%; left: 60%;
  width: 760px; height: 760px;
  background: radial-gradient(circle at center, rgba(232,185,122,0.42), rgba(232,185,122,0.12) 38%, transparent 70%);
  filter: blur(28px);
  transform: translate(-50%, 0);
  transition: transform .8s var(--ease-out);
}
.fx__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand__mark { color: var(--gold); flex: none; filter: drop-shadow(0 0 7px rgba(232,185,122,0.32)); }
.brand__chev { stroke: var(--gold); }
.brand__bar { stroke: var(--gold); stroke-width: 1.8; }
.brand__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(42,50,61,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14px; color: var(--text-dim);
  transition: color .2s ease;
  position: relative; padding-bottom: 3px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

/* Brand mark: subtle rotation on hover — a "live" logo, not a sticker */
.brand:hover .brand__mark { transform: rotate(-4deg); }
.brand__mark { transition: transform .5s var(--ease-out); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 0 80px;
}
.hero__stack {
  max-width: 680px; margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 26px;
}
.hero__eyebrow .bar {
  width: 22px; height: 1.5px; background: var(--gold); flex: none;
}
.hero__title {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.hero__title .serif { font-weight: 400; color: var(--gold); display: block; }
.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  max-width: 460px;
  margin-bottom: 26px;
  line-height: 1.5;
}
/* Proof line — pure typography, glyph separators, zero containers (anti-AI) */
.proofline {
  margin: 6px 0 30px;
  font-size: 13px; color: var(--text-dim); letter-spacing: 0.01em;
  text-align: center; line-height: 1.7;
}
.proofline__sep {
  color: var(--gold); font-size: 7px; margin: 0 12px; vertical-align: middle;
  opacity: 0.7;
}

/* Centered email form */
.hero__form { width: 100%; max-width: 440px; margin: 0 0 18px; }
.hero__field {
  display: flex; gap: 8px; width: 100%;
}
.hero__field input {
  flex: 1; min-width: 0;
  padding: 14px 16px; border-radius: 6px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-2);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .2s ease;
}
.hero__field input::placeholder { color: var(--text-mute); }
.hero__field input:focus { outline: none; border-color: var(--gold); }
.hero__field .btn { white-space: nowrap; padding: 14px 18px; }
.hero__micro {
  font-size: 11.5px; color: var(--text-mute); max-width: 380px; line-height: 1.5;
}

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-mute);
}
.hero__scrollline { width: 1px; height: 48px; background: linear-gradient(var(--border-2), transparent); position: relative; overflow: hidden; }
.hero__scrollline::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- ticket (hero sample) ---------- */
.ticket {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.ticket__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.ticket__tag {
  font-size: 10px; letter-spacing: 0.14em; color: var(--coral);
  padding: 4px 9px; border: 1px solid var(--coral-soft); border-radius: 4px;
}
.ticket__live { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }
.ticket__live::before { content: "›"; color: var(--gold); margin-right: 7px; }

.ticket__body { padding: 24px 24px 22px; }
.ticket__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.ticket__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--text-mute); text-transform: uppercase; margin-bottom: 6px; }
.ticket__v { color: var(--text); font-size: 15px; }
.ticket__verdict { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--gold); font-family: var(--font-mono); }
.ticket__verdictdot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.ticket__line { height: 1px; background: var(--border); margin: 18px 0; }
.ticket__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.ticket__net { display: flex; justify-content: space-between; align-items: baseline; }
.ticket__net span:first-child { color: var(--text-dim); font-size: 14px; }
.ticket__net .ticket__k { display: inline; margin: 0; }
.ticket__net .big { font-size: 30px; font-weight: 500; }
.ticket__note { font-size: 11px; color: var(--text-mute); margin-top: 16px; line-height: 1.5; }

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  padding: 16px 0;
  display: grid;
  gap: 6px;
}
.marquee__label { font-size: 10px; letter-spacing: 0.16em; color: var(--text-mute); text-align: center; text-transform: uppercase; }
.marquee__track {
  display: flex; align-items: center; gap: 22px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  animation: marquee 42s linear infinite;
  width: max-content;
  padding: 0 22px;
}
.marquee__track .sep { color: var(--gold); opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- generic section spacing ---------- */
section { position: relative; z-index: 1; }
.cover, .control, .proven, .legal, .expert, .teaser, .how, .desk, .board, .pricing, .quote, .faq { padding: 120px 0; }

/* ---------- proven ---------- */
.proven { border-top: 1px solid var(--border); }
.proven__center { max-width: 760px; margin: 0 auto; text-align: center; }
.proven__center .eyebrow { justify-content: center; }
.proven__lede { font-size: 17px; color: var(--text-dim); margin-top: 22px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Editorial stats grid — unique graphic, no AI pills */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin: 48px auto 0; max-width: 880px;
  background: var(--border); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden;
}
.stats__item {
  background: var(--bg); padding: 28px 20px;
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
}
.stats__n { font-size: clamp(28px, 3.5vw, 40px); line-height: 1; letter-spacing: -0.03em; }
.stats__l { font-size: 12.5px; color: var(--text-dim); line-height: 1.5; max-width: 180px; }

/* ---------- legality ---------- */
.legal { border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.legal__panel {
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, var(--gold-soft), transparent 65%),
    var(--surface);
  padding: 48px;
}
.legal__head { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 36px; }
.legal__shield { color: var(--gold); flex: none; margin-top: 4px; }
.legal__title { font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.03em; line-height: 1.1; }
.legal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.legal__col h3 { font-size: 18px; margin-bottom: 10px; color: var(--gold); letter-spacing: -0.01em; }
.legal__col p { font-size: 15px; color: var(--text-dim); line-height: 1.65; }
.legal__note {
  padding: 24px 26px;
  border: 1px dashed var(--border-2); border-radius: 5px;
  background: rgba(0,0,0,0.2);
  font-size: 14.5px; color: var(--text-dim); line-height: 1.7;
}
.legal__note strong { color: var(--text); font-weight: 500; }
.legal__note + .legal__note { margin-top: 16px; }
.legal__note--alt {
  background: linear-gradient(135deg, var(--gold-soft), var(--surface-2));
  border-color: rgba(232,185,122,0.25);
}

/* ---------- coverage band (sports + casino) ---------- */
.cover { border-top: 1px solid var(--border); }

/* ---------- control band (we advise, you execute) ---------- */
.control { border-top: 1px solid var(--border); background: var(--bg-2); }
.control__panel {
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, var(--gold-soft), transparent 65%),
    var(--surface);
  padding: 48px;
}
.control__head { margin-bottom: 36px; }
.control__title { font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.03em; line-height: 1.1; }
.control__title .serif { color: var(--gold); font-weight: 400; }
.control__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.control__item { padding: 28px; border: 1px solid var(--border); border-radius: 5px; background: rgba(0,0,0,0.2); }
.control__icon { color: var(--gold); margin-bottom: 18px; }
.control__item h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -0.01em; }
.control__item p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.control__item strong { color: var(--text); font-weight: 500; }
.control__foot {
  margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--border);
  font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--text-dim);
  max-width: 760px;
}
.cover__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cover__item {
  padding: 44px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.cover__glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 4px;
  border: 1px solid var(--border-2);
  background: rgba(0,0,0,0.3);
  font-size: 26px; color: var(--gold);
  margin-bottom: 22px;
}
.cover__item:nth-child(2) .cover__glyph { color: var(--coral); }
.cover__item h3 { font-size: 26px; margin-bottom: 14px; letter-spacing: -0.02em; }
.cover__item p { color: var(--text-dim); font-size: 16px; }
.cover__line {
  text-align: center; margin-top: 40px;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px); color: var(--text);
  max-width: 720px; margin-left: auto; margin-right: auto;
  letter-spacing: -0.01em;
}

/* ---------- how: flows ---------- */
.flows__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.flow {
  padding: 40px;
  border: 1px solid var(--border-2);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display: flex; flex-direction: column;
}
.flow--welcome { background: linear-gradient(180deg, var(--gold-soft), transparent); border-color: rgba(232,185,122,0.22); }
.flow--recurring { background: linear-gradient(180deg, var(--coral-soft), transparent); border-color: rgba(255,56,100,0.20); }
.flow__head { margin-bottom: 18px; }
.flow__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.flow__tag--alt { color: var(--coral); }
.flow__head h3 { font-size: 25px; margin-top: 12px; letter-spacing: -0.02em; }
.flow > p { color: var(--text-dim); margin-bottom: 24px; font-size: 16px; }
.flow > p em { color: var(--text); font-style: normal; }
.flow__list { display: grid; gap: 10px; margin-bottom: 22px; }
.flow__list li { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; }
.flow__list .mono { color: var(--gold); font-size: 12px; }
.flow--recurring .flow__list .mono { color: var(--coral); }
.flow__aside {
  margin-top: auto;
  padding-top: 18px; border-top: 1px dashed var(--border);
  font-size: 13px; color: var(--text-mute);
}
.flow__aside strong { color: var(--text-dim); font-weight: 500; }

/* principle */
.principle {
  margin-top: 64px;
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(0,0,0,0.2);
}
.principle__num { font-family: var(--font-serif); font-size: 56px; color: var(--gold); line-height: 0.8; }
.principle__body h3 { font-size: 22px; margin-bottom: 12px; letter-spacing: -0.02em; }
.principle__body p { color: var(--text-dim); font-size: 16px; }

/* ---------- the desk ---------- */
.desk { border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.desk__layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: start; }
.desk__text p { font-size: 18px; color: var(--text-dim); margin-bottom: 22px; }
.desk__text strong { color: var(--text); font-weight: 500; }
.desk__text .muted { font-size: 16px; }

.desk__creds { display: grid; gap: 0; }
.desk__creds li {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.desk__creds li:last-child { border-bottom: 1px solid var(--border); }
.desk__credn { font-size: 34px; color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.desk__credl { font-size: 14px; color: var(--text-dim); }

/* ---------- welcome board ---------- */
.board { border-top: 1px solid var(--border); }

/* ---------- dedicated expert ---------- */
.expert { border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.expert__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.expert__lede { font-size: 18px; color: var(--text-dim); margin-top: 26px; max-width: 440px; }
.expert__body { display: grid; gap: 24px; }
.expert__card {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  border: 1px solid var(--border-2); border-radius: 6px; overflow: hidden;
  background: var(--border);
}
.expert__stage { background: var(--surface); padding: 30px 26px; }
.expert__stagen { font-size: 13px; color: var(--gold); display: block; margin-bottom: 16px; }
.expert__stage h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.expert__stage p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.expert__channel {
  border: 1px solid var(--border); border-radius: 5px;
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--gold-soft), transparent 60%);
}
.expert__channelk { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.expert__channel p { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
.expert__channel strong { color: var(--text); font-weight: 500; }
.board__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.board__stat {
  padding: 56px 48px;
  background:
    radial-gradient(ellipse 90% 70% at 30% 20%, var(--gold-soft), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.board__bignum {
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--gold);
  text-shadow: 0 2px 24px rgba(11,16,32,0.6);
  margin-bottom: 24px;
}
.board__biglabel { font-size: 18px; color: var(--text); line-height: 1.5; }
.board__biglabel .gold { font-weight: 500; }
.board__detail { padding: 48px; display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.board__detailk { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }
.board__points { display: grid; gap: 14px; }
.board__points li {
  position: relative; padding-left: 24px;
  font-size: 15px; color: var(--text-dim); line-height: 1.55;
}
.board__points li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.board__gate {
  margin-top: 6px;
  padding: 22px 24px;
  border: 1px dashed var(--border-2);
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.board__gate p { font-size: 14px; color: var(--text-mute); }

/* ---------- pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pricing__grid--three { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan {
  position: relative;
  padding: 0 0 32px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background: var(--surface);
  display: flex; flex-direction: column;
  text-align: center;
  transition: transform .4s var(--ease-out), border-color .4s ease, box-shadow .4s ease;
  overflow: hidden;
}
@media (pointer: fine) {
  .plan:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.6); }
}
.plan--feature {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: var(--gold-line);
  box-shadow: 0 24px 50px -24px rgba(232,185,122,0.25);
}
.plan--feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.plan__tag {
  display: block; padding: 14px 0 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute);
  border-bottom: 1px solid var(--border);
}
.plan__tag.gold { color: var(--gold); }
.plan__priceblock { padding: 26px 24px 22px; border-bottom: 1px solid var(--border); }
.plan__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 6px; }
.plan__price .mono { font-size: clamp(34px, 4vw, 44px); font-weight: 500; letter-spacing: -0.03em; color: var(--text); }
.plan__cadence { color: var(--text-mute); font-size: 13px; }
.plan__fee { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.plan__fee .mono { color: var(--coral); font-weight: 500; }
.plan__save {
  display: block; margin: 14px auto 0; max-width: 200px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding: 5px 10px; background: var(--gold-soft); border-radius: 3px;
}
.plan__ribbon {
  position: absolute; top: 14px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: #0B1020;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 4px 40px;
}
.plan__list { display: grid; gap: 12px; margin: 24px auto 28px; flex: 1; text-align: left; max-width: 220px; list-style: none; padding: 0 24px; }
.plan__list li { position: relative; padding-left: 26px; font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.plan .btn { margin: 0 16px; width: calc(100% - 32px); }
.pricing__note { margin-top: 32px; text-align: center; font-size: 14px; color: var(--text-mute); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- plan "save" badge ---------- */
.plan__save {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); padding: 5px 10px;
  background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: 4px;
}

/* ---------- teaser (blurred live offers) ---------- */
.teaser { border-top: 1px solid var(--border); }
.teaser__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.teaser__card {
  position: relative; overflow: hidden;
  padding: 26px 24px;
  border: 1px solid var(--border-2);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  transition: transform .4s var(--ease-out), border-color .4s ease, box-shadow .4s ease;
}
@media (pointer: fine) {
  .teaser__card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-line);
    box-shadow: 0 18px 40px -20px rgba(232,185,122,0.25);
  }
}
.teaser__card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s ease;
}
@media (pointer: fine) {
  .teaser__card:hover::after { opacity: 0.6; }
}
.teaser__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.teaser__type { font-size: 11px; letter-spacing: 0.06em; color: var(--text-mute); text-transform: uppercase; }
.teaser__status { font-size: 11px; color: var(--gold); }
.teaser__profit { font-size: 34px; letter-spacing: 0.04em; line-height: 1; margin-bottom: 8px; filter: blur(3px); user-select: none; }
.teaser__meta { font-size: 12px; color: var(--text-dim); margin-bottom: 22px; }
.teaser__site {
  display: inline-block;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--text-dim);
}
.teaser__site::after { content: ""; }
.teaser__nj { color: var(--text-mute); font-size: 11px; }
.teaser__blur {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(180deg, transparent, var(--surface-2));
  pointer-events: none;
}
.teaser__foot { margin-top: 28px; font-size: 12px; color: var(--text-mute); text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.teaser__first {
  display: block; margin: 26px auto 0; max-width: 520px;
  text-align: center; font-size: 15.5px; color: var(--text); line-height: 1.6;
  padding: 14px 20px;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
}
.teaser__first strong { font-weight: 500; }

/* ---------- payment terms ---------- */
.pay {
  margin: 36px auto 0; max-width: 680px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  overflow: hidden;
  text-align: center;
}
.pay__head {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.pay__k { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }
.pay__split { font-size: 13px; color: var(--gold); letter-spacing: 0.04em; }
.pay__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 34px 28px;
}
.pay__half { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.pay__halfn { font-size: 38px; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.pay__halfl { font-size: 15px; color: var(--text); }
.pay__halfl strong { font-weight: 530; }
.pay__half p { font-size: 13px; color: var(--text-mute); margin-top: 6px; line-height: 1.5; max-width: 260px; }
.pay__div { font-family: var(--font-serif); font-size: 30px; color: var(--text-mute); }
.pay__why {
  padding: 18px 28px; border-top: 1px dashed var(--border);
  font-size: 13.5px; color: var(--text-dim); line-height: 1.6;
}

/* ---------- quote ---------- */
.quote { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--border); }
.quote blockquote { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.quote__mark { font-size: 90px; line-height: 0.4; color: var(--gold); margin-bottom: 24px; opacity: 0.7; }
.quote__text { font-family: var(--font-serif); font-size: clamp(24px, 3.2vw, 36px); line-height: 1.35; letter-spacing: -0.015em; color: var(--text); }
.quote__by { margin-top: 30px; font-size: 13px; color: var(--text-mute); }

/* ---------- faq ---------- */
.faq__list { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--border); padding: 0; position: relative; }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item::before {
  content: ""; position: absolute; left: -16px; top: 26px; bottom: 26px;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease-out);
  border-radius: 2px;
}
.faq__item[open]::before { transform: scaleY(1); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 19px; letter-spacing: -0.01em;
  transition: color .2s ease, padding-left .3s var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 100% no-repeat;
  transition: transform .4s var(--ease-out), opacity .25s ease;
  opacity: 0.7;
}
.faq__item summary:hover::after { opacity: 1; }
.faq__item[open] summary { color: var(--gold); padding-left: 10px; }
.faq__item[open] summary::after { transform: rotate(135deg); opacity: 1; }
.faq__item summary:hover { color: var(--gold); }
.faq__item p { color: var(--text-dim); padding: 0 0 28px; font-size: 16px; max-width: 700px; }
.faq__item p em { color: var(--text); font-style: normal; }

/* ---------- cta ---------- */
.cta { padding: 60px 0 140px; }
.cta__panel {
  text-align: center;
  padding: clamp(48px, 7vw, 90px) 28px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--gold-soft), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  position: relative; overflow: hidden;
}
.cta__title { font-size: clamp(34px, 5vw, 58px); letter-spacing: -0.03em; margin-bottom: 20px; }
.cta__title .serif { color: var(--gold); font-weight: 400; }
.cta__sub { color: var(--text-dim); font-size: 17px; max-width: 540px; margin: 0 auto 38px; }
.cta__form { max-width: 480px; margin: 0 auto 28px; }
.cta__step { display: block; }
/* Step 2 is hidden by CSS until JS adds .is-open — robust against any JS/hidden-attr race */
#ctaStep2 { display: none; }
#ctaStep2.is-open { display: block; }
.cta__fields { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cta__fields input {
  flex: 1; min-width: 240px;
  padding: 15px 18px; border-radius: 4px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-2);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .2s ease;
}
.cta__fields input::placeholder { color: var(--text-mute); }
.cta__fields input:focus { outline: none; border-color: var(--gold); }

/* Step 2 fields */
.cta__steptag { font-size: 12px; color: var(--text-dim); margin-bottom: 16px; text-align: center; }
.cta__row { display: flex; gap: 10px; margin-bottom: 10px; }
.cta__row input { flex: 1; }
#ctaStep2 input[type="text"], #ctaStep2 input[type="tel"] {
  width: 100%; padding: 15px 18px; border-radius: 4px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-2);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .2s ease;
}
#ctaStep2 input[type="text"]::placeholder, #ctaStep2 input[type="tel"]::placeholder { color: var(--text-mute); }
#ctaStep2 input[type="text"]:focus, #ctaStep2 input[type="tel"]:focus { outline: none; border-color: var(--gold); }
.cta__pref { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 16px 0 20px; }
.cta__prefk { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-right: 6px; }
.cta__chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-dim);
  padding: 8px 12px; border: 1px solid var(--border-2); border-radius: 4px;
  cursor: pointer; transition: border-color .2s ease, color .2s ease;
}
.cta__chip input { accent-color: var(--gold); }
.cta__chip:has(input:checked) { border-color: var(--gold); color: var(--text); }
.cta__block { width: 100%; justify-content: center; }
.cta__done { color: var(--text); font-size: 15px; width: 100%; padding: 14px 0; line-height: 1.6; }
.cta__done .gold { margin-right: 6px; }
.cta__err { color: var(--text); font-size: 15px; width: 100%; padding: 14px 0; line-height: 1.6; }
.cta__err .coral { color: var(--coral); margin-right: 6px; }
.cta__points {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  margin: 0 auto 24px; max-width: 640px;
}
.cta__points li { position: relative; padding-left: 16px; color: var(--text-mute); font-size: 13px; }
.cta__points li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.cta__fine { font-size: 12px; color: var(--text-mute); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--border); padding: 70px 0 50px; position: relative; z-index: 1; background: var(--bg-2); }
.foot__top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 50px; flex-wrap: wrap; }
.foot__tag { color: var(--text-mute); font-size: 14px; margin-top: 14px; max-width: 360px; }
.foot__nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.foot__nav a { color: var(--text-dim); font-size: 14px; transition: color .2s ease; }
.foot__nav a:hover { color: var(--text); }
.foot__legal { display: grid; gap: 14px; max-width: 880px; }
.foot__legal p { color: var(--text-mute); font-size: 12.5px; line-height: 1.7; }
.foot__legal strong { color: var(--text-dim); }
.foot__copy { margin-top: 16px; font-size: 11px; letter-spacing: 0.08em; }
.foot__colophon { margin-top: 6px; font-size: 10px; letter-spacing: 0.12em; color: var(--text-mute); opacity: 0.6; text-transform: uppercase; }
.foot__sources { margin-top: 22px; font-size: 11.5px; color: var(--text-mute); line-height: 1.8; }
.foot__sources .mono { color: var(--text-dim); margin-right: 6px; }
.foot__sources a { color: var(--text-dim); border-bottom: 1px dotted var(--border-2); transition: color .2s ease; }
.foot__sources a:hover { color: var(--gold); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- CRO additions: mechanism diagram, proof row, 3-steps, center heads ---------- */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Trust panel — "Are we a scam?" */
.trust { padding: 80px 0; }
.trust__panel { text-align: center; max-width: 680px; margin: 0 auto; }
.trust__q {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(28px, 4.5vw, 44px); color: var(--gold); font-weight: 400;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.trust__a {
  font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 18px;
}
.trust__a strong { color: var(--text); font-weight: 500; }
.trust__sig { font-size: 12px; color: var(--text-mute); margin-top: 22px; letter-spacing: 0.08em; }


.flow {
  display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
  margin: 10px auto 28px;
  max-width: 100%;
}
.flow__step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 0 14px;
  flex: 0 1 auto;
}
.flow__n {
  font-family: var(--font-serif); font-style: italic;
  font-size: 30px; line-height: 1; color: var(--gold); font-weight: 400;
}
.flow__t {
  font-size: 12.5px; line-height: 1.3; color: var(--text-dim); font-weight: 400;
  text-align: center; letter-spacing: 0;
  text-transform: lowercase;
}
.flow__dash {
  display: block; width: 28px; height: 1px; background: var(--border-2);
  flex: none;
}
@media (pointer: fine) {
  .flow__step:hover .flow__n { color: var(--text); transition: color .3s ease; }
}

/* Social proof row (anti-scam credibility) */
.proof__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border);
  width: 100%; max-width: 520px;
}
.proof__row li { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.proof__row strong { font-size: 18px; }
.proof__row span { font-size: 11px; color: var(--text-mute); }

/* 3-step process with times */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps3__item { padding: 26px; border: 1px solid var(--border-2); border-radius: 6px; background: var(--surface); text-align: center; }
.steps3__num { font-size: 13px; color: var(--gold); display: block; margin-bottom: 6px; }
.steps3__t { display: block; font-size: 12px; color: var(--text-mute); font-weight: 400; margin-bottom: 18px; }
.steps3__item h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.steps3__item p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }
.how__rule { text-align: center; margin-top: 32px; font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--text-dim); }

/* Inline final CTA (inside FAQ section) */
.cta__inline { text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.cta__inline h3 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 18px; letter-spacing: -0.02em; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .steps3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cover__grid { grid-template-columns: 1fr; }
  .control__grid { grid-template-columns: 1fr; }
  .proven__layout { grid-template-columns: 1fr; gap: 48px; }
  .legal__grid { grid-template-columns: 1fr; gap: 28px; }
  .expert__layout { grid-template-columns: 1fr; gap: 48px; }
  .flows__grid { grid-template-columns: 1fr; }
  .desk__layout { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid--three { grid-template-columns: 1fr; }
  .board__layout { grid-template-columns: 1fr; }
  .board__stat { border-right: none; border-bottom: 1px solid var(--border); }
  .teaser__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 760px) {
  .expert__card { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cover, .control, .proven, .legal, .expert, .teaser, .how, .desk, .board, .pricing, .quote, .faq { padding: 80px 0; }
  .container, .hero__stack, .nav__inner { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 90px; padding-bottom: 40px; min-height: auto; }
  .hero__pill { font-size: 10px; margin-bottom: 18px; }
  .hero__title { font-size: clamp(30px, 9vw, 42px); margin-bottom: 14px; }
  .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .flow { flex-wrap: wrap; gap: 12px 0; max-width: 320px; }
  .flow__step { padding: 0 8px; }
  .flow__dash { width: 18px; }
  .flow__n { font-size: 22px; }
  .flow__t { font-size: 11.5px; }
  .proofline { font-size: 12px; }
  .proofline__sep { margin: 0 8px; }
  .proof__row { gap: 12px 20px; }
  .proof__row strong { font-size: 16px; }
  .hero__proof li { font-size: 11.5px; padding: 5px 10px; }
  /* Mobile form: stack email + button vertically (thumb-friendly) */
  .hero__field { flex-direction: column; }
  .hero__field input { font-size: 16px; padding: 15px; }
  .hero__field .btn { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
  .hero__micro { font-size: 11px; }
  .hero__scroll { display: none; }
  /* Bigger tap targets on nav CTA for thumb */
  .nav__cta .btn--sm { padding: 11px 18px; font-size: 14px; }
  /* Compress ticket on mobile: less padding, single column net */
  .ticket { font-size: 14px; }
  .ticket__body { padding: 18px; }
  .ticket__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ticket__net .big { font-size: 26px; }
  .ticket__note { display: none; }
  .nav__cta .btn--ghost { display: none; }
  /* IG in-app browser / small phones: compress eyebrow + sub further so CTA sits above fold */
  .hero .eyebrow { font-size: 10.5px; margin-bottom: 16px; letter-spacing: 0.1em; }
  .hero .eyebrow .bar { width: 16px; }
  .hero__sub { max-width: 100%; }
  .legal__panel { padding: 26px; }
  .proven__fig { grid-template-columns: 1fr; gap: 10px; }
  .control__panel { padding: 26px; }
  .control__item { padding: 22px; }
  .cover__item, .flow, .plan, .principle, .expert__stage { padding: 24px; }
  .board__stat, .board__detail { padding: 32px 26px; }
  .desk__creds li { grid-template-columns: 1fr; gap: 8px; }
  .desk__credn { font-size: 28px; }
  .principle { grid-template-columns: 1fr; gap: 16px; }
  .principle__num { font-size: 44px; }
  .cta__fields { flex-direction: column; }
  .cta__fields input { min-width: 0; padding: 16px; font-size: 16px; }
  .cta__fields .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
  .cta__row { flex-direction: column; }
  .teaser__grid { grid-template-columns: 1fr; }
  .pay__grid { grid-template-columns: 1fr; gap: 20px; padding: 26px 22px; }
  .pay__div { display: none; }
  .pay__head { padding: 16px 22px; }
  .pay__why { padding: 16px 22px; }
}

/* ---------- WhatsApp live-chat FAB (bottom right) ---------- */
.wa-fab {
  position: fixed; bottom: 20px; right: 20px;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 2px 6px rgba(37,211,102,0.3);
  z-index: 90;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.wa-fab svg { width: 26px; height: 26px; }
@media (pointer: fine) {
  .wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 4px 10px rgba(37,211,102,0.4); }
}
/* Subtle breathing pulse to draw the eye, very gentle */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-fab { animation: wa-pulse 3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; }
}

/* =====================================================================
   CRO COMPONENTS — editorial style, sharp corners, zero AI tells
   ===================================================================== */

/* ---------- guarantee badge (under form button) ---------- */
.guarantee {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 12px;
  font-size: 12px; color: var(--text-mute); letter-spacing: 0.01em;
}
.guarantee__icon { color: var(--gold); flex: none; }
.guarantee__sep { color: var(--gold); opacity: 0.5; margin: 0 2px; }

/* ---------- thank-you block (after submit) ---------- */
.thanks {
  text-align: center;
  padding: 28px 24px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(232,185,122,0.06), transparent);
}
.thanks__check { color: var(--gold); margin: 0 auto 18px; }
.thanks__title { font-size: 24px; margin-bottom: 8px; letter-spacing: -0.02em; }
.thanks__title span { color: var(--gold); }
.thanks__sub { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; }
.thanks__steps {
  display: grid; gap: 12px; margin: 0 auto 26px; max-width: 340px;
  list-style: none; padding: 0; text-align: left;
}
.thanks__steps li {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 13.5px; color: var(--text-dim); line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.thanks__steps li:last-child { border-bottom: 0; }
.thanks__steps .mono { color: var(--gold); font-size: 11px; flex: none; }
.thanks__wa { justify-content: center; width: 100%; }
.thanks__wa svg { color: #25D366; }
.thanks__note { margin-top: 10px; font-size: 11px; color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- urgency counter (bonuses expiring) — editorial treatment ---------- */
.expire {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 22px;
  padding: 0 6px;
}
.expire__row {
  display: flex; align-items: baseline; gap: 10px;
}
.expire__n {
  font-size: clamp(28px, 5vw, 36px);
  color: var(--coral); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(255,56,100,0.35);
}
.expire__trend {
  color: var(--coral); font-size: 14px; opacity: 0.7;
  animation: expire-blink 2.4s ease-in-out infinite;
}
@keyframes expire-blink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.3; }
}
.expire__rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,56,100,0.4), transparent);
}
.expire__l {
  font-size: 11.5px; color: var(--text-mute); letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* ---------- exit intent modal ---------- */
.exit {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
/* CRITICAL: respect the hidden attribute — display:flex would override it */
.exit[hidden] { display: none; }
.exit__backdrop {
  position: absolute; inset: 0;
  background: rgba(7,9,12,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.exit__panel {
  position: relative; z-index: 1;
  max-width: 440px; width: 100%;
  background: var(--surface);
  border: 1px solid var(--gold-line);
  padding: 44px 40px 36px;
  text-align: center;
  animation: exit-in .5s var(--ease-out);
}
@keyframes exit-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.exit__close {
  position: absolute; top: 14px; right: 14px;
  color: var(--text-mute); padding: 6px;
  transition: color .2s ease;
}
.exit__close:hover { color: var(--text); }
.exit__eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.exit__eyebrow .bar { width: 18px; height: 1.5px; background: var(--coral); }
.exit__title { font-size: clamp(26px, 5vw, 34px); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.1; }
.exit__title .serif { color: var(--coral); }
.exit__sub { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 28px; }
.exit__cta { width: 100%; justify-content: center; }
.exit__dismiss {
  display: block; margin: 18px auto 0;
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: var(--text-mute);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--border-2);
  transition: color .2s ease;
}
.exit__dismiss:hover { color: var(--text-dim); }

/* Exit-intent + Start modal shared: hidden attr respect */
.exit[hidden] { display: none; }

/* ---------- quiz accessory (inside step 1, below guarantee) ---------- */
.quiz {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.quiz__hint {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 16px;
}
.quiz__divider { display: none; }

/* ---------- start modal step 2 ---------- */
/* ---------- exit + start modal step 2 (shared rules) ---------- */
.exit__form { margin: 0 0 4px; }
.exit__step { display: block; }
#exitStep2, #startStep2 { display: none; }
#exitStep2.is-open, #startStep2.is-open { display: block; }
#exitStep2 input[type="text"], #exitStep2 input[type="tel"],
#startStep2 input[type="text"], #startStep2 input[type="tel"] {
  width: 100%; padding: 13px 16px; border-radius: 4px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-2);
  color: var(--text); font-size: 15px; font-family: inherit;
  margin-bottom: 10px;
  box-sizing: border-box;
}
#exitStep2 input::placeholder, #startStep2 input::placeholder { color: var(--text-mute); }
#exitStep2 input:focus, #startStep2 input:focus { outline: none; border-color: var(--gold); }
.exit__done {
  padding: 18px 0 6px; font-size: 15px; color: var(--text);
  border-top: 1px solid var(--gold-line); margin-top: 6px;
}
.exit__done .gold { font-size: 18px; }
.exit__title { font-size: clamp(24px, 4.5vw, 32px); }
.exit__panel { max-width: 460px; }

/* ---------- sticky CTA (mobile) ---------- */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11,16,32,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line);
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
}
.sticky.is-visible { transform: translateY(0); }
.sticky__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 15px;
  background: var(--gold); color: #0B1020;
  font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
}
.sticky__btn:active { background: #F2C98A; }
/* When sticky bar is visible, lift the WhatsApp FAB above it */
.wa-fab { transition: transform .3s var(--ease-out), box-shadow .3s ease, bottom .45s var(--ease-out); }
body.has-sticky .wa-fab { bottom: 92px; }
/* hide sticky when form visible (avoid redundancy) */
.sticky.is-form-visible { transform: translateY(100%); }

/* ---------- live activity toasts ---------- */
.toasts {
  position: fixed; bottom: 84px; left: 16px;
  z-index: 85;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
  max-width: 280px;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(17,21,30,0.96);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  font-size: 12px; color: var(--text-dim);
  animation: toast-in .4s var(--ease-out), toast-out .4s var(--ease) forwards;
  animation-delay: 0s, var(--toast-life, 5s);
}
.toast__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none;
}
.toast strong { color: var(--text); font-weight: 500; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: none; }
}
@keyframes toast-out {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(8px); }
}

/* ---------- responsive for CRO components ---------- */
@media (max-width: 620px) {
  .exit__panel { padding: 36px 24px 30px; }
  .sticky { display: block; }
  .toasts { bottom: 96px; left: 12px; right: 76px; max-width: none; }
  .toast { font-size: 11.5px; padding: 10px 12px; }
  .expire { gap: 5px; margin-top: 18px; }
  .expire__n { font-size: 26px; }
  .expire__trend { font-size: 12px; }
  .expire__l { font-size: 10.5px; }
}
@media (min-width: 621px) {
  .sticky { display: none; }
}

/* =====================================================================
   CRO v2 — quiz, progress, inline validation, idle bubble, ticker
   ===================================================================== */

/* ---------- progress indicator (3 segments) ---------- */
.progress {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 20px;
}
.progress__seg {
  width: 28px; height: 2px;
  background: var(--border-2);
  transition: background .4s ease;
}
.progress__seg.is-done { background: var(--gold); }

/* ---------- quiz (step 1) ---------- */
.cta__step.is-hidden { display: none; }
.quiz__q {
  font-size: 14px; color: var(--text-dim); margin-bottom: 10px;
  text-align: center;
}
.quiz__q--2 { margin-top: 18px; }
.quiz__opts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 4px;
}
.quiz__opt {
  padding: 10px 16px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-dim);
  font-size: 13.5px; font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
}
.quiz__opt:hover { border-color: var(--gold-line); color: var(--text); }
.quiz__opt.is-sel {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}
.quiz__confirm {
  font-size: 11.5px; color: var(--gold); text-align: center;
  margin-bottom: 14px; letter-spacing: 0.02em;
}
#quizNext { margin-top: 18px; }
#quizNext:disabled {
  opacity: 0.35; cursor: not-allowed;
}

/* ---------- inline email validation ---------- */
.hero__field { position: relative; }
.hero__field input.is-valid { border-color: #34D399; }
.hero__field .field-check {
  position: absolute; right: 132px; top: 50%; transform: translateY(-50%);
  color: #34D399; opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.hero__field input.is-valid ~ .field-check { opacity: 1; }

/* ---------- single name field (step 3) ---------- */
#ctaStep2 input[type="text"], #ctaStep2 input[type="tel"] {
  width: 100%; padding: 14px 16px; border-radius: 4px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-2);
  color: var(--text); font-size: 15px; font-family: inherit;
  margin-bottom: 10px;
}
#ctaStep2 input::placeholder { color: var(--text-mute); }
#ctaStep2 input:focus { outline: none; border-color: var(--gold); }

/* ---------- WhatsApp idle bubble ---------- */
.wa-bubble {
  position: fixed; bottom: 88px; right: 20px;
  max-width: 240px;
  background: var(--surface-2);
  border: 1px solid var(--gold-line);
  padding: 14px 34px 14px 16px;
  z-index: 82;
  animation: wa-bubble-in .5s var(--ease-out);
}
.wa-bubble p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.wa-bubble__close {
  position: absolute; top: 8px; right: 8px;
  color: var(--text-mute); padding: 4px;
}
.wa-bubble__close:hover { color: var(--text); }
@keyframes wa-bubble-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
body.has-sticky .wa-bubble { bottom: 150px; }

/* ---------- stats ticker (trust section) ---------- */
.ticker {
  margin-top: 32px; text-align: center;
  font-size: 13px; color: var(--text-dim); line-height: 1.8;
}
.ticker strong { font-size: 15px; }

/* mobile */
@media (max-width: 620px) {
  .quiz__opt { padding: 11px 14px; font-size: 13px; }
  .wa-bubble { right: 14px; bottom: 92px; max-width: 210px; }
  body.has-sticky .wa-bubble { bottom: 156px; }
  .ticker { font-size: 12px; }
}

/* =====================================================================
   CONFIGURATOR — step quiz + direct guide sales
   ===================================================================== */
.cfg { width: 100%; max-width: 680px; margin: 0 auto 26px; }
.cfg__step { display: none; text-align: center; }
.cfg__step--active { display: block; animation: cfg-in .5s var(--ease-out); }
@keyframes cfg-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cfg__q { font-size: clamp(19px, 3vw, 24px); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 22px; }

/* Step 1 big choices */
.cfg__choices { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cfg__choice {
  min-width: 180px; padding: 20px 26px;
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text); font-family: inherit; cursor: pointer;
  transition: border-color .25s ease, transform .3s var(--ease-out);
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.cfg__choice strong { font-size: 20px; font-weight: 500; }
.cfg__choice span { font-size: 13px; color: var(--text-mute); }
.cfg__choice:hover { border-color: var(--gold); transform: translateY(-2px); }
.cfg__choice {
  animation: choice-glow 2.8s ease-in-out infinite;
}
.cfg__choice:nth-child(2) { animation-delay: 1.4s; }
@keyframes choice-glow {
  0%, 100% { border-color: var(--border-2); box-shadow: 0 0 0 rgba(232,185,122,0); }
  50%      { border-color: var(--gold); box-shadow: 0 0 26px rgba(232,185,122,0.28), inset 0 0 12px rgba(232,185,122,0.06); }
}

/* Step 2 grid of bookmaker chips */
.cfg__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.cfg__grid .quiz__opt { padding: 10px 14px; font-size: 13px; }

/* help toggles */
.cfg__help {
  margin-top: 22px; padding: 6px 14px;
  background: none; border: 1px solid var(--border); border-radius: 100px;
  color: var(--text-mute); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.cfg__help:hover { color: var(--gold); border-color: var(--gold-line); }
.cfg__helpbox {
  margin: 14px auto 0; max-width: 480px;
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(232,185,122,0.05);
  font-size: 13px; color: var(--text-dim); line-height: 1.6; text-align: left;
}

/* Results */
.cfg__verdict {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.cfg__res-title { font-size: clamp(22px, 3.4vw, 30px); letter-spacing: -0.02em; margin-bottom: 10px; }
.cfg__res-sub { font-size: 14.5px; color: var(--text-dim); max-width: 460px; margin: 0 auto 30px; line-height: 1.6; }

/* guide cards */
.guide__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-bottom: 20px; text-align: left; }
.guide, .bundle {
  position: relative;
  background: var(--surface); border: 1px solid var(--border-2);
  padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.guide__head, .bundle__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.guide__head strong, .bundle__head strong { font-size: 16.5px; font-weight: 500; letter-spacing: -0.01em; }
.guide__promo { font-size: 10.5px; color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; }
.guide__row { display: flex; justify-content: space-between; align-items: baseline; }
.guide__k { font-size: 12px; color: var(--text-mute); }
.guide__v { font-size: 14px; color: var(--text); }
.guide__row--price { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 2px; }
.guide__row--price .guide__v { font-size: 20px; font-weight: 500; }
.guide__keep { font-size: 12px; color: var(--text-dim); }
.guide__cta { margin-top: 10px; justify-content: center; padding: 12px; font-size: 14px; }

/* bundle */
.bundle {
  max-width: 440px; margin: 0 auto; text-align: left;
  border-color: var(--gold-line);
  background: linear-gradient(180deg, rgba(232,185,122,0.08), var(--surface));
}
.bundle__ribbon {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0B1020;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(232,185,122,0.35);
}
.bundle__pct { font-size: 10px; color: var(--gold); margin-left: 6px; }

/* mini plans (all-registered case) */
.cfg__miniplans { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 22px 0 26px; }
.cfg__miniplan {
  padding: 14px 20px; border: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.cfg__miniplan strong { font-size: 15px; color: var(--text); }
.cfg__miniplan span { font-size: 12px; color: var(--text-mute); }
.cfg__miniplan--gold { border-color: var(--gold-line); }
.cfg__miniplan--gold strong { color: var(--gold); }

@media (max-width: 620px) {
  .cfg__grid .quiz__opt { padding: 14px 13px; font-size: 12.5px; }
  .guide__grid { grid-template-columns: 1fr; }
  .cfg__choice { min-width: 140px; padding: 16px 18px; }
}

/* =====================================================================
   FULL-SCREEN CONFIGURATOR LAYOUT
   ===================================================================== */
.cfgtop {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  padding: 14px 20px 0;
}
.cfgfull {
  position: relative; z-index: 1;
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
  display: flex; align-items: center; justify-content: center;
  padding: 10px 20px 44px;
}
.cfg { max-width: 680px; width: 100%; }
.cfg__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 20px;
}
.cfg__eyebrow .bar { width: 20px; height: 1.5px; background: var(--gold); }
.cfg__title {
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 18px; text-wrap: balance;
}
.cfg__sub { font-size: 15px; color: var(--text-dim); margin: -18px 0 22px; }
.cfgfoot {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 2;
  margin: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--text-mute);
  background: linear-gradient(180deg, transparent, rgba(11,16,32,0.9) 40%);
}

/* mobile tuning */
@media (max-width: 620px) {
  .cfgtop { padding-top: 24px; }
  .cfgfull { padding: 22px 18px 62px; justify-content: flex-start; }
  .cfg__title { margin-bottom: 34px; }
  .cfg__choices { gap: 14px; }
  .cfg__choice { flex: 1 1 40%; min-width: 0; padding: 26px 16px; }
  .gamebar { margin: 28px auto 6px; }
  .scam { margin-top: 48px; padding-top: 26px; }
  .scam__line .serif { margin-bottom: 12px; }
  .scam__proof { margin-bottom: 30px; }
  .scam__a { margin-bottom: 36px; }
  .cfg__help { margin-top: 34px; }
  .guide, .bundle { padding: 18px 16px 16px; }
  .cfgfoot { font-size: 9.5px; }
}

/* =====================================================================
   MINI HERO — brief, above configurator
   ===================================================================== */
.cfgfull { flex-direction: column; align-items: center; }
.mini-hero {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}
.mini-hero__title {
  font-size: clamp(32px, 6.5vw, 48px);
  line-height: 1.02; letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.mini-hero__title .serif {
  color: var(--gold); font-weight: 400; display: block;
  animation: gold-pulse 3s ease-in-out infinite;
}
@keyframes gold-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(232,185,122,0.5), 0 0 36px rgba(232,185,122,0.22); }
  50%      { text-shadow: 0 0 20px rgba(232,185,122,0.9), 0 0 60px rgba(232,185,122,0.4); }
}
.mini-hero__sub {
  font-size: clamp(14.5px, 2.4vw, 17px);
  color: var(--text-dim); line-height: 1.5;
  max-width: 420px; margin: 0 auto 16px;
}
.mini-hero .flow { margin: 6px 0 0; }

@media (max-width: 620px) {
  .mini-hero { margin-bottom: 42px; }
  .mini-hero__title { margin-bottom: 16px; }
  .mini-hero__sub { margin-bottom: 26px; }
}

/* compact flow schema — smaller, tighter */
.mini-hero .flow__n { font-size: 19px; }
.mini-hero .flow__t { font-size: 11px; line-height: 1.25; }
.mini-hero .flow__step { padding: 0 10px; gap: 5px; }
.mini-hero .flow__dash { width: 18px; }
.mini-hero .flow { margin-top: 4px; }

/* =====================================================================
   PROTOCOL CARDS v2 — logo tiles, buy buttons, secure notes
   ===================================================================== */
.guide, .bundle {
  transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .35s ease;
}
@media (pointer: fine) {
  .guide:hover, .bundle:hover {
    transform: translateY(-3px);
    border-color: var(--gold-line);
    box-shadow: 0 18px 40px -22px rgba(0,0,0,0.65);
  }
}

/* logo tile — white tile with brand logo, monogram fallback */
.gcard__logo {
  width: 46px; height: 46px; flex: none;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gcard__logo img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 7px;
  display: block;
}
.gcard__mono {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  background: var(--brand, #888);
  color: #fff; font-family: var(--font-mono);
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
}
.gcard__logo.is-mono img { display: none; }
.gcard__logo.is-mono .gcard__mono { display: flex; }

/* card head: logo + title block */
.guide__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.guide__titleblock { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.guide__head strong { font-size: 16px; }

/* ATT row — bigger, gold */
.guide__row--att .guide__v { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.guide__row--att { padding: 4px 0 6px; }

/* variance badge */
.guide__var {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mute);
  padding: 3px 8px;
  border: 1px solid var(--border);
  margin-bottom: 8px;
}

/* buy button */
.guide__cta {
  width: 100%; justify-content: center;
  padding: 15px; font-size: 15px; font-weight: 600;
  margin-top: 4px;
}
.guide__cta:active { background: #F2C98A; }

/* secure note */
.guide__secure {
  text-align: center; font-size: 10px; letter-spacing: 0.06em;
  color: var(--text-mute); margin-top: 10px; text-transform: uppercase;
}

/* bundle logos row */
.bundle__logos {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 14px;
}
.bundle__logos .gcard__logo { width: 38px; height: 38px; }

@media (max-width: 620px) {
  .gcard__logo { width: 42px; height: 42px; }
  .guide__row--att .guide__v { font-size: 20px; }
}

/* ---------- recurring promo forward card ---------- */
.promocard {
  max-width: 440px; margin: 22px auto 0;
  padding: 26px 24px 22px;
  border: 1px dashed var(--gold-line);
  background: rgba(232,185,122,0.04);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: border-color .3s ease, background .3s ease;
}
@media (pointer: fine) {
  .promocard:hover { border-color: var(--gold); background: rgba(232,185,122,0.08); }
}
.promocard__icon { color: var(--gold); margin-bottom: 4px; }
.promocard__title {
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  font-family: var(--font-serif);
}
.promocard__sub {
  font-size: 13.5px; color: var(--text-dim); line-height: 1.55;
  max-width: 320px;
}
.promocard__cta { margin-top: 8px; padding: 13px 22px; font-size: 14px; }

/* =====================================================================
   PROTOCOL CARDS v4 — EdgeHunter premium: animated border, electric
   green profit, count-up, shimmer sweep, staggered entrance
   ===================================================================== */
@property --ga { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

.guide, .bundle {
  --card-bg: linear-gradient(180deg, #141926 0%, #0E1320 100%);
  position: relative;
  contain: layout paint;
  text-align: center;
  padding: 30px 24px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1px solid rgba(232,185,122,0.28);
  background: var(--card-bg) padding-box;
  overflow: hidden;
  opacity: 0;
  animation: card-in .6s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 110ms);
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* rotating conic border — the premium frame */
.guide::before, .bundle::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--ga),
    rgba(232,185,122,0.0) 0%,
    rgba(232,185,122,0.9) 6%,
    rgba(245,201,138,0.6) 12%,
    rgba(232,185,122,0.0) 22%,
    rgba(232,185,122,0.0) 55%,
    rgba(232,185,122,0.7) 64%,
    rgba(245,201,138,0.5) 72%,
    rgba(232,185,122,0.0) 82%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: border-spin 6s linear infinite;
  pointer-events: none;
}
@keyframes border-spin { to { --ga: 360deg; } }
@supports not (background: conic-gradient(red, blue)) {
  .guide::before, .bundle::before { display: none; }
}

/* top gold hairline */
.guide__topline {
  position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.8;
}

/* shimmer sweep — diagonal light band */
.guide__shine, .bundle .guide__shine {
  position: absolute; top: -60%; bottom: -60%; left: 0;
  width: 34%;
  background: linear-gradient(100deg, transparent, rgba(232,185,122,0.10) 45%, rgba(255,255,255,0.10) 50%, rgba(232,185,122,0.10) 55%, transparent);
  transform: translateX(-130%) rotate(14deg);
  animation: shine-sweep 4.6s var(--ease) infinite;
  animation-delay: calc(var(--i, 0) * 300ms + 600ms);
  pointer-events: none;
  will-change: transform;
}
@keyframes shine-sweep {
  0%   { transform: translateX(-130%) rotate(14deg); opacity: 0; }
  12%  { opacity: 1; }
  38%  { transform: translateX(340%) rotate(14deg); opacity: 0; }
  100% { transform: translateX(340%) rotate(14deg); opacity: 0; }
}

/* hover lift */
@media (pointer: fine) {
  .guide:hover, .bundle:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -22px rgba(0,0,0,0.75), 0 0 32px -6px rgba(232,185,122,0.15);
  }
}

/* operator name */
.guide__op {
  display: block; width: 100%;
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
}

/* ATT — electric green hero with breathing glow */
.guide__att {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 100%; padding: 8px 0 4px;
}
.guide__attk {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute);
}
.guide__attv {
  font-size: clamp(40px, 7vw, 50px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: #F2C98A;
  font-variant-numeric: tabular-nums;
  animation: att-breathe 3s ease-in-out infinite;
}
@keyframes att-breathe {
  0%, 100% { text-shadow: 0 0 10px rgba(232,185,122,0.5), 0 0 34px rgba(232,185,122,0.22); }
  50%      { text-shadow: 0 0 20px rgba(242,201,138,0.85), 0 0 66px rgba(232,185,122,0.4); }
}

/* hairline cut */
.guide__cut {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  margin: 4px 0;
}

/* pricing */
.guide__pricing {
  display: flex; flex-direction: column; align-items: center; gap: 3px; width: 100%;
}
.guide__k { font-size: 11px; color: var(--text-mute); letter-spacing: 0.04em; }
.guide__price {
  font-size: 23px; font-weight: 500; letter-spacing: -0.02em; color: #F5F1E8;
}
.bundle__pct { font-size: 9.5px; color: var(--gold); margin-left: 5px; }
.bundle__scope {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: -6px;
}

/* keep line */
.guide__keep { font-size: 12.5px; color: var(--text-dim); }
.guide__keep strong { color: #F2C98A; }

/* buy button — gold gradient + sweep */
.guide__cta {
  position: relative; overflow: hidden;
  width: 100%; justify-content: center;
  padding: 15px; font-size: 15px; font-weight: 600;
  margin-top: 4px;
  background: linear-gradient(135deg, #E8B97A 0%, #D9A55C 55%, #E8B97A 100%);
  color: #0B1020;
}
.guide__cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left .55s var(--ease-out);
}
@media (pointer: fine) {
  .guide__cta:hover::after { left: 130%; }
  .guide__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(232,185,122,0.55); }
}
.guide__cta:active { transform: scale(0.98); }
.guide__secure {
  font-size: 9.5px; letter-spacing: 0.08em;
  color: var(--text-mute); text-transform: uppercase; margin-top: 2px;
}

/* bundle — gold-tinted bg */
.bundle { padding-top: 40px;
  border-color: rgba(232,185,122,0.45);
  background: linear-gradient(180deg, #1A1B22 0%, #10131D 100%) padding-box;
}

@media (prefers-reduced-motion: reduce) {
  .mini-hero__title .serif, .cfg__choice { animation: none; }
  .mini-hero__title .serif { text-shadow: 0 0 16px rgba(232,185,122,0.5); }
  .guide, .bundle { animation: none; opacity: 1; }
  .guide::before, .bundle::before { animation: none; }
  .guide__shine { display: none; }
  .guide__attv { animation: none; text-shadow: 0 0 16px rgba(232,185,122,0.55); }
}

@media (max-width: 620px) {
  .guide, .bundle { padding: 32px 20px 26px; gap: 14px; }
  .guide__attv { font-size: 40px; }
  .guide__cta { margin-top: 8px; padding: 17px; }
  .guide__secure { margin-top: 10px; }
  .guide__keep { margin: 4px 0; }
  .guarantee-tag { margin-top: 6px; }
  .guide__grid { gap: 18px; }
  .bundle { margin-top: 22px; }
  .path { margin-top: 54px; }
  .path__steps li { padding: 20px 0; }
  .cfg__obscured-note { margin-bottom: 34px; }
  .promocard { margin-top: 30px; padding: 30px 22px 26px; }
  .cfgfaq { margin-top: 58px; padding-top: 42px; }
  /* Instagram in-app browser — quality kept, ergonomics tuned */
  .quiz__opt { min-height: 44px; padding: 12px 14px; }
  .cfg__help { padding: 12px 18px; }
  .cfg__choice { min-height: 88px; }
  .cfgfoot { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
}

/* ---------- FAQ block inside results ---------- */
.cfgfaq { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.cfgfaq__title {
  font-size: clamp(20px, 3vw, 26px); letter-spacing: -0.02em;
  margin-bottom: 22px; text-align: center;
}
.cfgfaq__title .serif { color: var(--gold); font-weight: 400; }
.cfgfaq .faq__list { max-width: 560px; margin: 0 auto; }
.cfgfaq .faq__item summary { font-size: 16.5px; padding: 20px 0; }
.cfgfaq .faq__item p { font-size: 14.5px; }

.scam {
  margin: 28px auto 0; max-width: 480px; text-align: center;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.scam__line { margin-bottom: 10px; }
.scam__a {
  font-size: 16px; color: var(--text); line-height: 1.45;
  max-width: 420px; margin: 0 auto 30px;
}
.scam__line .serif {
  display: block;
  font-size: clamp(24px, 5.5vw, 34px);
  color: #FF3864;
  margin-bottom: 10px;
  animation: scam-glow 2.6s ease-in-out infinite;
}
@keyframes scam-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,56,100,0.55), 0 0 36px rgba(255,56,100,0.28); }
  50%      { text-shadow: 0 0 20px rgba(255,56,100,0.95), 0 0 64px rgba(255,56,100,0.5); }
}
.scam__proof {
  font-size: 15px; color: var(--text-dim); line-height: 1.6;
  max-width: 440px; margin: 0 auto 26px;
}
.scam__proof strong { color: var(--gold); font-weight: 600; }
.scam__ig { font-size: 16px; }
.scam__ig {
  color: var(--gold); font-weight: 500; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 1px solid var(--gold-line);
  transition: border-color .2s ease, color .2s ease;
}
.scam__ig:hover { color: #F2C98A; border-color: var(--gold); }
.ig-badge { flex: none; }
.scam__g {
  display: inline-block; margin-top: 6px;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #F2C98A; font-weight: 600;
  padding: 10px 18px; border: 1.5px solid var(--gold);
  background: rgba(232,185,122,0.08);
  animation: moneyback-glow 2.4s ease-in-out infinite;
}
@keyframes moneyback-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(232,185,122,0.3), inset 0 0 6px rgba(232,185,122,0.08); text-shadow: 0 0 6px rgba(232,185,122,0.4); }
  50%      { box-shadow: 0 0 26px rgba(232,185,122,0.65), inset 0 0 14px rgba(232,185,122,0.18); text-shadow: 0 0 14px rgba(232,185,122,0.9); }
}

/* ---------- guarantee tag (cards + bundle) ---------- */
.guarantee-tag {
  display: inline-block; margin-top: 2px;
  font-size: 9.5px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px; border: 1px dashed var(--gold-line);
}

/* =====================================================================
   GAMEBAR — gamified step progress (video-game style)
   ===================================================================== */
.gamebar {
  margin: 14px auto 2px;
  max-width: 360px;
  width: 100%;
}
.gamebar__track {
  position: relative;
  height: 6px;
  background: rgba(232,185,122,0.12);
  border-radius: 3px;
  margin: 10px 8px;
}
.gamebar__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #C79A52, #E8B97A, #F2C98A);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(232,185,122,0.55);
  transition: width .9s var(--ease-out);
}
.gamebar__fill::after {
  content: ""; position: absolute; right: -3px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: #F2C98A;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(242,201,138,0.9), 0 0 22px rgba(232,185,122,0.5);
}
.gamebar__node {
  position: absolute; top: 50%;
  width: 15px; height: 15px;
  margin-left: -7px;
  transform: translateY(-50%);
  background: var(--bg);
  border: 1.5px solid rgba(232,185,122,0.3);
  border-radius: 50%;
  transition: border-color .35s ease, background .35s ease;
}
.gamebar__node:nth-child(2) { left: 0; }
.gamebar__node:nth-child(3) { left: 50%; }
.gamebar__node:nth-child(4) { left: 100%; }

/* active node — pulsing gold */
.gamebar__node.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  animation: node-pulse 1.8s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,185,122,0.45); }
  50%      { box-shadow: 0 0 0 8px rgba(232,185,122,0); }
}

/* done node — filled with pop-in check */
.gamebar__node.is-done {
  border-color: var(--gold);
  background: var(--gold);
  animation: node-pop .5s var(--ease-out);
}
.gamebar__node.is-done::after {
  content: "";
  position: absolute; left: 4px; top: 3.5px;
  width: 5px; height: 3px;
  border-left: 1.6px solid #0B1020;
  border-bottom: 1.6px solid #0B1020;
  transform: rotate(-45deg);
}
@keyframes node-pop {
  0%   { transform: translateY(-50%) scale(0.4); }
  60%  { transform: translateY(-50%) scale(1.35); }
  100% { transform: translateY(-50%) scale(1); }
}

.gamebar__label {
  text-align: center;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 10px;
  transition: color .3s ease;
}
.gamebar[data-step="3"] .gamebar__label { color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .gamebar__fill { transition: none; }
  .gamebar__node.is-active { animation: none; }
  .gamebar__node.is-done { animation: none; }
}

/* =====================================================================
   LADDER v2 — obscured names, path timeline, ALL bundle
   ===================================================================== */
.obscured {
  color: var(--text-dim);
  filter: blur(3px);
  user-select: none;
  letter-spacing: 0.08em;
}
.guide__tag {
  display: inline-block; margin-bottom: 6px;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.cfg__obscured-note {
  font-size: 10.5px; letter-spacing: 0.03em; color: var(--text-mute);
  max-width: 460px; margin: 0 auto 26px; line-height: 1.6;
  text-transform: none;
}
.bundle--all {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1E1A14 0%, #12131C 100%) padding-box;
  box-shadow: 0 0 40px -14px rgba(232,185,122,0.35);
}
.guide__grid .guide { min-height: 0; }

/* ---------- recommended path ---------- */
.path { max-width: 560px; margin: 44px auto 0; text-align: center; }
.path__title {
  font-size: 20px; letter-spacing: -0.01em; margin-bottom: 22px;
}
.path__steps { list-style: none; padding: 0; margin: 0; text-align: left; }
.path__steps li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.path__steps li:last-child { border-bottom: 0; }
.path__n { color: var(--gold); font-size: 13px; padding-top: 3px; }
.path__steps strong { display: block; font-size: 15.5px; font-weight: 500; margin-bottom: 3px; }
.path__steps span:not(.path__n) { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }
.path__skip {
  margin-top: 22px; padding: 18px 20px;
  border: 1px dashed var(--gold-line);
  background: rgba(232,185,122,0.05);
  text-align: center;
}
.path__skip p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.path__skip strong { color: var(--gold); font-weight: 600; }
.path__skip .gold { color: var(--gold); font-weight: 600; }

/* ---------- card equation: profit − price = YOU PROFIT ---------- */
.guide__minus {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 100%; padding: 2px 0 0;
}
.guide__minus .guide__k { color: var(--text-mute); }
.guide__minusv {
  font-size: 22px; color: #FF4D73; text-shadow: 0 0 8px rgba(255,56,100,0.25);
}
.guide__pctof {
  font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mute); margin-top: 1px;
}
.guide__youprofit {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 100%; padding: 2px 0;
}
.guide__youk {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4ADE9E;
}
.guide__youv {
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1;
  color: #4ADE9E;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(74,222,158,0.4);
}

/* ---------- card meta chips: time · risk · difficulty ---------- */
.guide__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  margin: 2px 0 4px;
}
.gmeta {
  font-size: 9.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-mute);
  padding: 4px 9px;
  border: 1px solid var(--border);
}
.gmeta--risk {
  color: #4ADE9E;
  border-color: rgba(74,222,158,0.35);
}
.gmeta--assist {
  color: var(--gold);
  border-color: var(--gold-line);
}

/* ---------- masterclass card ---------- */
.guide--master {
  border-color: var(--gold);
  background: linear-gradient(180deg, #1A1710 0%, #101218 100%) padding-box;
}
.master__hook {
  display: block; width: 100%;
  font-size: clamp(19px, 3.4vw, 24px); font-weight: 400;
  color: var(--gold); line-height: 1.25; letter-spacing: -0.01em;
  margin: 2px 0 8px;
}
.master__desc {
  font-size: 13.5px; color: var(--text-dim); line-height: 1.6;
  max-width: 380px; margin: 0 auto;
}

/* ---------- WhatsApp FAB — always on ---------- */
.wa-fab {
  position: fixed; bottom: 52px; right: 18px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  z-index: 90;
  transition: transform .3s var(--ease-out);
}
.wa-fab:active { transform: scale(0.94); }
@media (pointer: fine) {
  .wa-fab:hover { transform: scale(1.08); }
}
@keyframes wa-ring {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 20px rgba(0,0,0,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-fab { animation: wa-ring 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
