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

:root {
  --bg: #F7F4EF;
  --bg-dark: #0D1B2A;
  --surface: #FFFFFF;
  --surface-2: #F0EDE7;
  --navy: #0D1B2A;
  --navy-mid: #1A3350;
  --gold: #F5A623;
  --gold-light: #FFCB5C;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --border: #E5E0D8;
  --accent: #F5A623;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  padding: 6rem 2rem 4rem;
  background: var(--navy);
  color: white;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

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

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

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-proof > span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.logo-sep { color: rgba(255,255,255,0.2); }

/* ===== DASHBOARD FRAME ===== */
.hero-visual {
  position: relative;
}

.dashboard-frame {
  background: #1A2639;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  font-size: 0.7rem;
}

.dash-topbar {
  background: #0F1C2E;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FFBD2E; }
.dash-dot.green { background: #28CA41; }

.dash-search-bar {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 6px 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.dash-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}

.dash-sidebar {
  background: #0F1C2E;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
}

.sidebar-item.active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold);
  border-left: 2px solid var(--gold);
}

.dash-main {
  padding: 12px;
  overflow: hidden;
}

.dash-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.filter-chip {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.62rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-chip span { opacity: 0.7; font-size: 0.6rem; }

.filter-chip.add {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  cursor: pointer;
}

.investor-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inv-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.inv-row:hover { background: rgba(255,255,255,0.07); }
.inv-row.highlight { background: rgba(245, 166, 35, 0.1); border: 1px solid rgba(245,166,35,0.2); }

.inv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2D4A6F;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  flex-shrink: 0;
}

.inv-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: white;
}

.inv-firm {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}

.inv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inv-tags, .inv-stage {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
}

.inv-check {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  text-align: right;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.contact-badge.email {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
}

.contact-badge.linkedin {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
}

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

.stat-item {
  text-align: center;
  padding: 0 3rem;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem;
  background: var(--bg);
}

.features .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 2.25rem;
  transition: background 0.3s;
}

.feature-card:hover {
  background: var(--surface-2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

/* ===== SEARCH PREVIEW ===== */
.search-preview {
  padding: 6rem 2rem;
  background: var(--navy);
  color: white;
}

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

.sp-inner .section-label { color: var(--gold); }

.sp-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.sp-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sp-filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sp-filter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  width: 80px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.filter-select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
}

.sel-arrow { color: rgba(255,255,255,0.3); font-size: 0.6rem; }

/* search illustration panel */
.sp-illustration {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
}

.sp-top {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.sp-stat { flex: 1; }

.sp-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.sp-stat-num.gold { color: var(--gold); }

.sp-stat-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.sp-chart-area {
  margin-bottom: 1.5rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 60px;
  margin-bottom: 6px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  background: linear-gradient(to top, var(--gold), rgba(245,166,35,0.4));
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.bar-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.chart-axis-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.sp-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.result-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.result-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.result-score {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== PRICING PHILOSOPHY ===== */
.pricing-philosophy {
  padding: 5rem 2rem;
  background: var(--surface-2);
}

.pp-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pp-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.pp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.pp-col {
  padding: 14px 20px;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.pp-col-name {
  text-align: left;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.pp-col-fundscale {
  background: rgba(245,166,35,0.1);
  color: var(--gold) !important;
  font-weight: 700;
}

.pp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
}

.pp-row .pp-col {
  padding: 14px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-row .pp-col-name {
  justify-content: flex-start;
  color: var(--text-muted);
  font-weight: 500;
}

.pp-no { color: #EF4444; font-size: 1rem; }
.pp-partial { color: #F59E0B; font-size: 1rem; }
.pp-yes { color: #10B981; font-size: 1rem; }

.pp-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
}

.manifesto-body {
  margin-bottom: 3rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.manifesto-body p:last-child { margin-bottom: 0; }

.manifesto-cta {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.cta-line {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .sp-inner { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 1rem; }
  .stat-item { padding: 0 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .pp-row, .pp-header { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 0.75rem; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .stat-item { padding: 1rem 0; }
  .pp-row, .pp-header { grid-template-columns: 1fr 1fr; }
  .pp-col-name { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .dash-main { overflow: hidden; }
  .inv-meta { display: none; }
  .inv-row { grid-template-columns: 28px 1fr auto auto; }
}