:root {
  color-scheme: dark;
  --bg: #0d0f10;
  --surface: #151819;
  --line: #303536;
  --text: #f4f6f3;
  --muted: #aeb6b2;
  --accent: #62e6a6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
.site-header, footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px clamp(24px, 6vw, 88px); border-bottom: 1px solid var(--line); }
.brand { font-size: 20px; font-weight: 800; }
nav { display: flex; gap: 24px; color: var(--muted); }
nav a:hover { color: var(--text); }
.hero { min-height: 68vh; display: flex; flex-direction: column; justify-content: center; padding: 64px clamp(24px, 8vw, 128px); background: linear-gradient(120deg, rgba(98,230,166,.08), transparent 45%); }
.eyebrow, .section-label { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; }
h1 { margin: 10px 0 18px; max-width: 800px; font-size: clamp(54px, 9vw, 118px); line-height: .95; letter-spacing: 0; }
.lead { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(20px, 3vw, 32px); line-height: 1.35; }
.status { display: flex; align-items: center; gap: 10px; margin-top: 34px; color: var(--muted); }
.status span { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 16px rgba(98,230,166,.65); }
.content-band { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 8vw, 120px); padding: 72px clamp(24px, 8vw, 128px); border-top: 1px solid var(--line); }
h2 { margin: 10px 0 0; max-width: 520px; font-size: clamp(30px, 4vw, 52px); line-height: 1.08; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps span, .legal p, .legal li { color: var(--muted); line-height: 1.7; }
footer { border-top: 1px solid var(--line); border-bottom: 0; color: var(--muted); font-size: 14px; }
.legal { width: min(860px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 96px; }
.legal h1 { font-size: clamp(42px, 7vw, 76px); }
.legal h2 { margin-top: 40px; font-size: 25px; }
.legal .updated { color: var(--accent); }
@media (max-width: 720px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 62vh; }
  .content-band { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 1fr; gap: 8px; }
}
