/* ═══════════════════════════════════════════════════════
   Dolphin{anty} — Apuestas Multicuenta (iGaming players, MX)
   Aesthetic: "high-stakes odds-board" — near-black + gold + emerald felt
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:        #0A0A0D;
  --bg-2:      #100F15;
  --surface:   #16151D;
  --surface-2: #1D1B25;
  --line:      rgba(245, 241, 233, 0.09);
  --line-2:    rgba(245, 241, 233, 0.14);

  --gold:      #F6B83F;
  --gold-soft: #FFCF73;
  --gold-deep: #C98A22;
  --emerald:   #16D98A;
  --emerald-deep: #0B7A52;
  --hot:       #FF5A4D;

  --ink:       #F5F1E9;
  --muted:     #A29D92;
  --muted-2:   #6E6A63;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1200px;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Sora', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient table-felt glow fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 85% -8%, rgba(246, 184, 63, 0.10), transparent 60%),
    radial-gradient(900px 600px at 5% 100%, rgba(22, 217, 138, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
s { text-decoration: line-through; text-decoration-thickness: 2px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 820px; }

/* ── Typography helpers ── */
.accent-gold    { color: var(--gold); }
.accent-emerald { color: var(--emerald); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 17px 30px; font-size: 16.5px; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1206;
  box-shadow: 0 10px 30px -10px rgba(246, 184, 63, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(246, 184, 63, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline {
  background: rgba(245, 241, 233, 0.02);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* header CTA = subtle gold */
.header .btn--sm {
  background: rgba(246, 184, 63, 0.1);
  color: var(--gold);
  border-color: rgba(246, 184, 63, 0.3);
}
.header .btn--sm:hover { background: var(--gold); color: #1A1206; }

/* ── Header ──────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 13, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header__logo { display: flex; align-items: center; }
.header__nav { display: flex; gap: 28px; }
.header__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s ease;
}
.header__nav a:hover { color: var(--ink); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero__noise {
  position: absolute;
  inset: 0;
  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.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -180px; right: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(246, 184, 63, 0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(246, 184, 63, 0.28);
  border-radius: 999px;
  background: rgba(246, 184, 63, 0.06);
  margin-bottom: 26px;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(22, 217, 138, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title-mark {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.06em;
}
.hero__subtitle {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__note {
  font-size: 13.5px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
}
.hero__note .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  display: inline-block;
  margin-right: 9px;
}

/* ── Odds-board visual ──────────────────────────────── */
.board {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}
.board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(246,184,63,0.35), transparent 40%, rgba(22,217,138,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.board__title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.board__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--emerald);
}
.board__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 1.6s infinite;
}
.board__rows { list-style: none; }
.board__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "op odd" "tag odd";
  gap: 2px 12px;
  align-items: center;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}
.board__row:last-child { border-bottom: none; }
.board__op {
  grid-area: op;
  font-weight: 700;
  font-size: 15.5px;
}
.board__tag {
  grid-area: tag;
  font-size: 12px;
  color: var(--muted);
}
.board__tag--ok::before   { content: "● "; color: var(--emerald); }
.board__tag--soon::before { content: "○ "; color: var(--gold); }
.board__odd {
  grid-area: odd;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  text-align: right;
}
.board__row--hot .board__odd { color: var(--emerald); }
.board__row--ghost { opacity: 0.55; }
.board__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.board__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(22, 217, 138, 0.1);
  border: 1px solid rgba(22, 217, 138, 0.25);
  padding: 4px 9px;
  border-radius: 999px;
}

/* ── Operator ticker ─────────────────────────────────── */
.op-ticker {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.op-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.op-ticker__sep { color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Proof bar ───────────────────────────────────────── */
.proof-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-bar__item {
  text-align: center;
  padding: 8px;
}
.proof-bar__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.proof-bar__label {
  font-size: 13.5px;
  color: var(--muted);
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 84px 0; }
.section__head { margin-bottom: 50px; max-width: 720px; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--emerald);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.section__lede {
  margin-top: 16px;
  font-size: 17.5px;
  color: var(--muted);
}

/* ── Problems ────────────────────────────────────────── */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .25s ease, transform .25s ease;
}
.problem-card:hover { border-color: rgba(255, 90, 77, 0.4); transform: translateY(-3px); }
.problem-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--hot);
  margin-bottom: 14px;
}
.problem-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.problem-card__text { font-size: 15px; color: var(--muted); }

/* ── Solution ────────────────────────────────────────── */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.solution-card:hover {
  border-color: rgba(246, 184, 63, 0.35);
  transform: translateY(-4px);
}
.solution-card--featured {
  border-color: rgba(22, 217, 138, 0.4);
  box-shadow: 0 30px 60px -40px rgba(22, 217, 138, 0.4);
}
.solution-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(246, 184, 63, 0.08);
  border: 1px solid rgba(246, 184, 63, 0.2);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.solution-card--featured .solution-card__badge {
  color: var(--emerald);
  background: rgba(22, 217, 138, 0.1);
  border-color: rgba(22, 217, 138, 0.28);
}
.solution-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.solution-card__text { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.solution-card__list { list-style: none; }
.solution-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 9px;
}
.solution-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--emerald);
  transform: rotate(45deg);
}

/* ── Guides / onboarding ─────────────────────────────── */
.guides__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.guides__tab {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.guides__tab:hover { color: var(--ink); border-color: var(--line-2); }
.guides__tab--active {
  color: #1A1206;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  box-shadow: 0 10px 26px -12px rgba(246, 184, 63, 0.6);
}

.guide-panel {
  display: none;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px;
  animation: fadeUp .4s ease;
}
.guide-panel--active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.guide-panel__intro { margin-bottom: 30px; max-width: 720px; }
.guide-panel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 36px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
}
.guide-panel__lead { font-size: 16px; color: var(--muted); }

.guide-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: gs;
}
.guide-step {
  display: flex;
  gap: 16px;
  background: rgba(245, 241, 233, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: border-color .2s ease;
}
.guide-step:hover { border-color: rgba(246, 184, 63, 0.3); }
.guide-step__n {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  background: rgba(246, 184, 63, 0.08);
  border: 1px solid rgba(246, 184, 63, 0.25);
  border-radius: 10px;
}
.guide-step__body h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.guide-step__body p { font-size: 14.5px; color: var(--muted); }

.guides__disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
}

/* ── Steps ───────────────────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
}
.step-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246, 184, 63, 0.35);
  margin-bottom: 14px;
}
.step-card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-card__text { font-size: 15px; color: var(--muted); }

/* ── Pricing ─────────────────────────────────────────── */
.pricing__country-selector {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pricing__country-label { font-size: 14px; color: var(--muted); }
.pricing__country-options { display: flex; gap: 8px; flex-wrap: wrap; }
.pricing__country-btn {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.pricing__country-btn:hover { color: var(--ink); border-color: var(--line-2); }
.pricing__country-btn--active {
  color: var(--gold);
  border-color: rgba(246, 184, 63, 0.4);
  background: rgba(246, 184, 63, 0.08);
}
.pricing__note { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pricing__sale-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(22, 217, 138, 0.1);
  border: 1px solid rgba(22, 217, 138, 0.28);
  padding: 3px 9px;
  border-radius: 999px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pricing-card--featured {
  border-color: rgba(246, 184, 63, 0.45);
  background: linear-gradient(180deg, rgba(246, 184, 63, 0.06), var(--surface) 50%);
  box-shadow: 0 30px 60px -38px rgba(246, 184, 63, 0.5);
}
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1A1206;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 5px 12px;
  border-radius: 999px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pricing-card__desc { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  min-height: 56px;
}
.pricing-card__full {
  flex-basis: 100%;
  font-size: 14px;
  color: var(--muted-2);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--ink);
}
.pricing-card--featured .pricing-card__amount { color: var(--gold); }
.pricing-card__period { font-size: 14px; color: var(--muted); }
.pricing-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--emerald);
  transform: rotate(45deg);
}

/* ── Payment methods ─────────────────────────────────── */
.payment-methods { margin-top: 44px; text-align: center; }
.payment-methods__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.payment-methods__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-methods__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
}

/* ── Local payments — coming soon ────────────────────── */
.local-payments {
  margin-top: 36px;
  background: rgba(22, 217, 138, 0.04);
  border: 1px dashed rgba(22, 217, 138, 0.3);
  border-radius: var(--radius);
  padding: 26px;
}
.local-payments__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 18px;
}
.local-payments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.local-payments__country {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.local-payments__flag { font-size: 14.5px; font-weight: 600; }
.local-payments__methods { font-size: 13px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: rgba(246, 184, 63, 0.3); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__chevron { flex: 0 0 auto; color: var(--gold); transition: transform .25s ease; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p { font-size: 15px; color: var(--muted); }

/* ── Final CTA ───────────────────────────────────────── */
.cta-final__card {
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(246, 184, 63, 0.14), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: 26px;
  padding: 60px 40px;
}
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 14px 0 16px;
}
.cta-final__text {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 30px;
}
.cta-final__note {
  display: block;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted-2);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: var(--muted-2); }

/* ── Promo Popup ─────────────────────────────────────── */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.promo-popup.is-open { opacity: 1; visibility: visible; }
.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.promo-popup__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 38px 32px 30px;
  text-align: center;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  transform: translateY(16px) scale(0.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.promo-popup__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(246,184,63,0.5), transparent 45%, rgba(22,217,138,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.promo-popup.is-open .promo-popup__card { transform: translateY(0) scale(1); }
.promo-popup__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: rgba(245, 241, 233, 0.05);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
}
.promo-popup__close:hover { color: var(--ink); border-color: var(--line-2); }
.promo-popup__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--emerald);
}
.promo-popup__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 12px 0 14px;
}
.promo-popup__lede { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.promo-popup__lede strong { color: var(--ink); }
.promo-popup__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(246, 184, 63, 0.06);
  border: 1px dashed rgba(246, 184, 63, 0.4);
  border-radius: 12px;
  padding: 12px 14px 12px 18px;
  margin-bottom: 18px;
}
.promo-popup__code-meta { display: flex; flex-direction: column; text-align: left; }
.promo-popup__code-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}
.promo-popup__code-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.promo-popup__copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(245, 241, 233, 0.05);
  border: 1px solid var(--line-2);
  padding: 9px 14px;
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.promo-popup__copy:hover { border-color: var(--gold); color: var(--gold); }
.promo-popup__copy.is-copied { color: var(--emerald); border-color: var(--emerald); }
.promo-popup__cta { margin-bottom: 12px; }
.promo-popup__note { font-size: 12px; color: var(--muted-2); }

body.promo-popup-locked { overflow: hidden; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .board { max-width: 460px; }
  .problems__grid,
  .solution__grid,
  .steps__grid,
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .local-payments__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header__nav { display: none; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 30px; }
  .problems__grid,
  .solution__grid,
  .steps__grid,
  .pricing__grid,
  .guide-steps { grid-template-columns: 1fr; }
  .guide-panel { padding: 24px; }
  .op-ticker__track { font-size: 18px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .cta-final__card { padding: 44px 24px; }
}
