:root {
  --bg: #0d0d0f;
  --bg-2: #141418;
  --bg-3: #1c1c23;
  --bg-4: #222229;
  --line: #2c2c36;
  --line-2: #3a3a46;
  --text: #ffffff;
  --muted: #9898a8;
  --muted-2: #5c5c6e;
  --accent: #e8001d;
  --accent-2: #ff1a33;
  --accent-ink: #ffffff;
  --accent-dim: rgba(232, 0, 29, .18);
  --accent-glow: rgba(232, 0, 29, .28);
  --primary: #e8001d;
  --primary-2: #ff1a33;
  --danger: #ff1a33;
  --warn: #ff9933;
  --ok: #2ed573;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 2px 20px rgba(0, 0, 0, .45);
  --shadow-btn: 0 4px 24px rgba(232, 0, 29, .30);
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: #fff; line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(32px, 5vw, 52px); }
h1 br { display: none; }
@media (min-width: 980px) { h1 br { display: inline; } }
h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: .8em; }
h3 { font-size: 18px; }
p  { margin: 0 0 1em; }

code {
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: .92em;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff;
  padding: 10px 14px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip:focus { left: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.wrap-narrow { max-width: 820px; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; gap: 16px;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center;
  color: #fff;
}
.brand:hover { text-decoration: none; }
.logo-img {
  display: block;
  height: 38px; width: auto;
  max-height: 38px;
}

.nav {
  display: none; gap: 22px; margin-left: 24px;
  font-size: 15px;
}
.nav a { color: var(--text); }
.nav a:hover { color: var(--accent); text-decoration: none; }

.header-cta { margin-left: auto; display: flex; gap: 10px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600; font-size: 14px;
  cursor: pointer; user-select: none;
  transition: transform .06s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 22px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-i { font-size: 18px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg-3); }

/* ─── Background emoji decoration ─── */
.bg-emojis {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-emojis span {
  position: absolute;
  font-size: 80px;
  filter: grayscale(1) brightness(.35) contrast(.7);
  opacity: .055;
  user-select: none;
  line-height: 1;
  transform: translate(-50%, -50%);
}
@media (min-width: 980px) {
  .bg-emojis span { font-size: 110px; }
}

/* All content above bg-emojis */
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 75% 50%, var(--accent-dim), transparent 70%),
    radial-gradient(700px 500px at 10% 50%, var(--accent-dim), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 36px; align-items: center;
  position: relative;
}
.hero-persona { display: none; }
.hero-persona img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 60px var(--accent-dim);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}
.badge {
  display: inline-block;
  background: var(--accent-dim);
  color: #fff;
  font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid var(--accent);
}
.lede { color: var(--muted); font-size: 17px; max-width: 56ch; }
.hero-bullets {
  list-style: none; padding: 0; margin: 18px 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.hero-bullets li {
  position: relative; padding-left: 26px;
  color: var(--text); font-size: 15px;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-meta { color: var(--muted); font-size: 13px; margin-top: 14px; }

/* Hero card */
.hero-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20,20,24,.92), rgba(28,28,35,.96)),
    url("/img/bonus-bg.png") center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow), 0 0 40px var(--accent-dim);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.hero-card > * { position: relative; }
.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.chip {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.chip-warn { color: var(--accent-2); border-color: rgba(232, 0, 29, .4); background: var(--accent-dim); }

.card-amount { text-align: center; padding: 12px 0 16px; }
.amount {
  display: block; font-size: 36px; font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent-glow);
}
.amount-sub { color: var(--muted); font-size: 13px; }

.promo { margin-bottom: 14px; }
.promo label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.promo-row { display: flex; gap: 8px; }
.promo-row input {
  flex: 1; min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  color: #fff; font-weight: 700; font-size: 16px; letter-spacing: .12em;
  padding: 10px 12px; border-radius: var(--radius-sm);
  text-align: center;
}
.promo-hint { color: var(--ok); font-size: 13px; margin: 8px 0 0; }
.card-fine { color: var(--muted); font-size: 12px; margin: 12px 0 0; text-align: center; }

/* ─── Sections ─── */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-2); }
.section-warn { padding: 32px 0; background: linear-gradient(180deg, var(--accent-dim), transparent); }

.section-lede { color: var(--muted); max-width: 70ch; margin-bottom: 28px; font-size: 16px; }

/* Specs */
.specs {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.spec {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex; justify-content: space-between; gap: 12px;
}
.spec-k { color: var(--muted); font-size: 14px; }
.spec-v { color: #fff; font-weight: 600; font-size: 14px; text-align: right; }

/* Steps */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 16px;
  counter-reset: step;
}
.steps li {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
}
.step-n {
  position: absolute; top: -14px; left: 22px;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow-btn);
}
.steps h3 { margin-top: 6px; }
.steps p { color: var(--muted); margin: 0; font-size: 15px; }

/* ─── Bonus strip (compact horizontal CTA below hero) ─── */
.bonus-strip {
  position: relative;
  background:
    linear-gradient(135deg, rgba(232,0,29,.12), rgba(232,0,29,.04)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.bonus-row {
  display: flex; flex-direction: column; gap: 18px;
  align-items: stretch;
}
.bs-amount {
  display: flex; flex-direction: column; gap: 4px;
  align-items: flex-start;
}
.bs-amount .chip { margin-bottom: 6px; }
.bs-amount .amount {
  font-size: 30px; font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent-glow);
  line-height: 1;
}
.bs-amount .amount-sub { color: var(--muted); font-size: 13px; }

.bs-divider {
  display: none;
  width: 1px; align-self: stretch;
  background: var(--line);
}

.bs-promo { flex: 1; min-width: 0; }
.bs-promo label {
  display: block; font-size: 12px; color: var(--muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em;
}
.bs-promo .promo-row { display: flex; gap: 8px; }
.bs-promo .promo-row input {
  flex: 1; min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  color: #fff; font-weight: 700; font-size: 16px; letter-spacing: .12em;
  padding: 10px 12px; border-radius: var(--radius-sm);
  text-align: center;
}
.bs-promo .promo-hint { color: var(--ok); font-size: 12px; margin: 6px 0 0; }

.bs-cta { white-space: nowrap; }

@media (min-width: 720px) {
  .bonus-row {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .bs-divider { display: block; }
  .bs-amount { flex-shrink: 0; }
  .bs-promo { max-width: 360px; }
}

/* ─── Promo banner section ─── */
.promo-banner {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background: var(--bg-2);
  isolation: isolate;
}
.promo-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 25% 50%, var(--accent-dim), transparent 70%),
    radial-gradient(700px 500px at 90% 50%, var(--accent-dim), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.promo-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: center;
  position: relative;
}
.promo-persona { display: none; }
.promo-persona img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 60px var(--accent-dim);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}
.promo-content { text-align: left; }
.promo-content h2 { font-size: clamp(26px, 3.6vw, 38px); margin-top: 12px; }
.promo-content .lede { color: var(--text); font-size: 16px; }
.promo-content strong { color: var(--accent); font-weight: 800; }
.promo-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 28px; }
.promo-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.promo-stats li { display: flex; flex-direction: column; gap: 2px; }
.stat-v { color: var(--accent); font-size: 24px; font-weight: 800; }
.stat-k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }

@media (min-width: 980px) {
  .promo-banner { padding: 80px 0; }
  .promo-grid {
    grid-template-columns: 320px 1fr;
    gap: 48px; align-items: stretch;
  }
  .promo-persona { display: block; min-height: 460px; }
  .promo-content { align-self: center; max-width: 560px; }
}

/* Notes */
.note {
  margin-top: 24px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
}
.note strong { color: var(--accent); }
.note-info { border-left-color: var(--accent); }
.note-info strong { color: var(--accent-2); }

/* Features */
.features {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.feature {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.feature:hover { border-color: var(--accent); transform: translateY(-2px); }
.f-i {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 12px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); margin: 0; font-size: 14px; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.table th, .table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table th {
  background: var(--bg-3);
  color: var(--text);
  font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(255, 255, 255, .02); }
.table td { color: var(--muted); }
.table td:first-child { color: #fff; font-weight: 600; }

/* Checklist */
.checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.checklist li {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px 12px 44px;
  font-size: 15px;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--ok); color: #002b14;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

/* Trouble grid */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.trouble {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.trouble h3 { color: var(--accent); font-size: 16px; }
.trouble p { color: var(--muted); margin: 0; font-size: 14px; }

/* FAQ */
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 48px 16px 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px; font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Compliance warn box */
.warn-box {
  background: var(--bg-2);
  border: 1px solid rgba(255, 153, 51, .3);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 18px; align-items: flex-start;
}
.warn-i {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-btn);
}
.warn-box { border-color: rgba(232, 0, 29, .3) !important; }
.warn-box h3 { margin: 0 0 6px; color: var(--accent-2); }
.warn-box p { color: var(--muted); margin: 0; font-size: 14px; }

/* ─── Footer ─── */
.site-footer {
  position: relative;
  background: #070709;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 80% 0%, var(--accent-dim), transparent 70%);
  pointer-events: none;
}

/* Footer CTA strip */
.footer-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(232,0,29,.12), rgba(232,0,29,.04));
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.footer-cta-row {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  align-items: center;
}
.footer-cta h3 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.footer-cta p { margin: 0; }

/* Payment row */
.footer-pay {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pay-label {
  color: var(--muted); font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
}
.pay-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pay-list li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: #fff; font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: 6px;
}

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding: 40px 20px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.footer-about p { margin-top: 14px; max-width: 42ch; }
.footer-grid h4 {
  color: var(--text); font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .08em;
  position: relative; padding-bottom: 8px;
}
.footer-grid h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--accent);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 14px; transition: color .15s ease, padding-left .15s ease; }
.footer-grid a:hover { color: var(--accent); padding-left: 4px; }

.muted { color: var(--muted); }
.small { font-size: 13px; }

.footer-age { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.age {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 0 24px var(--accent-dim);
}

.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  position: relative;
}
.footer-bottom p { margin: 0; }
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .footer-cta-row { grid-template-columns: 1fr auto; gap: 32px; }
}

/* ─── Legal pages ─── */
.legal {
  padding: 40px 0 60px;
  max-width: 760px;
}
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.legal h2 { font-size: 22px; margin-top: 32px; }
.legal p, .legal li { color: #c9d3ea; font-size: 15px; }
.legal ul { padding-left: 22px; }

/* ─── Responsive ─── */
@media (min-width: 720px) {
  .nav { display: flex; }
  .specs { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
  .hero { padding: 60px 0 50px; }
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 56px; align-items: stretch;
  }
  .hero-copy { align-self: center; }
  .hero-persona { display: block; min-height: 460px; max-height: 540px; }
}
  .specs { grid-template-columns: 1fr 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .header-cta .btn-ghost { display: none; }
  .hero-bullets { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
  html { scroll-behavior: auto; }
}
