:root {
  --bg: #0b0d12;
  --bg-alt: #11141b;
  --surface: #161a23;
  --text: #e6e8ef;
  --muted: #8b93a7;
  --accent: #6c8cff;
  --accent-2: #a06cff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 13, 18, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.02em; }
.brand__mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: white; font-weight: 800;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, opacity 0.2s, background 0.2s;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}
.btn--primary:hover { transform: translateY(-1px); opacity: 0.95; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--surface); }

/* Hero */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse at top left, rgba(108, 140, 255, 0.18), transparent 50%),
    radial-gradient(ellipse at top right, rgba(160, 108, 255, 0.15), transparent 50%);
}
.hero__inner { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.hero__stats > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.hero__stats strong { display: block; font-size: 1.6rem; font-weight: 800; }
.hero__stats span { color: var(--muted); font-size: 0.9rem; }

/* Sections */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section__sub { color: var(--muted); margin: 0 0 40px; max-width: 600px; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(108, 140, 255, 0.4); }
.card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
.check { list-style: none; padding: 0; margin: 24px 0 0; }
.check li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
}
.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.panel__quote { font-size: 1.15rem; line-height: 1.6; margin: 0 0 16px; }
.panel__author { color: var(--muted); margin: 0; font-size: 0.9rem; }

/* CTA */
.cta {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at center, rgba(108, 140, 255, 0.15), transparent 60%);
  text-align: center;
}
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin: 0 0 12px; }
.cta p { color: var(--muted); margin: 0 0 28px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.muted { color: var(--muted); }
