:root {
  color-scheme: dark;
  --bg: #090b12;
  --panel: rgba(15, 19, 33, 0.72);
  --panel-border: rgba(255, 255, 255, 0.14);
  --text: #f7f2e8;
  --muted: #b9b1a4;
  --accent: #ffb000;
  --accent-hot: #ff6b35;
  --accent-cool: #58d7ff;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 176, 0, 0.18), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(88, 215, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(255, 107, 53, 0.16), transparent 34%),
    var(--bg);
  overflow-x: hidden;
}

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

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 34%, transparent 76%);
}

body::after {
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 176, 0, 0.08) 46%, transparent 52% 100%);
  animation: sweep 9s ease-in-out infinite;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.hero-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)), var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  box-shadow: 0 30px 90px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
  backdrop-filter: blur(24px);
}

.hero-card::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  background: conic-gradient(from 180deg, transparent, rgba(255, 176, 0, 0.7), rgba(88, 215, 255, 0.5), transparent 38%);
  filter: blur(18px);
  opacity: 0.72;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  padding: 10px 16px;
  color: #241704;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), #ffd87a);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 176, 0, 0.26);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #241704;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(36, 23, 4, 0.5);
  animation: pulse 1.8s ease-out infinite;
}

.construction-mark {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.2), rgba(255, 107, 53, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(45deg);
}

.construction-mark::before {
  position: absolute;
  inset: 18px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 14px,
    #17110a 14px 24px
  );
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.beam {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 9px;
  height: 52px;
  background: linear-gradient(#f4d8a0, #a56a1c);
  border-radius: 999px;
  transform-origin: top center;
}

.beam-left {
  transform: translateX(-24px) rotate(-24deg);
}

.beam-right {
  transform: translateX(14px) rotate(24deg);
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--accent-cool);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent-cool);
  animation: float 3s ease-in-out infinite;
}

.spark-one {
  top: -12px;
  right: 24px;
}

.spark-two {
  top: 18px;
  left: -14px;
  animation-delay: -0.8s;
}

.spark-three {
  right: -10px;
  bottom: 28px;
  animation-delay: -1.5s;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-cool);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.intro {
  max-width: 560px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.progress-wrap {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin: 38px auto 0;
}

.progress-track {
  height: 12px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-hot), var(--accent), var(--accent-cool));
  border-radius: inherit;
  box-shadow: 0 0 24px rgba(255, 176, 0, 0.4);
  animation: shimmer 2.6s ease-in-out infinite;
}

.progress-label {
  color: rgba(247, 242, 232, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(36, 23, 4, 0);
  }
}

@keyframes float {
  50% {
    transform: translate3d(8px, -10px, 0) scale(1.25);
    opacity: 0.7;
  }
}

@keyframes shimmer {
  50% {
    filter: brightness(1.25);
  }
}

@keyframes sweep {
  50% {
    transform: translateX(18%);
    opacity: 0.65;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 18px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .construction-mark {
    width: 94px;
    height: 94px;
  }

  .status-pill {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
