:root {
  --bg: #0b1220;
  --card: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #c2410c;
  --line: rgba(255,255,255,.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
header img { height: 28px; width: auto; }
header nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); }
header nav a { text-decoration: none; }
header nav a:hover { color: var(--text); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .28;
  pointer-events: none;
}
.hero::before { background: #7c3aed; top: -80px; left: -40px; }
.hero::after { background: var(--accent); right: -60px; bottom: -80px; }
.kicker {
  display: inline-block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fdba74;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 0 28px;
}
.note {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 80px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.card h2 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer a { color: var(--muted); }
.legal .doc {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}
.legal h1 { font-size: 32px; }
.legal h2 { font-size: 18px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; }
@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  header nav { display: none; }
}
