@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --ink: oklch(18% .018 220);
  --panel: oklch(26% .026 220);
  --line: oklch(35% .028 220);
  --ice: oklch(90% .023 210);
  --mist: oklch(66% .027 214);
  --glow: oklch(90% .121 176);
  --amber: oklch(79% .128 78);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--ink);
  color: var(--ice);
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.bg-glow {
  position: fixed;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--glow) 10%, transparent), transparent 70%);
}

nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: color-mix(in oklab, var(--ink) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
nav.top .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--glow), var(--panel) 72%);
  box-shadow: 0 0 12px color-mix(in oklab, var(--glow) 45%, transparent);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.top .brand span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ice);
  letter-spacing: -0.01em;
}
nav.top a.back {
  font-size: 13px;
  color: var(--mist);
  text-decoration: none;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
}
nav.top a.back:hover { color: var(--ice); }

main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.eyebrow {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--glow);
  margin-bottom: 14px;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ice);
}

.updated {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--mist);
  margin: 0 0 40px;
}

article h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ice);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
article h2:first-child { margin-top: 0; }

article p {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in oklab, var(--ice) 88%, transparent);
  margin: 0 0 16px;
  max-width: 62ch;
}

article ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
article li {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in oklab, var(--ice) 88%, transparent);
  margin-bottom: 8px;
  max-width: 60ch;
}

article strong { color: var(--ice); }

a { color: var(--glow); }

.callout {
  background: color-mix(in oklab, var(--panel) 60%, transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 28px;
}
.callout p { margin: 0; font-size: 14px; color: var(--mist); }
.callout p + p { margin-top: 10px; }

.placeholder {
  color: var(--amber);
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
}

table.contact {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
}
table.contact td {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  font-size: 14px;
  color: var(--ice);
  vertical-align: top;
}
table.contact td:first-child {
  color: var(--mist);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 140px;
  padding-right: 16px;
}

details.faq {
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  padding: 18px 0;
}
details.faq:first-of-type { border-top: 1px solid color-mix(in oklab, var(--line) 60%, transparent); }
details.faq summary {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ice);
  cursor: pointer;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  color: var(--glow);
  font-weight: 700;
}
details.faq[open] summary::before { content: "\2212"; }
details.faq p {
  margin: 12px 0 0 18px;
  font-size: 14.5px;
  color: var(--mist);
}

footer.legal {
  position: relative;
  z-index: 1;
  border-top: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  padding: 28px 24px;
  text-align: center;
}
footer.legal .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 13px;
  margin-bottom: 12px;
}
footer.legal a { text-decoration: none; color: var(--mist); }
footer.legal a:hover { color: var(--ice); }
footer.legal .copy {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mist);
  opacity: 0.7;
}
