:root {
  --bg: #0C0D10;
  --surface: #14161C;
  --raised: #1B1E26;
  --line: #2A2D36;
  --cream: #F3EEE6;
  --dim: #C8C2B6;
  --muted: #8F8A80;
  --gold: #E0B24A;
  --gold-hover: #ECC56A;
  --ink: #1A1408;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-ui: "Figtree", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--cream); font-family: var(--font-ui); }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 2rem)); margin-inline: auto; }
.header { position: sticky; top: 0; backdrop-filter: blur(10px); background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid var(--line); z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.wordmark { font-family: var(--font-display); font-size: 1.45rem; text-decoration: none; letter-spacing: 0.01em; }
.wordmark .ai { color: var(--gold); font-style: italic; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0.85rem 1.2rem; font-weight: 650; text-decoration: none; border: 1px solid transparent; }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.9rem; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-hover); }
.btn-ghost { border-color: var(--line); color: var(--cream); background: transparent; }
.hero { padding: 4.5rem 0 3rem; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; font-size: 0.78rem; margin: 0 0 1rem; }
h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; margin: 0 0 1.1rem; max-width: 14ch; }
.lede { color: var(--dim); font-size: 1.1rem; max-width: 42rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.section { padding: 2.5rem 0 1rem; }
.section-title { font-family: var(--font-display); font-size: 2rem; margin: 0 0 1.25rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; padding: 1.2rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--dim); line-height: 1.45; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; border-top: 1px solid var(--line); padding-top: 1rem; }
.steps span { color: var(--gold); font-weight: 700; }
.steps h3 { margin: 0 0 0.35rem; }
.steps p { margin: 0; color: var(--dim); }
.cta-band { margin-top: 3rem; background: var(--raised); border-block: 1px solid var(--line); padding: 3rem 0; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.75rem; }
.cta-band p { color: var(--dim); max-width: 36rem; }
.footer { padding: 2.5rem 0 3rem; border-top: 1px solid var(--line); margin-top: 0; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 0.35rem; }
.footer-legal { color: var(--muted); font-size: 0.9rem; }
.footer a { color: var(--gold); }
@media (max-width: 640px) {
  .hero { padding-top: 2.5rem; }
  h1 { max-width: none; }
}
