:root {
  --bg: #141a2e;
  --backdrop: #0b0f1d;
  --surface: #1e2742;
  --surface-elevated: #283457;
  --border: #3a4a78;
  --text: #f7f2e6;
  --muted: #a6b3cc;
  --gold: #ffce3a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: radial-gradient(1100px 660px at 50% -180px, #25345f 0%, var(--bg) 52%, var(--backdrop) 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.legal-page { padding: 0; }
a { color: inherit; }
.site-header { position: relative; z-index: 30; border-bottom: 1px solid rgba(58,74,120,.5); background: rgba(11,15,29,.72); backdrop-filter: blur(18px); }
.site-nav { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.site-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 13px; font-weight: 950; letter-spacing: 1.2px; text-decoration: none; text-transform: uppercase; }
.site-brand img { width: 39px; height: 39px; border-radius: 11px; box-shadow: 0 4px 0 #a98218; }
.site-links { flex: 1; display: flex; justify-content: center; gap: 25px; }
.site-links a { color: var(--muted); font-size: 12px; font-weight: 800; text-decoration: none; }
.site-links a:hover { color: var(--text); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border: 1px solid var(--gold); border-radius: 14px; background: var(--gold); color: #111729; font-size: 13px; font-weight: 950; text-decoration: none; box-shadow: 0 5px 0 #9b781a; transition: transform .15s ease, box-shadow .15s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #9b781a; }
.button-small { min-height: 40px; padding: 0 15px; border-radius: 11px; font-size: 11px; }
.button-secondary { border-color: var(--border); background: var(--surface); color: var(--text); box-shadow: none; }
.button-secondary:hover { border-color: var(--gold); box-shadow: none; }
.site-eyebrow { color: var(--gold); font-size: 10px; font-weight: 950; letter-spacing: 1.8px; text-transform: uppercase; }
.site-footer { padding: 44px 0; border-top: 1px solid var(--border); background: #090d18; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; }
.footer-grid p { margin: 13px 0 0; color: var(--muted); font-size: 12px; }
.footer-grid nav { display: flex; gap: 18px; }
.footer-grid nav a { color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: none; }
.footer-grid nav a:hover { color: var(--gold); }
.footer-meta { display: grid; gap: 5px; color: var(--muted); font-size: 11px; text-align: right; }
.legal-shell { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 26px 0 70px; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 45px; }
.legal-nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.legal-nav-links a { color: var(--muted); font-size: 12px; font-weight: 800; text-decoration: none; }
.legal-nav-links a:hover, .legal-nav-links a[aria-current="page"] { color: var(--gold); }
.legal-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 24px; color: var(--muted); font-size: 12px; }
.legal-footer nav { display: flex; gap: 14px; }
.legal-footer a { color: var(--muted); text-decoration: none; }
@media (max-width: 760px) {
  .site-nav { min-height: 68px; }
  .site-links { display: none; }
  .site-nav .button-small { margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid .site-brand, .footer-grid nav { justify-content: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 480px) {
  .site-brand span { font-size: 11px; }
  .legal-nav { align-items: flex-start; }
  .legal-nav-links { gap: 8px 12px; }
}
