/* Variables */
:root {
  --bg: #F7F3ED;
  --fg: #1A1614;
  --fg-muted: #6B6560;
  --accent: #E8562A;
  --accent-light: #FDF2ED;
  --border: #E4DDD6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-secondary { background: transparent; color: var(--fg); border: 1.5px solid var(--border); }
.btn:hover { opacity: 0.85; }

/* Hero */
.hero { padding: 80px 0 60px; }
.hero-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(52px, 6vw, 88px); font-weight: 800; line-height: 1.05; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-lede { font-size: 19px; color: var(--fg-muted); line-height: 1.6; max-width: 480px; margin-bottom: 32px; }
.hero-agent-badge { display: inline-flex; align-items: center; gap: 10px; background: #EDFAF3; border: 1px solid #B7E8C8; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; color: #1A5C34; }
.badge-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Agent display */
.agent-display { background: #FFFFFF; border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: 0 4px 32px rgba(26,22,20,0.06), 0 1px 4px rgba(26,22,20,0.04); }
.agent-header { }
.agent-status-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.agent-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.agent-online-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; }
.agent-work-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--fg); line-height: 1.4; }
.agent-work-item:last-of-type { border-bottom: none; }
.work-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.agent-metrics { display: flex; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.metric { display: flex; flex-direction: column; }
.metric-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--fg); }
.metric-label { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* Stats row */
.stats-row { background: var(--fg); color: #F7F3ED; padding: 40px 0; }
.stats-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 0; }
.stat-item { flex: 1; padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-divider { width: 1px; height: 56px; background: rgba(247,243,237,0.2); flex-shrink: 0; }
.stat-number { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 700; color: #F7F3ED; margin-bottom: 6px; }
.stat-desc { display: block; font-size: 14px; color: rgba(247,243,237,0.6); line-height: 1.4; }

/* Manifesto */
.manifesto { padding: 100px 0; }
.manifesto-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.manifesto-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.manifesto-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.15; color: var(--fg); margin-bottom: 32px; }
.manifesto-body { font-size: 18px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 20px; }
.manifesto-body:last-child { margin-bottom: 0; }

/* How it works */
.how { padding: 80px 0 100px; background: #F0EBE5; }
.how-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.how-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--fg); margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-card { background: #FFFFFF; border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.step-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--accent); opacity: 0.25; line-height: 1; margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 12px; line-height: 1.2; }
.step-body { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* Outcomes */
.outcomes { padding: 100px 0; }
.outcomes-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.outcomes-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 64px; }
.outcome { display: flex; flex-direction: column; }
.outcome-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.outcome-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.outcome-body { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* Pricing */
.pricing { padding: 100px 0; }
.pricing-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.pricing-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.plan-card { background: #FFFFFF; border-radius: 16px; padding: 32px; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; }
.plan-card--featured { border-color: var(--accent); border-width: 2px; }
.plan-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: #FFFFFF; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; align-self: flex-start; }
.plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.plan-price { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--fg); line-height: 1; margin-bottom: 24px; }
.plan-period { font-size: 20px; font-weight: 400; color: var(--fg-muted); }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; }
.plan-features li { font-size: 15px; color: var(--fg-muted); line-height: 1.6; padding: 6px 0; border-bottom: 1px solid var(--border); }
.plan-features li:first-child { border-top: 1px solid var(--border); }
.plan-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.plan-cta { display: block; text-align: center; padding: 14px 24px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.plan-cta:hover { opacity: 0.85; }

/* Closing */
.closing { padding: 80px 0 100px; border-top: 1px solid var(--border); }
.closing-inner { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--fg); margin-bottom: 24px; line-height: 1.15; }
.closing-body { font-size: 18px; color: var(--fg-muted); line-height: 1.75; }

/* Footer */
.footer { background: var(--fg); padding: 40px 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.footer-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #F7F3ED; }
.footer-tagline { font-size: 14px; color: rgba(247,243,237,0.5); display: block; margin-top: 4px; }
.footer-links { font-size: 14px; color: rgba(247,243,237,0.4); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-item { padding: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 48px; }
  .hero-inner, .manifesto-inner, .how-inner, .outcomes-inner, .closing-inner { padding: 0 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .manifesto, .how, .outcomes, .closing, .pricing { padding: 72px 0; }
  .stats-row { padding: 32px 0; }
}