:root {
  color-scheme: light;
  --background: #f1f0ec;
  --foreground: #111111;
  --muted: rgba(17, 17, 17, .58);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  display: grid;
  min-height: 100svh;
  margin: 0;
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
  background: var(--background);
  color: var(--foreground);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

main {
  width: min(100%, 960px);
  padding-block: clamp(36px, 9vh, 96px);
  border-top: 1px solid var(--foreground);
  border-bottom: 1px solid var(--foreground);
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(64px, 12vh, 140px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(72px, 14vw, 190px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.08em;
}

.message {
  max-width: 430px;
  margin: clamp(54px, 9vh, 100px) 0 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.35;
  letter-spacing: -.025em;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

@media (max-width: 600px) {
  main {
    min-height: calc(100svh - 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .status {
    margin-bottom: auto;
  }

  .message {
    margin-top: auto;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status span {
    animation: none;
  }
}
