:root {
  --bg: #f6f1e7;
  --card: #fffaf0;
  --text: #1f2a24;
  --muted: #5f6b62;
  --green: #244736;
  --gold: #c69a46;
  --border: #dfd2bd;
  --done: #23633a;
  --active: #9a6a10;
  --planned: #6b7280;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(198,154,70,.18), transparent 34rem), var(--bg);
  color: var(--text);
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 4px solid var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.summary div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(31,42,36,.08);
}

.summary strong {
  display: block;
  font-size: 2rem;
  color: var(--green);
}

.summary span { color: var(--muted); }

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--border);
}

.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
}

.marker {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--card);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.milestone.done .marker {
  border-color: var(--done);
  color: var(--done);
}

.milestone.active .marker {
  border-color: var(--active);
  color: var(--active);
}

.milestone.planned .marker {
  border-color: var(--planned);
  color: var(--planned);
}

.content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(31,42,36,.08);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.date {
  color: var(--muted);
  font-weight: 700;
}

.status {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .85rem;
  font-weight: 800;
}

.status.done {
  background: rgba(35,99,58,.12);
  color: var(--done);
}

.status.active {
  background: rgba(154,106,16,.14);
  color: var(--active);
}

.status.planned {
  background: rgba(107,114,128,.14);
  color: var(--planned);
}

.content h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 22px, 980px);
    padding: 30px 0;
  }

  .summary {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 18px;
  }

  .milestone {
    grid-template-columns: 46px 1fr;
    gap: 10px;
  }

  .marker {
    width: 38px;
    height: 38px;
  }

  .content {
    padding: 16px;
  }
}
