:root {
  --bg: #0b1020;
  --surface: #141c33;
  --surface2: #1c2644;
  --text: #eef2ff;
  --muted: #9aa8c7;
  --accent: #d4a853;
  --accent2: #5b8def;
  --cta: #2d6a4f;
  --cta-hover: #40916c;
  --border: #2a3558;
  --maxw: 46rem;
  --font: "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
body.gated { overflow: hidden; }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site, footer.site {
  border-color: var(--border);
  background: var(--surface);
}
header.site { border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 5; }
footer.site { border-top: 1px solid var(--border); margin-top: 3rem; }

.wrap { max-width: calc(var(--maxw) + 2rem); margin: 0 auto; padding: 1rem 1.25rem; }
.wrap.narrow { max-width: 32rem; }
.brand { font-weight: 700; font-size: 1.15rem; }
.brand a { color: var(--text); }
nav.top { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; justify-content: space-between; }
nav.top ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
nav.top a { color: var(--muted); font-size: 0.95rem; }
nav.top a:hover { color: var(--text); }

.eyebrow { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.intro { color: var(--muted); font-size: 1.05rem; }
.editorial-text { color: var(--muted); }
.editorial-text p { margin: 0 0 1rem; }
.plain { padding-left: 1.1rem; }
.meta { font-size: 0.92rem; }

.notice {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface2);
  color: var(--muted);
}
.notice h2 { margin-top: 0; font-size: 1.15rem; }

.facts-panel {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.facts-panel h2 { margin-top: 0; font-size: 1.15rem; }
.facts-grid {
  display: grid;
  gap: 0.85rem 1.5rem;
  margin: 0;
}
@media (min-width: 640px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
}
.facts-grid div { margin: 0; }
.facts-grid dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.facts-grid dd { margin: 0; color: var(--text); font-size: 0.95rem; }

.editorial-section { margin: 2.5rem 0; }
.editorial-section h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.facts-panel-compact { margin: 1.25rem 0; padding: 1rem 1.1rem; }
.facts-panel-compact h2 { font-size: 1.05rem; }

.bonus-section-compact { margin: 1.25rem 0; }
.bonus-section-compact h2 { font-size: 1.05rem; margin: 0 0 0.65rem; }
.bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.bonus-list li {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.bonus-list li:first-child { border-top: none; }
.bonus-list-step {
  display: inline-block;
  min-width: 6.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}
.bonus-list strong {
  color: var(--text);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.03em;
}

.cta-panel-compact { margin: 1.25rem 0 2rem; padding: 1.1rem 1.15rem; }
.cta-panel-compact h2 { font-size: 1.1rem; }

.bonus-section { margin: 2.5rem 0; }
.bonus-section h2 { font-size: 1.25rem; }
.bonus-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .bonus-cards { grid-template-columns: 1fr 1fr; }
}
.bonus-card {
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #0f2847 0%, #163d35 100%);
}
.bonus-card-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.bonus-card-offer {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.bonus-card-code {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.bonus-card-code strong {
  color: var(--text);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.03em;
}

.cta-panel {
  margin: 2.5rem 0;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.cta-panel h2 { margin-top: 0; font-size: 1.2rem; }

.btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  font: inherit;
}
.btn.primary { background: linear-gradient(135deg, #c9973a, #e8c068); color: #1a1205; border-color: transparent; font-weight: 700; }
.btn.primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn.ghost { background: transparent; }
.btn.cta-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cta-clicks {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.88;
}
.btn.cta-submit:hover:not(:disabled) { background: var(--cta-hover); }
.btn.cta-submit:disabled { opacity: 0.45; cursor: not-allowed; }

.cta-form { margin-top: 0.5rem; }
.age-check { display: block; margin: 0.75rem 0; color: var(--muted); font-size: 0.95rem; }
.hint { color: var(--muted); font-size: 0.85rem; margin: 0.35rem 0 0; }
.form-error {
  color: #f5a623;
  font-size: 0.92rem;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid #7a5520;
  border-radius: 6px;
  background: rgba(245, 166, 35, 0.08);
}
.disclosure {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.foot-disclosure { padding-top: 0; padding-bottom: 1.25rem; }

.age-gate[hidden] {
  display: none !important;
}

.age-gate:not([hidden]) {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 8, 18, 0.92);
  padding: 1rem;
}
.age-panel {
  max-width: 26rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}
.age-panel h2 { margin-top: 0; }

.footgrid {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 0.9rem;
}
.footgrid .links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.footgrid a { color: var(--muted); }

h1 { line-height: 1.15; letter-spacing: -0.02em; font-size: clamp(1.5rem, 4vw, 1.85rem); }
h2 { margin-top: 2rem; }
