* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #05040d;
  --text: #f7f5ff;
  --muted: #aaa6ba;
  --line: rgba(255, 255, 255, 0.11);
  --pink: #ff7fd5;
  --purple: #8b5cf6;
  --blue: #19b9ff;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 35%, rgba(105, 53, 196, 0.14), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(24, 142, 255, 0.08), transparent 24%),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: auto;
  padding: 42px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0 70px;
}

.brand {
  width: min(370px, 72vw);
  margin-bottom: 30px;
  animation: float 6s ease-in-out infinite;
}

.logo-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: #030209;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 24px 80px rgba(93, 45, 210, .22);
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d9d4e7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.dot,
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b879ff;
  box-shadow: 0 0 14px #b879ff;
}

h1 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(90deg, var(--pink), #a66cff 48%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}

.status {
  width: min(420px, 88vw);
  margin-top: 32px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #e8e4f1;
  font-size: 14px;
}

.pulse {
  animation: pulse 1.7s ease-in-out infinite;
}

.progress {
  height: 4px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}

.progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  box-shadow: 0 0 18px rgba(137, 94, 246, .65);
  animation: loading 3s ease-in-out infinite;
}

.tagline {
  margin-top: 26px;
  color: #777287;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #656174;
  font-size: 12px;
  letter-spacing: .03em;
  padding-top: 20px;
}

.footer-separator {
  color: #8a61e8;
}

.ambient {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
  z-index: 1;
}

.ambient-one {
  background: #8b5cf6;
  top: -120px;
  right: -100px;
}

.ambient-two {
  background: #00b8ff;
  bottom: -160px;
  left: -100px;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes loading {
  0%, 100% { transform: translateX(-35%); }
  50% { transform: translateX(70%); }
}

@media (max-width: 600px) {
  .page {
    padding: 22px 18px 20px;
  }

  .hero {
    min-height: calc(100vh - 90px);
    padding: 24px 0 50px;
  }

  .brand {
    width: min(290px, 78vw);
    margin-bottom: 24px;
  }

  .logo-wrap {
    border-radius: 20px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .06em;
  }

  h1 {
    margin-top: 20px;
  }

  .intro {
    line-height: 1.65;
  }

  footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
