:root {
  --bg: #0b0b0f;
  --panel: #121219;
  --text: #f4f4f7;
  --muted: #a9a9b4;
  --line: #2a2a35;
  --accent: #b66cff;
  --accent2: #7c4dff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a1225 0%, var(--bg) 34%, #07070a 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: #cf9cff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }
header {
  border-bottom: 1px solid var(--line);
  background: rgba(11,11,15,.78);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  white-space: nowrap;
}
nav a {
  color: var(--muted);
  margin-left: 24px;
  font-size: 14px;
}
.hero {
  padding: 110px 0 90px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #c994ff;
  font-size: 12px;
  font-weight: 700;
}
h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.badge {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: #d7d7df;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
}
section { padding: 40px 0 70px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin-bottom: 0; }
.policy {
  max-width: 840px;
  padding: 70px 0 90px;
}
.policy h1 {
  font-size: clamp(36px, 5vw, 56px);
}
.policy h2 {
  margin-top: 42px;
  font-size: 24px;
}
.policy p, .policy li { color: #c9c9d3; }
.policy ul { padding-left: 22px; }
.note {
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  background: rgba(182,108,255,.08);
  color: #d9d9e3;
  border-radius: 0 12px 12px 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 50px;
  color: var(--muted);
  font-size: 14px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a { margin-right: 18px; }
@media (max-width: 760px) {
  nav a { margin-left: 12px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 78px; }
}
