:root {
  --bg: #08111f;
  --panel: #0f172a;
  --panel-2: #111c2e;
  --text: #eef4fb;
  --muted: #b7c4d8;
  --line: rgba(255,255,255,.09);
  --accent: #8de0c8;
  --accent-dark: #2f7f72;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(141,224,200,.12), transparent 32%),
    radial-gradient(circle at top right, rgba(91,141,239,.11), transparent 24%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8,17,31,.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .04em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #08211d;
  background: linear-gradient(135deg, var(--accent), #d8fff3);
}
nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--white); }
.hero { padding: 74px 0 54px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: .98;
  letter-spacing: -.055em;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
h3 { margin: 0 0 10px; font-size: 20px; }
p { line-height: 1.7; }
.hero-text { max-width: 610px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--accent);
  color: #072019;
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.button-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}
.proof-row { display: flex; flex-wrap: wrap; gap: 10px; }
.proof-row span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}
.hero-visual svg { display: block; width: 100%; height: auto; }
.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}
.strip-inner strong { color: var(--text); font-size: 15px; }
.section { padding: 94px 0; }
.section-muted { background: rgba(255,255,255,.025); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split,
.benefits-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
}
.copy-stack { color: var(--muted); font-size: 17px; }
.copy-stack p:first-child { margin-top: 0; }
.center { text-align: center; }
.cards {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
}
.card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.card p,
.benefit-list p { margin: 0; color: var(--muted); }
.benefit-list {
  display: grid;
  gap: 20px;
}
.benefit-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cta { padding: 0 0 94px; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #12302d, #17364d);
  border: 1px solid rgba(141,224,200,.25);
}
.button-light { background: var(--white); color: #102033; white-space: nowrap; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid,
  .split,
  .benefits-grid,
  .cards.three { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .hero-grid { gap: 28px; }
  .hero-visual { order: -1; }
  .cta-inner,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { min-height: 72px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 72px 0; }
  .cta { padding-bottom: 72px; }
}
