:root {
  --ink: #141018;
  --ink-2: #1C1522;
  --ink-3: #251D2D;
  --gold: #E8B44A;
  --gold-deep: #C68F2C;
  --crimson: #C8102E;
  --crimson-deep: #97071F;
  --cream: #F6F1E7;
  --muted: #B0A3B8;
  --line: rgba(232, 180, 74, 0.22);
  --serif: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0.002em;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.6rem, 11vw, 4.6rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FBE6B4 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.6rem, 5.4vw, 2.15rem);
  letter-spacing: -0.01em;
  padding-top: 18px;
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 6px;
  background:
    radial-gradient(circle at 5px 3px, var(--gold) 2.6px, transparent 2.9px) repeat-x;
  background-size: 12px 6px;
  opacity: 0.9;
}

h3 {
  font-size: clamp(1.15rem, 4.2vw, 1.35rem);
  color: var(--gold);
  margin-top: 30px;
}

p { margin: 0 0 16px; }

strong { color: #FBE6B4; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  padding: 15px 26px;
  border-radius: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  max-width: 100%;
}

.btn--gold {
  background: linear-gradient(180deg, #F3CC77 0%, var(--gold) 48%, var(--gold-deep) 100%);
  color: #1A1220;
  box-shadow: 0 8px 22px rgba(232, 180, 74, 0.24);
}

.btn--crimson {
  background: linear-gradient(180deg, #DC2743 0%, var(--crimson) 50%, var(--crimson-deep) 100%);
  color: #FFF6F0;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--gold-deep);
}

.btn--lg { padding: 17px 30px; font-size: 1.02rem; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.promo-strip {
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 180, 74, 0.18), transparent 55%),
    linear-gradient(135deg, #2A1A2F 0%, #1A1220 55%, #24131C 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.promo-strip__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 26px 20px 30px;
}

.promo-strip__kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.promo-strip__headline {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5.2vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 8px;
}

.promo-strip__headline strong {
  color: var(--gold);
  white-space: nowrap;
}

.promo-strip__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.promo-strip--mid { margin: 46px 0; }

.site-header {
  background: rgba(20, 16, 24, 0.94);
  border-bottom: 1px solid var(--line);
  position: static;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand__mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand__mark svg { width: 100%; height: 100%; display: block; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-transform: uppercase;
}

.brand__tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}

.site-nav a:hover { color: var(--gold); text-decoration: none; }

.hero {
  padding: 44px 0 34px;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(232, 180, 74, 0.14), transparent 62%);
  text-align: center;
}

.lede {
  font-size: 1.06rem;
  color: #E4DCEA;
  max-width: 62ch;
  margin: 0 auto 26px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
}

.stat-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.stat-row li {
  background: var(--ink-2);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-row__num {
  font-family: var(--mono);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-row__lab {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

.block { padding: 34px 0; border-bottom: 1px solid rgba(232, 180, 74, 0.12); scroll-margin-top: 20px; }
.block--close { border-bottom: 0; }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin: 22px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: 0.94rem;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ink-3);
}

thead th {
  background: var(--ink-3);
  color: var(--cream);
  text-align: left;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

tbody th, tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(232, 180, 74, 0.1);
  vertical-align: top;
}

tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.022); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.steps {
  counter-reset: step;
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.steps li {
  position: relative;
  counter-increment: step;
  padding: 0 0 18px 52px;
  border-left: 1px solid var(--line);
  margin-left: 15px;
}

.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: -16px;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: linear-gradient(180deg, var(--ink-2) 0%, rgba(28, 21, 34, 0.55) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px 8px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
}

.card--good::before { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); }
.card--bad::before { background: linear-gradient(180deg, var(--crimson), var(--crimson-deep)); }

.card__tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p:last-child { margin-bottom: 14px; }
.card--bad h3 { color: #F0899A; }

.faq { margin-top: 22px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  background: var(--ink-2);
  overflow: hidden;
}

.faq__toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.faq__q {
  display: block;
  cursor: pointer;
  padding: 16px 52px 16px 18px;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--cream);
  position: relative;
  transition: color 0.18s ease;
}

.faq__q:hover { color: var(--gold); }

.faq__q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.24s ease;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq__a p {
  padding: 0 18px 18px;
  margin: 0;
  color: #DDD4E4;
  font-size: 0.97rem;
}

.faq__toggle:checked ~ .faq__a { max-height: 460px; }
.faq__toggle:checked ~ .faq__q::after { transform: rotate(225deg); top: 28px; }
.faq__toggle:checked ~ .faq__q { color: var(--gold); }
.faq__toggle:focus-visible ~ .faq__q { outline: 3px solid var(--gold); outline-offset: -3px; }

.closing-cta { text-align: center; margin-top: 28px; }

.site-footer {
  background: #0F0B14;
  border-top: 1px solid var(--line);
  padding: 36px 0 30px;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 26px;
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.site-footer__head {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}

.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links li { margin-bottom: 6px; }
.site-footer__links a { color: var(--muted); }
.site-footer__links a:hover { color: var(--gold); }

.age-badge {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--crimson);
  border: 2px solid var(--crimson);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 40px;
  text-align: center;
  margin: 0 0 16px;
}

.site-footer__legal {
  font-size: 0.8rem;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 180, 74, 0.14);
}

.site-footer__copy {
  font-size: 0.82rem;
  color: var(--cream);
  margin: 0;
}

@media (min-width: 600px) {
  .hero__cta { flex-direction: row; justify-content: center; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .promo-strip__inner { padding: 32px 20px 36px; }
}

@media (min-width: 760px) {
  body { font-size: 18px; }
  .site-header { position: sticky; top: 0; }
  .block { scroll-margin-top: 96px; }
  .site-header__inner { flex-direction: row; justify-content: space-between; }
  .site-nav { justify-content: flex-end; gap: 26px; }
  .hero { padding: 70px 0 50px; text-align: left; }
  .lede { margin-left: 0; margin-right: 0; }
  .hero__cta { justify-content: flex-start; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .block { padding: 48px 0; }
  .site-footer__grid { grid-template-columns: 1.4fr 0.8fr 1.3fr; gap: 40px; }
  .promo-strip--mid { margin: 60px 0; }
}

@media (min-width: 1000px) {
  .hero { padding: 88px 0 60px; }
}

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