@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: dark;
  --legal-bg: #0a0a0f;
  --legal-blue: #4f8ef7;
  --legal-pink: #f76fa0;
  --legal-text: #f5f6fa;
  --legal-muted: rgba(255,255,255,.5);
  --legal-line: rgba(255,255,255,.08);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--legal-text);
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(79,142,247,.14), transparent 65%),
    radial-gradient(ellipse 60% 40% at 90% 65%, rgba(247,111,160,.1), transparent 65%),
    var(--legal-bg);
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) .6px, transparent .6px);
  background-size: 28px 28px;
  opacity: .12;
}

a { color: inherit; }
.legal-shell { width: min(100% - 32px, 1080px); margin: 0 auto; }
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}
.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}
.legal-logo img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.legal-back {
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.legal-back:hover { color: white; transform: translateX(-3px); }
.legal-page { max-width: 720px; margin: 0 auto; padding: 86px 0 80px; }
.legal-hero { margin-bottom: 48px; text-align: center; }
.legal-kicker {
  color: #9bbdff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.legal-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(36px, 7vw, 54px);
  line-height: .98;
  letter-spacing: -1.8px;
  background: linear-gradient(135deg, var(--legal-blue), var(--legal-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-hero p { margin: 0; color: rgba(255,255,255,.3); font-size: 13px; }
.legal-content { display: flex; flex-direction: column; gap: 10px; }
.legal-section {
  padding: 26px 30px;
  border: 1px solid var(--legal-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 4px 18px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
}
.legal-section h2 { margin: 0 0 12px; color: white; font-size: 16px; font-weight: 800; }
.legal-section p, .legal-section li {
  color: var(--legal-muted);
  font-size: 14px;
  line-height: 1.7;
}
.legal-section p { margin: 0 0 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { display: flex; flex-direction: column; gap: 7px; margin: 0 0 10px; padding: 0; list-style: none; }
.legal-section ul:last-child { margin-bottom: 0; }
.legal-section li { position: relative; padding-left: 17px; }
.legal-section li::before { position: absolute; left: 0; content: "→"; color: var(--legal-blue); font-weight: 700; }
.legal-section strong { color: rgba(255,255,255,.82); }
.legal-link { color: #78aaff; font-weight: 600; text-decoration: none; }
.legal-link:hover { color: var(--legal-pink); text-decoration: underline; }
.site-footer {
  margin-top: 24px;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-content {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  color: transparent;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--legal-blue), var(--legal-pink));
  -webkit-background-clip: text;
  background-clip: text;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.footer-link { color: rgba(255,255,255,.3); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s; }
.footer-link:hover { color: rgba(255,255,255,.7); }
.footer-copy { color: rgba(255,255,255,.2); font-size: 12px; }
@media (max-width: 560px) {
  .legal-shell { width: min(100% - 24px, 720px); }
  .legal-nav { padding-top: 14px; }
  .legal-back { font-size: 11px; }
  .legal-page { padding-top: 60px; }
  .legal-section { padding: 22px 19px; border-radius: 17px; }
  .legal-section p, .legal-section li { font-size: 13px; }
  .site-footer { padding-right: 12px; padding-left: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}