:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #17202a;
  background: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.subtitle {
  max-width: 650px;
  margin: 16px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.6;
}

.overall-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.status-dot,
.infra-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #12b76a;
  display: inline-block;
}

section {
  margin-bottom: 44px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 22px;
}

.section-heading span {
  color: #667085;
  font-size: 13px;
}

.project-grid,
.metrics-grid,
.infra-grid {
  display: grid;
  gap: 14px;
}

.project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.infra-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-card,
.metric-card,
.infra-card {
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
}

.project-card {
  padding: 22px;
}

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

.project-card h3 {
  margin: 0;
  font-size: 18px;
}

.project-card p {
  color: #667085;
  line-height: 1.5;
  min-height: 48px;
}

.project-card a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.project-status {
  font-size: 12px;
  font-weight: 600;
}

.operational {
  color: #079455;
}

.metric-card {
  padding: 20px;
}

.metric-card span,
.metric-card small,
.infra-card small {
  display: block;
  color: #667085;
}

.metric-card strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 28px;
}

.metric-card small {
  font-size: 12px;
}

.infra-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
}

.infra-card strong {
  display: block;
  margin-bottom: 4px;
}

.infra-card small {
  font-size: 12px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #e4e7ec;
  color: #667085;
  font-size: 12px;
}

@media (max-width: 850px) {
  .metrics-grid,
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .hero {
    flex-direction: column;
  }

  .project-grid,
  .metrics-grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
