/* Crown legal pages — shared styling, echoes the lander tokens */
:root {
  --bg: #0A0A0C;
  --gold: #F5C242;
  --jade: #5EE0A0;
  --ink: rgba(255, 255, 255, 0.88);
  --ink-60: rgba(255, 255, 255, 0.6);
  /* --ink-45 removed: 45% white cannot reach 4.5:1 for normal-size text on
     any background (4.41:1 even on pure black). Quiet text uses --ink-60. */
  --rule: rgba(255, 255, 255, 0.1);
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 50% -5%, rgba(245, 194, 66, 0.06), transparent 70%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 2rem) 5rem;
}

.brand {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
  margin-bottom: 2.5rem;
}
.brand::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 6px;
  background: var(--gold);
  border-radius: 3px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5rem;
}

.meta {
  /* --ink-45 measured 4.50:1 — inside rounding error of the 4.5:1 AA
     threshold, and it cannot go higher on any background. --ink-60 is 7.32:1. */
  color: var(--ink-60);
  font-size: 0.85rem;
  margin: 0 0 2.5rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(245, 194, 66, 0.05);
  border-radius: 0 12px 12px 0;
  margin: 0 0 2.5rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

p { margin: 0 0 1rem; color: var(--ink); }
strong { color: #fff; }

/* Links (WCAG SC 1.4.1 Use of Color).
   Gold on the body ink measures 1.27:1 and the grey footer links measure
   1.62:1 against their surrounding text — far under the 3:1 that would let
   colour alone carry the distinction. Links inside a block of text therefore
   carry a persistent underline; .brand is a standalone wordmark, not a link
   inside prose, so it is exempt. */
a { color: var(--gold); text-decoration: none; }
p a, li a, td a, th a, footer a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
a:hover { text-decoration: underline; }

/* SC 2.4.7 Focus Visible — no author focus styles existed on these pages. */
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

ul, ol { padding-left: 1.25rem; margin: 0 0 1.25rem; }
li { margin-bottom: 0.65rem; }

.disclaimer {
  color: var(--ink-60);
  font-size: 0.95rem;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  /* was --ink-45 (4.50:1, at the threshold) at 12.8px */
  color: var(--ink-60);
  font-size: 0.8rem;
}
footer a { color: var(--ink-60); }

/* retention table (privacy policy, 2026-07-10) */
table { width: 100%; border-collapse: collapse; margin: 14px 0 18px; font-size: 0.92em; }
th { text-align: left; color: var(--ink-caption, #9a9aa2); font-weight: 500; padding: 6px 10px 6px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
td { padding: 7px 10px 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); vertical-align: top; }
