/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --green: #1B4D3E;
  --green-light: #2A7A5E;
  --amber: #C9952A;
  --amber-light: #E8B84B;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(27,77,62,0.08);
  --shadow-md: 0 8px 32px rgba(27,77,62,0.12);
  --shadow-lg: 0 20px 60px rgba(27,77,62,0.16);
}

html { scroll-behavior: smooth; }

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

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,77,62,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--green);
  top: -200px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--amber);
  bottom: -100px;
  left: 20%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,77,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,77,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: rgba(27,77,62,0.08);
  color: var(--green);
  border-radius: 100px;
  font-weight: 500;
}

/* Chat Widget */
.hero-visual { position: relative; }

.chat-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(27,77,62,0.08);
}

.chat-header {
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.chat-status {
  margin-left: auto;
  font-size: 0.7rem;
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
}

.chat-msg {
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  max-width: 85%;
}

.chat-msg--in {
  background: var(--bg);
  color: var(--fg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg--out {
  background: var(--green);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg.highlight {
  background: rgba(27,77,62,0.1);
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-input-row {
  border-top: 1px solid rgba(27,77,62,0.08);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input-row input {
  flex: 1;
  border: 1px solid rgba(27,77,62,0.15);
  border-radius: 100px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  background: var(--bg);
  color: var(--fg-muted);
  font-family: inherit;
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
}

.widget-badges {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.badge--green {
  background: var(--green);
  color: var(--white);
}

.badge--amber {
  background: var(--amber);
  color: var(--white);
}

/* Manifesto */
.manifesto {
  background: var(--green);
  color: var(--white);
  padding: 7rem 2rem;
}

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

.manifesto-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.manifesto-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.manifesto-headline em {
  color: var(--amber);
  font-style: normal;
}

.manifesto-body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.m-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.m-stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Features */
.features {
  padding: 7rem 2rem;
  background: var(--bg);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(27,77,62,0.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,149,42,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Proof */
.proof {
  background: var(--bg-alt);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(27,77,62,0.08);
  border-bottom: 1px solid rgba(27,77,62,0.08);
}

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

.proof-headline-wrap { margin-bottom: 3rem; }

.proof-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.proof-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}

.proof-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
  padding: 0 3rem;
}

.proof-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.proof-unit {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin: 0.5rem 0 0.75rem;
}

.proof-desc {
  font-size: 0.825rem;
  color: var(--fg-muted);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(27,77,62,0.12);
  flex-shrink: 0;
}

.proof-cta {
  font-size: 0.925rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Verticals */
.verticals {
  padding: 7rem 2rem;
  background: var(--bg);
}

.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vertical-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(27,77,62,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.vertical-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.vertical-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.vertical-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 700;
}

.vertical-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  background: var(--green);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(201,149,42,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.closing-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.closing-pill {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(27,77,62,0.08);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr; }
  .proof-numbers { gap: 1rem; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .hero { padding-top: 6rem; }
}