:root {
  --blue:      #053A99;
  --blue-deep: #041F52;
  --blue-lite: #0644AD;
  --blue-hi:   #0A5ABF;
  --red:       #E11014;
  --red-hover: #E63E41;
  --white:     #fff;
  --muted:     #C5DAF0;
  --surface:   #0644AD;
  --border:    #508AD4;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--blue); color: var(--white); }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,58,153,0.82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(80,138,212,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.3px; }
.nav-brand img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red); color: var(--white); font-weight: 700; font-size: 14px;
  padding: 9px 16px; border-radius: 999px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-hover); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

main.legal { padding: 80px 28px 60px; }
main.legal .container { max-width: 760px; margin: 0 auto; }
.sec-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
main.legal h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.05;
  margin: 0 0 8px; font-style: italic;
}
main.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 36px; }
main.legal h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.2px;
  margin: 36px 0 12px;
}
main.legal p, main.legal li { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
main.legal a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
main.legal ul { padding-left: 20px; margin: 12px 0; }
main.legal li { margin-bottom: 6px; }

footer {
  background: #020F2A;
  padding: 30px 28px;
  border-top: 1px solid rgba(80,138,212,0.3);
  font-size: 13px; color: var(--muted);
}
.foot-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(197,218,240,0.7);
}
.foot-bottom a:hover { color: var(--white); }
