:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5f6f75;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #d8e0dc;
  --amber: #d99a2b;
  --teal: #246d66;
  --shadow: 0 24px 60px rgba(23, 33, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(217, 154, 43, 0.12) 0 25%, transparent 25% 50%, rgba(36, 109, 102, 0.1) 50% 75%, transparent 75%) 0 0 / 56px 56px,
    linear-gradient(180deg, #fbfaf6 0%, #eef4f1 100%),
    var(--paper);
}

.site-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.status-panel {
  width: min(100%, 42rem);
  padding: clamp(2rem, 6vw, 4.25rem);
  text-align: center;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.status-mark {
  display: block;
  width: clamp(4.5rem, 18vw, 6rem);
  height: auto;
  margin: 0 auto 1.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 4.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.message {
  max-width: 32rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

@supports not (background: color-mix(in srgb, white, transparent)) {
  .status-panel {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 420px) {
  .status-panel {
    padding: 2rem 1.25rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .message {
    font-size: 1rem;
  }
}

@media (min-width: 421px) and (max-width: 720px) {
  h1 {
    font-size: 3.45rem;
  }
}
