:root {
  --bg: #f4efe6;
  --bg-alt: #eae3d8;
  --fg: #1a2e1a;
  --fg-muted: #5a6b5a;
  --accent: #2d5a27;
  --accent-light: #3d7a35;
  --bark: #7a4a2a;
  --bark-light: #9a623a;
  --surface: #ffffff;
  --border: #d4c9b8;
}

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

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

h1, h2, h3 {
  font-family: 'Bitter', serif;
  line-height: 1.2;
}

/* HEADER */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 80px 40px 80px;
  background: var(--surface);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  max-width: 420px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* PANEL GRAPHIC */
.hero-graphic { display: flex; justify-content: center; }
.panel {
  background: #0f1f0f;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.panel-header {
  background: #1a2e1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot.red { background: #ff5f57; }
.panel-dot.yellow { background: #febc2e; }
.panel-dot.green { background: #28c840; }
.panel-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: #7a9a7a;
  font-weight: 500;
}
.panel-body { padding: 20px; }
.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #1e3a1e;
}
.quote-row:last-of-type { border-bottom: none; }
.quote-label { font-size: 0.75rem; color: #5a7a5a; font-weight: 500; }
.quote-value { font-size: 0.875rem; color: #c8dcc8; font-weight: 500; }
.quote-price .price {
  font-size: 1.4rem;
  color: #6fcf6f;
  font-family: 'Bitter', serif;
  font-weight: 700;
}
.conf { color: #6fcf6f; }
.quote-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.btn-approve {
  flex: 1;
  background: var(--accent-light);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-revise {
  background: transparent;
  color: #5a7a5a;
  border: 1px solid #2a4a2a;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.panel-footer {
  background: #1a2e1a;
  padding: 10px 20px;
  text-align: center;
}
.ai-badge {
  font-size: 0.7rem;
  color: #5a8a5a;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  background: var(--fg);
  color: #e8f0e8;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.manifesto-quote blockquote {
  font-family: 'Bitter', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.35;
  color: #c8e4c8;
  font-style: normal;
  margin-bottom: 16px;
}
.manifesto-quote cite {
  font-size: 0.8rem;
  color: #5a7a5a;
  font-style: normal;
}
.manifesto-body p {
  font-size: 0.95rem;
  color: #8ab48a;
  margin-bottom: 16px;
  line-height: 1.7;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* STACK */
.stack { padding: 80px 40px; background: var(--bg); }
.stack-inner { max-width: 1100px; margin: 0 auto; }
.stack-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fg);
  text-align: center;
  margin-bottom: 48px;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.stack-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.stack-card h3 {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.stack-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROOF */
.proof { padding: 60px 40px; background: var(--bg-alt); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-heading {
  font-size: 1.5rem;
  color: var(--fg);
  text-align: center;
  margin-bottom: 36px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.proof-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.stars { color: #d4a017; font-size: 0.9rem; margin-bottom: 10px; }
.review-text {
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}
.proof-review cite { font-size: 0.78rem; color: var(--fg-muted); }
.proof-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing { padding: 80px 40px; background: var(--accent); text-align: center; }
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-line {
  font-family: 'Bitter', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.closing-sub { font-size: 0.95rem; color: #a8d4a8; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .hero { padding: 48px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 48px 20px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .stack { padding: 48px 20px; }
  .stack-grid { grid-template-columns: 1fr; }
  .proof { padding: 48px 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing { padding: 48px 20px; }
  .panel { max-width: 100%; }
}