:root {
  --bg: #07091A;
  --bg-2: #0B0F2A;
  --blue: #3D5FFF;
  --accent: #00D4FF;
  --text: #E8ECFF;
  --text-dim: #8A92B8;
  --border: rgba(232, 236, 255, 0.08);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Plus Jakarta Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

nav.top {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 5vw; display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(20px); background: rgba(7, 9, 26, 0.85);
  border-bottom: 1px solid var(--border);
}
nav.top .logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #E8ECFF, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav.top a.back { color: var(--text-dim); font-size: 14px; }
nav.top a.back:hover { color: var(--accent); }

main.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 5vw 96px;
}
main.legal h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #E8ECFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
main.legal .lead {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
main.legal h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 48px 0 16px;
  color: var(--text);
}
main.legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
main.legal p { margin-bottom: 16px; color: #C8CEEB; }
main.legal ul { margin: 0 0 16px 24px; color: #C8CEEB; }
main.legal li { margin-bottom: 8px; }
main.legal dl { display: grid; grid-template-columns: 180px 1fr; gap: 8px 24px; margin-bottom: 24px; }
main.legal dt { color: var(--text-dim); font-size: 14px; }
main.legal dd { color: var(--text); font-size: 15px; }
@media (max-width: 640px) {
  main.legal dl { grid-template-columns: 1fr; gap: 4px; }
  main.legal dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 12px; }
}
main.legal .meta {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
}

footer.legal {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 40px 5vw;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}
footer.legal a { color: var(--text-dim); margin: 0 12px; }
footer.legal a:hover { color: var(--accent); }
footer.legal .copy { margin-top: 16px; opacity: 0.7; }
