:root {
  color-scheme: dark;
  --black: #050404;
  --panel: #171218;
  --panel-soft: #211a22;
  --bone: #f2e6d2;
  --muted: rgba(242, 230, 210, 0.7);
  --pink: #ff3b9d;
  --gold: #f0c85a;
  --line: rgba(242, 230, 210, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 59, 157, 0.15), transparent 28rem),
    radial-gradient(circle at 90% 28%, rgba(240, 200, 90, 0.08), transparent 30rem),
    var(--black);
  font-family: Archivo, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.site-header,
.page-shell,
.site-footer { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; }
.wordmark { color: var(--pink); font-size: 2rem; font-style: italic; font-weight: 900; letter-spacing: -0.09em; line-height: 1; }
.tagline { color: var(--gold); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.header-link { color: var(--muted); font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.header-link:hover { color: var(--pink); }
.page-shell { padding: clamp(54px, 8vw, 92px) 0 80px; }
.hero { max-width: 780px; margin-bottom: 48px; }
.eyebrow { margin: 0 0 12px; color: var(--pink); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; }
h1 { margin: 0; font-size: clamp(2.8rem, 8vw, 5.7rem); font-style: italic; font-weight: 900; letter-spacing: -0.065em; }
.lede { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-family: Bitter, Georgia, serif; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.quick-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 0; }
.quick-nav a { padding: 9px 13px; color: var(--bone); background: var(--panel); border: 1px solid var(--line); border-radius: 999px; font-size: 0.8rem; font-weight: 700; text-decoration: none; }
.quick-nav a:hover { border-color: var(--pink); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card, details { background: rgba(23, 18, 24, 0.92); border: 1px solid var(--line); border-radius: 20px; }
.card { padding: clamp(24px, 4vw, 34px); }
.card-number { color: var(--gold); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; }
.card h2 { margin: 10px 0 12px; font-size: 1.55rem; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p, .card li, details p { color: var(--muted); }
.card ul { padding-left: 1.15rem; margin-bottom: 0; }
.section-heading { margin: 66px 0 22px; font-size: clamp(2rem, 5vw, 3.2rem); font-style: italic; letter-spacing: -0.04em; }
.faq-list { display: grid; gap: 12px; }
details { padding: 0 22px; }
summary { padding: 20px 0; cursor: pointer; font-weight: 800; }
details p { margin: -4px 0 22px; }
.callout { margin-top: 48px; padding: 30px; text-align: center; background: linear-gradient(135deg, rgba(255,59,157,.16), rgba(240,200,90,.1)); border: 1px solid var(--line); border-radius: 22px; }
.callout h2 { margin: 0 0 8px; }
.callout p { margin: 0 0 22px; color: var(--muted); }
.button { display: inline-block; padding: 13px 20px; color: var(--black); background: var(--gold); border-radius: 10px; font-weight: 800; text-decoration: none; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 42px; color: var(--muted); border-top: 1px solid var(--line); font-size: 0.82rem; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--pink); }
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

