:root {
  --bg: #071018;
  --surface: #101a24;
  --panel: #162230;
  --border: #2b3745;
  --text: #f3f7fa;
  --muted: #aab6c2;
  --green: #48d889;
  --amber: #f5a524;
  --violet: #8b5cf6;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 15% 5%, rgba(72, 216, 137, .16), transparent 28%), var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
}
a { color: inherit; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 64px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
nav, footer { display: flex; gap: 20px; align-items: center; }
nav a, footer a { color: var(--muted); text-decoration: none; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 46px;
  align-items: center;
  padding: 38px clamp(18px, 5vw, 64px) 56px;
}
.eyebrow { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
h1 { font-size: clamp(56px, 9vw, 124px); line-height: .9; margin: 12px 0; letter-spacing: 0; }
.subtitle { font-size: clamp(24px, 4vw, 42px); color: var(--muted); margin: 0 0 20px; }
.lede { max-width: 660px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.primary { background: var(--green); color: #052114; }
.secondary { border: 1px solid var(--border); color: var(--text); }
.hero-media { width: 100%; border-radius: 18px; border: 1px solid var(--border); }
.proof, .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px) 46px;
}
.proof div, .features article, .legal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.proof strong { display: block; color: var(--amber); font-size: 28px; }
.proof span, .features p, .legal p { color: var(--muted); line-height: 1.6; }
.features h2 { margin-top: 0; }
footer {
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 28px;
  color: var(--muted);
}
.legal { max-width: 820px; margin: 40px auto; }

@media (max-width: 820px) {
  .site-header, nav, footer { align-items: flex-start; flex-direction: column; }
  .hero, .proof, .features { grid-template-columns: 1fr; }
}
