/* LendFlow — Forest & Amber */
:root {
  --bg: #090F07;
  --surface: #0D1609;
  --surface2: #121D0E;
  --border: #1A2D17;
  --accent: #3D7A2B;
  --accent-light: #5EA03A;
  --amber: #C8A84B;
  --amber-dim: rgba(200, 168, 75, 0.15);
  --text: #E8EFE5;
  --text-muted: #7A8F74;
  --text-dim: #4A5C40;
  --green-glow: rgba(61, 122, 43, 0.15);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(200,168,75,0.2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 48px 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
}
.eyebrow-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* PIPELINE CARD */
.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 60px rgba(61,122,43,0.07);
}
.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.pipeline-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pipeline-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent-light);
  font-weight: 500;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.pipeline-stage:last-of-type { border-bottom: none; }
.stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stage-sourced { background: var(--accent); }
.stage-underwrite { background: #4A8FD4; }
.stage-docs { background: var(--amber); }
.stage-investors { background: #9B59B6; }
.stage-info { flex: 1; }
.stage-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.stage-detail {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}
.stage-status {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stage-status.ok {
  background: rgba(61,122,43,0.15);
  color: var(--accent-light);
}
.pipeline-bar {
  height: 3px;
  background: var(--surface2);
  border-radius: 2px;
  margin: 20px 0 12px;
  overflow: hidden;
}
.pipeline-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 2px;
}
.pipeline-stat {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.pipeline-pct { color: var(--accent-light); }

/* PROCESS */
.process { padding: 80px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-label, .features-label, .features-label { font-size: 11px; font-weight: 500; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.process-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 52px;
  max-width: 480px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.process-card {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
}
.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.process-icon {
  width: 40px;
  height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FEATURES */
.features { padding: 80px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 52px;
  max-width: 500px;
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}
.feature-main { display: flex; flex-direction: column; gap: 28px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--green-glow);
  border: 1px solid rgba(61,122,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ASIDE */
.aside-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aside-metric { display: flex; flex-direction: column; gap: 4px; }
.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.metric-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.aside-note {
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes { padding: 80px 48px; background: var(--surface); border-top: 1px solid var(--border); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcome-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.outcome-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.outcome-sub { font-style: italic; color: var(--text-dim) !important; }
.outcome-claims { display: flex; flex-direction: column; gap: 14px; }
.claim-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.claim-item svg { color: var(--accent-light); flex-shrink: 0; }

/* CLOSING */
.closing { padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-ornament { color: var(--amber); margin-bottom: 32px; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.footer-tag {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px 48px; }
  .hero-right { order: -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .process, .features, .outcomes, .closing { padding: 60px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer { padding: 24px; }
  .hero-proof { flex-wrap: wrap; gap: 20px; }
}