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

:root {
  --bg: #f5f2ee;
  --fg: #1a1f2e;
  --accent: #ff6b4a;
  --accent-muted: rgba(255, 107, 74, 0.12);
  --muted: #8a8a9a;
  --light: #ffffff;
  --border: #e0dbd5;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-signin:hover { background: var(--accent-muted); }

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

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  padding: 3px 8px;
  border-radius: 3px;
}

/* === HERO === */
.hero {
  padding: 80px 48px 100px;
  overflow: hidden;
}

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

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

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-lede {
  font-size: 18px;
  color: #4a4a5a;
  max-width: 520px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}
.hero-btn-primary:hover { background: #e55a3a; }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: white;
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-btn-secondary:hover { border-color: var(--accent); background: var(--accent-muted); }

/* === AGENT CARD === */
.hero-visual { position: relative; }

.agent-card {
  background: var(--fg);
  color: var(--light);
  border-radius: 20px;
  padding: 28px 32px;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 24px 80px rgba(26, 31, 46, 0.25);
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 28px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 8px #6ee7b7;
  animation: pulse 2s infinite;
}

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

.agent-task { margin-bottom: 22px; }
.agent-task:last-child { margin-bottom: 0; }

.task-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.task-progress {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-bottom: 6px;
}

.task-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1s ease;
}

.task-count {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.meeting-count {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* === STATS === */
.stats {
  background: var(--fg);
  color: var(--light);
  padding: 48px 0;
}

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

.stat { text-align: center; padding: 0 48px; }

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

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

/* === SECTION SHARED === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

/* === FEATURES === */
.features {
  padding: 100px 48px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.feature {
  padding: 36px 40px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.feature:hover {
  box-shadow: 0 8px 32px rgba(26, 31, 46, 0.08);
}

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

.feature h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  color: #5a5a6a;
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--light);
}

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

.process .section-label { color: var(--accent); }
.process .section-heading { color: var(--light); }
.process .section-heading em { color: var(--accent); }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step { flex: 1; padding-right: 48px; }

.step-connector {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-right: 0;
  flex-shrink: 0;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  background: var(--accent-muted);
}

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

.manifesto blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.manifesto-note {
  font-size: 15px;
  color: #5a5a6a;
  letter-spacing: 0.04em;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer .brand-name { font-size: 24px; }

.footer-tagline {
  font-size: 14px;
  color: #7a7a8a;
  max-width: 320px;
  margin-top: 8px;
  line-height: 1.55;
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero { padding: 48px 24px 72px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .nav { padding: 20px 24px; }
  .features, .process, .manifesto { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .stats-inner { justify-content: space-between; }
  .stat { padding: 0 16px; }
  .stat-number { font-size: 36px; }
}