:root {
  color-scheme: light;
  --bg: #0b1020;
  --card: #121a30;
  --text: #e8ecf9;
  --muted: #b4bfd9;
  --brand: #6ee7b7;
  --brand2: #60a5fa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top right, #182545, var(--bg));
  color: var(--text);
  line-height: 1.55;
}
.wrap { max-width: 1024px; margin: 0 auto; padding: 24px; }
.hero { padding-top: 64px; }
.kicker { color: var(--brand); font-weight: 700; letter-spacing: .04em; text-transform: lowercase; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin: 0 0 16px; }
.sub { color: var(--muted); max-width: 760px; }
section { margin: 52px 0; }
h2 { font-size: 1.6rem; margin-bottom: 10px; }
.grid-3 { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
article, section, footer { background: transparent; }
.grid-3 article, .grid-2 article {
  background: color-mix(in oklab, var(--card) 88%, white 2%);
  border: 1px solid #2a3759;
  border-radius: 14px;
  padding: 16px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.btn {
  display: inline-block;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary { background: linear-gradient(90deg, var(--brand), var(--brand2)); color: #071223; }
.btn-ghost { border: 1px solid #3c4a72; color: var(--text); }
.proof { display: flex; flex-wrap: wrap; gap: 16px; padding: 0; margin: 16px 0 0; list-style: none; color: var(--muted); }
.footer { border-top: 1px solid #2a3759; margin-top: 40px; padding-bottom: 56px; }
small { color: var(--muted); }
