:root {
  --bg: #FAFAF8;
  --bg-subtle: #F2F1EE;
  --fg: #1A2A1F;
  --fg-muted: #6B7B72;
  --accent: #2D5A3D;
  --accent-light: #3D7A52;
  --gold: #C9952A;
  --gold-light: #E5B84A;
  --navy: #0F1E14;
  --border: #D6D8D4;
}

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

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

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

.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Agent Widget */
.agent-widget {
  background: var(--navy);
  border-radius: 16px;
  padding: 24px;
  color: white;
  font-family: 'DM Sans', sans-serif;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.agent-status-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
}

.agent-status-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.agent-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.agent-item {
  padding-left: 12px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.agent-item--action {
  border-left-color: var(--gold);
}

.agent-item--done {
  border-left-color: rgba(255,255,255,0.15);
}

.agent-item-time {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.agent-item-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.agent-footer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.agent-separator { opacity: 0.5; }

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg);
}

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

.features-label, .how-label, .results-label, .closing-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.features-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 480px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #F7F6F3;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* HOW */
.how {
  padding: 96px 48px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* RESULTS */
.results {
  padding: 96px 48px;
  background: var(--navy);
  color: white;
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.results .results-label {
  color: var(--gold-light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-item {}

.result-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 4vw, 56px);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}

.result-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  max-width: 180px;
}

.results-context p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--accent);
  color: white;
}

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

.closing .closing-label {
  color: rgba(255,255,255,0.5);
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 58px);
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.closing-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto 32px;
}

.closing-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

/* FOOTER */
.footer {
  padding: 48px;
  background: var(--navy);
  color: rgba(255,255,255,0.5);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-brand .brand-mark {
  width: 24px;
  height: 24px;
  font-size: 13px;
  background: var(--accent-light);
}

.footer-brand .brand-name {
  color: white;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dot { opacity: 0.5; }

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .results { padding: 64px 24px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-stat { padding-left: 0; }
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
}