:root {
  --bg: #f5f0eb;
  --bg-alt: #ede8e0;
  --fg: #1a1a18;
  --fg-muted: #6b6861;
  --accent: #c8912a;
  --accent-dark: #a6761f;
  --green: #1e3d2f;
  --green-light: #2a5440;
  --green-text: #3d7a58;
  --code-bg: #1e2a22;
  --code-fg: #c4d4c0;
  --border: #d8d2c8;
}

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

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

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Code card */
.code-card {
  background: var(--code-bg);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid #2e3f30;
}
.code-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.code-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.code-trigger, .code-gpt, .code-action {
  font-size: 0.82rem;
  line-height: 1.4;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  font-family: 'DM Mono', 'Courier New', monospace;
}
.code-trigger {
  background: rgba(212, 168, 67, 0.15);
  color: #e8c97a;
}
.code-gpt {
  background: rgba(61, 122, 88, 0.25);
  color: #8bcfac;
}
.code-action {
  background: rgba(200, 145, 42, 0.15);
  color: #d4a843;
}
.code-arrow {
  text-align: center;
  color: #4a6b50;
  font-size: 1.1rem;
}
.code-card-note {
  color: #5a7a60;
  font-size: 0.82rem;
  font-style: italic;
}

/* ── PROBLEM ── */
.problem {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header {
  max-width: 620px;
  margin-bottom: 3.5rem;
}
.problem-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.problem-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat { padding: 1.5rem 0; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── SYSTEMS ── */
.systems { padding: 5rem 2rem; }
.systems-inner { max-width: 1100px; margin: 0 auto; }
.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 3rem;
  max-width: 560px;
  letter-spacing: -0.02em;
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.system-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
}
.system-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.system-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.system-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 5rem 2rem;
  background: var(--green);
  color: #f0ede6;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.outcomes-left .section-label { color: var(--accent); }
.outcomes-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #f5f0eb;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.outcomes-body {
  color: #b8c4b8;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.outcome-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: rgba(200, 145, 42, 0.18);
  color: #d4a843;
  border: 1px solid rgba(200, 145, 42, 0.35);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.outcomes-quote {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem;
}
.outcomes-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f0ede6;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.quote-attr {
  font-size: 0.82rem;
  color: #8b9e8b;
  font-weight: 500;
}

/* ── PRICING ── */
.pricing {
  padding: 5rem 2rem;
  background: var(--bg);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: #fdf8f0;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.pricing-desc {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  color: var(--fg-muted);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 0.4rem;
}
.btn-pricing, .btn-retainer {
  display: inline-block;
  background: var(--green);
  color: #f0ede6;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-pricing:hover, .btn-retainer:hover { background: var(--green-light); }
.btn-retainer {
  background: var(--accent);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.btn-retainer:hover { background: var(--accent-dark); }
.pricing-retainer {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-retainer p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.pricing-retainer strong { color: var(--fg); }

/* ── CLOSING ── */
.closing {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.closing-note {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1rem !important;
}

/* ── FOOTER ── */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--green);
}
.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .systems-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .stat-num { font-size: 2.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .outcomes-quote p { font-size: 1.05rem; }
}