:root {
  --bg: #0b1120;
  --surface: #111827;
  --surface-2: #1a2438;
  --teal: #00c9a7;
  --teal-dim: rgba(0, 201, 167, 0.12);
  --text: #f0f4ff;
  --text-muted: #8a99b4;
  --text-dim: #5a6a84;
  --border: rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 20px 36px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 130px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROBLEM ── */
.problem {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 64px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.problem-card {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: 0;
}
.problem-card:nth-child(2) { border-radius: 0; }
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.problem-icon {
  color: var(--teal);
  margin-bottom: 20px;
}

/* ── CAPABILITIES ── */
.capabilities {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.capabilities-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.cap-card {
  background: var(--bg);
  padding: 32px 28px;
}
.cap-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 10px;
}
.cap-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 24px 0 0;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--teal-dim);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--teal), var(--border));
  flex-shrink: 0;
  margin-top: 40px;
}
.process-pricing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
}
.pricing-block { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.pricing-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: -0.03em;
}
.pricing-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
  max-width: 380px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-content {
  max-width: 680px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-cta-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--teal);
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--teal);
}
.footer-meta {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 20px 24px; width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .process-pricing { padding: 28px 24px; }
  .footer-meta { margin-left: 0; }
}