:root {
  color-scheme: dark;
  --surface: rgba(12, 18, 24, 0.78);
  --text: #f8fafc;
  --muted: #d8e0e7;
  --accent: #9fe3d3;
  --accent-soft: rgba(159, 227, 211, 0.16);
  --border: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Luxembourg%20City%20Night%20Wikimedia%20Commons.jpg") center / cover fixed;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.status-panel {
  width: min(100%, 1040px);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 56px);
}

.status-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(40px, 7vw, 80px);
}

.service-name {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.contact-line {
  margin: 28px 0 0;
  font-size: 1rem;
  color: var(--text);
}

.visual-block {
  min-width: 0;
}

.status-card {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(159, 227, 211, 0.20), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--border);
}

.status-card span {
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.status-card strong {
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
}

.attribution {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px;
    place-items: stretch;
  }

  .status-panel {
    min-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  h1 {
    max-width: none;
    font-size: 2.75rem;
  }

  .status-card {
    aspect-ratio: 16 / 9;
  }
}
