:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --text: #0f172a;
  --text-light: #e5e7eb;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-strong: #1e40af;
  --accent: #dbeafe;
  --success: #22c55e;
  --warn: #f59e0b;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 2rem)); }

.site-header {
  background: rgba(15, 23, 42, 0.92);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.3), transparent 30%),
    radial-gradient(circle at bottom right, rgba(29,78,216,0.25), transparent 28%),
    linear-gradient(180deg, #081120 0%, #0f172a 52%, #111827 100%);
  color: var(--text-light);
  padding: 5.5rem 0 4.25rem;
}
.hero,
.hero h1,
.hero h2,
.hero p,
.hero li,
.hero a,
.hero strong,
.hero span {
  color: var(--text-light);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}
.hero-copy-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  color: #93c5fd !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.05em;
  max-width: 10.5ch;
  color: #ffffff !important;
}
.hero-copy {
  font-size: 1.15rem;
  color: #d1d9e6 !important;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.hero-microproof span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #dbeafe !important;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-proof-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: #d1d9e6 !important;
}
.hero-proof-list li + li {
  margin-top: 0.45rem;
}

.hero-visual-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.hero-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card-kicker {
  margin: 0 0 0.5rem;
  color: #93c5fd !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-visual-card h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  color: #ffffff !important;
}
.signal-badge {
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.35);
  color: #bbf7d0 !important;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.pipeline-visual {
  display: grid;
  gap: 0.75rem;
}
.pipeline-step {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.pipeline-step strong {
  display: block;
  color: #ffffff !important;
  margin-bottom: 0.2rem;
}
.pipeline-step span {
  display: block;
  color: #d1d9e6 !important;
  font-size: 0.95rem;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 0.35rem;
}
.pipeline-step.good .step-dot {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.14);
}
.pipeline-step.warn .step-dot {
  background: var(--warn);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.14);
}
.pipeline-arrow {
  text-align: center;
  color: #93c5fd !important;
  font-weight: 700;
}
.hero-visual-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.mini-stat {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-stat strong {
  display: block;
  color: #ffffff !important;
  margin-bottom: 0.2rem;
}
.mini-stat span {
  color: #d1d9e6 !important;
  font-size: 0.92rem;
}

section { padding: 4.5rem 0; }
.section-alt { background: var(--panel-soft); }

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-top: 0;
  letter-spacing: -0.03em;
}
h3 {
  margin-top: 0;
  font-size: 1.1rem;
}
.muted { color: var(--muted); }

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .pricing-card, .contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.card p:last-child,
.pricing-card p:last-child,
.contact-box p:last-child {
  margin-bottom: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.chips span {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 1rem;
}
.step {
  border-left: 4px solid var(--brand);
  padding: 0.3rem 0 0.3rem 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.trust-strip > div {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 1rem;
}
.trust-strip strong {
  display: block;
  margin-bottom: 0.35rem;
}
.trust-strip span {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.28rem;
  background: var(--brand);
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.button-secondary {
  background: transparent;
  border: 1px solid rgba(15,23,42,0.12);
  color: var(--text);
}
.button-secondary-light {
  border-color: rgba(255,255,255,0.22);
  color: #ffffff !important;
}
.pricing-line {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.pricing-card .button {
  margin-top: 1rem;
}

.faq {
  display: grid;
  gap: 1rem;
}
.faq > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--bg);
  color: var(--text-light);
  padding: 2rem 0;
}
.footer-row { display: flex; justify-content: space-between; gap: 1rem; }

@media (max-width: 900px) {
  .hero-grid,
  .three-up,
  .two-up,
  .trust-strip,
  .hero-visual-footer {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .nav { flex-direction: column; gap: 1rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero-visual-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
