:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #a1a1aa;
  --soft: #d4d4d8;
  --accent: #ef4444;
  --accent-soft: #fecaca;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.24), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(249, 115, 22, 0.16), transparent 26%),
    linear-gradient(180deg, #0a0a0a 0%, var(--bg) 48%, #020202 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.055;
}

a {
  color: var(--accent-soft);
}

.shell {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 64px 24px;
}

.hero {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.legal h1 {
  font-size: clamp(40px, 7vw, 74px);
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.7;
}

.updated {
  margin: 18px 0 0;
  color: #71717a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notice {
  max-width: 720px;
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 22px;
  background: rgba(239, 68, 68, 0.1);
  color: #fee2e2;
  line-height: 1.6;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.links a,
.back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 13px 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.back {
  margin-bottom: 42px;
}

section {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

p,
li {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.75;
}

li + li {
  margin-top: 8px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .shell {
    padding: 44px 18px;
  }

  section {
    padding: 20px;
  }
}
