:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: #eef2f3;
}

body {
  --accent: #176b68;
  --accent-soft: #dcebea;
  --secondary: #a14d63;
  --ink: #182226;
  --muted: #5f6d72;
  --line: #ced8db;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: #f7f9f9;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.topbar {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  background: var(--accent-soft);
}

.identity-copy {
  min-width: 0;
}

.brand {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.domain {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #206136;
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2d9b50;
  box-shadow: 0 0 0 4px #e2f2e6;
}

main {
  padding: 46px 0 54px;
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 52px;
  padding-bottom: 44px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 780;
}

.lede {
  margin: 18px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.time-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--muted);
  font-size: 13px;
}

.time-row strong {
  color: var(--ink);
}

.network-figure {
  margin: 0;
}

.network-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #edf2f3;
}

.network-figure figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.status-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.status-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.status-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #2d9b50;
  font-size: 13px;
  font-weight: 800;
}

.status-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.activity {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  gap: 48px;
  padding-top: 38px;
}

.activity-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.activity-list li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.activity-list time {
  color: var(--muted);
}

.activity-list strong {
  font-weight: 700;
}

.contact-block {
  padding-left: 24px;
  border-left: 3px solid var(--secondary);
}

.contact-block p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

footer {
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.error-page {
  min-height: calc(100vh - 68px);
  display: grid;
  align-content: center;
  padding: 52px 0;
}

.error-code {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.home-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 700;
}

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

  .overview,
  .activity {
    grid-template-columns: 1fr;
  }

  .overview {
    gap: 30px;
    padding-bottom: 34px;
  }

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

  .activity {
    gap: 34px;
  }

  h1 {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .topbar-inner {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
  }

  .status-pill {
    margin: 0 0 0 46px;
    font-size: 12px;
  }

  main {
    padding-top: 34px;
  }

  h1 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .lede {
    font-size: 15px;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 7px;
  }

  .activity-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
