:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18222f;
  background: #eef3f8;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #dbeafe, transparent 38rem), #eef3f8;
}

.shell {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 55ch;
  color: #526171;
  font-size: 1.1rem;
  line-height: 1.6;
}

.status {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: #526171;
  font-weight: 700;
}

.status::before {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #f59e0b;
  content: "";
}

.status.is-online::before {
  background: #16a34a;
}

.status.is-offline::before {
  background: #dc2626;
}

.card {
  margin-top: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid #d7e0e9;
  border-radius: 1rem;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 1rem 3rem rgb(31 41 55 / 8%);
  backdrop-filter: blur(12px);
}

.card .status {
  display: flex;
  margin-bottom: 0.75rem;
}

.card .status:last-child {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .shell {
    padding: 2.5rem 0;
  }
}
