:root {
  --bg: #1a1a2e;
  --surface: #22223a;
  --surface2: #2a2a45;
  --fg: #f5f0e8;
  --fg-muted: #a09b8e;
  --fg-dim: #6b6459;
  --accent: #c9a84c;
  --accent-dim: #9a7d35;
  --border: rgba(201, 168, 76, 0.15);
  --green: #4ade80;
  --gold: #c9a84c;
}

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

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.gold { color: var(--accent); }
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-size: 52px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 80px;
}

/* Pipeline card */
.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-header {
  background: var(--surface2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title { font-size: 13px; color: var(--fg-muted); }
.card-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.card-body { padding: 20px; }
.prospect-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.prospect-context {
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.action-block { padding: 0; }
.action-label { font-size: 11px; color: var(--fg-dim); margin-bottom: 4px; }
.action-subject { font-size: 13px; color: var(--accent); font-weight: 500; }
.action-meta { font-size: 11px; color: var(--fg-dim); margin-top: 4px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-dim);
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-dim);
}

/* Meeting feed */
.meeting-feed {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-dot.green { background: var(--green); }
.feed-dot.gold { background: var(--accent); }
.feed-text { font-size: 12px; color: var(--fg-muted); }

/* Sections */
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-headline {
  font-size: 42px;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 640px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Pipeline section */
.pipeline-section { padding: 100px 0; border-top: 1px solid var(--border); }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.pipeline-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.step:nth-child(2n) { border-right: none; }
.step:nth-child(3) { border-bottom: none; }
.step:nth-child(4) { border-bottom: none; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: 600;
}
.step-content h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Meetings section */
.meetings-section { padding: 100px 0; background: var(--surface); }
.meetings-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meeting-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.mfeature { display: flex; gap: 16px; align-items: flex-start; }
.mfeature-icon { flex-shrink: 0; margin-top: 2px; }
.mfeature-title { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.mfeature-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* Transcript card */
.transcript-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.transcript-header {
  padding: 14px 20px;
  background: var(--surface2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transcript-title { font-size: 13px; color: var(--fg-muted); }
.transcript-duration { font-size: 12px; color: var(--fg-dim); }
.transcript-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.transcript-segment p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; margin-top: 4px; }
.transcript-segment.highlight p { color: var(--fg); }
.speaker { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-dim); }
.speaker.gold-label { color: var(--accent); }
.extracted {
  background: rgba(201,168,76,0.08);
  border-left: 2px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}
.transcript-footer {
  padding: 14px 20px;
  background: var(--surface2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.task-created, .email-scheduled {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

/* Actions section */
.actions-section { padding: 100px 0; border-top: 1px solid var(--border); }
.actions-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.action-card {
  padding: 36px 32px;
  background: var(--surface);
}
.action-icon { margin-bottom: 20px; }
.action-card h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
}
.action-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.manifesto-quote { margin-bottom: 72px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.4;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 24px;
}
.quote-attr {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.manifesto-closing h2 {
  font-size: 42px;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.manifesto-closing p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-brand { margin-bottom: 40px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.footer-tagline { font-size: 13px; color: var(--fg-dim); margin-top: 8px; }
.footer-links {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  cursor: pointer;
}
.footer-col p:hover { color: var(--fg); }
.footer-bottom p {
  font-size: 12px;
  color: var(--fg-dim);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 38px; }
  .meetings-inner { grid-template-columns: 1fr; gap: 48px; }
  .pipeline-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .actions-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .section-headline { font-size: 32px; }
  .manifesto-closing h2 { font-size: 32px; }
  blockquote { font-size: 20px; }
}