:root {
  --bg: #131920;
  --bg-deep: #0d1218;
  --bg-lift: #1b232d;
  --glow-primary: rgba(214, 228, 255, 0.13);
  --glow-secondary: rgba(163, 188, 218, 0.1);
  --grid-line: rgba(255, 255, 255, 0.055);
  --text-primary: rgba(255, 255, 255, 0.96);
  --text-secondary: rgba(255, 255, 255, 0.58);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

html {
  background: var(--bg-deep);
}

body {
  position: relative;
  min-width: 320px;
  color: var(--text-primary);
  font-family: "SF Pro Display", "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 18% 22%, var(--glow-primary) 0, transparent 32%),
    radial-gradient(circle at 82% 78%, var(--glow-secondary) 0, transparent 36%),
    linear-gradient(135deg, var(--bg-lift) 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.04) 0, transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 38%, rgba(0, 0, 0, 0.1) 100%);
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  width: 100%;
  height: 100vh;
  padding: clamp(24px, 5vw, 56px);
}

.status,
.title {
  margin: 0;
  text-align: left;
}

.status {
  margin-bottom: clamp(10px, 1.6vw, 16px);
  font-size: clamp(0.72rem, 0.45rem + 0.55vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

@media (max-width: 640px) {
  body::before {
    background-size: 28px 28px;
  }

  .page {
    padding: 24px;
    align-content: center;
  }

  .title {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
    line-height: 0.98;
  }
}
