:root {
  color-scheme: dark;
  --bg: #0d0e22;
  --bg-deep: #090a18;
  --surface: rgba(24, 25, 56, 0.72);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text: #f7f5ff;
  --muted: #b8b8d2;
  --violet: #a78bfa;
  --purple: #7c5cff;
  --cyan: #67e8f9;
  --mint: #6ee7c7;
  --pink: #f0a6ca;
  --yellow: #ffd783;
  --shadow: 0 30px 90px rgba(2, 4, 18, 0.5);
  --scene-x: 0px;
  --scene-y: 0px;
  font-family:
    Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 13% 16%, rgba(114, 83, 238, 0.2), transparent 29%),
    radial-gradient(circle at 86% 72%, rgba(52, 211, 199, 0.12), transparent 30%),
    linear-gradient(145deg, #10112b 0%, var(--bg-deep) 56%, #11132d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  color: #13142b;
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  will-change: transform;
}

.aurora--one {
  top: -15rem;
  left: -10rem;
  background: #9d79ff;
  animation: aurora-drift 15s ease-in-out infinite alternate;
}

.aurora--two {
  right: -15rem;
  bottom: -18rem;
  background: #54e4d7;
  animation: aurora-drift 18s ease-in-out -4s infinite alternate-reverse;
}

.aurora--three {
  top: 44%;
  left: 48%;
  width: 23rem;
  background: #ee8ec8;
  opacity: 0.09;
  animation: aurora-pulse 10s ease-in-out infinite;
}

.ambient-particles span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  bottom: -20px;
  border-radius: 50%;
  background: var(--particle-color);
  box-shadow: 0 0 16px var(--particle-color);
  opacity: 0;
  animation: particle-rise var(--duration) linear var(--delay) infinite;
}

.page-shell {
  width: min(1220px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px 0 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #eeecff;
  font-size: 0.93rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.3), rgba(103, 232, 249, 0.12));
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.06);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span::before,
.brand__mark span::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.brand__mark::before,
.brand__mark span::before {
  width: 16px;
  height: 4px;
  left: 9px;
}

.brand__mark::after,
.brand__mark span::after {
  width: 4px;
  height: 16px;
  top: 9px;
}

.brand__mark::before {
  top: 9px;
}

.brand__mark span::before {
  bottom: 9px;
}

.brand__mark::after {
  left: 9px;
}

.brand__mark span::after {
  right: 9px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(110, 231, 199, 0.18);
  border-radius: 999px;
  color: #d9fff5;
  background: rgba(52, 211, 153, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill__light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(110, 231, 199, 0.11), 0 0 12px var(--mint);
  animation: status-pulse 2.3s ease-in-out infinite;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: 16px;
}

.typing-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  animation: dot-bounce 1.2s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 120ms;
}

.typing-dots i:nth-child(3) {
  animation-delay: 240ms;
}

.maintenance-card {
  align-self: center;
  position: relative;
  width: 100%;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  isolation: isolate;
}

.maintenance-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 88% 18%, rgba(167, 139, 250, 0.15), transparent 28%),
    radial-gradient(circle at 59% 88%, rgba(103, 232, 249, 0.08), transparent 30%);
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 84px);
  padding-right: 34px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 11px;
  border: 1px solid rgba(167, 139, 250, 0.19);
  border-radius: 8px;
  color: #d6c9ff;
  background: rgba(124, 92, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 5px;
  color: var(--cyan);
}

h1 {
  max-width: 670px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.gradient-text {
  display: block;
  padding-bottom: 0.08em;
  color: transparent;
  background: linear-gradient(100deg, #c8b7ff 3%, #a58cff 42%, #79e6eb 93%);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: #15142a;
  background: linear-gradient(110deg, #c8b8ff, #82e8ed);
  box-shadow: 0 12px 35px rgba(103, 232, 249, 0.15);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.5), transparent 78%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(103, 232, 249, 0.24);
}

.contact-button:hover::before {
  transform: translateX(120%);
}

.contact-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.contact-button__icon {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
}

.progress-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8e5f6;
}

.progress-note__icon {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(110, 231, 199, 0.22);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(110, 231, 199, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.progress-note strong,
.progress-note small {
  display: block;
}

.progress-note strong {
  font-size: 0.76rem;
  line-height: 1.4;
}

.progress-note small {
  margin-top: 2px;
  color: #8f90aa;
  font-size: 0.67rem;
}

.visual-panel {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.construction-scene {
  position: relative;
  width: min(100%, 500px);
  height: 500px;
  transform: translate3d(var(--scene-x), var(--scene-y), 0);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit--outer {
  inset: 30px 8px 42px 4px;
  transform: rotate(-14deg);
  animation: orbit-spin 24s linear infinite;
}

.orbit--outer::before {
  top: 67px;
  left: 25px;
}

.orbit--outer::after {
  right: 54px;
  bottom: 24px;
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet);
}

.orbit--inner {
  inset: 94px 67px 89px 73px;
  border-color: rgba(103, 232, 249, 0.1);
  transform: rotate(24deg);
  animation: orbit-spin 17s linear reverse infinite;
}

.orbit--inner::before {
  top: 38px;
  right: 18px;
  width: 5px;
  height: 5px;
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
}

.orbit--inner::after {
  display: none;
}

.scene-spark {
  position: absolute;
  z-index: 1;
  color: var(--cyan);
  font-weight: 900;
  text-shadow: 0 0 15px currentColor;
  animation: spark-twinkle 2.6s ease-in-out infinite;
}

.scene-spark--one {
  top: 72px;
  left: 75px;
  font-size: 1.4rem;
}

.scene-spark--two {
  top: 124px;
  right: 43px;
  color: var(--pink);
  animation-delay: -1.1s;
}

.scene-spark--three {
  right: 66px;
  bottom: 120px;
  color: var(--yellow);
  font-size: 1.35rem;
  animation-delay: -0.5s;
}

.floating-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(27, 29, 63, 0.9);
  box-shadow: 0 15px 30px rgba(3, 4, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.floating-card--code {
  top: 72px;
  right: 60px;
  width: 100px;
  height: 75px;
  padding: 13px;
  border-radius: 15px;
  transform: rotate(5deg);
  animation: card-float 5s ease-in-out infinite;
}

.floating-card--code i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 1px 9px;
  border-radius: 50%;
  background: var(--pink);
}

.floating-card--code i:nth-child(2) {
  background: var(--yellow);
}

.floating-card--code i:nth-child(3) {
  background: var(--mint);
}

.floating-card--code span {
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 7px;
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.42);
}

.floating-card--code span:nth-of-type(2) {
  width: 42px;
  background: rgba(103, 232, 249, 0.4);
}

.floating-card--code span:nth-of-type(3) {
  width: 50px;
}

.floating-card--check {
  top: 171px;
  left: 55px;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--mint);
  font-weight: 900;
  transform: rotate(-9deg);
  animation: card-float 4.3s ease-in-out -1.2s infinite;
}

.floating-card--check span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 231, 199, 0.12);
}

.robot {
  position: absolute;
  z-index: 4;
  width: 150px;
  height: 245px;
  transform-origin: 50% 100%;
}

.robot--main {
  left: 116px;
  bottom: 74px;
  animation: robot-bob 3.8s ease-in-out infinite;
}

.robot--helper {
  right: 74px;
  bottom: 70px;
  width: 118px;
  height: 200px;
  transform: scale(0.84);
  animation: robot-bob-small 4.2s ease-in-out -1.4s infinite;
}

.robot__antenna {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 28px;
  border-radius: 5px;
  background: #7d7ea3;
  transform: translateX(-50%);
}

.robot__antenna span {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #312e58;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  transform: translateX(-50%);
  animation: antenna-blink 1.8s ease-in-out infinite;
}

.robot__helmet {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: 50%;
  width: 105px;
  height: 48px;
  border: 3px solid #2c2c55;
  border-bottom: 0;
  border-radius: 58px 58px 10px 10px;
  background: linear-gradient(145deg, #ffd98d, #ffbd72);
  box-shadow: inset 10px 5px 0 rgba(255, 255, 255, 0.18), 0 7px 0 #d9965e;
  transform: translateX(-50%);
}

.robot__helmet::after {
  position: absolute;
  right: -9px;
  bottom: -7px;
  left: -9px;
  height: 12px;
  content: "";
  border: 3px solid #2c2c55;
  border-radius: 8px;
  background: #ffc679;
}

.robot__helmet-light {
  position: absolute;
  top: 12px;
  right: 23px;
  width: 10px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
  transform: rotate(28deg);
}

.robot__head {
  position: absolute;
  z-index: 3;
  top: 55px;
  left: 50%;
  width: 116px;
  height: 87px;
  border: 4px solid #2b2b54;
  border-radius: 29px;
  background: linear-gradient(145deg, #e9ebff, #aeb4dc);
  box-shadow: inset 0 -8px 0 rgba(76, 71, 131, 0.12), 0 10px 22px rgba(4, 5, 22, 0.3);
  transform: translateX(-50%);
}

.robot__ear {
  position: absolute;
  top: 28px;
  width: 13px;
  height: 31px;
  border: 3px solid #2b2b54;
  background: #858bb9;
}

.robot__ear--left {
  left: -13px;
  border-radius: 8px 2px 2px 8px;
}

.robot__ear--right {
  right: -13px;
  border-radius: 2px 8px 8px 2px;
}

.robot__face {
  position: absolute;
  inset: 15px 12px;
  border: 3px solid #36365f;
  border-radius: 18px;
  background: linear-gradient(160deg, #24264c, #171832);
  overflow: hidden;
}

.robot__face::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 38%);
}

.robot__eye {
  position: absolute;
  z-index: 1;
  top: 17px;
  width: 11px;
  height: 15px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: eye-blink 4.6s ease-in-out infinite;
}

.robot__eye--left {
  left: 23px;
}

.robot__eye--right {
  right: 23px;
}

.robot__blush {
  position: absolute;
  top: 37px;
  width: 11px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 166, 202, 0.8);
  filter: blur(1px);
}

.robot__blush--left {
  left: 12px;
}

.robot__blush--right {
  right: 12px;
}

.robot__smile {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 22px;
  height: 9px;
  border-bottom: 3px solid #b7fcf4;
  border-radius: 0 0 20px 20px;
  transform: translateX(-50%);
}

.robot__body {
  position: absolute;
  z-index: 2;
  top: 139px;
  left: 50%;
  width: 92px;
  height: 72px;
  border: 4px solid #2b2b54;
  border-radius: 18px 18px 25px 25px;
  background: linear-gradient(145deg, #b9bef0, #7e84bd);
  box-shadow: inset 0 -8px 0 rgba(49, 45, 97, 0.16);
  transform: translateX(-50%);
}

.robot__chest {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 51px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 2px solid #4b4b7a;
  border-radius: 10px;
  background: #676da1;
  transform: translateX(-50%);
}

.robot__chest span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 7px rgba(110, 231, 199, 0.7);
}

.robot__chest span:nth-child(2) {
  background: var(--yellow);
  box-shadow: 0 0 7px rgba(255, 215, 131, 0.7);
}

.robot__chest span:nth-child(3) {
  background: var(--pink);
  box-shadow: 0 0 7px rgba(240, 166, 202, 0.7);
}

.robot__arm {
  position: absolute;
  z-index: 1;
  top: 151px;
  width: 23px;
  height: 58px;
  border: 4px solid #2b2b54;
  border-radius: 14px;
  background: #9399cc;
  transform-origin: 50% 10px;
}

.robot__arm--left {
  left: 16px;
  transform: rotate(20deg);
}

.robot__arm--right {
  right: 13px;
  transform: rotate(-36deg);
  animation: hammer-work 1.6s ease-in-out infinite;
}

.robot__hand {
  position: absolute;
  bottom: -11px;
  left: 50%;
  width: 28px;
  height: 23px;
  border: 4px solid #2b2b54;
  border-radius: 10px;
  background: #bec3e8;
  transform: translateX(-50%);
}

.hammer {
  position: absolute;
  right: -15px;
  bottom: -42px;
  width: 25px;
  height: 65px;
  transform: rotate(12deg);
}

.hammer__head {
  position: absolute;
  top: 0;
  left: -11px;
  width: 47px;
  height: 20px;
  border: 4px solid #2b2b54;
  border-radius: 7px;
  background: linear-gradient(#aeb6d5, #727aa5);
}

.hammer__handle {
  position: absolute;
  top: 16px;
  left: 8px;
  width: 10px;
  height: 48px;
  border: 3px solid #2b2b54;
  border-radius: 2px 2px 6px 6px;
  background: #ffc779;
}

.robot__leg {
  position: absolute;
  z-index: 1;
  top: 202px;
  width: 27px;
  height: 36px;
  border: 4px solid #2b2b54;
  border-radius: 8px 8px 11px 11px;
  background: #858bbd;
}

.robot__leg--left {
  left: 43px;
}

.robot__leg--right {
  right: 43px;
}

.robot__leg span {
  position: absolute;
  right: -6px;
  bottom: -7px;
  left: -6px;
  height: 13px;
  border: 4px solid #2b2b54;
  border-radius: 9px 9px 5px 5px;
  background: #c7caeb;
}

.robot--helper .robot__helmet {
  background: linear-gradient(145deg, #aeeceb, #65cacd);
  box-shadow: inset 10px 5px 0 rgba(255, 255, 255, 0.18), 0 7px 0 #4b9ca6;
}

.robot--helper .robot__helmet::after {
  background: #72d7d8;
}

.robot--helper .robot__eye {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation-delay: -1.3s;
}

.robot--helper .robot__arm--left {
  transform: rotate(-25deg);
}

.robot--helper .robot__arm--right {
  transform: rotate(25deg);
  animation: none;
}

.blueprint {
  position: absolute;
  z-index: 4;
  top: 184px;
  left: 50%;
  width: 89px;
  height: 52px;
  padding: 12px 13px;
  border: 3px solid #2b2b54;
  border-radius: 8px;
  background: #637be0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) rotate(2deg);
}

.blueprint::before,
.blueprint::after {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 52px;
  content: "";
  border: 3px solid #2b2b54;
  border-radius: 6px;
  background: #8da3f5;
}

.blueprint::before {
  left: -7px;
}

.blueprint::after {
  right: -7px;
}

.blueprint span {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
}

.blueprint span:nth-child(2) {
  width: 39px;
}

.blueprint span:nth-child(3) {
  width: 46px;
}

.platform {
  position: absolute;
  right: 38px;
  bottom: 48px;
  left: 36px;
  z-index: 3;
  height: 43px;
  border: 3px solid #292a51;
  border-radius: 50%;
  background: linear-gradient(180deg, #595f95 0%, #393d69 52%, #242544 100%);
  box-shadow: 0 20px 30px rgba(3, 4, 17, 0.34), 0 0 45px rgba(124, 92, 255, 0.11);
}

.platform::before {
  position: absolute;
  right: 26px;
  bottom: -9px;
  left: 26px;
  height: 14px;
  z-index: -1;
  content: "";
  border: 3px solid #292a51;
  border-radius: 0 0 50% 50%;
  background: #252746;
}

.platform__line {
  position: absolute;
  top: 12px;
  right: 24px;
  left: 24px;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.55), transparent);
}

.platform__light {
  position: absolute;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: platform-light 2.1s ease-in-out infinite;
}

.platform__light--one {
  left: 37%;
}

.platform__light--two {
  left: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  animation-delay: 350ms;
}

.platform__light--three {
  left: 63%;
  animation-delay: 700ms;
}

.footer {
  min-height: 24px;
  justify-content: center;
  gap: 12px;
  color: #777990;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.footer__separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #555872;
}

.is-paused *,
.is-paused *::before,
.is-paused *::after {
  animation-play-state: paused !important;
}

@keyframes aurora-drift {
  to { transform: translate3d(80px, 50px, 0) scale(1.12); }
}

@keyframes aurora-pulse {
  50% { transform: scale(1.35); opacity: 0.14; }
}

@keyframes particle-rise {
  0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  12% { opacity: 0.55; }
  88% { opacity: 0.25; }
  100% { transform: translate3d(var(--drift), -110vh, 0) scale(1.1); opacity: 0; }
}

@keyframes status-pulse {
  50% { transform: scale(0.76); opacity: 0.65; }
}

@keyframes dot-bounce {
  0%, 65%, 100% { transform: translateY(0); opacity: 0.4; }
  35% { transform: translateY(-3px); opacity: 1; }
}

@keyframes orbit-spin {
  to { transform: rotate(346deg); }
}

@keyframes spark-twinkle {
  0%, 100% { transform: scale(0.7) rotate(0); opacity: 0.45; }
  50% { transform: scale(1.15) rotate(20deg); opacity: 1; }
}

@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes robot-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes robot-bob-small {
  0%, 100% { transform: scale(0.84) translateY(0) rotate(1deg); }
  50% { transform: scale(0.84) translateY(-8px) rotate(-1deg); }
}

@keyframes antenna-blink {
  50% { background: var(--pink); box-shadow: 0 0 18px var(--pink); }
}

@keyframes eye-blink {
  0%, 44%, 48%, 100% { transform: scaleY(1); }
  46% { transform: scaleY(0.12); }
}

@keyframes hammer-work {
  0%, 100% { transform: rotate(-42deg); }
  50% { transform: rotate(-15deg); }
}

@keyframes platform-light {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(760px, calc(100% - 36px));
    padding-top: 22px;
  }

  .maintenance-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .content-panel {
    padding: 54px 54px 14px;
    text-align: center;
    align-items: center;
  }

  .intro {
    max-width: 630px;
  }

  .visual-panel {
    min-height: 460px;
  }

  .construction-scene {
    height: 450px;
    transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(0.9);
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 24px, 520px);
    gap: 16px;
    padding: 16px 0;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .brand__mark::before,
  .brand__mark span::before {
    left: 8px;
    width: 15px;
  }

  .brand__mark::after,
  .brand__mark span::after {
    top: 8px;
    height: 15px;
  }

  .brand__mark::after {
    left: 8px;
  }

  .brand__mark span::after {
    right: 8px;
  }

  .status-pill {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.67rem;
  }

  .status-pill .typing-dots {
    display: none;
  }

  .maintenance-card {
    border-radius: 25px;
  }

  .content-panel {
    padding: 40px 24px 0;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .intro {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .contact-button {
    width: min(100%, 300px);
  }

  .visual-panel {
    min-height: 350px;
    margin-top: 6px;
    overflow: hidden;
  }

  .construction-scene {
    position: absolute;
    top: -45px;
    left: 50%;
    width: 500px;
    transform: translate3d(calc(-50% + var(--scene-x)), var(--scene-y), 0) scale(0.68);
  }

  .footer {
    font-size: 0.64rem;
  }
}

@media (max-width: 390px) {
  .topbar {
    align-items: flex-start;
  }

  .status-pill {
    max-width: 115px;
    line-height: 1.2;
  }

  .visual-panel {
    min-height: 330px;
  }

  .construction-scene {
    top: -55px;
    transform: translate3d(calc(-50% + var(--scene-x)), var(--scene-y), 0) scale(0.62);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

}

@media (prefers-contrast: more) {
  :root {
    --muted: #deddf0;
    --surface-border: rgba(255, 255, 255, 0.34);
  }

  .maintenance-card,
  .status-pill,
  .eyebrow {
    border-width: 2px;
  }
}
