:root {
  --bg: #F8FAFC;
  --surface: rgba(255, 255, 255, 0.65);
  --text: #0F172A;
  --muted: rgba(15, 23, 42, 0.72);
  --border: rgba(15, 23, 42, 0.10);

  --max: 1100px;

  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 72px;
  --s8: 96px;

  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.92; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.page { padding: var(--s7) 0 var(--s8); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  gap: var(--s4);
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

/* Sections */
.section { padding: var(--s7) 0; }
.section + .section { border-top: 1px solid var(--border); }

.section-hero { padding-top: var(--s6); }

.kicker {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s2);
}

.h1 {
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 var(--s4);
  max-width: 20ch;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 var(--s5);
  max-width: 70ch;
}

.h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s3);
}

.body {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

.muted { color: var(--muted); font-size: 14px; }

.link {
  border-bottom: 1px solid var(--border);
}
.link:hover {
  border-bottom-color: rgba(15, 23, 42, 0.28);
}

.spacer { height: 24px; }

/* Actions */
.actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 var(--s4);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-ghost { background: transparent; }

/* Proof row */
.proof-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s4);
}

.proof {
  grid-column: span 4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s4);
  background: var(--surface);
}

.proof-title {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--s1);
}

.proof-sub {
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s4);
}

.card {
  grid-column: span 6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s5);
  background: var(--surface);
}

.card h3 {
  margin: 0 0 var(--s2);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p { margin: 0; color: var(--muted); }

/* Flow (How it works) */
.flow {
  list-style: none;
