:root {
  --bg: #0a0908;
  --surface: #151212;
  --border: #302929;
  --red: #ff2d3a;
  --red-soft: rgba(255, 45, 58, 0.12);
  --white: #f8f6f4;
  --muted: #aaa3a0;
  --dim: #7a7370;
  --display: "Fredoka", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 80% -10%, rgba(255, 45, 58, 0.16), transparent 34rem), var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; border-radius: 4px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(18px);
}
.nav, .page, .footer-inner { width: min(100% - 40px, 940px); margin-inline: auto; }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font: 700 24px/1 var(--display);
  text-decoration: none;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.page { padding: 88px 0 104px; }
.eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(255, 45, 58, 0.25);
  border-radius: 999px;
  background: var(--red-soft);
  color: #ff7580;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.15; }
h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  font-size: clamp(44px, 8vw, 72px);
  letter-spacing: -0.045em;
}
.lede { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(18px, 3vw, 22px); }
.updated { margin: 18px 0 0; color: var(--dim); font-size: 14px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
.legal-copy { min-width: 0; }
.legal-copy section { padding: 34px 0; border-top: 1px solid var(--border); }
.legal-copy section:first-child { padding-top: 0; border-top: 0; }
.legal-copy h2 { margin: 0 0 14px; font-size: 27px; letter-spacing: -0.02em; }
.legal-copy h3 { margin: 24px 0 8px; font-size: 19px; }
.legal-copy p, .legal-copy ul, .legal-copy ol { margin: 0 0 15px; color: var(--muted); }
.legal-copy li + li { margin-top: 8px; }
.legal-copy strong { color: var(--white); }
.legal-copy a, .contact-card a, .footer-inner a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}
.legal-copy a:hover, .contact-card a:hover, .footer-inner a:hover { text-decoration-color: var(--red); }
.toc {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(21, 18, 18, 0.82);
}
.toc strong { display: block; margin-bottom: 10px; font: 700 15px/1.3 var(--display); }
.toc a { display: block; padding: 5px 0; color: var(--muted); font-size: 13px; text-decoration: none; }
.toc a:hover { color: var(--white); }
.notice, .contact-card {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
.notice { border-color: rgba(255, 45, 58, 0.28); }
.notice p:last-child, .contact-card p:last-child { margin-bottom: 0; }
.contact-card h2, .contact-card h3 { margin-top: 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--red);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: #ff4753; }
.faq { display: grid; gap: 12px; margin-top: 30px; }
details { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
summary { padding: 19px 22px; cursor: pointer; font-family: var(--display); font-size: 18px; font-weight: 700; }
details p, details ol { margin: 0; padding: 0 22px 20px; color: var(--muted); }
details ol { padding-left: 42px; }
.site-footer { border-top: 1px solid var(--border); }
.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--dim);
  font-size: 13px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: 18px 0; }
  .nav-links { justify-content: flex-end; flex-wrap: wrap; gap: 8px 15px; }
  .content-grid { grid-template-columns: 1fr; }
  .toc { display: none; }
  .footer-inner { padding: 24px 0; align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .nav, .page, .footer-inner { width: min(100% - 28px, 940px); }
  .brand span { display: none; }
  .page { padding-top: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
