:root {
  --bg: #03102a;
  --bg-2: #071935;
  --panel: rgba(8, 24, 53, 0.72);
  --panel-strong: rgba(10, 29, 61, 0.9);
  --border: rgba(110, 152, 255, 0.18);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #a6b3ca;
  --gold: #f4be2a;
  --gold-2: #ffd966;
  --green: #38d996;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 92, 255, 0.2), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(244, 190, 42, 0.08), transparent 20%),
    linear-gradient(180deg, #020919 0%, #04102a 50%, #030b1d 100%);
}

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

.site-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 10px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #ffcf67 0%, #f4a825 45%, #c96d00 100%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 10px 30px rgba(0,0,0,0.25);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0f3f9;
}

.brand-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.nav-links a:hover,
.footer a:hover { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition: 160ms ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #111827;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  box-shadow: 0 18px 40px rgba(244, 190, 42, 0.14);
}

.btn-primary:hover { box-shadow: 0 22px 52px rgba(244, 190, 42, 0.2); }

.btn-secondary,
.btn-ghost {
  color: #dce5f7;
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.16);
}

.btn-secondary:hover,
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.nav-cta { min-height: 44px; padding: 0 16px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
  gap: 42px;
  align-items: start;
  padding: 54px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(56, 217, 150, 0.14);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 9ch;
}

.hero-sub {
  margin: 0;
  max-width: 640px;
  color: #c2cee1;
  font-size: 1.36rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.micro-proof {
  margin-top: 22px;
  color: #93a3bf;
  font-size: 1rem;
}

.hero-panel,
.card,
.cta-section {
  background: linear-gradient(180deg, rgba(11, 26, 56, 0.82), rgba(8, 21, 46, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.panel-topline {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.panel-title {
  margin-top: 12px;
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold);
  font-weight: 700;
}

.step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.step span {
  color: var(--muted);
  line-height: 1.45;
}

.panel-proof {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 217, 150, 0.28);
  color: #b8f4dd;
  background: rgba(56, 217, 150, 0.08);
}

.logos-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 10px;
  color: #a3b0c7;
}

.logos-strip div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.section {
  padding: 88px 0 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.narrow { max-width: 640px; }

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 700;
}

.section h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(244, 190, 42, 0.08);
  border: 1px solid rgba(244, 190, 42, 0.18);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.card p {
  color: var(--muted);
  font-size: 1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-value {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.cta-section {
  margin-top: 88px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
}

.btn-wide { width: 100%; }

.cta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  color: #8ea0bd;
  padding: 34px 0 40px;
  font-size: 0.95rem;
}

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

  .hero h1 { max-width: 12ch; }

  .logos-strip,
  .three-up,
  .proof-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell { width: min(var(--max), calc(100% - 28px)); }

  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 18px;
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 32px;
    gap: 24px;
  }

  .hero-sub {
    font-size: 1.12rem;
  }

  .hero-panel,
  .card,
  .cta-section {
    border-radius: 20px;
  }

  .section {
    padding-top: 64px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
