/* Aurum Vault — white premium transit terminal */
.hero-panel {
  perspective: 1800px;
  display: flex;
  justify-content: center;
}

.vault {
  --vault-bg: #ffffff;
  --vault-surface: #faf9f7;
  --vault-line: rgba(196, 160, 53, 0.22);
  --vault-gold: #c4a035;
  --vault-gold-hot: #dbb85a;
  --vault-gold-deep: #9a7c22;
  --vault-ink: #1a1a1a;
  --vault-muted: #6b6760;
  position: relative;
  width: min(440px, 100%);
  padding: 3px;
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(48px) rotateX(12deg) scale(0.92);
  box-shadow:
    0 28px 56px rgba(26, 26, 26, 0.1),
    0 0 0 1px rgba(196, 160, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.vault::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--vault-angle, 0deg),
    transparent 0deg,
    rgba(196, 160, 53, 0.12) 50deg,
    var(--vault-gold) 130deg,
    var(--vault-gold-hot) 210deg,
    rgba(196, 160, 53, 0.18) 290deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 6;
}

.vault::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 21px;
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    #fdfcfa 38%,
    #f7f6f4 72%,
    #faf8f5 100%
  );
  z-index: 0;
}

.vault.is-on {
  animation: vault-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vault.is-live {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
  animation: vault-float 8s ease-in-out infinite;
}

/* Keep entry state when live loops replace is-on animations (Safari/mobile) */
.vault.is-live .vault-head,
.vault.is-live .vault-gauge-wrap,
.vault.is-live .corridor-lane,
.vault.is-live .lane-stream,
.vault.is-live .vault-ticker,
.vault.is-live .vault-metric,
.vault.is-live .vault-bar {
  opacity: 1;
  transform: none;
}

.vault.is-live::before {
  animation: vault-ring-spin 5s linear infinite;
}

@property --vault-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes vault-ring-spin {
  to {
    --vault-angle: 360deg;
  }
}

@keyframes vault-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes vault-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(1.5deg) rotateY(-0.8deg);
  }
}

.vault-canvas {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 21px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.vault.is-on .vault-canvas {
  animation: canvas-in 1s 0.4s ease forwards;
}

@keyframes canvas-in {
  to {
    opacity: 0.7;
  }
}

.vault.is-live .vault-canvas {
  opacity: 0.85;
}

.vault-aura {
  position: absolute;
  inset: 3px;
  border-radius: 21px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 12% 0%, rgba(219, 184, 90, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 45% at 98% 95%, rgba(196, 160, 53, 0.1), transparent 50%);
  opacity: 0;
}

.vault.is-on .vault-aura {
  animation: aura-in 1s 0.15s ease forwards;
}

@keyframes aura-in {
  to {
    opacity: 1;
  }
}

.vault.is-live .vault-aura {
  opacity: 1;
  animation: aura-drift 6s ease-in-out infinite;
}

@keyframes aura-drift {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

.vault-grid {
  position: absolute;
  inset: 3px;
  border-radius: 21px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(196, 160, 53, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 160, 53, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 15%, transparent 78%);
}

.vault.is-live .vault-grid {
  animation: grid-slide 18s linear infinite;
}

@keyframes grid-slide {
  to {
    background-position: 26px 26px;
  }
}

.vault-shimmer {
  position: absolute;
  inset: 3px;
  border-radius: 21px;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.vault.is-live .vault-shimmer {
  opacity: 1;
}

.vault-shimmer::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 45%;
  height: 160%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(219, 184, 90, 0.2) 55%,
    transparent 100%
  );
  transform: rotate(12deg);
  animation: card-shimmer 4.5s ease-in-out infinite;
}

@keyframes card-shimmer {
  0% {
    transform: translateX(0) rotate(12deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    transform: translateX(320%) rotate(12deg);
    opacity: 0.8;
  }
  100% {
    transform: translateX(320%) rotate(12deg);
    opacity: 0;
  }
}

.vault-scan {
  position: absolute;
  inset: 3px;
  border-radius: 21px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(196, 160, 53, 0.05) 48%,
    transparent 52%
  );
  transform: translateY(-110%);
  opacity: 0;
}

.vault.is-live .vault-scan {
  animation: soft-scan 5s ease-in-out infinite;
}

@keyframes soft-scan {
  0% {
    opacity: 0;
    transform: translateY(-110%);
  }
  12% {
    opacity: 0.9;
  }
  48% {
    opacity: 0.5;
    transform: translateY(110%);
  }
  100% {
    opacity: 0;
    transform: translateY(110%);
  }
}

.vault-ring {
  position: absolute;
  top: -42%;
  left: 50%;
  width: 130%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(196, 160, 53, 0.12);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.vault.is-live .vault-ring {
  animation: ring-breathe 3.5s ease-in-out infinite;
}

@keyframes ring-breathe {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1.04);
  }
}

.vault-head,
.vault-body,
.vault-ticker,
.vault-foot {
  position: relative;
  z-index: 4;
}

.vault-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px 12px;
  opacity: 0;
}

.vault.is-on .vault-head {
  animation: vault-rise 0.55s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vault-gold-deep);
}

.vault-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vault-gold);
  box-shadow: 0 0 10px rgba(196, 160, 53, 0.65);
}

.vault.is-live .vault-led {
  animation: led-pulse 1.2s ease-in-out infinite;
}

@keyframes led-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(196, 160, 53, 0.65);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.82);
    box-shadow: 0 0 4px rgba(196, 160, 53, 0.3);
  }
}

.vault.is-live .vault-status span:last-child {
  animation: status-glow 3s ease-in-out infinite;
}

@keyframes status-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.vault-id {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vault-muted);
  font-variant-numeric: tabular-nums;
}

.vault.is-live .vault-id {
  animation: id-flicker 4s steps(1) infinite;
}

@keyframes id-flicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }
  93% {
    opacity: 0.7;
  }
  95% {
    opacity: 1;
  }
}

.vault-body {
  padding: 0 22px 8px;
}

.vault-gauge-wrap {
  position: relative;
  width: min(280px, 100%);
  margin: 0 auto 18px;
  opacity: 0;
  transform: scale(0.92);
}

.vault.is-on .vault-gauge-wrap {
  animation: gauge-pop 0.7s 0.4s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
}

@keyframes gauge-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vault-gauge {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.gauge-track {
  stroke: rgba(26, 26, 26, 0.07);
  stroke-width: 6;
  stroke-linecap: round;
}

.gauge-fill {
  stroke: url(#vaultArc);
  stroke-width: 6;
  stroke-linecap: round;
  filter: url(#vaultGlow);
  stroke-dasharray: 226.195;
  stroke-dashoffset: 226.195;
}

.vault.is-on .gauge-fill {
  animation: gauge-draw 1.45s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault.is-live .gauge-fill {
  stroke-dashoffset: var(--gauge-offset, 72.382);
  animation: gauge-pulse 2.8s ease-in-out infinite;
}

@keyframes gauge-draw {
  to {
    stroke-dashoffset: 72.382;
  }
}

@keyframes gauge-pulse {
  0%,
  100% {
    filter: url(#vaultGlow) drop-shadow(0 0 4px rgba(196, 160, 53, 0.25));
  }
  50% {
    filter: url(#vaultGlow) drop-shadow(0 0 14px rgba(219, 184, 90, 0.55));
  }
}

.vault-gauge-hub {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  text-align: center;
}

.vault-pct {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--vault-ink);
  font-variant-numeric: tabular-nums;
}

.vault.is-live .vault-pct {
  animation: pct-glow 2.8s ease-in-out infinite;
}

@keyframes pct-glow {
  0%,
  100% {
    transform: scale(1);
    text-shadow: none;
  }
  50% {
    transform: scale(1.02);
    text-shadow: 0 4px 24px rgba(196, 160, 53, 0.28);
  }
}

.vault-phase {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vault-gold-deep);
}

.vault.is-live .vault-phase {
  animation: phase-beat 2.4s ease-in-out infinite;
}

@keyframes phase-beat {
  0%,
  100% {
    letter-spacing: 0.14em;
    opacity: 1;
  }
  50% {
    letter-spacing: 0.2em;
    opacity: 0.75;
  }
}

.vault-corridor {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  padding: 14px 4px 6px;
}

.corridor-lane,
.lane-stream {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
}

.vault.is-on .corridor-lane:nth-child(1) {
  animation: lane-in 0.5s 1.05s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.vault.is-on .lane-stream:nth-child(2) {
  animation: lane-in 0.45s 1.18s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.vault.is-on .corridor-lane:nth-child(3) {
  animation: lane-in 0.5s 1.3s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.vault.is-on .lane-stream:nth-child(4) {
  animation: lane-in 0.45s 1.42s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.vault.is-on .corridor-lane:nth-child(5) {
  animation: lane-in 0.5s 1.54s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}

@keyframes lane-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.corridor-lane {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.lane-code {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--vault-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--vault-line);
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}

.vault.is-live .corridor-lane:not(.is-hub) .lane-code {
  animation: lane-float 4s ease-in-out infinite;
}

.vault.is-live .corridor-lane:nth-child(1) .lane-code {
  animation-delay: 0s;
}
.vault.is-live .corridor-lane:nth-child(5) .lane-code {
  animation-delay: 0.8s;
}

@keyframes lane-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.corridor-lane.is-hub .lane-code {
  color: #fff;
  background: linear-gradient(135deg, var(--vault-gold-deep), var(--vault-gold-hot));
  border-color: rgba(219, 184, 90, 0.45);
  box-shadow: 0 4px 18px rgba(196, 160, 53, 0.35);
}

.vault.is-live .corridor-lane.is-hub .lane-code {
  animation: hub-glow 2.2s ease-in-out infinite;
}

@keyframes hub-glow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(196, 160, 53, 0.28);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 24px rgba(219, 184, 90, 0.5);
    transform: scale(1.04);
  }
}

.lane-name {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--vault-muted);
}

.lane-stream {
  position: relative;
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(26, 26, 26, 0.06);
  overflow: visible;
}

.stream-core {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 53, 0.45), transparent);
  opacity: 0;
}

.vault.is-live .stream-core {
  opacity: 1;
  animation: stream-core 1.8s ease-in-out infinite;
}

@keyframes stream-core {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.stream-pkt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--vault-gold-hot);
  box-shadow: 0 0 10px rgba(196, 160, 53, 0.7);
  opacity: 0;
}

.vault.is-live .stream-pkt {
  animation: pkt-fly 1.5s linear infinite;
}

.vault.is-live .stream-pkt.s2 {
  animation-delay: 0.45s;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
}

.vault.is-live .stream-pkt.s3 {
  animation-delay: 0.95s;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background: var(--vault-gold);
}

@keyframes pkt-fly {
  0% {
    opacity: 0;
    transform: translateX(0) scale(0.4);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(28px) scale(1.1);
  }
}

.vault-ticker {
  margin: 4px 22px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(196, 160, 53, 0.06);
  border: 1px solid rgba(196, 160, 53, 0.16);
  overflow: hidden;
  opacity: 0;
}

.vault.is-on .vault-ticker {
  animation: vault-rise 0.5s 1.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault.is-live .vault-ticker {
  opacity: 1;
  transform: none;
  animation: ticker-border 3s ease-in-out infinite;
}

@keyframes ticker-border {
  0%,
  100% {
    border-color: rgba(196, 160, 53, 0.16);
    box-shadow: none;
  }
  50% {
    border-color: rgba(196, 160, 53, 0.35);
    box-shadow: 0 0 20px rgba(196, 160, 53, 0.1);
  }
}

.ticker-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 1.4em;
  position: relative;
}

.ticker-lines li {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--vault-muted);
  opacity: 0;
  transform: translateY(8px);
}

.ticker-lines li.is-active {
  opacity: 1;
  transform: none;
  color: var(--vault-ink);
}

.vault.is-live .ticker-lines li.is-active {
  animation: ticker-show 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ticker-show {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.t-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vault-gold);
  flex-shrink: 0;
}

.vault.is-live .ticker-lines li.is-active .t-dot {
  animation: dot-beat 1.2s ease-in-out infinite;
}

@keyframes dot-beat {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(196, 160, 53, 0.5);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 12px rgba(196, 160, 53, 0.85);
  }
}

.vault-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  padding: 18px 22px 22px;
}

.vault-metric {
  opacity: 0;
  transform: translateY(12px);
}

.vault.is-on .vault-metric:first-of-type {
  animation: vault-rise 0.5s 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault.is-on .vault-metric.is-right {
  animation: vault-rise 0.5s 2.12s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault.is-on .vault-bar {
  animation: vault-rise 0.5s 2.24s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault-metric small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vault-muted);
  margin-bottom: 4px;
}

.vault-metric strong {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vault-ink);
  font-variant-numeric: tabular-nums;
}

.vault-metric.is-right {
  text-align: right;
}

.vault-metric em {
  font-style: normal;
  font-size: 0.82em;
  font-weight: 600;
  color: var(--vault-muted);
}

.vault.is-live .vault-metric.is-right strong {
  animation: eta-pulse 3.5s ease-in-out infinite;
}

@keyframes eta-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.vault-amount .amt-ink {
  color: var(--vault-ink);
}

.vault-amount .amt-gold {
  background: linear-gradient(120deg, var(--vault-gold-deep), var(--vault-gold-hot), var(--vault-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vault.is-live .vault-amount .amt-gold {
  animation: gold-flow 2.2s linear infinite;
}

@keyframes gold-flow {
  to {
    background-position: 200% center;
  }
}

.vault-bar {
  grid-column: 1 / -1;
  height: 5px;
  border-radius: 99px;
  background: rgba(26, 26, 26, 0.06);
  overflow: hidden;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
}

.vault-bar-fill {
  position: relative;
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vault-gold-deep), var(--vault-gold), var(--vault-gold-hot));
  box-shadow: 0 0 12px rgba(196, 160, 53, 0.35);
  overflow: hidden;
}

.vault.is-on .vault-bar-fill {
  animation: bar-grow 1.1s 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vault.is-live .vault-bar-fill {
  width: var(--bar-progress, 68%);
}

@keyframes bar-grow {
  to {
    width: 68%;
  }
}

.vault.is-live .vault-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: bar-shine 2s ease-in-out infinite;
}

@keyframes bar-shine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}

@keyframes vault-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/*
 * Мобильные: только входная сцена (как на ПК), без бесконечных декоративных циклов
 */
@media (pointer: coarse) {
  .vault.is-live {
    animation: none;
    transform: translateY(0) rotateX(0) scale(1);
  }

  .vault.is-live::before {
    animation: none;
  }

  .vault-canvas,
  .vault-shimmer,
  .vault-scan,
  .vault-ring {
    display: none !important;
  }

  .vault.is-live .vault-aura {
    opacity: 1;
    animation: none;
  }

  .vault.is-live .vault-grid {
    animation: none;
  }

  .vault.is-live .vault-shimmer::after,
  .vault.is-live .gauge-fill,
  .vault.is-live .vault-pct,
  .vault.is-live .vault-phase,
  .vault.is-live .vault-led,
  .vault.is-live .vault-status span:last-child,
  .vault.is-live .vault-id,
  .vault.is-live .corridor-lane .lane-code,
  .vault.is-live .stream-core,
  .vault.is-live .stream-pkt,
  .vault.is-live .vault-ticker,
  .vault.is-live .ticker-lines li.is-active,
  .vault.is-live .ticker-lines li.is-active .t-dot,
  .vault.is-live .vault-metric.is-right strong,
  .vault.is-live .vault-amount .amt-gold,
  .vault.is-live .vault-bar-fill::after {
    animation: none !important;
  }

  .vault.is-live .vault-ticker {
    opacity: 1;
    transform: none;
  }

  .vault.is-live .gauge-fill {
    animation: none !important;
  }

  .vault.is-live .stream-pkt {
    opacity: 0;
  }
}

@media (max-width: 520px) {
  .vault-pct {
    font-size: 2rem;
  }

  .lane-code {
    min-width: 38px;
    font-size: 0.62rem;
  }

  .lane-stream {
    width: 18px;
  }

  @keyframes pkt-fly {
    100% {
      transform: translateX(18px) scale(1.1);
    }
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .vault {
    opacity: 1;
    transform: none;
  }

  .vault.is-on .vault-head,
  .vault.is-on .vault-gauge-wrap,
  .vault.is-on .corridor-lane,
  .vault.is-on .lane-stream,
  .vault.is-on .vault-ticker,
  .vault.is-on .vault-metric,
  .vault.is-on .vault-bar {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .gauge-fill {
    stroke-dashoffset: 72.382;
  }

  .vault-bar-fill {
    width: 68%;
  }

  .vault.is-live,
  .vault.is-live * {
    animation: none !important;
  }

  .vault-canvas {
    display: none;
  }
}
