:root {
  color-scheme: light;
  --ink: #18212b;
  --muted: #5d6975;
  --line: #d7dee5;
  --surface: #f7f9fb;
  --accent: #1f6f78;
  --accent-strong: #16324f;
  --ok: #2b8a5f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(31, 111, 120, .08), transparent 360px),
    var(--surface);
}

a {
  color: inherit;
}

.shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.shell.compact {
  width: min(820px, calc(100% - 32px));
}

.hero {
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 18px;
}

.lead.narrow {
  max-width: 560px;
}

.actions,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions a,
.link-list a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  font-weight: 650;
}

.actions a:first-child,
.button {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.grid article,
.status-list section,
.timeline {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.status-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.status-list section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-list p {
  margin: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(43, 138, 95, .12);
}

.dot.muted {
  background: #87929d;
  box-shadow: 0 0 0 6px rgba(135, 146, 157, .14);
}

.back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
}

.timeline {
  margin-top: 28px;
}

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

  .hero {
    padding: 28px 0 32px;
  }

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

  h1 {
    font-size: 38px;
  }
}
