:root {
  color-scheme: light;
  --ink: #17251f;
  --muted: #657069;
  --paper: #f3f1ea;
  --card: #fffdf8;
  --line: #d8d7cf;
  --green: #1f5b43;
  --lime: #b9d348;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(150deg, #faf9f4 0%, var(--paper) 52%, #e5e8df 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 44px 0 72px; }
.brand { display: flex; align-items: center; gap: 16px; margin-bottom: 64px; }
.mark { display: grid; place-items: center; width: 48px; height: 48px; color: white; background: var(--green); font: 800 24px/1 Georgia, serif; border-radius: 4px; box-shadow: 7px 7px 0 var(--lime); }
.eyebrow { margin: 0 0 5px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font: 600 26px/1.1 Georgia, serif; }
h2 { margin-bottom: 12px; font: 600 clamp(28px, 4vw, 46px)/1.08 Georgia, serif; }
.notice { position: relative; padding: clamp(28px, 5vw, 58px); margin-bottom: 72px; overflow: hidden; color: white; background: var(--green); border-radius: 6px; }
.notice::after { content: ""; position: absolute; width: 240px; height: 240px; right: -68px; top: -76px; border: 32px solid rgba(185,211,72,.72); transform: rotate(18deg); }
.notice p { max-width: 720px; margin-bottom: 0; color: #dce7e1; font-size: 17px; line-height: 1.65; }
.status, .phase { display: inline-block; padding: 7px 10px; margin-bottom: 24px; color: var(--ink); background: var(--lime); border-radius: 2px; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(28px, 3vw, 38px); }
.phase { margin: 0; white-space: nowrap; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
article { min-height: 210px; padding: 28px; background: rgba(255,253,248,.76); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
article span { color: var(--green); font: 700 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
article h3 { margin: 44px 0 10px; font: 600 22px/1.2 Georgia, serif; }
article p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); padding-top: 28px; }
  .brand { margin-bottom: 42px; }
  .notice { margin-bottom: 52px; }
  .grid { grid-template-columns: 1fr; }
  article { min-height: 170px; }
  article h3 { margin-top: 28px; }
}
