.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero,
.gallery-item,
.offer-card,
.tribute-terminal,
.afterhours {
  contain: paint;
}

.site-header {
  grid-template-columns: minmax(190px, 1fr) auto minmax(360px, 1fr);
  gap: clamp(1rem, 2vw, 2.5rem);
}

.header-end {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 1.4vw, 1.6rem);
}

.experience-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.experience-controls button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(176, 79, 255, 0.26);
  padding: 0.55rem 0.72rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 79, 255, 0.12), transparent 65%),
    rgba(9, 8, 12, 0.54);
  color: rgba(233, 226, 237, 0.65);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.experience-controls button:hover,
.experience-controls button[aria-pressed="true"] {
  border-color: rgba(145, 246, 91, 0.5);
  color: var(--fog-soft);
  background-color: rgba(145, 246, 91, 0.055);
}

.control-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fog);
  box-shadow: 0 0 10px rgba(145, 246, 91, 0.85);
}

.fx-paused .control-led {
  background: var(--muted);
  box-shadow: none;
}

.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
  box-shadow: 0 0 12px rgba(145, 246, 91, 0.85);
}

.page-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.page-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--bruise), var(--orchid) 58%, var(--fog));
  box-shadow: 0 0 14px rgba(145, 246, 91, 0.55);
  transition: width 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-controls,
.mobile-section-readout {
  display: none;
}

.hero-picture img {
  filter: saturate(1.08) brightness(1.08) contrast(1.02);
  animation: premium-hero-drift 18s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

.hero-text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  border-bottom: 1px solid rgba(176, 79, 255, 0.62);
  padding: 0.25rem 0;
  color: rgba(231, 224, 235, 0.68);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.hero-text-link:hover {
  border-color: var(--fog);
  color: var(--fog-soft);
}

.trust-rail {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(176, 79, 255, 0.22);
  border-bottom: 1px solid rgba(176, 79, 255, 0.3);
  background:
    radial-gradient(circle at 12% 50%, rgba(145, 246, 91, 0.09), transparent 22rem),
    radial-gradient(circle at 82% 30%, rgba(176, 79, 255, 0.14), transparent 25rem),
    linear-gradient(90deg, rgba(6, 7, 9, 0.96), rgba(13, 8, 18, 0.96), rgba(6, 9, 8, 0.96));
}

.trust-rail span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(176, 79, 255, 0.18);
  padding: 0.8rem;
  color: rgba(232, 225, 236, 0.7);
  font-family: var(--font-mono), monospace;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.trust-rail span:first-child,
.trust-rail span:last-child {
  color: var(--fog-soft);
}

.trust-rail span:last-child {
  border-right: 0;
}

.section-signal {
  position: absolute;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, var(--bruise) 24%, var(--orchid) 52%, var(--fog) 78%, transparent 100%);
  box-shadow: 0 0 18px rgba(176, 79, 255, 0.55), 0 0 28px rgba(145, 246, 91, 0.24);
  opacity: 0;
  transform: scaleX(0.06);
  transform-origin: left;
}

.fx-on section.is-in-view > .section-signal {
  animation: signal-charge 1.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fx-paused .section-signal {
  opacity: 0.45;
  transform: scaleX(1);
}

.offer-copy button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  margin-top: 1.25rem;
  padding: 0;
  background: transparent;
  color: var(--fog-soft);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.offer-copy button:hover {
  color: var(--white);
}

.offer-dialog-backdrop {
  position: fixed;
  z-index: 1120;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgba(3, 3, 5, 0.78);
  backdrop-filter: blur(10px) saturate(1.1);
  animation: dialog-backdrop-in 220ms ease both;
}

.offer-dialog {
  width: min(1180px, 92vw);
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  overflow: auto;
  border-left: 1px solid rgba(176, 79, 255, 0.55);
  background:
    radial-gradient(circle at 20% 16%, rgba(176, 79, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 85% 82%, rgba(145, 246, 91, 0.12), transparent 28rem),
    linear-gradient(135deg, rgba(9, 7, 13, 0.99), rgba(15, 8, 23, 0.99) 54%, rgba(7, 13, 10, 0.99));
  box-shadow: -45px 0 120px rgba(0, 0, 0, 0.58);
  animation: offer-dialog-in 430ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.offer-dialog-close {
  position: fixed;
  z-index: 3;
  top: 1.5rem;
  right: 2rem;
  min-height: 44px;
  border: 1px solid rgba(145, 246, 91, 0.32);
  padding: 0.75rem 0.9rem;
  background: rgba(7, 8, 9, 0.82);
  color: var(--fog-soft);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-dialog-art {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  border-right: 1px solid rgba(176, 79, 255, 0.26);
  background:
    radial-gradient(circle at 22% 20%, rgba(176, 79, 255, 0.28), transparent 38%),
    linear-gradient(145deg, #12081c, #07110c);
}

.offer-dialog-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 6, 10, 0.88), transparent 55%), linear-gradient(90deg, transparent 55%, rgba(8, 6, 11, 0.42));
}

.offer-dialog-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.08);
}

.offer-dialog-art > span {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: var(--fog-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.offer-dialog-copy {
  align-self: center;
  padding: clamp(6rem, 10vw, 10rem) clamp(2.2rem, 6vw, 7rem) 5rem;
}

.offer-dialog-copy h2 {
  max-width: 10ch;
  margin: 0.7rem 0 1.2rem;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 rgba(112, 44, 255, 0.26);
}

.offer-dialog-summary {
  max-width: 48rem;
  color: rgba(235, 228, 239, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
}

.offer-facts {
  margin: 2.2rem 0;
  border-top: 1px solid rgba(176, 79, 255, 0.3);
}

.offer-facts div {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(176, 79, 255, 0.22);
}

.offer-facts dt,
.offer-facts dd,
.offer-checklist p {
  margin: 0;
  font-family: var(--font-mono), monospace;
  font-size: 0.59rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-facts dt {
  color: var(--muted);
}

.offer-facts dd {
  color: var(--white);
}

.offer-checklist {
  padding: 1.4rem;
  border: 1px solid rgba(145, 246, 91, 0.28);
  background: linear-gradient(135deg, rgba(145, 246, 91, 0.06), rgba(176, 79, 255, 0.04));
}

.offer-checklist p {
  color: var(--fog);
}

.offer-checklist ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-checklist li {
  position: relative;
  margin-top: 0.6rem;
  padding-left: 1.25rem;
  color: rgba(235, 228, 239, 0.72);
  font-size: 0.75rem;
  line-height: 1.55;
}

.offer-checklist li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--fog);
}

.offer-dialog-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.offer-dialog-actions .ink-link {
  margin-top: 0;
}

.offer-dialog-copy > small {
  max-width: 44rem;
  display: block;
  margin-top: 1.5rem;
  color: rgba(222, 214, 199, 0.48);
  font-size: 0.65rem;
  line-height: 1.6;
}

.request-progress {
  grid-template-columns: repeat(2, 1fr);
}

.request-form {
  min-height: 660px;
}

.request-panel-intake {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.request-field {
  min-width: 0;
}

.request-field > label,
.request-field > legend,
.field-label {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.request-field > p {
  margin: 0.8rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.request-field > input,
.request-field > textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(176, 79, 255, 0.46);
  border-radius: 0;
  padding: 1rem 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  resize: vertical;
}

.request-field > input:focus,
.request-field > textarea:focus {
  border-color: var(--fog);
}

.request-access-field {
  border: 0;
  padding: 0;
}

.request-options label {
  min-height: 58px;
}

.contact-field {
  max-width: 680px;
  margin-top: 2.4rem;
}

.field-label {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.contact-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0 0.65rem;
  border: 1px solid rgba(176, 79, 255, 0.32);
}

.contact-method button {
  min-height: 46px;
  border: 0;
  border-right: 1px solid rgba(176, 79, 255, 0.32);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method button:last-child {
  border-right: 0;
}

.contact-method button.is-selected {
  background: rgba(145, 246, 91, 0.1);
  color: var(--fog-soft);
}

.request-navigation {
  align-items: center;
  gap: 1rem;
}

.request-navigation .clear-draft {
  margin-right: auto;
  margin-left: 1rem;
  color: rgba(222, 214, 199, 0.42);
}

.request-session-note,
.request-status {
  margin: 1rem 0 0;
  color: rgba(222, 214, 199, 0.46);
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.request-status {
  min-height: 1.8em;
  color: var(--fog-soft);
}

.draft-raw-label {
  display: block;
  margin-top: 1.4rem;
  color: var(--orchid);
  font-family: var(--font-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.draft-raw {
  width: 100%;
  min-height: 138px;
  margin-top: 0.65rem;
  border: 1px solid rgba(176, 79, 255, 0.28);
  border-radius: 0;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(176, 79, 255, 0.055), rgba(145, 246, 91, 0.025));
  color: rgba(235, 228, 239, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  line-height: 1.55;
  outline: none;
  resize: vertical;
}

.draft-raw:focus {
  border-color: var(--fog);
}

.hero-picture img,
.gallery-item img,
.offer-image img,
.tribute-terminal img,
.afterhours > img,
.offer-dialog-art img {
  transition: opacity 220ms ease;
}

.discreet-mode .hero-picture,
.discreet-mode .gallery-item img,
.discreet-mode .offer-image img,
.discreet-mode .tribute-terminal img,
.discreet-mode .afterhours > img,
.discreet-mode .offer-dialog-art img,
.discreet-mode .lightbox figure img {
  opacity: 0 !important;
}

.discreet-mode .hero {
  background:
    repeating-conic-gradient(from 32deg at 74% 46%, rgba(176, 79, 255, 0.09) 0 1deg, transparent 1deg 14deg),
    radial-gradient(circle at 78% 48%, rgba(145, 246, 91, 0.15), transparent 23rem),
    radial-gradient(circle at 38% 30%, rgba(112, 44, 255, 0.3), transparent 34rem),
    linear-gradient(135deg, #060708, #13081e 58%, #07120d);
}

.discreet-mode .gallery-item,
.discreet-mode .offer-image,
.discreet-mode .tribute-terminal,
.discreet-mode .afterhours,
.discreet-mode .offer-dialog-art,
.discreet-mode .lightbox figure {
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 79, 255, 0.34), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(145, 246, 91, 0.16), transparent 34%),
    repeating-conic-gradient(from 20deg, rgba(176, 79, 255, 0.08) 0 1deg, transparent 1deg 18deg),
    linear-gradient(145deg, #12081c, #07120d);
}

.discreet-mode .gallery-item::before,
.discreet-mode .offer-image::before,
.discreet-mode .tribute-terminal::before,
.discreet-mode .afterhours::before,
.discreet-mode .offer-dialog-art::before,
.discreet-mode .lightbox figure::before {
  content: "X$";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(8rem, 22vw, 18rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.7;
  text-shadow: 0 0 50px rgba(176, 79, 255, 0.28);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.discreet-mode .gallery-item > span,
.discreet-mode .offer-copy,
.discreet-mode .tribute-copy,
.discreet-mode .afterhours > div,
.discreet-mode .offer-dialog-art > span {
  z-index: 3;
}

.fx-paused .ambient-fx {
  opacity: 0;
}

.fx-paused .hero-wordmark-art {
  opacity: 1;
  transform: none;
  filter: saturate(1.24) brightness(1.22) drop-shadow(0 16px 28px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 28px rgba(136, 57, 242, 0.29));
  animation: none !important;
}

.fx-paused .marquee > div,
.fx-paused .hero-picture img,
.fx-paused .hero-wordmark-art,
.fx-paused .section-fog,
.fx-paused .damage-section,
.fx-paused .gallery-section,
.fx-paused .offers-section,
.fx-paused .request-section,
.fx-paused .action-poster,
.fx-paused .persona-section,
.fx-paused .persona-graphic::before,
.fx-paused .persona-graphic::after,
.fx-paused .wheel-section,
.fx-paused .wheel-art::before,
.fx-paused .wheel-ring,
.fx-paused .afterhours > img,
.page-hidden .neon-site *,
.page-hidden .neon-site *::before,
.page-hidden .neon-site *::after {
  animation-play-state: paused !important;
}

section:not(.is-in-view) .section-fog,
section:not(.is-in-view) .persona-graphic::before,
section:not(.is-in-view) .persona-graphic::after,
section:not(.is-in-view) .wheel-art::before,
section:not(.is-in-view) .wheel-ring,
section:not(.is-in-view) .action-poster {
  animation-play-state: paused;
}

.afterhours > img {
  filter: saturate(1.08) brightness(1.1) contrast(1.02);
  animation: premium-cinematic-drift 20s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

@keyframes premium-hero-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.65%, -0.35%, 0); }
}

@keyframes premium-cinematic-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-0.7%, -0.4%, 0); }
}

@keyframes signal-charge {
  0% { opacity: 0; transform: scaleX(0.03); }
  30% { opacity: 1; }
  72% { opacity: 0.85; transform: scaleX(1); }
  100% { opacity: 0.18; transform: scaleX(1); }
}

@keyframes dialog-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes offer-dialog-in {
  from { opacity: 0; transform: translate3d(8%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto minmax(250px, 1fr);
  }

  .request-panel-intake {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .experience-controls,
  .header-end {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .mobile-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin: 1.5rem 7vw 0;
  }

  .mobile-controls button {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(176, 79, 255, 0.34);
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(176, 79, 255, 0.08), rgba(145, 246, 91, 0.04));
    color: rgba(235, 228, 239, 0.7);
    font-family: var(--font-mono), monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-controls button b {
    color: var(--fog-soft);
  }

  .mobile-section-readout {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 7vw 0;
    color: rgba(222, 214, 199, 0.52);
    font-family: var(--font-mono), monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-section-readout span {
    color: var(--orchid);
  }

  .offer-dialog {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .offer-dialog-art {
    position: relative;
    min-height: 46svh;
    height: 46svh;
    border-right: 0;
    border-bottom: 1px solid rgba(176, 79, 255, 0.3);
  }

  .offer-dialog-copy {
    padding: 3.5rem 7vw 7rem;
  }

  .offer-dialog-copy h2 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .offer-dialog-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 820px) {
  .hero-actions {
    gap: 0.7rem;
  }

  .trust-rail {
    grid-template-columns: 1fr 1fr;
  }

  .trust-rail span {
    min-height: 54px;
    border-bottom: 1px solid rgba(176, 79, 255, 0.18);
  }

  .trust-rail span:last-child {
    grid-column: 1 / -1;
  }

  .request-progress span {
    font-size: 0.58rem;
  }

  .request-progress span b {
    font-size: 0.58rem;
  }

  .request-form {
    min-height: 680px;
  }

  .request-panel-intake {
    gap: 2.5rem;
  }

  .request-field > label,
  .request-field > legend,
  .field-label {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .request-options {
    grid-template-columns: 1fr;
  }

  .request-navigation {
    flex-wrap: wrap;
  }

  .request-navigation .clear-draft {
    order: 3;
    width: 100%;
    margin: 0.6rem 0 0;
    border-bottom: 0;
    text-align: left;
  }

  .mobile-dock {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-dock a:first-child {
    background: linear-gradient(135deg, var(--fog), #b8ff8c);
    color: var(--sewer);
  }

  .mobile-dock a:nth-child(2) {
    border-left: 1px solid rgba(176, 79, 255, 0.24);
    border-right: 1px solid rgba(176, 79, 255, 0.24);
    color: var(--white);
  }

  .mobile-dock a:last-child {
    color: var(--orchid);
  }

  .lightbox-close,
  .lightbox-arrow,
  .offer-dialog-close {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 520px) {
  .mobile-controls {
    grid-template-columns: 1fr;
  }

  .hero-actions .slash-button {
    width: 100%;
  }

  .hero-text-link {
    display: none;
  }

  .offer-dialog-actions .slash-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress span,
  .hero-picture img,
  .afterhours > img,
  .offer-dialog-backdrop,
  .offer-dialog,
  .section-signal {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .section-signal {
    opacity: 0.2;
    transform: scaleX(1);
  }
}

.vault-site {
  --master-xsire-premium-ready: v8;
}
