:root {
  color-scheme: light;
  --ink: #14232a;
  --muted: #4d5c61;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --line: #cfdbd7;
  --pine: #075b55;
  --pine-dark: #003f3a;
  --sun: #d37720;
  --focus: #0b57d0;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  background: linear-gradient(180deg, #e7f0ed 0, var(--paper) 24rem);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.page-shell { width: min(100% - 2rem, 56rem); margin: 0 auto; padding: 2.5rem 0 3rem; }
.masthead { border-left: .35rem solid var(--pine); padding-left: 1.15rem; }
.eyebrow, .section-kicker, .item-state { font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow, .section-kicker { color: var(--pine-dark); margin: 0 0 .35rem; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { line-height: 1.15; }
h1 { margin: 0; font-size: clamp(2.25rem, 8vw, 4.5rem); letter-spacing: -.055em; }
h2 { margin: 0; font-size: clamp(1.45rem, 4vw, 2.25rem); letter-spacing: -.035em; }
h3 { margin: 0; font-size: 1.1rem; }
.lede { margin: .8rem 0 0; max-width: 36rem; font-size: 1.1rem; }
.scope-note { margin: .75rem 0 0; color: var(--muted); font-size: .92rem; }

.milestone { display: grid; gap: 1.25rem; margin: 2.5rem 0 3.5rem; padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: .8rem; box-shadow: 0 .5rem 1.5rem rgb(20 35 42 / 7%); }
.milestone p { margin: .55rem 0 0; }
.commit-link { align-self: end; display: inline-flex; justify-content: center; gap: .5rem; padding: .8rem 1rem; background: var(--pine); color: #fff; border-radius: .4rem; font-weight: 750; text-decoration: none; }
.commit-link:hover { background: var(--pine-dark); }

.recent-work { margin: 0 0 3.5rem; }
.recent-work-heading { max-width: 42rem; }
.recent-work-heading > p:last-child { margin: .6rem 0 0; color: var(--muted); }
.recent-work-list { counter-reset: delivery; gap: 0; margin-top: 1.35rem; border-top: 1px solid var(--line); }
.recent-work-list li { counter-increment: delivery; position: relative; min-height: 3rem; padding: .85rem 0 .85rem 3.4rem; border-bottom: 1px solid var(--line); }
.recent-work-list li::before { content: counter(delivery, decimal-leading-zero); position: absolute; top: .8rem; left: 0; color: var(--pine); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.recent-work-list p { margin: 0; }
.recent-work-list p + p { margin-top: .25rem; color: var(--muted); }
.recent-work-title { font-weight: 750; }
.recent-work-title a { color: var(--ink); text-decoration-color: var(--pine); text-decoration-thickness: .12em; text-underline-offset: .18em; }
.recent-work-title a:hover { color: var(--pine-dark); }
.commit-short { color: var(--pine-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82em; font-weight: 800; }
time { display: inline-block; margin-left: .3rem; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78em; font-weight: 650; white-space: nowrap; }
.roadmap-heading { max-width: 42rem; }
.roadmap-heading > p:last-child { margin: .6rem 0 0; color: var(--muted); }
.roadmap-groups { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.roadmap-group { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.group-title { display: flex; align-items: center; gap: .7rem; }
.status-mark { display: grid; place-items: center; flex: 0 0 1.7rem; width: 1.7rem; height: 1.7rem; border: 2px solid currentColor; border-radius: 50%; font-weight: 800; }
.status-mark.complete { color: var(--pine); }
.status-mark.current { color: #8a4800; background: #fff4dc; }
.status-mark.planned { color: #52666c; }
ol { display: grid; gap: .85rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.roadmap-item { padding-left: .15rem; }
.item-state { display: inline-block; min-width: 7.7rem; margin-right: .55rem; color: var(--muted); }
.is-current { padding: .85rem; border-left: .3rem solid var(--sun); background: #fff8ed; font-weight: 700; }
.is-current .item-state { color: #754000; }
.is-planned { padding-left: 1.1rem; border-left: .15rem solid #9cacab; }
s { color: #52666c; text-decoration-thickness: .12em; }
footer { margin-top: 2rem; color: var(--muted); font-size: .88rem; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 2; padding: .65rem .8rem; background: #fff; color: var(--ink); border: 2px solid var(--focus); }
.skip-link:focus { top: 1rem; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (min-width: 42rem) {
  .page-shell { padding-top: 4rem; }
  .milestone { grid-template-columns: 1fr auto; align-items: center; padding: 1.7rem; }
  .commit-link { min-width: 12.5rem; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
