:root {
  color-scheme: light;
  --ink: #15231f;
  --muted: #62716c;
  --paper: #f5f2eb;
  --surface: #ffffff;
  --line: #d9ded8;
  --green: #27735c;
  --green-soft: #e6f1ec;
  --orange: #bb6b23;
  --orange-soft: #f8eadc;
  --red: #b23c3c;
  --red-soft: #f7e4e3;
  --navy: #162b25;
  --gold: #c99436;
  --shadow: 0 18px 48px rgb(20 44 36 / 8%);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(22 43 37 / 96%);
  color: #fff;
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 11px;
  background: rgb(255 255 255 / 8%);
  color: #f2c976;
  font-family: Georgia, serif;
  font-size: 21px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.brand small {
  margin-top: 2px;
  color: rgb(255 255 255 / 62%);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.freshness {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
}

.freshness span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75caa8;
  box-shadow: 0 0 0 4px rgb(117 202 168 / 13%);
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
  padding-block: 76px 68px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 580px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero__summary {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.scoreboard {
  display: grid;
  gap: 14px;
}

.health,
.overall {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.health {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
}

.health__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.health__icon span {
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.health--orange .health__icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.health--green .health__icon {
  background: var(--green-soft);
  color: var(--green);
}

.health--red .health__icon {
  background: var(--red-soft);
  color: var(--red);
}

.health p,
.overall p,
.signal > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.health h2 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.health div > span,
.signal > span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.overall {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 26px 28px;
}

.overall__value {
  min-width: 112px;
  display: flex;
  align-items: baseline;
  color: var(--navy);
}

.overall__value strong {
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.overall__value span {
  margin-left: 4px;
  color: var(--green);
  font-size: 19px;
  font-weight: 750;
}

.overall__copy > strong {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.overall .progress-track,
.overall small {
  grid-column: 1 / -1;
}

.overall small {
  margin-top: 11px;
  color: var(--muted);
  font-size: 11px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 100px;
  background: #e5e8e3;
}

.progress-track span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green);
}

.progress-track--large {
  height: 9px;
  margin-top: 22px;
}

.section {
  padding-block: 72px;
  border-top: 1px solid #d8d8d0;
}

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

.section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 11px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a6aea9;
}

.legend__dot--completed { background: var(--green); }
.legend__dot--in-progress { background: var(--orange); }
.legend__dot--blocked { background: var(--red); }

.phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.phase {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgb(255 255 255 / 72%);
}

.phase__number {
  color: #96a09b;
  font-family: Georgia, serif;
  font-size: 18px;
}

.phase__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.phase h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.phase p {
  min-height: 38px;
  margin: 7px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status--completed { background: var(--green-soft); color: var(--green); }
.status--in_progress { background: var(--orange-soft); color: var(--orange); }
.status--blocked { background: var(--red-soft); color: var(--red); }
.status--upcoming { background: #eceeeb; color: #707b77; }

.phase__lots {
  display: block;
  margin: 8px 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.phase__progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.phase__progress strong {
  min-width: 38px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.phase--upcoming .progress-track span { background: #a6aea9; }
.phase--blocked .progress-track span { background: var(--red); }
.phase--in_progress .progress-track span { background: var(--orange); }

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

.signal {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.signal__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 20px;
}

.signal--decision .signal__icon { background: #eee9dd; color: #8a6a2d; }
.signal--forecast .signal__icon { background: #e8ecea; color: #64726c; }

.signal h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.section--risks {
  padding-bottom: 96px;
}

.section-heading__note {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.risks {
  display: grid;
  gap: 10px;
}

.risk-card {
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 20px;
  padding: 22px 24px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 68%);
}

.risk-card__marker {
  border-radius: 100px;
  background: var(--orange);
}

.risk-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.risk-card h3 {
  margin: 0;
  font-size: 15px;
}

.risk-card__topline span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

footer {
  padding-block: 30px;
  background: var(--navy);
  color: rgb(255 255 255 / 62%);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

footer p {
  max-width: 520px;
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 58px;
  }

  .phases,
  .signals {
    grid-template-columns: 1fr;
  }

  .phase p {
    min-height: auto;
  }

  .signal {
    min-height: 0;
  }

  .signal__icon {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 460px);
  }

  .site-header__inner {
    min-height: 66px;
  }

  .freshness {
    max-width: 134px;
    justify-content: flex-end;
    font-size: 9px;
    line-height: 1.35;
    text-align: right;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    min-height: 0;
    padding-block: 48px 52px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__summary {
    margin-top: 22px;
    font-size: 17px;
  }

  .health {
    padding: 22px;
  }

  .health__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .health h2 {
    font-size: 23px;
  }

  .overall {
    grid-template-columns: 90px 1fr;
    padding: 22px;
  }

  .overall__value {
    min-width: 0;
  }

  .overall__value strong {
    font-size: 54px;
  }

  .overall__copy > strong {
    font-size: 16px;
  }

  .section {
    padding-block: 54px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .legend {
    justify-content: flex-start;
  }

  .phase {
    grid-template-columns: 34px 1fr;
    padding: 18px;
  }

  .phase__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .phase p {
    margin-bottom: 14px;
  }

  .section-heading__note {
    text-align: left;
  }

  .risk-card__topline {
    flex-direction: column;
    gap: 6px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
