:root {
  --navy: #0F2D6B;
  --orange: #E8720C;
  --bg: #FAFAFA;
  --bg-dark: #111111;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --line: #EBEBEB;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Raleway', sans-serif; letter-spacing: -0.02em; color: var(--navy); }
.container { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1240px; margin: 0 auto; padding: 0 32px;
}
.logo {
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 19px;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo::before {
  content: ''; width: 10px; height: 10px; background: var(--orange);
  border-radius: 2px; transform: rotate(45deg);
}
.back-link {
  font-size: 14px; font-weight: 500; color: var(--navy);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.back-link:hover { color: var(--orange); }

/* HERO */
.legal-hero { padding: 88px 0 56px; border-bottom: 1px solid var(--line); }
.legal-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.legal-kicker::before {
  content: ''; width: 28px; height: 2px; background: var(--orange);
}
.legal-hero h1 {
  font-weight: 800; font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05; margin-bottom: 16px;
}
.legal-meta { font-size: 14px; color: var(--muted); }

/* BODY */
.legal-body { padding: 72px 0 120px; }
.legal-body h2 {
  font-weight: 700; font-size: 26px;
  margin: 48px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
  font-weight: 700; font-size: 17px; color: var(--text);
  margin: 28px 0 8px;
}
.legal-body p, .legal-body ul { font-size: 16.5px; color: var(--text); margin-bottom: 16px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.legal-body a:hover { color: var(--orange); }
.legal-body strong { color: var(--navy); }

/* FOOTER */
footer {
  background: var(--bg-dark); color: #fff;
  padding: 64px 0 40px; text-align: center;
}
.footer-line { width: 60px; height: 3px; background: var(--orange); margin: 0 auto 36px; border-radius: 2px; }
footer .name { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 24px; letter-spacing: -0.01em; }
.footer-links {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--orange); border-color: var(--orange); }
.footer-links svg { width: 18px; height: 18px; }
.footer-legal {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: var(--orange); }
.copyright { font-size: 13px; color: #777; }

@media (max-width: 640px) {
  .container, .nav-inner { padding: 0 20px; }
  .legal-hero { padding: 56px 0 40px; }
  .legal-body { padding: 48px 0 80px; }
}
