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

:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --text: #1C1C1E;
  --text-muted: #6B6B6B;
  --accent: #D97706;
  --accent-hover: #B45309;
  --border: #E8E8E4;
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-content {}

.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: var(--surface);
}

/* AI Card */
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ai-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ai-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  flex-shrink: 0;
}

.ai-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ai-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

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

.ai-stat-val {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.ai-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-card-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-time {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

.feed-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === PITCH === */
.pitch {
  background: var(--text);
  color: var(--bg);
  padding: 80px 32px;
}

.pitch-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pitch-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.pitch-body {
  font-size: 17px;
  color: rgba(250,250,247,0.72);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

/* === ROLES === */
.roles {
  padding: 88px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.role-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.role-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.role-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === OUTCOMES === */
.outcomes {
  background: #F0EFE9;
  padding: 80px 32px;
}

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

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

.outcomes-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  max-width: 480px;
  margin-top: 12px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.outcome {}

.outcome-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.outcome-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* === CLOSING === */
.closing {
  background: var(--text);
  color: var(--bg);
  padding: 96px 32px;
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--bg);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(250,250,247,0.6);
}

.closing-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.cta-button:hover { transform: translateY(-2px); }
.cta-primary { background: var(--accent); color: #fff; }
.cta-outline { background: transparent; color: rgba(250,250,247,0.85); border: 1.5px solid rgba(250,250,247,0.3); }
.cta-outline:hover { border-color: rgba(250,250,247,0.7); color: #fff; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}

/* === NAV CTA === */
.nav-spacer { flex: 1; }
.nav-cta-primary {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-cta-primary:hover { background: rgba(217,119,6,0.08); }
.nav-cta-secondary {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.15s;
}
.nav-cta-secondary:hover { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-headline { font-size: 32px; }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 48px; }
  .pitch, .closing { padding: 64px 20px; }
  .roles { padding: 64px 20px; }
  .outcomes { padding: 64px 20px; }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-card-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .outcome-val { font-size: 34px; }
}