:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.5;
  color: #182230;
  background: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

a {
  color: #155eef;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.app-header,
.app-footer,
.app-main {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.app-header__brand a {
  color: #101828;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.app-header__environment {
  color: #475467;
  font-size: 0.875rem;
}

.app-main {
  padding-block: 3rem 4rem;
}

.page-heading {
  max-width: 48rem;
}

.page-heading h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-heading p {
  color: #475467;
  font-size: 1.0625rem;
}

.page-heading__eyebrow {
  margin: 0;
  color: #155eef;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.status-card {
  padding: 1.25rem;
  border: 1px solid #d0d5dd;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(16 24 40 / 0.04);
}

.status-card h2 {
  margin: 0;
  font-size: 1rem;
}

.status-card p {
  min-height: 3rem;
  color: #667085;
}

.app-footer {
  padding-block: 1.5rem;
  border-top: 1px solid #eaecf0;
  color: #667085;
}

@media (max-width: 720px) {
  .app-header {
    gap: 1rem;
  }

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