:root {
  color-scheme: light;
  --bg: #e7e7e4;
  --bg-strong: #d8d8d4;
  --text: #13233a;
  --muted: rgba(19, 35, 58, 0.68);
  --line: rgba(19, 35, 58, 0.14);
  --soft-line: rgba(19, 35, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-strong) 100%);
  color: var(--text);
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 40px 24px 28px;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(50% - 0.5px), var(--soft-line) calc(50% - 0.5px), var(--soft-line) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to bottom, var(--soft-line) 1px, transparent 1px);
  background-size: 100% 100%, 100% 120px;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 68px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.eyebrow,
.status,
.intro,
.footer {
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}

.logo {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 44px rgba(19, 35, 58, 0.08));
}

.copy {
  width: min(100%, 760px);
  display: grid;
  gap: 14px;
}

.status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5.2rem);
  line-height: 0.96;
  font-weight: 600;
  max-width: 12ch;
  justify-self: center;
}

.intro {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
  justify-self: center;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer span {
  position: relative;
  padding: 0 16px;
}

.footer span::before,
.footer span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: var(--line);
}

.footer span::before {
  right: 100%;
}

.footer span::after {
  left: 100%;
}

@media (max-width: 720px) {
  .page {
    padding: 28px 18px 24px;
  }

  .hero {
    min-height: calc(100vh - 56px);
    gap: 16px;
  }

  .logo {
    width: min(100%, 400px);
  }

  h1 {
    max-width: 11ch;
  }

  .footer span::before,
  .footer span::after {
    width: 40px;
  }
}
