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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.5;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(232, 93, 4, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero {
  position: relative;
  max-width: 36rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e85d04;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subhead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: #b0b0b0;
}

.status {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #888;
}

.cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #0f0f0f;
  background: #e85d04;
  border-radius: 0.375rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: #f07020;
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 2px solid #f5f5f5;
  outline-offset: 3px;
}

.footer {
  position: relative;
  margin-top: 4rem;
  font-size: 0.8125rem;
  color: #666;
}

.footer p {
  margin: 0;
}
