:root {
  --teal: #0D4F4F;
  --teal-light: #1A7A7A;
  --orange: #E8621A;
  --bg: #F5F3EE;
  --bg-dark: #ECEAE4;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --stage-blue: #3B82F6;
  --stage-teal: #0D4F4F;
  --stage-orange: #E8621A;
  --stage-green: #22C55E;
}

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


body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(13, 79, 79, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 3px 10px;
  background: var(--teal);
  color: var(--white);
  border-radius: 20px;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--teal) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.035;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  color: var(--teal);
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
  font-weight: 400;
}

/* PIPELINE CARD */
.hero-visual { display: flex; justify-content: flex-end; }
.pipeline-card {
  background: var(--white);
  border: 1px solid rgba(13, 79, 79, 0.12);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(13, 79, 79, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pipeline-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.pipeline-stage {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
}
.stage-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stage-dot--blue { background: var(--stage-blue); }
.stage-dot--teal { background: var(--stage-teal); }
.stage-dot--orange { background: var(--stage-orange); }
.stage-dot--green { background: var(--stage-green); }
.stage-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.stage-name { font-size: 13px; font-weight: 600; color: var(--text); }
.stage-count { font-size: 12px; color: var(--text-muted); }
.stage-bar {
  width: 64px; height: 5px;
  background: var(--bg-dark);
  border-radius: 3px;
  overflow: hidden;
}
.stage-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
  opacity: 0.35;
}
.pipeline-msg {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--bg-dark);
  padding-top: 12px;
  font-style: italic;
}

/* PROOF */
.proof {
  background: var(--teal);
  padding: 60px 40px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 40px;
}
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }
.proof-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  line-height: 1;
}
.proof-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 40px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(13, 79, 79, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--white); }
.feature-icon { width: 44px; height: 44px; }
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* PROCESS */
.process {
  padding: 80px 40px 100px;
  background: var(--white);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}
.step-content { display: flex; flex-direction: column; gap: 10px; }
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}
.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--bg-dark);
  flex-shrink: 0;
  margin: 0 20px;
  align-self: flex-start;
  margin-top: 26px;
}

/* CLOSING */
.closing {
  padding: 100px 40px 120px;
  text-align: center;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

/* FOOTER */
.footer {
  background: var(--teal);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.45); }


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .pipeline-card { max-width: 100%; }
  .proof { padding: 48px 24px; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 40px; height: 1px; }
  .proof-stat { padding: 0; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px 80px; }
  .process-steps { flex-direction: column; gap: 32px; align-items: flex-start; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .closing { padding: 80px 24px 100px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 24px; }
}