:root {
  --bg: #f8f5f0;
  --bg-alt: #edeae3;
  --fg: #1a1a1a;
  --fg-muted: #5c5c5c;
  --accent: #d4a847;
  --accent-dark: #b8892e;
  --green: #1a3a2a;
  --green-light: #2d5a42;
  --white: #ffffff;
  --border: #d6d1c8;
  --shadow: rgba(26, 58, 42, 0.08);
}

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

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

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

/* HERO */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 40px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-cta-row { display: flex; align-items: center; gap: 16px; }
.hero-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* DOC MOCKUP */
.doc-mockup {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
  font-size: 12px;
}
.mockup-toolbar {
  background: var(--bg-alt);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mockup-title { margin-left: auto; font-size: 11px; color: var(--fg-muted); }
.mockup-body { display: grid; grid-template-columns: 200px 1fr; height: 260px; }
.mockup-sidebar { background: #f3f0e8; border-right: 1px solid var(--border); padding: 12px; overflow: hidden; }
.sidebar-header { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 10px; }
.sidebar-query { background: var(--green); color: var(--white); border-radius: 4px; padding: 6px 8px; font-size: 10px; margin-bottom: 10px; line-height: 1.4; }
.sidebar-result { margin-bottom: 8px; }
.sidebar-result-title { font-weight: 600; color: var(--fg); font-size: 10px; margin-bottom: 2px; line-height: 1.3; }
.sidebar-result-snippet { color: var(--fg-muted); font-size: 9.5px; line-height: 1.4; margin-bottom: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-source { font-size: 9px; color: var(--accent-dark); }
.mockup-editor { padding: 14px; overflow: hidden; }
.mockup-h1 { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 10px; line-height: 1.3; }
.mockup-p { font-size: 11px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 8px; }
.mockup-ai-inline { background: rgba(212,168,71,0.2); color: var(--accent-dark); border-radius: 3px; padding: 1px 4px; font-size: 10px; }
.mockup-ai-bar { background: var(--green); padding: 8px 14px; display: flex; align-items: center; gap: 8px; }
.ai-bar-icon { display: flex; align-items: center; }
.ai-bar-text { font-size: 11px; color: rgba(255,255,255,0.85); }

/* HERO STATS */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: var(--accent); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); margin-right: 40px; }

/* MANIFESTO */
.manifesto { padding: 100px 40px; background: var(--bg); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.manifesto-headline { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--green); margin-bottom: 28px; line-height: 1.15; }
.manifesto-body { font-size: 18px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 20px; }
.manifesto-body em { color: var(--fg); font-style: italic; }

/* FEATURES */
.features { padding: 100px 40px; background: var(--white); }
.features-header { max-width: 800px; margin: 0 auto 64px; }
.features-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.features-headline { font-size: clamp(28px, 3vw, 40px); color: var(--green); }
.features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card { }
.feature-icon { width: 44px; height: 44px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.feature-desc { font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* PROOF / WORKFLOW */
.proof { padding: 100px 40px; background: var(--bg); }
.proof-inner { max-width: 900px; margin: 0 auto; }
.proof-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.proof-headline { font-size: clamp(28px, 3vw, 40px); color: var(--green); margin-bottom: 64px; }
.proof-steps { display: flex; align-items: flex-start; gap: 0; }
.proof-step { flex: 1; }
.proof-connector { width: 60px; flex-shrink: 0; position: relative; top: 28px; }
.proof-connector::after { content: ''; display: block; width: 100%; height: 1px; background: var(--border); margin: 0 10px; }
.step-number { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step-desc { font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* CLOSING */
.closing { padding: 100px 40px; background: var(--green); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--white); margin-bottom: 24px; line-height: 1.15; }
.closing-body { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.closing-url { font-family: 'Fraunces', serif; font-size: 24px; color: var(--accent); letter-spacing: 0.05em; }

/* FOOTER */
.footer { padding: 40px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--green); }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.footer-link:hover { color: var(--fg); }
.footer-copy { margin-left: auto; font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proof-steps { flex-direction: column; gap: 40px; }
  .proof-connector { display: none; }
  .footer-inner { flex-wrap: wrap; }
  .footer-copy { margin-left: 0; width: 100%; }
}
@media (max-width: 600px) {
  .hero, .manifesto, .features, .proof, .closing { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat { padding: 0; }
  .stat-sep { display: none; }
}