:root {
  --bg: #070a12;
  --card: rgba(11, 14, 23, 0.96);
  --text: #f4f7ff;
  --muted: #97a2bf;
  --line: rgba(255,255,255,.1);
  --green: #2ea85e;
  --green-soft: rgba(72,201,115,.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background:
    radial-gradient(circle at top, rgba(124,255,162,.08), transparent 24%),
    linear-gradient(180deg, #05070d, #0b0f1a 45%, #080b12 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}
a { color: inherit; }
.wrap { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 48px; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--muted);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.brand img { height: 26px; }
.backlink {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
h1 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.lead { margin: 0 0 24px; color: var(--muted); font-size: 1rem; }
h2 { margin: 28px 0 12px; font-size: 1.2rem; }
p, li { color: #dfe6fb; line-height: 1.7; }
ul { margin: 10px 0 0 0; padding-left: 20px; }
.section { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 18px; }
.meta { display: grid; gap: 8px; }
.meta div { color: #dfe6fb; }
.meta strong { color: var(--text); }
.note {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(72,201,115,.18);
  background: var(--green-soft);
  color: #dff7e7;
}
.legal-footer {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.legal-footer nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.legal-footer nav a { text-decoration: none; }
@media (max-width: 720px) {
  .wrap { width: min(100% - 24px, 920px); padding-top: 18px; }
  .card { padding: 22px; border-radius: 22px; }
  .topbar { align-items: flex-start; flex-direction: column; }
}
