:root {
  --bg: #0e0e0e;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --bg-4: #222222;
  --fg: #f5f0eb;
  --fg-2: #b8b0a7;
  --fg-3: #7a746c;
  --amber: #D4890A;
  --amber-dim: rgba(212, 137, 10, 0.12);
  --amber-glow: rgba(212, 137, 10, 0.06);
  --border: rgba(245, 240, 235, 0.07);
  --border-strong: rgba(245, 240, 235, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 400;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  background: var(--amber);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: #b57308; }

@media (max-width: 640px) {
  .nav-cta {
    font-size: 12px;
    padding: 7px 12px;
  }
  .nav-links {
    gap: 12px;
  }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,235,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,235,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-amber-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,137,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  font-family: 'Syne', sans-serif;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.headline-amber {
  color: var(--amber);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--amber-dim);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 100px;
}

.pill-sep {
  width: 4px;
  height: 4px;
  background: var(--fg-3);
  border-radius: 50%;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn-hero {
  background: var(--amber);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-hero:hover { background: #b57308; }

.btn-ghost {
  color: var(--fg-2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover { color: var(--fg); }

/* ── HERO STATS ── */
.hero-stats {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.stats-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.stat-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 20px;
}

.stat-block {
  flex: 1;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 0 20px;
}

.pipeline-bar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pipeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.pipeline-track {
  height: 4px;
  background: var(--bg-4);
  border-radius: 4px;
  overflow: hidden;
}

.pipeline-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #f5a623);
  border-radius: 4px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-3);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION SHARED ── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.section-title.light { color: var(--fg); }

.section-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 580px;
}

.title-amber { color: var(--amber); }

/* ── DEALFLOW ── */
.dealflow {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 60px;
}

.dealflow-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Live feed */
.data-feed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feed-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4ade80;
  font-family: 'Syne', sans-serif;
}

.feed-dot span {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.feed-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  font-family: 'Syne', sans-serif;
}

.feed-items {
  padding: 8px 0;
}

.feed-item {
  padding: 12px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: var(--bg-3); }

.feed-item.feed-new {
  background: var(--amber-glow);
}

.feed-ts {
  font-size: 11px;
  color: var(--fg-3);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 60px;
  font-family: 'DM Sans', sans-serif;
}

.feed-text {
  font-size: 13px;
  color: var(--fg-2);
  flex: 1;
  line-height: 1.5;
}

.score {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}

.score-high {
  background: rgba(212,137,10,0.2);
  color: var(--amber);
}

.score-med {
  background: rgba(245,240,235,0.07);
  color: var(--fg-2);
}

/* Feature cards */
.dealflow-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.6;
}

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

/* ── PIPELINE ── */
.pipeline {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pipeline-visual {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 60px;
  height: 240px;
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stage-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
}

.stage-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.cold { background: linear-gradient(180deg, #2a2a2a, #1a1a1a); }
.warm { background: linear-gradient(180deg, #4a4a4a, #2a2a2a); }
.hot { background: linear-gradient(180deg, var(--amber), #b87808); }
.contract { background: linear-gradient(180deg, #f5a623, var(--amber)); }
.closed { background: linear-gradient(180deg, #4ade80, #22c55e); }

.stage-count {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--fg);
}

.stage-arrow {
  padding: 0 8px;
  padding-bottom: 24px;
  opacity: 0.4;
}

.pipeline-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipeline-meta {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.meta-item {}

.meta-val {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.meta-label {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* ── INVESTORMATCH ── */
.investormatch {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.investormatch .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.match-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.match-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.match-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.match-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.match-desc {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* Deal match card */
.deal-match-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.deal-match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), #f5a623);
}

.deal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  font-family: 'Syne', sans-serif;
}

.deal-address {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

.deal-details {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.deal-details span {
  font-size: 12px;
  color: var(--fg-2);
  background: var(--bg-4);
  padding: 4px 10px;
  border-radius: 4px;
}

.matched-buyer {
  background: var(--amber-dim);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.buyer-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-family: 'Syne', sans-serif;
}

.buyer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 4px;
}

.buyer-criteria {
  font-size: 12px;
  color: var(--fg-3);
}

.match-timestamp {
  font-size: 12px;
  color: var(--fg-3);
}

/* ── PERFORMANCE ── */
.performance {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.perf-header {
  margin-bottom: 48px;
}

.perf-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 20px;
  align-items: start;
}

.perf-main {
  background: var(--amber-dim);
  border: 1px solid rgba(212,137,10,0.2);
  border-radius: 16px;
  padding: 36px;
}

.perf-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 80px;
  letter-spacing: -0.05em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.perf-label {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 24px;
}

.perf-bar {
  height: 6px;
  background: rgba(212,137,10,0.2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.perf-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 6px;
}

.perf-note {
  font-size: 12px;
  color: var(--fg-3);
}

.perf-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perf-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.perf-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.perf-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  margin-bottom: 6px;
}

.perf-detail {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* ── WHY NOW ── */
.whynow {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whynow-header { margin-bottom: 48px; }

.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.whynow-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.wn-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--amber);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.wn-label {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

.whynow-card {
  background: var(--amber-dim);
  border: 1px solid rgba(212,137,10,0.2);
  border-radius: 12px;
  overflow: hidden;
  grid-row: 1;
}

.wn-card-content {
  padding: 32px;
}

.wn-card-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.wn-card-attr {
  font-size: 13px;
  color: var(--fg-3);
}

.wn-card-border {
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

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

.manifesto-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  font-family: 'Syne', sans-serif;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-3);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-3);
}

.footer-links a {
  color: var(--fg-3);
  text-decoration: none;
}

.footer-links a:hover { color: var(--fg-2); }

/* ── SOCIAL PROOF ── */
.socialproof {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}

.sp-stat {
  flex: 1;
  text-align: center;
  max-width: 240px;
}

.sp-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.sp-label {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.4;
}

.sp-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.sp-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-attr {
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { max-width: 480px; }
  .dealflow-grid { grid-template-columns: 1fr; }
  .investormatch .section-inner { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
  .whynow-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .section-inner { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-headline { font-size: 40px; }
  .pipeline-visual { height: 180px; }
  .perf-side { grid-template-columns: 1fr; }
  .whynow-grid { grid-template-columns: 1fr; }
  .match-stats { gap: 16px; }
  .perf-big { font-size: 56px; }
  .sp-stats { flex-direction: column; gap: 24px; }
  .sp-divider { width: 40px; height: 1px; }
  .sp-testimonials { grid-template-columns: 1fr; }
}