/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --amber: #e8920c;
  --amber-light: #f5a623;
  --cream: #f4f1eb;
  --cream-dark: #e8e4db;
  --text: #1a1f2e;
  --text-muted: #5a6478;
  --white: #ffffff;
  --green: #40916c;
  --blue-deep: #1a3a5c;
  --green-deep: #2d6a4f;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 146, 12, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 140px 40px 80px;
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}

/* Pipeline Widget */
.pipeline-widget {
  background: #131929;
  border: 1px solid rgba(232, 146, 12, 0.2);
  border-radius: 16px;
  padding: 24px;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 13px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(232, 146, 12, 0.05);
}

.pw-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pw-dot.red { background: #ff5f57; }
.pw-dot.amber { background: #febc2e; }
.pw-dot.green { background: #28c840; }

.pw-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.pw-stage {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pw-stage-label {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.pw-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.pw-fill {
  height: 100%;
  border-radius: 4px;
}

.pw-count {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-align: right;
}

.pw-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pw-status {
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.5px;
}

/* === STATS ROW === */
.stats-row {
  background: var(--navy-mid);
  border-top: 1px solid rgba(232, 146, 12, 0.2);
  border-bottom: 1px solid rgba(232, 146, 12, 0.2);
  padding: 36px 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* === SECTION COMMONS === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  background: var(--cream);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  padding: 40px 36px;
  background: var(--white);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  padding: 100px 40px;
  background: var(--navy);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process .section-label { color: rgba(232, 146, 12, 0.7); }
.process .section-heading { color: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
}

.step {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  margin-right: 16px;
}

.step:last-child { margin-right: 0; }

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(232,146,12,0.4), rgba(232,146,12,0.1));
  align-self: center;
  flex-shrink: 0;
  margin-top: 60px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(232, 146, 12, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 40px;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-attr {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 40px;
  background: var(--cream-dark);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.comparison-col {
  padding: 48px 44px;
  border-radius: 16px;
}

.before { background: #e8e4db; }
.after { background: var(--navy); }

.comp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.before .comp-label { color: var(--text-muted); }
.after .comp-label { color: rgba(232,146,12,0.7); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.before .comp-list li { color: var(--text); }
.after .comp-list li { color: rgba(255,255,255,0.8); }

.before .comp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

.after .comp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  background: var(--amber);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.closing p {
  font-size: 18px;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-connector { width: 2px; height: 20px; margin: 0 auto; }
  .comparison-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 24px 60px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .outcomes { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .stats-row { padding: 28px 24px; }
  .stat-number { font-size: 32px; }
  .site-nav { padding: 0 24px; }
}