:root {
  --bg: #0b1220;
  --bg-alt: #101a2e;
  --card: #131f38;
  --text: #eef2f8;
  --muted: #9db0cc;
  --accent: #4f7cff;
  --accent-2: #33d2a0;
  --border: #23324f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

header.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero p.subhead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-2);
  color: #06231a;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid var(--border);
}

.props {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 8px 0 56px;
}

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

.prop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  font-size: 15px;
}

.social-proof {
  padding: 36px 0 56px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.social-proof p {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.bottom-cta {
  text-align: center;
  padding: 40px 0 72px;
}

.bottom-cta h2 {
  font-size: 24px;
  margin-bottom: 22px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer a { color: var(--muted); }
