:root {
  --bg: #07131f;
  --surface: #0f1f2d;
  --surface-soft: #152a3d;
  --ink: #ecf4ff;
  --muted: #9bb0c5;
  --line: #2b455d;
  --primary: #2dd4bf;
  --primary-ink: #032116;
  --accent: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: radial-gradient(circle at 25% 10%, #102840 0%, var(--bg) 48%);
  font-family:
    "Avenir Next",
    "Segoe UI",
    Manrope,
    sans-serif;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.2;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -70px;
  background: #2dd4bf;
}

.orb-b {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -70px;
  background: #f59e0b;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgb(7 19 31 / 75%);
  border-bottom: 1px solid rgb(155 176 197 / 20%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.brand-name {
  margin: 0;
  color: var(--ink);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Space Grotesk",
    sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 78px 0 44px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Space Grotesk",
    sans-serif;
  font-size: clamp(2.05rem, 5vw, 3.8rem);
  max-width: 18ch;
}

h2 {
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Space Grotesk",
    sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.hero-copy {
  margin: 16px 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  color: var(--primary-ink);
  background: linear-gradient(135deg, var(--primary), #17bfc5);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.hero-brand,
.hero-grid article,
.card,
.steps li,
.outcomes {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}

.hero-brand {
  padding: 16px;
}

.hero-brand p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero-logo {
  width: min(240px, 100%);
  height: auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
}

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

.hero-grid article,
.card,
.steps li {
  padding: 18px;
}

.hero-grid p,
.card p,
.steps p,
.split p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  padding: 46px 0;
}

.section-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.split p {
  max-width: 60ch;
}

.cards {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card {
  border-left: 3px solid var(--accent);
}

.steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcomes {
  padding: 24px;
}

.outcomes ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.outcomes li {
  margin: 8px 0;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgb(155 176 197 / 20%);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

@media (max-width: 980px) {
  .hero-layout,
  .hero-grid,
  .three-up,
  .split,
  .steps {
    grid-template-columns: 1fr;
  }

  .two-up {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }
}
