body.progress-page {
  --bg: #f3efe6;
  --surface: rgba(255, 250, 242, 0.9);
  --surface-strong: #fffaf1;
  --text: #1d2a26;
  --muted: #5a6a62;
  --accent: #0d6b57;
  --accent-strong: #084d3f;
  --line: rgba(29, 42, 38, 0.12);
  --shadow: 0 24px 80px rgba(20, 32, 27, 0.12);
  margin: 0;
  font-family: var(--progress-body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 107, 87, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(175, 126, 53, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f3ea 0%, var(--bg) 54%, #ece5d8 100%);
}

body.progress-page * {
  box-sizing: border-box;
}

body.progress-page a {
  color: inherit;
}

body.progress-page .page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

body.progress-page .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

body.progress-page .brand {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.progress-page .brand a {
  color: inherit;
  text-decoration: none;
}

body.progress-page .brand a:hover {
  text-decoration: underline;
}

body.progress-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.progress-page .nav-links a {
  text-decoration: none;
  color: var(--muted);
}

body.progress-page .nav-links a[aria-current="page"] {
  color: var(--ink, var(--text));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.progress-page .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

body.progress-page .hero {
  padding: 34px;
}

body.progress-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 107, 87, 0.08);
  color: var(--accent-strong);
  font-size: 0.9rem;
}

body.progress-page h1,
body.progress-page h2,
body.progress-page h3 {
  margin: 0;
  font-family: var(--progress-heading-font);
  line-height: var(--progress-heading-line-height);
}

body.progress-page h1 {
  margin-top: 18px;
  font-size: var(--progress-h1-size);
  max-width: var(--progress-h1-max-width);
  text-wrap: balance;
}

body.progress-page .lead {
  margin: 18px 0 0;
  max-width: 70ch;
  font-size: 1.02rem;
  line-height: var(--progress-lead-line-height);
  color: var(--muted);
}

body.progress-page .lane-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: var(--progress-lane-line-height);
}

body.progress-page section {
  margin-top: 22px;
}

body.progress-page .section-panel {
  padding: 30px;
}

body.progress-page .section-panel h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 10px;
}

body.progress-page .section-panel > p {
  margin: 0 0 18px;
  max-width: 72ch;
  color: var(--muted);
  line-height: var(--progress-section-line-height);
}

body.progress-page .milestones {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

body.progress-page .card {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

body.progress-page .stage {
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

body.progress-page .status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 10px 0 14px;
}

body.progress-page .status.mostly-done {
  background: rgba(13, 107, 87, 0.12);
  color: var(--accent-strong);
}

body.progress-page .status.partial {
  background: rgba(175, 126, 53, 0.14);
  color: #7f5419;
}

body.progress-page .status.later {
  background: rgba(29, 42, 38, 0.08);
  color: var(--muted);
}

body.progress-page .card p,
body.progress-page .card li,
body.progress-page table {
  color: var(--muted);
  line-height: var(--progress-card-line-height);
}

body.progress-page .card ul {
  margin: 0;
  padding-left: 18px;
}

body.progress-page table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

body.progress-page th,
body.progress-page td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

body.progress-page th {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

body.progress-page tr:last-child td {
  border-bottom: 0;
}

body.progress-page .sources {
  display: grid;
  grid-template-columns: repeat(var(--progress-sources-columns), minmax(0, 1fr));
  gap: 16px;
}

body.progress-page .sources a {
  color: var(--accent-strong);
}

body.progress-page footer {
  margin-top: 22px;
  padding: 22px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  body.progress-page .milestones,
  body.progress-page .sources {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.progress-page .page {
    width: min(100% - 20px, 100%);
    padding: 18px 0 40px;
  }

  body.progress-page .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  body.progress-page .milestones,
  body.progress-page .sources {
    grid-template-columns: 1fr;
  }

  body.progress-page table,
  body.progress-page thead,
  body.progress-page tbody,
  body.progress-page tr,
  body.progress-page th,
  body.progress-page td {
    display: block;
  }

  body.progress-page thead {
    display: none;
  }

  body.progress-page tr + tr {
    border-top: 1px solid var(--line);
  }

  body.progress-page td {
    padding: 10px 14px;
    border-bottom: 0;
  }

  body.progress-page td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-strong);
  }
}
