:root {
  --bg: #06111a;
  --bg-2: #0c1c28;
  --panel: rgba(8, 19, 28, 0.7);
  --panel-strong: rgba(10, 20, 29, 0.88);
  --line: rgba(159, 220, 255, 0.18);
  --text: #eef7ff;
  --muted: #9fb5c7;
  --cyan: #72e5ff;
  --cyan-strong: #21cfff;
  --lime: #d8ff72;
  --glow: rgba(33, 207, 255, 0.35);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(114, 229, 255, 0.14), transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(216, 255, 114, 0.12), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(114, 229, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #041018 0%, #071520 45%, #02080d 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  content: "";
}

.noise,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: -3;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.65) 0.6px, transparent 0.8px);
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
}

.ambient {
  z-index: -2;
  filter: blur(30px);
}

.ambient-one {
  top: 12%;
  left: -12%;
  width: 40vw;
  height: 40vw;
  border-radius: 999px;
  background: rgba(33, 207, 255, 0.16);
  animation: driftOne 12s ease-in-out infinite alternate;
}

.ambient-two {
  top: 58%;
  right: -10%;
  width: 32vw;
  height: 32vw;
  border-radius: 999px;
  background: rgba(216, 255, 114, 0.12);
  animation: driftTwo 14s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

.construction-page {
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 36px;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 28px;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.status-pill,
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(114, 229, 255, 0.25);
  border-radius: 999px;
  background: rgba(114, 229, 255, 0.08);
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(216, 255, 114, 0.5);
  animation: pulseDot 1.8s infinite;
}

.overline {
  margin: 26px 0 0;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
.build-readout strong,
.floating-card strong,
#progress-value {
  font-family: "Bricolage Grotesque", sans-serif;
}

h1 {
  max-width: 11ch;
  margin: 14px 0 0;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.92;
}

.accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  animation: buttonSweep 3.8s infinite;
  content: "";
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), #12bceb);
  color: #03131b;
  box-shadow: 0 18px 40px rgba(33, 207, 255, 0.28);
}

.button.secondary {
  border-color: rgba(114, 229, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
}

.progress-card,
.core-panel,
.floating-card,
.info-strip article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.progress-card {
  margin-top: 34px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.progress-top,
.panel-head,
.build-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.progress-top span,
.progress-notes span,
.build-readout small,
.floating-card span {
  color: var(--muted);
}

#progress-value {
  font-size: 2rem;
  color: var(--lime);
}

.progress-track {
  position: relative;
  overflow: hidden;
  height: 14px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-bar {
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(114, 229, 255, 0.35);
  animation: barGlow 2.6s ease-in-out infinite;
}

.progress-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.hero-visual {
  min-height: 680px;
}

.blueprint-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(114, 229, 255, 0.16);
  border-radius: 999px;
}

.ring-a {
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  animation: spinSlow 18s linear infinite;
}

.ring-b {
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  animation: spinReverse 13s linear infinite;
}

.blueprint-grid {
  position: absolute;
  inset: 90px 36px 90px 36px;
  border-radius: var(--radius-xl);
  background-image:
    linear-gradient(rgba(114, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 1px solid rgba(114, 229, 255, 0.08);
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
}

.core-panel {
  position: absolute;
  inset: 110px 50px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 33, 48, 0.72), rgba(6, 15, 22, 0.88));
}

.live-tag {
  color: var(--lime);
  border-color: rgba(216, 255, 114, 0.24);
  background: rgba(216, 255, 114, 0.08);
}

.scanner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin-top: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(1, 7, 12, 0.7), rgba(5, 15, 22, 0.96));
  border: 1px solid rgba(114, 229, 255, 0.12);
}

.scanner-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(114, 229, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 18px;
  opacity: 0.36;
}

.scanner-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(114, 229, 255, 0.26), transparent);
  filter: blur(6px);
  animation: scanBeam 3.8s ease-in-out infinite;
}

.scanner-frame {
  position: absolute;
  border: 1px solid rgba(114, 229, 255, 0.28);
  background: rgba(114, 229, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.frame-one {
  top: 18%;
  left: 14%;
  width: 36%;
  height: 30%;
  animation: floatPanel 4.8s ease-in-out infinite;
}

.frame-two {
  right: 12%;
  top: 28%;
  width: 24%;
  height: 42%;
  animation: floatPanel 5.3s ease-in-out infinite reverse;
}

.frame-three {
  left: 28%;
  bottom: 12%;
  width: 42%;
  height: 16%;
  animation: floatPanel 4.2s ease-in-out infinite;
}

.build-readout {
  margin-top: 18px;
}

.build-readout strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
}

.floating-card {
  position: absolute;
  width: min(260px, 46%);
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  animation: bobCard 5s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 1.32rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-top {
  top: 70px;
  right: 0;
}

.card-bottom {
  left: 0;
  bottom: 60px;
  animation-delay: 700ms;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
  padding-top: 10px;
}

.info-strip article {
  height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(8, 19, 28, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.info-strip span {
  color: var(--cyan);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.info-strip h2 {
  margin: 16px 0 12px;
  font-size: 1.42rem;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ticker-wrap {
  overflow: hidden;
  margin-top: 18px;
  padding: 18px 0;
  border: 1px solid rgba(114, 229, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 19, 28, 0.45);
  border-top: 1px solid rgba(114, 229, 255, 0.12);
  border-bottom: 1px solid rgba(114, 229, 255, 0.12);
  box-shadow: var(--shadow);
}

.ticker {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: tickerMove 20s linear infinite;
}

.ticker span {
  color: rgba(238, 247, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 255, 114, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(216, 255, 114, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(216, 255, 114, 0);
  }
}

@keyframes shimmerText {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }

  100% {
    filter: brightness(1);
  }
}

@keyframes buttonSweep {
  0%,
  30% {
    transform: translateX(-120%);
  }

  55% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes barGlow {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }

  50% {
    filter: saturate(1.2) brightness(1.08);
  }
}

@keyframes spinSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes scanBeam {
  0%,
  100% {
    top: -12%;
  }

  50% {
    top: 88%;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bobCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes driftOne {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(80px, 40px, 0);
  }
}

@keyframes driftTwo {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-70px, -30px, 0);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
    gap: 26px;
  }

  .hero-visual {
    order: -1;
    min-height: 580px;
  }

  .info-strip {
    margin-top: 8px;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .construction-page {
    width: min(calc(100% - 20px), 1240px);
    padding: 18px 0 28px;
  }

  .ambient {
    opacity: 0.55;
  }

  .noise {
    opacity: 0.04;
  }

  .hero {
    gap: 18px;
    padding-bottom: 8px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.8rem);
    line-height: 0.98;
  }

  .lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .overline {
    margin-top: 18px;
    font-size: 0.72rem;
  }

  .hero-visual {
    order: initial;
    min-height: auto;
  }

  .core-panel {
    position: relative;
    inset: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .blueprint-grid {
    display: none;
  }

  .ring-a,
  .ring-b,
  .floating-card {
    display: none;
  }

  .scanner {
    min-height: 220px;
    margin-top: 14px;
    border-radius: 18px;
  }

  .hero-actions,
  .progress-notes {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .progress-card {
    margin-top: 24px;
    padding: 18px;
  }

  .info-strip {
    gap: 12px;
    margin-top: 18px;
  }

  .info-strip article {
    padding: 18px;
    border-radius: 20px;
  }

  .info-strip h2 {
    margin: 12px 0 10px;
    font-size: 1.2rem;
  }

  .info-strip p {
    line-height: 1.65;
  }

  .ticker-wrap {
    padding: 14px 16px;
    border-radius: 24px;
  }

  .ticker {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    animation: none;
  }

  .ticker span {
    padding: 8px 12px;
    border: 1px solid rgba(114, 229, 255, 0.12);
    border-radius: 999px;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.02);
  }
}

@media (max-width: 520px) {
  .progress-top,
  .panel-head,
  .build-readout {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-pill,
  .live-tag {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .scanner {
    min-height: 190px;
  }

  .ticker span {
    width: 100%;
    text-align: center;
  }
}
