:root {
  --bg: #0f172a;
  --panel: #111827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(255,255,255,.12);
  --accent: #38bdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1e293b, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 22px;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1;
  margin: 12px 0;
}

.hero h2 {
  font-size: clamp(22px, 4vw, 36px);
  color: var(--muted);
  margin: 0 0 24px;
}

.lead {
  max-width: 760px;
  font-size: 20px;
  color: var(--text);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.actions a {
  color: #020617;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.actions a.secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: 32px;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

article {
  background: rgba(17, 24, 39, .72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

article h3 {
  margin-top: 0;
}

article p,
.section p,
li {
  color: var(--muted);
}

.proof ul {
  padding-left: 20px;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .page {
    padding-top: 36px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }
}