:root {
  --bg: #F8F4EE;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6459;
  --accent: #D97706;
  --accent-hover: #B45309;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --green-pale: #D8F3DC;
  --surface: #FFFFFF;
  --border: #E2D9CC;
  --mock-bg: #1B4332;
  --mock-fg: #D8F3DC;
  --mock-accent: #52B788;
  --mock-text-dim: #95D5B2;
  --mock-text-bright: #FFFFFF;
  --mock-highlight: #40916C;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 80px 80px 80px;
  background: var(--bg);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: var(--border);
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid rgba(27,67,50,0.12);
}

/* Dashboard Mock */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mock {
  width: 100%;
  max-width: 440px;
  background: var(--mock-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(27,67,50,0.18), 0 4px 16px rgba(27,67,50,0.1);
}

.mock-header {
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mock-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--mock-text-dim);
  letter-spacing: 0.04em;
}

.mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.stat-card.highlight {
  background: rgba(82,183,136,0.15);
  border-color: rgba(82,183,136,0.25);
}

.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--mock-text-bright);
  line-height: 1;
}

.stat-card.highlight .stat-num {
  color: #52B788;
}

.stat-label {
  display: block;
  font-size: 10px;
  color: var(--mock-text-dim);
  margin-top: 4px;
  line-height: 1.3;
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.feed-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feed-icon.ok {
  background: rgba(82,183,136,0.25);
  color: #52B788;
}

.feed-text {
  font-size: 11px;
  color: var(--mock-text-dim);
  line-height: 1.4;
}

.feed-time {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  margin-top: 2px;
}

/* MANIFESTO */
.manifesto {
  background: var(--green);
  color: #fff;
  padding: 100px 80px;
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 580px;
}

/* SERVICES */
.services {
  padding: 100px 80px;
  background: var(--bg);
}

.services-header {
  margin-bottom: 56px;
}

.section-label {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--green);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,67,50,0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-detail {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ROI */
.roi {
  background: var(--bg-alt);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.roi-left .section-label {
  margin-bottom: 20px;
}

.roi-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.roi-comparison {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 20px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  align-items: center;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row.highlight {
  background: var(--green-pale);
}

.comp-label {
  color: var(--fg);
  font-weight: 500;
}

.comp-old {
  color: var(--fg-muted);
  font-size: 12px;
}

.comp-new {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}

/* CLOSING */
.closing {
  background: var(--green);
  padding: 100px 80px;
}

.closing-inner {
  max-width: 720px;
}

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  background: #122B21;
  padding: 40px 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .roi-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto, .services, .roi, .closing { padding: 72px 40px; }
  .footer { padding: 40px;; }
}

@media (max-width: 640px) {
  .hero, .manifesto, .services, .roi, .closing { padding: 48px 24px; }
  .footer { padding: 32px 24px; }
  .comparison-header, .comparison-row { font-size: 11px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}