:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0b0f16;
  --panel-soft: #101722;
  --text: #d7dee7;
  --muted: #8b98a8;
  --line: rgba(255,255,255,.11);
  --accent: #f5a623;
  --accent-soft: rgba(245,166,35,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% -10%, rgba(245,166,35,.07), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}
a { color: #f7b84d; text-underline-offset: .18em; }
a:hover { color: #ffd07d; }
.site-header, .site-footer {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.site-header { min-height: 68px; border-bottom: 1px solid var(--line); }
.site-footer { min-height: 88px; border-top: 1px solid var(--line); }
.back-link { color: var(--text); text-decoration: none; }
main { width: min(100% - 28px, 920px); margin: 34px auto 70px; }
.legal-document {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(16,23,34,.97), rgba(5,5,5,.98));
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
  padding: clamp(24px, 5vw, 64px);
}
.legal-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 {
  color: white;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 18ch;
}
.legal-subtitle { color: var(--muted); font-size: clamp(16px, 2.4vw, 20px); margin: 14px 0 28px; }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-meta div { display: grid; gap: 2px; }
.legal-meta dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.legal-meta dd { margin: 0; color: white; font-size: 14px; }
.document-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 40px; }
.document-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(245,166,35,.38);
  border-radius: 12px;
  background: var(--accent-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.legal-content { max-width: 76ch; }
.legal-content h2 {
  color: white;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.28;
  letter-spacing: -.018em;
  margin: 44px 0 16px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 20px; padding-left: 25px; }
.legal-content li { margin: 7px 0; padding-left: 5px; }
.legal-content li::marker { color: var(--accent); }
.legal-note {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(245,166,35,.22);
  border-radius: 16px;
  background: var(--accent-soft);
  color: #e7d8bd;
}
@media (max-width: 560px) {
  body { font-size: 15px; line-height: 1.66; }
  main { width: min(100% - 16px, 920px); margin-top: 12px; }
  .site-header, .site-footer { width: min(100% - 24px, 980px); }
  .site-header span { display: none; }
  .legal-document { border-radius: 20px; padding: 22px 18px 32px; }
  .document-actions a { flex: 1 1 140px; }
  .legal-content h2 { margin-top: 36px; }
}
@media print {
  :root { color-scheme: light; }
  body { background: white; color: #111; }
  .site-header, .site-footer, .document-actions { display: none; }
  main { width: 100%; margin: 0; }
  .legal-document { border: 0; border-radius: 0; box-shadow: none; background: white; padding: 0; }
  h1, .legal-content h2, .legal-meta dd { color: #111; }
  .legal-subtitle, .legal-meta dt { color: #555; }
  a { color: #111; }
}
