:root {
  --bg: #0e1014;
  --bg-2: #161922;
  --bg-3: #1d2230;
  --surface: #20263a;
  --line: #2c3247;
  --text: #f4f5f8;
  --text-2: #b9bccb;
  --text-3: #8b8fa3;
  --primary: #ffe600;
  --primary-2: #ffd400;
  --primary-ink: #0e1014;
  --accent: #7c3aed;
  --accent-2: #a855f7;
  --good: #22c55e;
  --bad: #ef4444;
  --warn: #f59e0b;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1180px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin: 1.2em 0 .5em;
  color: #fff;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); margin-top: 0; }
h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0c10;
  border-bottom: 1px solid #1d2230;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--primary); background: #161922; text-decoration: none; }
.main-nav a.active { color: var(--primary); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .02em;
  border: 2px solid var(--primary);
  transition: transform .12s, box-shadow .12s, background .12s;
  flex-shrink: 0;
  text-decoration: none;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,230,0,.3);
  background: var(--primary-2);
  text-decoration: none;
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  background: #0a0c10;
  z-index: 99;
  padding: 24px 20px 80px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  background: #161922;
  border: 1px solid #20263a;
}
.mobile-drawer a:hover { background: #1d2230; }
.mobile-drawer .header-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* HERO */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(124,58,237,.25), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(255,230,0,.08), transparent 60%),
    linear-gradient(180deg, #11131a 0%, #0e1014 100%);
  padding: 64px 0 48px;
  border-bottom: 1px solid #1d2230;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,230,0,.12);
  border: 1px solid rgba(255,230,0,.4);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.12;
}
.hero h1 .yellow { color: var(--primary); }
.hero p.lead {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  border: 0;
  transition: transform .12s, box-shadow .15s, background .12s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 8px 24px rgba(255,230,0,.25);
}
.btn-primary:hover { background: var(--primary-2); transform: translateY(-1px); text-decoration: none; box-shadow: 0 12px 30px rgba(255,230,0,.35); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #2c3247;
}
.btn-ghost:hover { background: #161922; text-decoration: none; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.hero-card {
  background: linear-gradient(160deg, #1d2230 0%, #161922 100%);
  border: 1px solid #2c3247;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,230,0,.18), transparent 70%);
}
.hero-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}
.hero-card .offer-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin: 12px 0;
}
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.hero-card ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--text-2);
}
.hero-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QUICK VERDICT */
.verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
}
.verdict h3 { margin-top: 0; font-size: 1.1rem; }
.verdict .pros li, .verdict .cons li {
  padding: 6px 0 6px 28px;
  position: relative;
  list-style: none;
}
.verdict .pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  color: var(--good);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.verdict .cons li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,.15);
  color: var(--bad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.verdict ul { padding: 0; margin: 0; }

/* SECTIONS */
section { padding: 56px 0; }
section.tight { padding: 36px 0; }
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--primary); transform: translateY(-2px); }
.card h3 { margin-top: 0; }
.card p { color: var(--text-2); margin-bottom: 0; font-size: 15px; }
.card .badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,230,0,.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card a.read-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* TABLE */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--line); }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 15px;
  min-width: 480px;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: #1a1f2e;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
tr:last-child td { border-bottom: 0; }
td.num { font-weight: 700; color: #fff; }

/* PROMO BOX */
.promo-box {
  background: linear-gradient(135deg, rgba(255,230,0,.1), rgba(124,58,237,.1));
  border: 1px solid rgba(255,230,0,.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.promo-box h4 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.promo-box p { margin: 0; color: var(--text-2); font-size: 14px; }
.copy-row {
  display: inline-flex;
  align-items: stretch;
  background: #0e1014;
  border: 1px dashed var(--primary);
  border-radius: 10px;
  overflow: hidden;
}
.code-text {
  padding: 10px 18px;
  font-family: 'Courier New', monospace;
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: .1em;
}
.copy-btn {
  background: var(--primary);
  color: var(--primary-ink);
  border: 0;
  padding: 0 18px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: .04em;
}
.copy-btn:hover { background: var(--primary-2); }
.copy-btn.copied { background: var(--good); color: #fff; }

/* CALLOUT */
.callout {
  background: var(--bg-2);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 28px 0;
  color: var(--text-2);
}
.callout strong { color: #fff; }

/* STEPS */
ol.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 64px;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
ol.steps li strong { display: block; margin-bottom: 4px; color: #fff; }

/* IMAGE */
figure {
  margin: 28px auto;
  max-width: 90%;
}
figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border: 1px solid var(--line);
}
figcaption {
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}

/* FAQ */
.faq { margin: 28px 0; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--text-2);
}
.faq-item .faq-body p { margin: 0; }

/* CTA SECTION */
.cta-block {
  background:
    radial-gradient(1000px 400px at 50% 100%, rgba(255,230,0,.12), transparent 60%),
    linear-gradient(135deg, #1a1f2e 0%, #11131a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 { margin-top: 0; }
.cta-block p { color: var(--text-2); max-width: 620px; margin: 0 auto 24px; font-size: 17px; }

/* PROSE */
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 6px; color: var(--text-2); }
.prose ul li strong, .prose ol li strong { color: #fff; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-3);
  margin: 16px 0 8px;
}
.breadcrumbs a { color: var(--text-3); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 8px; color: var(--line); }

/* FOOTER */
footer.site-footer {
  background: #07090d;
  border-top: 1px solid #1d2230;
  padding: 48px 0 24px;
  margin-top: 60px;
  color: var(--text-3);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; margin-top: 0; font-size: 15px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-2); }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid #1d2230;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-3);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bad);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .verdict { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 0 32px; }
  .promo-box { grid-template-columns: 1fr; text-align: center; }
  .copy-row { width: 100%; justify-content: space-between; }
  .cta-block { padding: 32px 22px; }
  figure { max-width: 100%; }
  figure img { width: 100%; }
  section { padding: 40px 0; }
  ol.steps li { padding-left: 56px; }
}

/* 404 */
.error-404{padding:80px 0 60px;text-align:center}
.error-num{font-size:160px;font-weight:900;line-height:1;color:var(--primary);text-shadow:0 0 40px rgba(255,230,0,.3);margin-bottom:8px;letter-spacing:-6px}
.error-404 h1{font-size:40px;margin:0 0 16px;font-weight:800}
.error-404 .lead{max-width:620px;margin:0 auto 12px;color:var(--text-2);font-size:17px;line-height:1.6}
@media(max-width:640px){.error-num{font-size:110px}.error-404 h1{font-size:28px}}
