:root {
  color-scheme: dark;
  --bg: #05070c;
  --panel: rgba(10, 14, 23, 0.86);
  --panel-strong: rgba(12, 17, 28, 0.95);
  --text: #f4f7ff;
  --muted: #8791a7;
  --cyan: #40eaff;
  --cyan-soft: rgba(64, 234, 255, 0.15);
  --blue: #5d7cff;
  --purple: #ad5cff;
  --line: rgba(132, 154, 196, 0.2);
  --line-bright: rgba(78, 232, 255, 0.55);
  --danger: #ff6a84;
  --font: "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

#particleCanvas,
.cursor-glow,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particleCanvas {
  z-index: -1;
  width: 100%;
  height: 100%;
}

.cursor-glow {
  z-index: -2;
  width: 360px;
  height: 360px;
  inset: auto;
  border: 1px solid rgba(64, 234, 255, 0.09);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 80px rgba(64, 234, 255, 0.08),
    inset 0 0 80px rgba(93, 124, 255, 0.06);
  transition: opacity 260ms ease;
}

.ambient {
  z-index: -3;
  inset: auto;
  width: 58vw;
  height: 4px;
  opacity: 0.75;
  filter: blur(2px);
}

.ambient-left {
  top: 24%;
  left: -18%;
  background: var(--blue);
  box-shadow: 0 0 76px 34px rgba(58, 99, 255, 0.13);
  transform: rotate(-16deg);
}

.ambient-right {
  right: -20%;
  bottom: 25%;
  background: var(--purple);
  box-shadow: 0 0 78px 38px rgba(173, 92, 255, 0.12);
  transform: rotate(-18deg);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 40px;
}

.site-header {
  width: min(1180px, 100%);
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(151, 171, 208, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(64, 234, 255, 0.12), inset 0 0 18px rgba(64, 234, 255, 0.07);
}
.brand-name {
  font-size: 12px;
  font-weight: 720;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(64, 234, 255, 0.24);
  border-radius: 999px;
  color: #a6b2c7;
  background: rgba(5, 11, 18, 0.72);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  place-content: center;
  padding: 76px 0 48px;
}

.redirect-card {
  position: relative;
  width: min(880px, calc(100vw - 40px));
  min-height: 380px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.015),
    inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  animation: cardEnter 760ms cubic-bezier(.2, .86, .25, 1) both;
}

.redirect-card::before,
.redirect-card::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  pointer-events: none;
}

.redirect-card::before {
  top: 13px;
  left: 13px;
  border-top: 1px solid rgba(64, 234, 255, 0.55);
  border-left: 1px solid rgba(64, 234, 255, 0.55);
}

.redirect-card::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid rgba(173, 92, 255, 0.44);
  border-bottom: 1px solid rgba(173, 92, 255, 0.44);
}

.visual-zone {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(137, 160, 205, 0.12);
}

.visual-zone::before,
.visual-zone::after {
  content: "";
  position: absolute;
  background: rgba(64, 234, 255, 0.12);
}

.visual-zone::before {
  width: 1px;
  height: 74%;
}

.visual-zone::after {
  width: 74%;
  height: 1px;
}

.orbit,
.core,
.orbit-node {
  position: absolute;
  border-radius: 50%;
}

.orbit {
  border: 1px solid rgba(64, 234, 255, 0.22);
  box-shadow: inset 0 0 34px rgba(64, 234, 255, 0.03), 0 0 30px rgba(64, 234, 255, 0.025);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit::before {
  inset: -2px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  filter: drop-shadow(0 0 8px var(--cyan));
}

.orbit::after {
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 12px 3px var(--cyan);
  transform: translate(-50%, -50%);
}

.orbit-outer {
  width: 188px;
  height: 188px;
  animation: rotate 7s linear infinite;
}

.orbit-middle {
  width: 144px;
  height: 144px;
  border-style: dashed;
  opacity: 0.68;
  animation: rotateReverse 9s linear infinite;
}

.orbit-middle::before {
  border-top-color: var(--blue);
  filter: drop-shadow(0 0 8px var(--blue));
}

.orbit-inner {
  width: 108px;
  height: 108px;
  border-color: rgba(173, 92, 255, 0.27);
  animation: rotate 4.5s linear infinite;
}

.orbit-inner::before {
  border-top-color: var(--purple);
  filter: drop-shadow(0 0 8px var(--purple));
}

.core {
  width: 66px;
  height: 66px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(64, 234, 255, 0.55);
  background: #0a111c;
  color: var(--cyan);
  box-shadow:
    0 0 34px rgba(64, 234, 255, 0.2),
    inset 0 0 22px rgba(64, 234, 255, 0.08);
  animation: coreFloat 2.2s ease-in-out infinite;
}

.core-icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(64, 234, 255, 0.7));
}

.icon-fallback {
  display: none;
  font-size: 24px;
}

.icon-fallback.small {
  font-size: 16px;
}

.orbit-node {
  width: 7px;
  height: 7px;
  z-index: 2;
  background: var(--cyan);
  box-shadow: 0 0 13px 3px rgba(64, 234, 255, 0.68);
}

.node-a { transform: translate(77px, -60px); }
.node-b { transform: translate(-69px, 74px); background: var(--blue); box-shadow: 0 0 13px 3px rgba(93, 124, 255, 0.58); }
.node-c { transform: translate(91px, 64px); background: var(--purple); box-shadow: 0 0 13px 3px rgba(173, 92, 255, 0.58); }

.copy-zone {
  position: relative;
  z-index: 3;
  padding: 56px 60px 56px 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.subtitle {
  margin: 16px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.progress-track {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: rgba(154, 178, 219, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan), 0 0 25px rgba(93, 124, 255, 0.7);
  transition: width 90ms linear;
}

.progress-shimmer {
  position: absolute;
  top: 0;
  left: -36px;
  width: 32px;
  height: 100%;
  background: #fff;
  opacity: 0.9;
  filter: blur(1px);
  animation: progressScan 1.25s ease-in-out infinite;
}

.countdown-copy {
  margin: 16px 0 22px;
  color: #9da8bb;
  font-size: 13px;
}

#countdown {
  color: var(--text);
  font-family: "Cascadia Code", Consolas, monospace;
  font-weight: 800;
}

.cancel-button {
  min-width: 128px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(150, 170, 206, 0.3);
  border-radius: 8px;
  color: #c5ccda;
  background: rgba(13, 19, 30, 0.72);
  cursor: pointer;
  transition: 180ms ease;
}

.cancel-button svg {
  width: 16px;
  height: 16px;
}

.cancel-button:hover {
  border-color: rgba(255, 106, 132, 0.6);
  color: #fff;
  background: rgba(255, 106, 132, 0.08);
  box-shadow: 0 0 22px rgba(255, 106, 132, 0.08);
  transform: translateY(-1px);
}

.cancel-button:active {
  transform: translateY(0);
}

.cancel-button.cancelled {
  border-color: rgba(255, 106, 132, 0.4);
  color: var(--danger);
}

.info-strip {
  width: min(680px, calc(100vw - 40px));
  min-height: 68px;
  margin: 18px auto 0;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(133, 155, 195, 0.14);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: cardEnter 760ms 140ms cubic-bezier(.2, .86, .25, 1) both;
}

.info-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(64, 234, 255, 0.22);
  border-radius: 8px;
  color: var(--cyan);
}

.info-icon svg {
  width: 16px;
  height: 16px;
}

.info-icon.shield {
  color: #8f9cff;
  border-color: rgba(143, 156, 255, 0.25);
}

.info-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.info-copy strong {
  color: #d9deea;
  font-size: 12px;
  font-weight: 650;
}

.info-copy span {
  overflow: hidden;
  color: #717c91;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-separator {
  width: 1px;
  height: 28px;
  margin: 0 4px;
  background: rgba(133, 155, 195, 0.16);
}

.site-footer {
  width: min(1180px, 100%);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(151, 171, 208, 0.09);
  color: #5d6677;
  font-size: 11px;
}

.site-footer a {
  transition: color 150ms ease;
}

.site-footer a:hover {
  color: #b9c2d3;
}

.footer-divider {
  width: 1px;
  height: 12px;
  background: rgba(151, 171, 208, 0.16);
}

.footer-dot {
  color: #3c4554;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 20;
  max-width: calc(100vw - 32px);
  padding: 11px 16px;
  border: 1px solid rgba(255, 106, 132, 0.28);
  border-radius: 8px;
  color: #f1b6c1;
  background: rgba(19, 10, 16, 0.92);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.is-cancelled .orbit,
body.is-cancelled .core,
body.is-cancelled .status-dot {
  animation-play-state: paused;
}

body.is-cancelled .progress-fill {
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 106, 132, 0.5);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: rotate(-360deg); }
}

@keyframes coreFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes progressScan {
  0% { left: -36px; opacity: 0; }
  20% { opacity: 0.9; }
  80% { opacity: 0.9; }
  100% { left: calc(100% + 36px); opacity: 0; }
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


/* Enhanced motion layer */
.screen-scan {
  position: fixed;
  top: -8px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  pointer-events: none;
  background: rgba(64, 234, 255, 0.48);
  box-shadow:
    0 0 12px 2px rgba(64, 234, 255, 0.22),
    0 28px 52px 10px rgba(64, 234, 255, 0.035);
  animation: screenSweep 7.6s linear infinite;
}

.data-streams {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.data-streams span {
  position: absolute;
  top: -110px;
  left: var(--x);
  width: 1px;
  height: var(--size);
  background: rgba(64, 234, 255, 0.48);
  box-shadow: 0 0 9px rgba(64, 234, 255, 0.32);
  opacity: 0;
  animation: dataFall var(--speed) var(--delay) linear infinite;
}

.data-streams span:nth-child(even) {
  background: rgba(173, 92, 255, 0.48);
  box-shadow: 0 0 9px rgba(173, 92, 255, 0.3);
}

.redirect-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 180ms ease-out, border-color 280ms ease, box-shadow 280ms ease;
}

.redirect-card:hover {
  border-color: rgba(64, 234, 255, 0.3);
  box-shadow:
    0 38px 96px rgba(0, 0, 0, 0.52),
    0 0 38px rgba(64, 234, 255, 0.055),
    inset 0 1px rgba(255, 255, 255, 0.045);
}

.visual-zone,
.copy-zone {
  transform: translateZ(18px);
}

.edge-runner {
  position: absolute;
  z-index: 5;
  width: 88px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px rgba(64, 234, 255, 0.52);
  pointer-events: none;
}

.edge-top {
  top: -1px;
  left: -96px;
  animation: edgeRunTop 4.8s 0.4s ease-in-out infinite;
}

.edge-bottom {
  right: -96px;
  bottom: -1px;
  background: var(--purple);
  box-shadow: 0 0 12px 2px rgba(173, 92, 255, 0.48);
  animation: edgeRunBottom 5.3s 1.1s ease-in-out infinite;
}

.pulse-wave {
  position: absolute;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(64, 234, 255, 0.38);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 18px rgba(64, 234, 255, 0.08);
  animation: signalWave 3.2s ease-out infinite;
}

.wave-two {
  border-color: rgba(93, 124, 255, 0.36);
  animation-delay: 1.05s;
}

.wave-three {
  border-color: rgba(173, 92, 255, 0.34);
  animation-delay: 2.1s;
}

.orbit-tick {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 2px;
  background: rgba(64, 234, 255, 0.78);
  box-shadow: 0 0 8px rgba(64, 234, 255, 0.5);
  animation: tickBlink 1.8s ease-in-out infinite;
}

.tick-1 { transform: translate(-108px, -30px) rotate(14deg); }
.tick-2 { transform: translate(105px, -42px) rotate(-18deg); animation-delay: .45s; }
.tick-3 { transform: translate(-101px, 56px) rotate(-18deg); animation-delay: .9s; }
.tick-4 { transform: translate(111px, 54px) rotate(18deg); animation-delay: 1.35s; }

.telemetry {
  position: absolute;
  color: rgba(136, 168, 200, 0.56);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  animation: telemetryBlink 2.8s steps(1, end) infinite;
}

.telemetry-top { transform: translate(-88px, -121px); }
.telemetry-bottom { transform: translate(71px, 117px); animation-delay: 1.4s; }

#pageTitle {
  animation: titleSignal 4.6s ease-in-out infinite;
}

#countdown.number-pop {
  display: inline-block;
  animation: numberPop 300ms cubic-bezier(.2, .9, .3, 1.4);
}

.core.energy-burst {
  animation: coreBurst 420ms ease-out;
}

.redirect-card.pointer-active .orbit-outer {
  animation-duration: 4.8s;
}

.redirect-card.pointer-active .orbit-middle {
  animation-duration: 6.3s;
}

.redirect-card.pointer-active .core {
  box-shadow:
    0 0 42px rgba(64, 234, 255, 0.28),
    inset 0 0 24px rgba(64, 234, 255, 0.12);
}

@keyframes screenSweep {
  0% { transform: translateY(-12px); opacity: 0; }
  8% { opacity: 0.55; }
  76% { opacity: 0.22; }
  100% { transform: translateY(calc(100vh + 18px)); opacity: 0; }
}

@keyframes dataFall {
  0% { transform: translateY(-120px); opacity: 0; }
  12% { opacity: 0.7; }
  78% { opacity: 0.22; }
  100% { transform: translateY(calc(100vh + 180px)); opacity: 0; }
}

@keyframes edgeRunTop {
  0%, 18% { transform: translateX(0); opacity: 0; }
  28% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { transform: translateX(1060px); opacity: 0; }
}

@keyframes edgeRunBottom {
  0%, 18% { transform: translateX(0); opacity: 0; }
  28% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { transform: translateX(-1060px); opacity: 0; }
}

@keyframes signalWave {
  0% { transform: scale(.75); opacity: 0; }
  18% { opacity: .65; }
  100% { transform: scale(3.15); opacity: 0; }
}

@keyframes tickBlink {
  0%, 100% { opacity: .22; }
  50% { opacity: 1; }
}

@keyframes telemetryBlink {
  0%, 52%, 100% { opacity: .42; }
  53%, 57% { opacity: .95; }
  58%, 62% { opacity: .12; }
}

@keyframes titleSignal {
  0%, 91%, 100% { text-shadow: none; transform: translateX(0); }
  92% { text-shadow: 2px 0 rgba(64, 234, 255, .75), -2px 0 rgba(173, 92, 255, .65); transform: translateX(1px); }
  94% { text-shadow: -1px 0 rgba(64, 234, 255, .65), 2px 0 rgba(173, 92, 255, .55); transform: translateX(-1px); }
  96% { text-shadow: 1px 0 rgba(64, 234, 255, .35); transform: translateX(0); }
}

@keyframes numberPop {
  0% { transform: scale(.72); opacity: .35; }
  70% { transform: scale(1.28); color: var(--cyan); text-shadow: 0 0 12px rgba(64, 234, 255, .8); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes coreBurst {
  0% { transform: scale(1); }
  45% { transform: scale(1.16); box-shadow: 0 0 54px rgba(64, 234, 255, .48), inset 0 0 28px rgba(64, 234, 255, .2); }
  100% { transform: scale(1); }
}

@media (max-width: 740px) {
  .page-shell { padding: 0 18px; }
  .site-header { height: 68px; }
  .brand-name { display: none; }
  .content { padding: 44px 0 34px; }

  .redirect-card {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .visual-zone {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(137, 160, 205, 0.12);
  }

  .orbit-outer { width: 164px; height: 164px; }
  .orbit-middle { width: 126px; height: 126px; }
  .orbit-inner { width: 94px; height: 94px; }
  .node-a { transform: translate(67px, -51px); }
  .node-b { transform: translate(-59px, 62px); }
  .node-c { transform: translate(77px, 53px); }

  .copy-zone {
    padding: 38px 28px 42px;
    text-align: center;
  }

  h1 { margin-inline: auto; font-size: 32px; }
  .subtitle { margin-bottom: 26px; }

  .info-strip {
    width: 100%;
    grid-template-columns: auto 1fr;
    padding: 14px;
  }

  .info-separator { display: none; }
  .site-footer { flex-wrap: wrap; padding: 18px 0; }
}


/* Bright light-tech palette */
:root {
  color-scheme: light;
  --bg: #eef7ff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --text: #10243e;
  --muted: #647a96;
  --cyan: #009dcc;
  --cyan-soft: rgba(0, 157, 204, 0.12);
  --blue: #3a6df0;
  --purple: #6859dc;
  --line: rgba(64, 101, 147, 0.2);
  --line-bright: rgba(0, 157, 204, 0.48);
  --danger: #d94867;
}

body {
  color: var(--text);
  background: var(--bg);
}

.cursor-glow {
  border-color: rgba(0, 157, 204, 0.11);
  box-shadow:
    0 0 80px rgba(0, 157, 204, 0.1),
    inset 0 0 80px rgba(58, 109, 240, 0.065);
}

.ambient-left {
  background: #4c8dff;
  box-shadow: 0 0 82px 38px rgba(76, 141, 255, 0.16);
}

.ambient-right {
  background: #8a73ee;
  box-shadow: 0 0 84px 38px rgba(138, 115, 238, 0.14);
}

.site-header {
  border-bottom-color: rgba(59, 92, 133, 0.13);
}

.brand-mark {
  color: #007ea8;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 8px 24px rgba(50, 103, 164, 0.12), inset 0 0 18px rgba(0, 157, 204, 0.055);
}

.brand-name {
  color: #213a59;
}

.status-chip {
  color: #4c6684;
  border-color: rgba(0, 157, 204, 0.25);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 22px rgba(42, 92, 145, 0.08);
}

.status-dot {
  background: #00a56f;
  box-shadow: 0 0 11px rgba(0, 165, 111, 0.55);
}

.redirect-card {
  border-color: rgba(61, 98, 143, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 32px 80px rgba(38, 82, 132, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 1px rgba(255, 255, 255, 0.92);
}

.redirect-card:hover {
  border-color: rgba(0, 157, 204, 0.34);
  box-shadow:
    0 38px 96px rgba(38, 82, 132, 0.2),
    0 0 38px rgba(0, 157, 204, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.96);
}

.redirect-card::before {
  border-top-color: rgba(0, 157, 204, 0.58);
  border-left-color: rgba(0, 157, 204, 0.58);
}

.redirect-card::after {
  border-right-color: rgba(104, 89, 220, 0.42);
  border-bottom-color: rgba(104, 89, 220, 0.42);
}

.visual-zone {
  border-right-color: rgba(66, 103, 147, 0.13);
}

.visual-zone::before,
.visual-zone::after {
  background: rgba(0, 157, 204, 0.12);
}

.orbit {
  border-color: rgba(0, 157, 204, 0.25);
  box-shadow: inset 0 0 34px rgba(0, 157, 204, 0.045), 0 0 30px rgba(58, 109, 240, 0.04);
}

.orbit-middle {
  border-color: rgba(58, 109, 240, 0.25);
}

.orbit-inner {
  border-color: rgba(104, 89, 220, 0.3);
}

.core {
  border-color: rgba(0, 157, 204, 0.5);
  background: #ffffff;
  color: #008eb9;
  box-shadow:
    0 12px 34px rgba(0, 137, 181, 0.17),
    inset 0 0 22px rgba(0, 157, 204, 0.07);
}

.eyebrow {
  color: #0088b2;
}

.subtitle,
.countdown-copy {
  color: #647a96;
}

.progress-track {
  background: rgba(55, 91, 136, 0.11);
  box-shadow: inset 0 0 0 1px rgba(51, 89, 136, 0.04);
}

.progress-fill {
  background: #00a4d4;
  box-shadow: 0 0 13px rgba(0, 164, 212, 0.46), 0 0 25px rgba(58, 109, 240, 0.25);
}

.cancel-button {
  color: #435c79;
  border-color: rgba(61, 98, 143, 0.26);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 20px rgba(42, 82, 127, 0.07);
}

.cancel-button:hover {
  color: #b93554;
  border-color: rgba(217, 72, 103, 0.48);
  background: rgba(255, 244, 247, 0.92);
  box-shadow: 0 9px 24px rgba(217, 72, 103, 0.1);
}

.info-strip {
  border-color: rgba(61, 98, 143, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(38, 82, 132, 0.12);
}

.info-icon {
  color: #008db8;
  border-color: rgba(0, 157, 204, 0.24);
  background: rgba(235, 250, 255, 0.62);
}

.info-icon.shield {
  color: #5d5bd6;
  border-color: rgba(93, 91, 214, 0.23);
  background: rgba(245, 243, 255, 0.7);
}

.info-copy strong {
  color: #263f5d;
}

.info-copy span {
  color: #70839a;
}

.info-separator,
.footer-divider {
  background: rgba(61, 98, 143, 0.16);
}

.site-footer {
  color: #778ba2;
  border-top-color: rgba(61, 98, 143, 0.1);
}

.site-footer a:hover {
  color: #24496f;
}

.footer-dot {
  color: #9aabc0;
}

.toast {
  color: #a93250;
  border-color: rgba(217, 72, 103, 0.25);
  background: rgba(255, 247, 249, 0.96);
  box-shadow: 0 14px 36px rgba(139, 46, 70, 0.12);
}

.screen-scan {
  background: rgba(0, 157, 204, 0.35);
  box-shadow:
    0 0 12px 2px rgba(0, 157, 204, 0.16),
    0 28px 52px 10px rgba(0, 157, 204, 0.025);
}

.data-streams span {
  background: rgba(0, 157, 204, 0.4);
  box-shadow: 0 0 9px rgba(0, 157, 204, 0.22);
}

.data-streams span:nth-child(even) {
  background: rgba(104, 89, 220, 0.36);
  box-shadow: 0 0 9px rgba(104, 89, 220, 0.2);
}

.telemetry {
  color: rgba(48, 91, 137, 0.58);
}

body.is-cancelled .progress-fill {
  background: var(--danger);
  box-shadow: 0 0 12px rgba(217, 72, 103, 0.36);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}


