/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --stone: #f5f0ea;
  --sand: #e8e0d4;
  --earth: #c4b49a;
  --moss: #5c6e4e;
  --moss-light: #7a9268;
  --bark: #2c2416;
  --warm-white: #fdfaf5;
  --text: #1e1a14;
  --text-muted: #7a7060;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bark);
}

/* === TOPBAR === */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
}

.topbar-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--bark);
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss-light);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* === MANIFESTO === */
.manifesto {
  padding: 80px 48px 72px;
  max-width: 900px;
}

.manifesto-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 24px;
  max-width: 700px;
}

.manifesto-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.55;
  font-weight: 400;
}

/* === OPERATIONS === */
.operations {
  padding: 64px 48px;
  background: var(--stone);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 48px;
  max-width: 1100px;
}

.ops-divider {
  width: 1px;
  background: var(--earth);
  align-self: stretch;
  min-height: 200px;
}

.ops-heading {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 24px;
}

.ops-col--left .ops-heading { color: #9e9082; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.check-item--no .check-icon {
  color: #b8a898;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item--no { color: #8a7e70; }

.check-item--yes .check-icon {
  color: var(--moss);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item--yes { color: var(--bark); font-weight: 500; }

/* === FEATURES === */
.features {
  padding: 80px 48px;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  max-width: 1200px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--stone);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  margin-bottom: 16px;
}

.features-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 10px;
}

.features-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--bark);
  padding: 80px 48px;
}

.outcomes-inner { max-width: 1100px; }

.outcomes-header { margin-bottom: 48px; }

.outcomes-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}

.outcomes-heading {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  color: var(--warm-white);
  font-weight: 700;
}

.outcomes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.outcome-stat {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--moss-light);
  line-height: 1;
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--earth);
  line-height: 1.55;
}

/* === CLOSING === */
.closing {
  padding: 96px 48px 80px;
  background: var(--warm-white);
}

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

.closing-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.closing-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--sand);
  padding: 8px 16px;
  border-radius: 4px;
}

.stamp-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
}

/* === FOOTER === */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--sand);
  background: var(--warm-white);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bark);
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}

.footer-legal {
  font-size: 12px;
  color: var(--earth);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .topbar { padding: 16px 24px; }
  .manifesto { padding: 56px 24px 48px; }
  .manifesto-headline { font-size: 38px; }
  .manifesto-sub { font-size: 17px; }

  .operations { padding: 48px 24px; }
  .ops-grid { grid-template-columns: 1fr; gap: 40px; }
  .ops-divider { display: none; }

  .features { padding: 56px 24px; }
  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .outcomes { padding: 56px 24px; }
  .outcomes-heading { font-size: 32px; }
  .outcomes-row { grid-template-columns: 1fr; gap: 24px; }

  .closing { padding: 64px 24px 56px; }

  footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr; }
  .outcome-stat { font-size: 40px; }
}