:root {
  color-scheme: dark;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #f8fafc;
  background: #101828;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #101828;
}

.page {
  width: min(100% - 40px, 43rem);
  flex: 1;
  margin: 0 auto;
  padding: clamp(4.5rem, 12vh, 8.5rem) 0 4rem;
}

.hero { max-width: 38rem; margin-bottom: 2.8rem; }

.eyebrow {
  margin: 0 0 .9rem;
  color: #98a2b3;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 1.15rem;
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: -.052em;
  line-height: 1.03;
  text-wrap: balance;
}

.hero > p:last-child,
.overall-status p {
  max-width: 36rem;
  margin-bottom: 0;
  color: #b7c2d0;
  font-size: 1.05rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.overall-status {
  display: flex;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid #483432;
  background: #241c20;
  box-shadow: 0 12px 28px rgb(0 0 0 / 16%);
}

.status-dot {
  width: .68rem;
  height: .68rem;
  flex: 0 0 auto;
  margin-top: .32rem;
  background: #f97066;
  box-shadow: 0 0 0 .28rem rgb(249 112 102 / 14%);
}

.overall-status strong {
  color: #fda29b;
  font-size: .98rem;
  letter-spacing: -.01em;
}

.overall-status p { margin-top: .3rem; font-size: .93rem; }

.components { margin-top: 3.5rem; }

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: .9rem;
}

h2 { margin-bottom: 0; color: #e5eaf0; font-size: .9rem; letter-spacing: .01em; }
.section-heading span { color: #98a2b3; font-size: .78rem; font-variant-numeric: tabular-nums; }

ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid #344054;
  background: #182230;
  box-shadow: 0 12px 28px rgb(0 0 0 / 14%);
}

li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  color: #d0d5dd;
  font-size: .95rem;
}

li + li { border-top: 1px solid #344054; }

li strong {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fda29b;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .015em;
  text-transform: uppercase;
}

li strong::before {
  width: .42rem;
  height: .42rem;
  background: #f97066;
  content: "";
}

footer {
  width: min(100% - 40px, 43rem);
  margin: 0 auto;
  padding: 1.75rem 0 2.4rem;
  border-top: 1px solid #344054;
  color: #98a2b3;
  font-size: .78rem;
  text-align: center;
}

footer span { padding: 0 .38rem; }

@media (max-width: 480px) {
  .page { width: min(100% - 32px, 43rem); padding-top: 4.25rem; }
  .hero { margin-bottom: 2.3rem; }
  .overall-status { padding: 1.15rem; }
  li { padding: 1rem; }
  footer { width: min(100% - 32px, 43rem); }
}
