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

:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --slate: #475569;
  --muted: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--light);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--slate); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: #1e293b !important; text-decoration: none !important; }

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(37,99,235,0.3);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--blue-light); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); text-decoration: none; color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--muted);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(148,163,184,0.3);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--muted); color: var(--white); text-decoration: none; }
.hero-proof { margin-top: 48px; font-size: 0.8rem; color: var(--muted); }

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-bar .container { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: var(--slate); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* Problem section */
.problem { padding: 80px 0; background: var(--white); }
.problem .container { max-width: 800px; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-sub { color: var(--slate); font-size: 1.05rem; line-height: 1.7; margin-bottom: 48px; }
.problem-list { display: grid; gap: 16px; }
.problem-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.problem-icon { width: 36px; height: 36px; min-width: 36px; background: #fef2f2; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.problem-item p { font-size: 0.95rem; color: var(--slate); font-weight: 500; }
.problem-item strong { color: var(--navy); }

/* What we automate */
.automate { padding: 80px 0; background: var(--light); }
.automate-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 48px; }
.automate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.automate-card:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(37,99,235,0.08); }
.automate-icon { width: 40px; height: 40px; min-width: 40px; background: #eff6ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.automate-card p { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* Tools */
.tools-section { background: var(--white); padding: 60px 0; border-top: 1px solid var(--border); }
.tools-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tool-chip {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  transition: border-color 0.15s, color 0.15s;
}
.tool-chip:hover { border-color: var(--blue); color: var(--blue); }

/* Industries */
.industries { padding: 80px 0; background: var(--navy); color: var(--white); }
.industries .section-heading { color: var(--white); }
.industries .section-sub { color: var(--muted); }
.industries-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.industry-chip:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* Hook / Math */
.math { padding: 80px 0; background: var(--white); text-align: center; }
.math-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 56px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.math-hook { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.math-equation { font-size: 1.1rem; color: var(--muted); margin-bottom: 24px; }
.math-result { font-size: 3rem; font-weight: 900; color: var(--blue-light); letter-spacing: -0.04em; }
.math-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 700px; margin: 0 auto; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.price-card.featured { border-color: var(--blue); box-shadow: 0 4px 24px rgba(37,99,235,0.12); }
.price-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; }
.price-period { font-size: 0.85rem; color: var(--slate); margin-top: 4px; }
.price-desc { font-size: 0.875rem; color: var(--slate); margin-top: 12px; line-height: 1.6; }
.pricing-cta { margin-top: 32px; }

/* 30-day pitch */
.pitch { padding: 80px 0; background: var(--white); }
.pitch .container { max-width: 700px; }
.pitch-box {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 40px;
}
.pitch-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.pitch-body { color: var(--slate); font-size: 1rem; line-height: 1.7; }
.pitch-body strong { color: var(--navy); }

/* Footer */
.footer { background: var(--navy); color: var(--muted); padding: 48px 0 32px; font-size: 0.875rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--white); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.footer-brand p { color: var(--muted); margin-top: 8px; font-size: 0.85rem; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-link-group h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.footer-link-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-link-group a { color: var(--muted); font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .stats-bar .container { gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .math-box { padding: 40px 24px; }
  .math-result { font-size: 2.4rem; }
}