:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #586273;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #d8dfd9;
  --teal: #116a6d;
  --leaf: #7b9d56;
  --plum: #5f4668;
  --gold: #c99a34;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--teal);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page-shell {
  display: grid;
  gap: 32px;
  min-height: 100vh;
  padding: 28px;
}

.intro {
  display: grid;
  align-content: center;
  gap: 32px;
  min-height: 58vh;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 72px;
  height: 72px;
}

.brand-row p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.intro-copy {
  max-width: 780px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.status-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 560px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(24, 33, 47, 0.08);
}

.status-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(123, 157, 86, 0.18);
}

.notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 28px;
}

.notes article {
  min-height: 150px;
  padding: 20px;
  border-top: 4px solid var(--gold);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(24, 33, 47, 0.07);
}

.notes article:nth-child(2) {
  border-top-color: var(--teal);
}

.notes article:nth-child(3) {
  border-top-color: var(--plum);
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 22px;
  }

  .intro {
    min-height: auto;
    padding-top: 18px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .intro-copy p:last-child {
    font-size: 18px;
  }

  .status-panel {
    align-items: flex-start;
  }

  .notes {
    grid-template-columns: 1fr;
  }
}
