:root {
  color-scheme: dark;
  --ink: #f8f6ff;
  --muted: #c6bfd8;
  --surface: #151126;
  --line: #3b3158;
  --accent: #b79cff;
}

* { box-sizing: border-box; }
html { background: #0e0a1d; }
body {
  margin: 0;
  background: radial-gradient(circle at top right, #332156, #0e0a1d 55%);
  color: var(--ink);
  font: 18px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: #e0d7ff; }
a:hover { color: #fff; }
.site-header, main, .site-footer { width: min(100% - 2rem, 70rem); margin-inline: auto; }
.site-header { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.4rem 0; }
.brand { color: #fff; font-weight: 800; letter-spacing: .04em; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: .8rem 1.1rem; font-size: .94rem; }
main { padding: clamp(2rem, 6vw, 5rem) 0; }
.hero { min-height: 60vh; display: grid; align-content: center; gap: 1.25rem; }
h1, h2, h3 { line-height: 1.16; color: #fff; }
h1 { max-width: 17ch; margin: 0; font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { margin-top: 2.4rem; font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { margin-bottom: .25rem; font-size: 1.15rem; }
p, li { max-width: 75ch; }
.lead { color: var(--muted); font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
.button { display: inline-block; width: fit-content; border: 1px solid var(--accent); border-radius: 999px; padding: .7rem 1.1rem; background: #2d2050; color: #fff; font-weight: 700; text-decoration: none; }
.card, article { padding: clamp(1.3rem, 4vw, 2.7rem); border: 1px solid var(--line); border-radius: 1rem; background: color-mix(in srgb, var(--surface) 92%, transparent); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; }
.site-footer { padding: 2rem 0 3rem; color: var(--muted); font-size: .9rem; }
.site-footer nav { margin-bottom: .75rem; }
.legal h1 { max-width: none; font-size: clamp(2.5rem, 6vw, 4rem); }
.legal h2 { border-top: 1px solid var(--line); padding-top: 1.5rem; }
@media (max-width: 42rem) { .site-header { align-items: flex-start; flex-direction: column; } }
