:root {
  color-scheme: dark;
  --bg: #160f2e;
  --surface: #271b52;
  --surface-2: #322063;
  --ink: #f3eefe;
  --muted: #b6a9e0;
  --line: rgba(255,255,255,.14);
  --primary: #8b5cf6;
  --gold: #f5c451;
  --danger: #ff8c9b;
  --max: 880px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: radial-gradient(800px 460px at 76% -5%, rgba(139,92,246,.28), transparent 65%), var(--bg);
  font-family: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}
a { color: var(--gold); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}
.shell { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.nav {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand { color: var(--ink); text-decoration: none; font-weight: 850; }
.back { color: var(--muted); font-size: .92rem; }
main { padding: 64px 0 80px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.025em; }
h1 { margin: 12px 0 16px; font-size: clamp(2.65rem, 8vw, 5rem); line-height: .98; }
h2 { margin: 42px 0 12px; font-size: clamp(1.45rem, 4vw, 2.1rem); line-height: 1.15; }
h3 { margin: 24px 0 8px; }
p, li { color: var(--muted); }
.lede { font-size: 1.12rem; max-width: 720px; }
.updated { color: #9588c2; font-size: .88rem; }
.notice {
  margin: 28px 0;
  padding: 18px 20px;
  background: rgba(245,196,81,.09);
  border: 1px solid rgba(245,196,81,.35);
  border-radius: 16px;
}
.notice p { margin: 0; }
.card {
  margin-top: 22px;
  padding: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 16px;
}
ul { padding-left: 22px; }
li + li { margin-top: 7px; }
.policy-nav { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 30px 0; }
.policy-nav a { color: var(--muted); }
form { display: grid; gap: 18px; margin-top: 26px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 750; }
input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 180px; resize: vertical; }
button {
  width: fit-content;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #302200;
  background: var(--gold);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
button:disabled { opacity: .55; cursor: progress; }
.form-note { font-size: .88rem; margin: 0; }
.form-status { min-height: 1.6em; color: var(--ink); font-weight: 700; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
footer { border-top: 1px solid var(--line); padding: 28px 0 44px; color: var(--muted); font-size: .86rem; }
@media (max-width: 600px) {
  .nav { align-items: flex-start; padding: 18px 0; flex-direction: column; gap: 4px; }
  main { padding-top: 44px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
