:root {
  color-scheme: dark;
  --bg: #04111f;
  --bg-soft: #0b1f34;
  --card-border: rgba(194, 234, 255, 0.18);
  --text: #f8fbff;
  --muted: rgba(235, 244, 255, 0.74);
  --accent: #9cf0ff;
  --accent-strong: #4fd7ff;
  --accent-warm: #ffd37c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(79, 215, 255, 0.14), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      420px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(156, 240, 255, 0.18),
      transparent 68%
    );
  pointer-events: none;
  transition: background-position 120ms linear;
}

.page-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 3rem);
  isolation: isolate;
}

.construction-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(1.75rem, 4vw, 3.75rem);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(11, 29, 49, 0.8), rgba(5, 17, 31, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  z-index: 2;
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease-out;
}

.construction-card::before,
.construction-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.7;
}

.construction-card::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  background: radial-gradient(circle, rgba(156, 240, 255, 0.34), transparent 66%);
}

.construction-card::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -70px;
  background: radial-gradient(circle, rgba(255, 211, 124, 0.24), transparent 70%);
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 2.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

h1 {
  position: relative;
  margin: 0;
  max-width: 12ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.lede {
  position: relative;
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  line-height: 1.7;
}

.lede a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 240, 255, 0.4);
}

.lede a:hover,
.lede a:focus-visible {
  color: var(--text);
  border-bottom-color: var(--text);
}

.status-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.status-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.94rem;
  backdrop-filter: blur(14px);
}

.construction-scene {
  position: relative;
  height: 240px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 16%, rgba(79, 215, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(255, 211, 124, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 22, 39, 0.88), rgba(2, 10, 20, 0.96));
  overflow: hidden;
  isolation: isolate;
}

.construction-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 211, 124, 0.95) 0 14px,
      rgba(10, 19, 34, 0.92) 14px 28px
    );
  opacity: 0.85;
}

.construction-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(156, 240, 255, 0.12), transparent);
  transform: translateX(-120%);
  animation: scan-pass 5.8s ease-in-out infinite;
}

.construction-scene__grid,
.construction-scene__glow,
.construction-scene__hud,
.construction-scene__progress,
.construction-scene__arm,
.construction-scene__tower,
.construction-scene__drone,
.construction-scene__particles,
.construction-scene__base {
  position: absolute;
}

.construction-scene__grid {
  inset: auto -8% 18px;
  height: 70%;
  background-image:
    linear-gradient(rgba(156, 240, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 240, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: perspective(680px) rotateX(72deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 26%, black 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 26%, black 100%);
  opacity: 0.38;
  animation: grid-drift 14s linear infinite;
}

.construction-scene__glow {
  inset: auto 12% 34px auto;
  width: 220px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 215, 255, 0.3), transparent 70%);
  filter: blur(18px);
}

.construction-scene__hud {
  top: 16px;
  right: 18px;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  z-index: 2;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.construction-scene__hud span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.construction-scene__progress {
  top: 56px;
  right: 18px;
  width: 164px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 2;
}

.construction-scene__progress span {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(156, 240, 255, 0.3), rgba(156, 240, 255, 1));
  box-shadow: 0 0 18px rgba(79, 215, 255, 0.58);
  animation: hud-progress 4.8s ease-in-out infinite;
}

.construction-scene__arm {
  left: 18px;
  top: 56px;
  width: 250px;
  height: 132px;
  z-index: 2;
}

.construction-scene__arm-base,
.construction-scene__arm-upper,
.construction-scene__arm-forearm,
.construction-scene__arm-grip,
.construction-scene__arm-beam,
.construction-scene__tower-shell,
.construction-scene__tower-core,
.construction-scene__tower-floor,
.construction-scene__tower-scan {
  position: absolute;
}

.construction-scene__arm-base {
  left: 0;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(79, 215, 255, 0.22));
  box-shadow: 0 0 24px rgba(79, 215, 255, 0.24);
}

.construction-scene__arm-base::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -34px;
  width: 8px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
}

.construction-scene__arm-upper {
  left: 18px;
  bottom: 50px;
  width: 116px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(156, 240, 255, 0.92));
  transform-origin: 8px 50%;
  animation: arm-upper-swing 6.2s cubic-bezier(0.42, 0, 0.25, 1) infinite;
}

.construction-scene__arm-upper::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 211, 124, 0.28));
  box-shadow: 0 0 16px rgba(255, 211, 124, 0.22);
}

.construction-scene__arm-forearm {
  left: calc(100% - 4px);
  top: 50%;
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 211, 124, 0.88));
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(-26deg);
  animation: arm-forearm-swing 6.2s cubic-bezier(0.42, 0, 0.25, 1) infinite;
}

.construction-scene__arm-grip {
  top: 50%;
  right: -14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-right: 3px solid rgba(255, 211, 124, 0.96);
  border-top: 3px solid rgba(255, 211, 124, 0.96);
  border-bottom: 3px solid rgba(255, 211, 124, 0.96);
  border-left: 0;
  border-radius: 0 14px 14px 0;
  filter: drop-shadow(0 0 12px rgba(255, 211, 124, 0.32));
}

.construction-scene__arm-beam {
  top: 50%;
  left: calc(100% + 8px);
  width: 138px;
  height: 3px;
  margin-top: -1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 211, 124, 0), rgba(255, 211, 124, 0.96), rgba(156, 240, 255, 0.8));
  transform-origin: 0 50%;
  transform: rotate(21deg) scaleX(0.72);
  box-shadow: 0 0 24px rgba(255, 211, 124, 0.45);
  animation: beam-pulse 6.2s ease-in-out infinite;
}

.construction-scene__tower {
  right: 46px;
  bottom: 36px;
  width: 198px;
  height: 156px;
  z-index: 2;
}

.construction-scene__tower-shell {
  inset: 0;
  border: 1px solid rgba(156, 240, 255, 0.22);
  border-radius: 28px 28px 12px 12px;
  background:
    linear-gradient(180deg, rgba(156, 240, 255, 0.06), rgba(156, 240, 255, 0.01)),
    linear-gradient(90deg, transparent 0 14%, rgba(156, 240, 255, 0.12) 14% 15%, transparent 15% 49%, rgba(156, 240, 255, 0.12) 49% 50%, transparent 50% 84%, rgba(156, 240, 255, 0.12) 84% 85%, transparent 85% 100%);
  box-shadow: inset 0 0 30px rgba(79, 215, 255, 0.08);
}

.construction-scene__tower-core {
  left: 50%;
  bottom: 18px;
  width: 50px;
  height: 118px;
  margin-left: -25px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(156, 240, 255, 0.82), rgba(156, 240, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0.82;
  filter: drop-shadow(0 0 24px rgba(79, 215, 255, 0.28));
  animation: core-pulse 4.8s ease-in-out infinite;
}

.construction-scene__tower-floor {
  left: 22px;
  right: 22px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(156, 240, 255, 0.32), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 22px rgba(79, 215, 255, 0.08);
  transform-origin: center center;
  animation: floor-build 6.2s ease-in-out infinite;
}

.construction-scene__tower-floor::before,
.construction-scene__tower-floor::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: rgba(255, 211, 124, 0.92);
  box-shadow: 0 0 14px rgba(255, 211, 124, 0.46);
}

.construction-scene__tower-floor::before {
  left: 16px;
}

.construction-scene__tower-floor::after {
  right: 16px;
}

.construction-scene__tower-floor--1 {
  bottom: 18px;
  animation-delay: 0s;
}

.construction-scene__tower-floor--2 {
  bottom: 48px;
  animation-delay: 0.35s;
}

.construction-scene__tower-floor--3 {
  bottom: 78px;
  animation-delay: 0.7s;
}

.construction-scene__tower-floor--4 {
  bottom: 108px;
  animation-delay: 1.05s;
}

.construction-scene__tower-scan {
  left: 18px;
  right: 18px;
  top: 12px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(156, 240, 255, 0.86), transparent);
  filter: blur(1px);
  animation: tower-scan 6.2s ease-in-out infinite;
}

.construction-scene__drone {
  top: 66px;
  right: 208px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 251, 255, 0.96), rgba(79, 215, 255, 0.26));
  box-shadow: 0 0 24px rgba(79, 215, 255, 0.4);
  animation: drone-orbit 8s ease-in-out infinite;
  z-index: 3;
}

.construction-scene__drone::before,
.construction-scene__drone::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 2px;
  margin-left: -21px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.construction-scene__drone::after {
  transform: rotate(90deg);
}

.construction-scene__particles {
  inset: 0;
  z-index: 2;
}

.construction-scene__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 211, 124, 0.96);
  box-shadow: 0 0 16px rgba(255, 211, 124, 0.52);
  opacity: 0;
  animation: spark-float 2.6s linear infinite;
}

.construction-scene__particles span:nth-child(1) {
  left: 56%;
  top: 46%;
  animation-delay: 0s;
}

.construction-scene__particles span:nth-child(2) {
  left: 58%;
  top: 42%;
  animation-delay: 0.45s;
}

.construction-scene__particles span:nth-child(3) {
  left: 62%;
  top: 50%;
  animation-delay: 0.9s;
}

.construction-scene__particles span:nth-child(4) {
  left: 70%;
  top: 36%;
  animation-delay: 1.25s;
}

.construction-scene__particles span:nth-child(5) {
  left: 72%;
  top: 48%;
  animation-delay: 1.7s;
}

.construction-scene__particles span:nth-child(6) {
  left: 66%;
  top: 58%;
  animation-delay: 2.05s;
}

.construction-scene__base {
  left: 22px;
  right: 8%;
  bottom: 20px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 211, 124, 0.34), rgba(156, 240, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 22px rgba(255, 211, 124, 0.12);
}

.pulse-line {
  position: relative;
  height: 3px;
  margin-top: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pulse-line span {
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: pulse-slide 3.2s ease-in-out infinite;
}

.ambient,
.orbit,
.grid-overlay {
  position: absolute;
  pointer-events: none;
}

.ambient {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.ambient-a {
  width: min(42vw, 480px);
  aspect-ratio: 1;
  top: 8%;
  left: 6%;
  background: radial-gradient(circle, rgba(79, 215, 255, 0.28), transparent 64%);
  animation: float-one 14s ease-in-out infinite;
}

.ambient-b {
  width: min(32vw, 360px);
  aspect-ratio: 1;
  right: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 211, 124, 0.2), transparent 68%);
  animation: float-two 16s ease-in-out infinite;
}

.ambient-c {
  width: min(24vw, 280px);
  aspect-ratio: 1;
  right: 18%;
  top: 18%;
  background: radial-gradient(circle, rgba(146, 122, 255, 0.18), transparent 68%);
  animation: float-three 18s ease-in-out infinite;
}

.orbit {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.orbit-one {
  width: min(86vw, 980px);
  aspect-ratio: 1;
  animation: spin 30s linear infinite;
}

.orbit-two {
  width: min(66vw, 720px);
  aspect-ratio: 1;
  animation: spin-reverse 24s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(79, 215, 255, 0.8);
}

.grid-overlay {
  inset: 0;
  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: 80px 80px;
  -webkit-mask-image: radial-gradient(circle at center, black 42%, transparent 78%);
  mask-image: radial-gradient(circle at center, black 42%, transparent 78%);
  z-index: -1;
}

@keyframes pulse-slide {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(160%);
  }

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

@keyframes scan-pass {
  0%,
  15% {
    transform: translateX(-120%);
  }

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

@keyframes grid-drift {
  0%,
  100% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 28px 22px, 28px 22px;
  }
}

@keyframes hud-progress {
  0%,
  100% {
    width: 26%;
    opacity: 0.72;
  }

  45%,
  70% {
    width: 86%;
    opacity: 1;
  }
}

@keyframes arm-upper-swing {
  0%,
  100% {
    transform: rotate(18deg);
  }

  25% {
    transform: rotate(6deg);
  }

  55% {
    transform: rotate(28deg);
  }

  80% {
    transform: rotate(10deg);
  }
}

@keyframes arm-forearm-swing {
  0%,
  100% {
    transform: translateY(-50%) rotate(-26deg);
  }

  25% {
    transform: translateY(-50%) rotate(-40deg);
  }

  55% {
    transform: translateY(-50%) rotate(-12deg);
  }

  80% {
    transform: translateY(-50%) rotate(-30deg);
  }
}

@keyframes beam-pulse {
  0%,
  20%,
  100% {
    opacity: 0.2;
    transform: rotate(21deg) scaleX(0.5);
  }

  40%,
  70% {
    opacity: 0.96;
    transform: rotate(21deg) scaleX(1);
  }
}

@keyframes core-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(0) scaleY(0.92);
  }

  50% {
    opacity: 0.96;
    transform: translateY(-3px) scaleY(1);
  }
}

@keyframes floor-build {
  0%,
  18%,
  100% {
    opacity: 0.12;
    transform: scaleX(0.28) translateY(6px);
  }

  32%,
  74% {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }

  86% {
    opacity: 0.8;
    transform: scaleX(0.92) translateY(-2px);
  }
}

@keyframes tower-scan {
  0%,
  16%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  26% {
    opacity: 1;
  }

  55% {
    transform: translateY(104px);
    opacity: 1;
  }

  72% {
    opacity: 0;
  }
}

@keyframes drone-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(28px, -16px, 0) scale(1.06);
  }

  55% {
    transform: translate3d(72px, 8px, 0) scale(0.92);
  }

  78% {
    transform: translate3d(18px, 22px, 0) scale(1);
  }
}

@keyframes spark-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 6px, 0) scale(0.4);
  }

  16% {
    opacity: 1;
  }

  68% {
    opacity: 0.9;
    transform: translate3d(18px, -18px, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(28px, -34px, 0) scale(0.2);
  }
}

@keyframes float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(30px, 20px, 0) scale(1.08);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-28px, -22px, 0) scale(0.94);
  }
}

@keyframes float-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-16px, 24px, 0) scale(1.12);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .page-shell {
    padding: 1rem;
  }

  .construction-card {
    border-radius: 24px;
    min-height: min(84vh, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .status-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .construction-scene {
    height: 252px;
  }

  .construction-scene__hud {
    top: 14px;
    left: 14px;
    right: 14px;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .construction-scene__hud span {
    padding: 0.42rem 0.56rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .construction-scene__progress {
    top: 54px;
    left: 14px;
    right: 14px;
    width: auto;
  }

  .construction-scene__arm {
    top: 88px;
    left: -6px;
    width: 160px;
    transform: scale(0.72);
    transform-origin: left top;
  }

  .construction-scene__arm-beam {
    width: 112px;
  }

  .construction-scene__tower {
    right: 8px;
    width: 124px;
    height: 118px;
    bottom: 32px;
  }

  .construction-scene__tower-floor--1 {
    bottom: 14px;
  }

  .construction-scene__tower-floor--2 {
    bottom: 36px;
  }

  .construction-scene__tower-floor--3 {
    bottom: 58px;
  }

  .construction-scene__tower-floor--4 {
    bottom: 80px;
  }

  .construction-scene__drone {
    top: 96px;
    right: 112px;
    width: 22px;
    height: 22px;
  }

  .construction-scene__base {
    left: 10px;
    right: 10px;
  }

  .construction-scene__glow {
    width: 160px;
    height: 68px;
    right: 6%;
    bottom: 28px;
  }

  .construction-scene__grid {
    inset: auto -14% 18px;
    height: 62%;
  }

  .construction-scene__particles span:nth-child(4),
  .construction-scene__particles span:nth-child(5),
  .construction-scene__particles span:nth-child(6) {
    left: 60%;
  }

  .orbit-one {
    width: 140vw;
  }

  .orbit-two {
    width: 108vw;
  }

  .grid-overlay {
    background-size: 56px 56px;
  }
}

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

  .construction-card {
    transform: none !important;
  }
}
