:root {
  --bg: #1a1b20;
  --text: #f5f7ff;
  --muted: #aeb4c7;
  --panel: #232631;
  --outline: rgba(245, 247, 255, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(90, 120, 255, 0.2), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(23, 203, 138, 0.17), transparent 35%);
}

body::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 55%),
    linear-gradient(var(--outline), var(--outline));
  mix-blend-mode: screen;
  opacity: 0.35;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  width: min(42rem, 100%);
  text-align: center;
  background: linear-gradient(145deg, rgba(35, 38, 49, 0.85), rgba(26, 27, 32, 0.6));
  border: 1px solid var(--outline);
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  animation: rise 850ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.logo-shell {
  margin: 0 auto 1.35rem;
  width: clamp(5.5rem, 13vw, 7rem);
  aspect-ratio: 1;
  border-radius: 1.3rem;
  border: 1px solid var(--outline);
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(26, 27, 32, 0.9);
}

.logo {
  width: 72%;
  height: auto;
  display: block;
  animation: drift 6s ease-in-out infinite;
}

.company {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0.65rem 0 0.2rem;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.tagline {
  margin: 0;
  color: var(--text);
  opacity: 0.92;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.status {
  margin: 1.25rem auto 0;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--outline);
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(245, 247, 255, 0.04);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 40rem) {
  .hero {
    border-radius: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .logo {
    animation: none;
  }
}
