:root {
  color-scheme: dark;
  --night: #0f0b23;
  --plum: #1b1540;
  --card: #241a4d;
  --gold: #e8b95f;
  --ink: #f4f0ff;
  --muted: #a89fd6;
  --line: #332a63;
}

* { box-sizing: border-box; }
html { background: var(--night); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(232,185,95,.12), transparent 28rem),
    linear-gradient(160deg, var(--night), var(--plum) 55%, var(--night));
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}
a { color: var(--gold); }
.shell { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
header { padding: 28px 0 76px; }
nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-decoration: none; }
.links { display: flex; flex-wrap: wrap; gap: 16px; font-size: .92rem; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover, .links a:focus { color: var(--gold); }
main { padding-bottom: 80px; }
.eyebrow { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.025em; }
h1 { max-width: 800px; margin: 14px 0 20px; font-size: clamp(2.45rem, 7vw, 5.3rem); }
h2 { margin: 0 0 18px; font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.lede { max-width: 720px; color: var(--muted); font-size: 1.18rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 46px 0; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { height: 100%; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(36,26,77,.72); }
.card p, .prose p { color: var(--muted); }
.step { border-top: 2px solid var(--gold); }
.section { margin-top: 64px; }
.faq { margin: 14px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(36,26,77,.68); }
.faq h3 { color: var(--ink); }
.cta { display: inline-block; margin-top: 10px; padding: 13px 18px; border-radius: 13px; background: var(--gold); color: #1a1130; font-weight: 800; text-decoration: none; }
.cta.secondary { margin-left: 8px; background: var(--card); color: var(--ink); border: 1px solid var(--line); }
footer { padding: 28px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
footer a { margin-right: 16px; }
@media (max-width: 720px) {
  header { padding-bottom: 48px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .shell { width: min(100% - 28px, 620px); }
  .cta.secondary { margin: 10px 0 0; }
}