:root {
  color-scheme: dark;
  --bg: #0b0b0c;
  --panel: #151517;
  --panel-strong: #1d1d20;
  --text: #f5f5f2;
  --muted: #a7a7a2;
  --line: #303034;
  --accent: #ffd60a;
  --accent-ink: #171300;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: radial-gradient(circle at 80% -10%, #272611 0, var(--bg) 40rem);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.site-header, .site-footer { width: min(100% - 40px, 920px); margin: 0 auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; letter-spacing: .16em; text-decoration: none; }
.brand-mark { color: var(--accent); }
nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
nav a { color: var(--muted); font-size: .9rem; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--text); }
main { width: min(100% - 40px, 760px); margin: 0 auto; padding: 76px 0 96px; }
.eyebrow { color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { max-width: 680px; margin: 12px 0 18px; font-size: clamp(2.3rem, 7vw, 4.5rem); line-height: 1.02; letter-spacing: -.055em; }
h2 { margin: 40px 0 10px; font-size: 1.25rem; line-height: 1.2; }
p { max-width: 680px; margin: 0 0 18px; color: var(--muted); }
.lede { max-width: 600px; font-size: 1.2rem; line-height: 1.5; }
.card { margin-top: 36px; padding: 28px; background: color-mix(in srgb, var(--panel) 90%, transparent); border: 1px solid var(--line); border-radius: 20px; }
.card p:last-child, .legal-section p:last-child { margin-bottom: 0; }
.legal-section { padding-top: 10px; }
.updated { color: var(--muted); font-size: .9rem; }
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { filter: brightness(1.06); }
label { display: block; margin: 18px 0 7px; color: var(--text); font-weight: 650; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #444449;
  border-radius: 10px;
  background: var(--panel-strong);
  color: var(--text);
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.hint { font-size: .9rem; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.site-footer nav { gap: 14px; }
@media (max-width: 600px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  main { padding-top: 52px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
