:root {
  color-scheme: light;
  --ink: #15372f;
  --muted: #66766f;
  --paper: #f6f3eb;
  --card: #ffffff;
  --line: #d8dfda;
  --green: #1c705b;
  --green-soft: #dff2e9;
  --yellow: #f4c957;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 235, .92);
}

.brand {
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.03em;
  text-decoration: none;
}

.brand span { color: var(--green); }
.environment, footer { color: var(--muted); font-size: 14px; }

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0 72px;
}

.hero { max-width: 850px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(42px, 7vw, 76px); line-height: .98; }
h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 44px); }
h3 { margin-bottom: 8px; font-size: 22px; }
p { margin-top: 0; }

.lede {
  max-width: 730px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.5;
}

.status {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #b7d8cb;
  border-radius: 14px;
  background: var(--green-soft);
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(28, 112, 91, .12);
}

.status strong, .status span { display: block; }
.status span { margin-top: 3px; color: var(--muted); font-size: 14px; }

.workflow {
  margin-top: clamp(70px, 10vw, 130px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.phase-list { margin: 0; padding: 0; list-style: none; }
.phase-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.phase-number {
  display: grid;
  width: 54px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 850;
}

.phase-list p { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

footer { border-top: 1px solid var(--line); border-bottom: 0; }

@media (max-width: 620px) {
  .environment { display: none; }
  main { width: min(100% - 28px, 1120px); padding-top: 44px; }
  .phase-list li { grid-template-columns: 1fr; gap: 14px; }
}
