@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Orbitron:wght@500;600;700;800;900&display=swap');

:root {
  color-scheme: dark;
  --ink: #f8f5ff;
  --muted: #b8aec8;
  --violet: #8c36ff;
  --violet-2: #6758ff;
  --panel: rgba(24, 11, 50, .72);
  --line: rgba(183, 115, 255, .42);
}

* { box-sizing: border-box; }

.access-page {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: #0c061b;
  color: var(--ink);
  font-family: "Open Sans", system-ui, sans-serif;
}

.access-video,
.access-shade,
.access-scanlines {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.access-video {
  z-index: 0;
  object-fit: cover;
  filter: saturate(.75) contrast(1.08);
}

.access-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 35%, rgba(115, 67, 204, .18), transparent 40%),
    linear-gradient(180deg, rgba(8, 7, 23, .44), rgba(19, 7, 45, .74) 65%, #110628);
  transition: opacity .9s ease;
}

.access-scanlines {
  z-index: 2;
  pointer-events: none;
  opacity: .22;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(5, 0, 18, .35) 3px 4px);
}

.access-shell {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  padding: clamp(28px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access-logo {
  width: clamp(170px, 18vw, 280px);
  height: auto;
  object-fit: contain;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.access-back {
  position: absolute;
  top: clamp(128px, 14vh, 150px);
  left: clamp(28px, 5vw, 68px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 14px 9px 11px;
  border: 1px solid rgba(201, 160, 255, .42);
  border-radius: 10px;
  background: rgba(12, 6, 27, .42);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.access-back svg { width: 18px; height: 18px; flex: 0 0 18px; }
.access-back:hover { border-color: rgba(215, 186, 255, .82); background: rgba(86, 38, 148, .5); transform: translateY(-2px); }
.access-back:focus-visible { outline: 2px solid #d5afff; outline-offset: 3px; }

.access-center {
  width: min(650px, 100%);
  margin: auto;
  padding: clamp(24px, 3.5vw, 38px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(32, 14, 64, .74), rgba(14, 9, 36, .68));
  box-shadow: 0 34px 90px rgba(7, 0, 28, .55), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px) scale(.975);
  transition:
    opacity .85s cubic-bezier(.2,.8,.2,1),
    transform .85s cubic-bezier(.2,.8,.2,1),
    visibility 0s linear .85s;
}

.access-ready .access-center {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.access-waiting .access-shade { opacity: .46; }

.access-kicker {
  margin: 0 0 20px;
  color: #d7c6ea;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 30px);
}

.countdown div { min-width: clamp(48px, 8vw, 82px); }
.countdown strong {
  display: block;
  font: 800 clamp(28px, 4.6vw, 50px)/1 "Orbitron", sans-serif;
  text-shadow: 0 0 30px rgba(148, 83, 255, .48);
}
.countdown span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(10px, 1.5vw, 14px);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.countdown b { padding-top: .08em; color: #a985df; font: 600 clamp(28px, 6vw, 66px)/1 "Orbitron", sans-serif; }

.access-center h1 {
  margin: clamp(25px, 3vw, 34px) 0 8px;
  font: 700 clamp(27px, 3.8vw, 42px)/1.08 "Orbitron", sans-serif;
  letter-spacing: -.04em;
}

.access-copy { margin: 0 auto 22px; color: var(--muted); font-size: clamp(14px, 1.6vw, 17px); }
.access-form { width: min(520px, 100%); margin: 0 auto; text-align: left; }
.access-form label { display: block; margin: 0 0 9px; color: #d7cae8; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.password-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.password-field { position: relative; min-width: 0; }
.password-row input,
.password-row > button {
  min-height: 58px;
  border-radius: 14px;
  font: 700 15px "Open Sans", sans-serif;
}
.password-row input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 0 52px 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(184, 131, 255, .45);
  outline: none;
  color: white;
  background: rgba(10, 7, 27, .72);
  transition: border-color .2s, box-shadow .2s;
}
.password-row input:focus { border-color: #9d5cff; box-shadow: 0 0 0 4px rgba(145, 69, 255, .17); }
.password-row > button {
  padding: 0 25px;
  border: 0;
  color: white;
  cursor: pointer;
  background: linear-gradient(110deg, #9e29f7, #5f5cf7);
  box-shadow: 0 14px 36px rgba(103, 69, 255, .32);
  transition: transform .2s, box-shadow .2s;
}
.password-row > button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(117, 76, 255, .5); }
.unlock-arrow { width: 18px; height: 18px; margin-left: 10px; vertical-align: -4px; transition: transform .2s ease; }
.password-row > button:hover .unlock-arrow { transform: translateX(3px); }
.unlock-loader {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  vertical-align: -4px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: access-loader-spin .65s linear infinite;
}
.password-row > button.is-loading { cursor: wait; transform: none; }
.password-row > button.is-loading .unlock-arrow { display: none; }
.password-row > button.is-loading .unlock-loader { display: inline-block; }
.password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(230, 216, 248, .72);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s, background .2s;
}
.password-toggle:hover,
.password-toggle:focus-visible { color: #fff; background: rgba(157, 92, 255, .14); outline: none; }
.password-eye { width: 21px; height: 21px; }
.password-eye-closed { display: none; }
.password-toggle.is-visible .password-eye-open { display: none; }
.password-toggle.is-visible .password-eye-closed { display: block; }
.access-error { min-height: 22px; margin: 10px 4px 0; color: #ff888f; font-size: 13px; }

.access-footer { width: 100%; margin-top: auto; padding-top: 28px; color: #afa5be; text-align: center; }
.access-footer p { margin: 0 0 5px; font-size: 13px; }
.access-footer small { font-size: 10px; letter-spacing: .12em; }

.access-bubbles { position: fixed; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.access-bubbles i { position: absolute; bottom: -50px; width: 12px; aspect-ratio: 1; border: 1px solid rgba(184, 234, 255, .36); border-radius: 50%; animation: bubble-rise 10s linear infinite; }
.access-bubbles i:nth-child(1){left:8%;animation-delay:-2s}.access-bubbles i:nth-child(2){left:19%;width:20px;animation-delay:-8s}.access-bubbles i:nth-child(3){left:38%;width:8px;animation-delay:-4s}.access-bubbles i:nth-child(4){left:49%;width:26px;animation-delay:-9s}.access-bubbles i:nth-child(5){left:63%;animation-delay:-5s}.access-bubbles i:nth-child(6){left:76%;width:18px;animation-delay:-1s}.access-bubbles i:nth-child(7){left:88%;width:7px;animation-delay:-6s}.access-bubbles i:nth-child(8){left:94%;width:15px;animation-delay:-3s}

.access-loader {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  color: #e2d5f3;
  font: 700 10px/1 "Orbitron", sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: opacity .42s ease, transform .42s ease, visibility 0s linear .42s;
}
.access-loader-orbit {
  width: 42px;
  aspect-ratio: 1;
  border: 2px solid rgba(194, 147, 255, .18);
  border-top-color: #c99cff;
  border-right-color: #5d7aff;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(153, 96, 255, .48);
  animation: access-loader-spin .9s linear infinite;
}
.access-ready .access-loader {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% - 10px)) scale(.94);
}

.access-granted .access-center { animation: access-open .55s ease forwards; }
.shake { animation: shake .36s ease; }

/* Dedicated invalid-address / 404 screen. */
.salvage-error-page {
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(94, 58, 190, .28), transparent 31%),
    radial-gradient(circle at 90% 88%, rgba(114, 64, 202, .16), transparent 32%),
    #0c061b;
}
.salvage-error-aurora {
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 28% 35%, rgba(144, 56, 255, .21), transparent 22%),
    radial-gradient(ellipse at 72% 62%, rgba(63, 125, 255, .16), transparent 24%);
  filter: blur(28px);
  animation: error-aurora 10s ease-in-out infinite alternate;
}
.salvage-error-shell {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 56px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 64px) 0 max(28px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}
.salvage-error-logo {
  display: inline-flex;
  width: fit-content;
}
.salvage-error-logo img {
  display: block;
  width: clamp(165px, 17vw, 245px);
  height: auto;
  filter: brightness(0) invert(1);
}
.salvage-error-card {
  width: min(660px, 100%);
  margin: auto;
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  border: 1px solid rgba(187, 133, 255, .44);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(38, 17, 74, .78), rgba(11, 8, 30, .82));
  box-shadow: 0 34px 100px rgba(5, 0, 27, .62), inset 0 1px rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  animation: error-card-in .7s cubic-bezier(.2,.8,.2,1) both;
}
.salvage-error-code {
  margin: 0 0 18px;
  color: #c6a1ff;
  font: 700 11px/1.4 "Orbitron", sans-serif;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.salvage-error-mark {
  width: 78px;
  aspect-ratio: 1;
  margin: 0 auto 26px;
  position: relative;
  border: 1px solid rgba(199, 159, 255, .66);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(151, 77, 255, .32), inset 0 0 22px rgba(121, 61, 255, .2);
}
.salvage-error-mark::before,
.salvage-error-mark::after,
.salvage-error-mark span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9d6ff;
  box-shadow: 0 0 14px #c98eff;
}
.salvage-error-mark::before { transform: translate(-50%, -50%) translateX(-19px); opacity: .4; }
.salvage-error-mark::after { transform: translate(-50%, -50%) translateX(19px); opacity: .4; }
.salvage-error-mark span { transform: translate(-50%, -50%); }
.salvage-error-card h1 {
  margin: 0;
  color: #fff;
  font: 800 clamp(34px, 5vw, 58px)/1.03 "Orbitron", sans-serif;
  letter-spacing: -.07em;
}
.salvage-error-card h1 em { color: #f6cf43; font-style: normal; }
.salvage-error-card > p:not(.salvage-error-code) {
  max-width: 490px;
  margin: 20px auto 30px;
  color: #c4b8d2;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
}
.salvage-error-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; }
.salvage-error-primary,
.salvage-error-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border-radius: 14px;
  font: 700 13px "Open Sans", sans-serif;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.salvage-error-primary {
  color: #150b24;
  background: linear-gradient(105deg, #c44aff, #7581ff);
  box-shadow: 0 13px 32px rgba(130, 73, 255, .36);
}
.salvage-error-primary svg { width: 18px; height: 18px; }
.salvage-error-secondary { color: #e7ddf3; border: 1px solid rgba(203, 168, 255, .38); background: rgba(255, 255, 255, .045); }
.salvage-error-primary:hover,
.salvage-error-secondary:hover { transform: translateY(-2px); }
.salvage-error-primary:hover { box-shadow: 0 17px 42px rgba(130, 73, 255, .52); }
.salvage-error-secondary:hover { background: rgba(183, 135, 245, .15); }
.salvage-error-footer {
  margin: 28px 0 0;
  color: rgba(224, 210, 240, .45);
  font: 700 10px/1.5 "Orbitron", sans-serif;
  letter-spacing: .18em;
  text-align: center;
}
@keyframes error-card-in { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes error-aurora { from { transform: translate3d(-2%, -1%, 0) scale(1); } to { transform: translate3d(3%, 2%, 0) scale(1.06); } }
@media (max-width: 640px) {
  .salvage-error-shell { width: min(100% - 36px, 560px); padding-top: max(24px, env(safe-area-inset-top)); }
  .salvage-error-logo img { width: 165px; }
  .salvage-error-card { padding: 34px 22px 30px; border-radius: 24px; }
  .salvage-error-mark { width: 66px; margin-bottom: 23px; }
  .salvage-error-actions { gap: 12px; }
  .salvage-error-primary,
  .salvage-error-secondary { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .salvage-error-aurora,
  .salvage-error-card { animation: none; }
}

/* Small compatibility layer for the downloaded landing page. */
html { scroll-behavior: smooth; }
body.dmBodyNoIscroll { overflow-x: hidden; }

body#dmRoot {
  display: block !important;
  align-items: initial !important;
  justify-content: initial !important;
  min-height: 100% !important;
  padding: 0 !important;
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

/* Legacy share-popup placeholders must not participate in page layout. */
body#dmRoot > #fb-root,
body#dmRoot > .dmPopupTitle,
body#dmRoot > .data {
  display: none !important;
}

/* Decorative motion pauses only while the user is actively scrolling. */
body#dmRoot.slv-is-scrolling * {
  animation-play-state: paused !important;
}

body#dmRoot canvas {
  image-rendering: auto;
  contain: strict;
}

body#dmRoot #slv-hero-wrapper,
body#dmRoot #expWidget,
body#dmRoot #lbjf-img-wrap {
  contain: layout paint style;
}

/* Landing performance: paint purple immediately and avoid expensive fixed layers. */
body#dmRoot,
body#dmRoot #dm-outer-wrapper,
body#dmRoot .dmOuter,
body#dmRoot .dmInner,
body#dmRoot #site_content,
body#dmRoot #dm_content {
  background-color: #170b31 !important;
}

body#dmRoot .dmHomeSection1,
body#dmRoot .dmSectionParallex,
body#dmRoot [style*="background-attachment: fixed"],
body#dmRoot [style*="background-attachment:fixed"] {
  background-attachment: scroll !important;
}

body#dmRoot img { content-visibility: auto; }

/* Keep expensive, below-the-fold sections out of the first render. */
@supports (content-visibility: auto) {
  body#dmRoot #phase-progress-wrap,
  body#dmRoot #jtu-wrap,
  body#dmRoot #elm-wrap,
  body#dmRoot #inv-wrap,
  body#dmRoot #dev-wrap,
  body#dmRoot #tok-wrap,
  body#dmRoot #salvage-limova-widget,
  body#dmRoot .abodex-video-widget,
  body#dmRoot #jth-wrap,
  body#dmRoot .ggp-root,
  body#dmRoot #hiw-wrap,
  body#dmRoot #strategic-partners,
  body#dmRoot .sl-faq-wrap {
    content-visibility: auto;
    contain-intrinsic-block-size: auto 760px;
  }
}

/* Glass blur is expensive during movement. Restore it immediately when the
   brief scrolling state ends. */
body#dmRoot.slv-is-scrolling .jth-card,
body#dmRoot.slv-is-scrolling .gg-predictor,
body#dmRoot.slv-is-scrolling .partner-card,
body#dmRoot.slv-is-scrolling .abodex-video-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* Keep the trailer's animated Gaussian/Ambilight glow from being clipped. */
body#dmRoot .u_1558536107,
body#dmRoot .u_1157711341,
body#dmRoot [id="1558536107"],
body#dmRoot [id="1975892790"],
body#dmRoot [id="1886801790"],
body#dmRoot .abodex-video-widget {
  overflow: visible !important;
  clip-path: none !important;
}

body#dmRoot .abodex-video-widget {
  padding-top: 76px !important;
  padding-bottom: 86px !important;
  isolation: isolate;
}

body#dmRoot .abodex-video-card {
  z-index: 1;
}

@media (max-width: 768px) {
  body#dmRoot .abodex-video-widget {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}

@media (max-width: 767px), (pointer: coarse) {
  body#dmRoot {
    display: block !important;
    overflow-x: clip !important;
  }

  body#dmRoot,
  body#dmRoot * { -webkit-overflow-scrolling: touch; }

  body#dmRoot #dmStyle_innerContainer,
  body#dmRoot .dmLayoutWrapper,
  body#dmRoot #site_content,
  body#dmRoot .site_content,
  body#dmRoot #dmFirstContainer,
  body#dmRoot #allWrapper,
  body#dmRoot #dm_content,
  body#dmRoot .dmRespRowsWrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body#dmRoot img,
  body#dmRoot iframe,
  body#dmRoot video:not(.videobgframe) {
    max-width: 100%;
  }

  body#dmRoot .videobgwrapper {
    width: 100% !important;
    overflow: hidden !important;
  }

  body#dmRoot .videobgframe {
    width: 101% !important;
    min-width: 101% !important;
    object-fit: cover !important;
  }

  body#dmRoot .dmHomeSection1,
  body#dmRoot .dmSectionParallex { transform: none !important; }

  body#dmRoot [style*="backdrop-filter"] {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@keyframes access-arrive { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes access-loader-spin { to { transform: rotate(360deg); } }
@keyframes access-open { to { opacity: 0; transform: scale(1.035); filter: blur(10px); } }
@keyframes bubble-rise { to { transform: translateY(-115vh) scale(1.4); opacity: 0; } }
@keyframes shake { 25%{transform:translateX(-7px)} 50%{transform:translateX(7px)} 75%{transform:translateX(-4px)} }

@media (max-width: 680px) {
  .access-shell { padding: 24px 18px; }
  .access-logo { width: 150px; }
  .access-center { width: min(430px, 100%); padding: 25px 18px; border-radius: 22px; }
  .countdown { gap: 7px; }
  .countdown div { min-width: 48px; }
  .password-row { grid-template-columns: 1fr; }
  .password-row > button { width: 100%; }
  .access-footer p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* Live documentary gateway */
#slv-live-documentary,
#slv-live-documentary * { box-sizing: border-box; }

#slv-live-documentary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: clamp(72px, 8vw, 126px) 24px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(117, 71, 255, .22), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(12, 182, 207, .11), transparent 34%),
    linear-gradient(180deg, #13092f 0%, #0c071e 100%);
}

#slv-live-documentary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.slv-live-doc-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.slv-live-doc-copy,
.slv-live-doc-broadcast {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1);
}

.slv-live-doc-broadcast { transition-delay: .15s; }
#slv-live-documentary.is-visible .slv-live-doc-copy,
#slv-live-documentary.is-visible .slv-live-doc-broadcast { opacity: 1; transform: none; }

.slv-live-doc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #d6c5ff;
  font: 700 12px/1.2 'Orbitron', 'Open Sans', sans-serif;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.slv-live-doc-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4d62;
  box-shadow: 0 0 0 6px rgba(255,77,98,.12), 0 0 20px rgba(255,77,98,.65);
  animation: slv-live-doc-pulse 2.2s ease-in-out infinite;
}

.slv-live-doc-copy h2 {
  margin: 0;
  color: #fff;
  font: 600 clamp(46px, 5.3vw, 78px)/.98 'Orbitron', 'Open Sans', sans-serif;
  letter-spacing: -.055em;
}

.slv-live-doc-copy h2 span {
  color: transparent;
  background: linear-gradient(90deg, #b96cff 0%, #6d7bff 58%, #58d8e7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.slv-live-doc-lead {
  max-width: 650px;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.67);
  font: 400 clamp(17px, 1.35vw, 20px)/1.7 'Open Sans', sans-serif;
}

.slv-live-doc-points { display: grid; gap: 2px; }
.slv-live-doc-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.slv-live-doc-points > div:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.slv-live-doc-point-number {
  padding-top: 3px;
  color: #a67cff;
  font: 700 11px/1.4 'Share Tech Mono', monospace;
  letter-spacing: .14em;
}
.slv-live-doc-points p { margin: 0; }
.slv-live-doc-points strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font: 600 15px/1.4 'Open Sans', sans-serif;
}
.slv-live-doc-points small {
  display: block;
  color: rgba(255,255,255,.48);
  font: 400 13px/1.55 'Open Sans', sans-serif;
}

.slv-live-doc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.slv-live-doc-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border-radius: 10px;
  font: 700 13px/1 'Open Sans', sans-serif;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.slv-live-doc-actions a:hover { transform: translateY(-2px); }
.slv-live-doc-primary {
  color: #fff !important;
  background: linear-gradient(115deg, #8b35f5, #5d57f2);
  box-shadow: 0 14px 35px rgba(111,62,245,.25);
}
.slv-live-doc-primary:hover { box-shadow: 0 18px 44px rgba(111,62,245,.4); }
.slv-live-doc-secondary { color: rgba(255,255,255,.8) !important; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.slv-live-doc-secondary:hover { border-color: rgba(193,157,255,.5); background: rgba(151,93,255,.08); }

.slv-live-doc-broadcast {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(189,144,255,.32);
  border-radius: 26px;
  background: rgba(50,25,91,.37);
  box-shadow: 0 42px 100px rgba(0,0,0,.48), 0 0 65px rgba(111,63,236,.14);
}
.slv-live-doc-broadcast::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(187,116,255,.55), transparent 34%, transparent 67%, rgba(76,216,228,.28));
  filter: blur(18px);
  opacity: .4;
}
.slv-live-doc-screen {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 46%, rgba(123,72,218,.36), transparent 27%),
    linear-gradient(145deg, rgba(15,8,38,.96), rgba(7,15,35,.98));
}
.slv-live-doc-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.035) 4px 5px);
  pointer-events: none;
}
.slv-live-doc-screen-head {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.48);
  font: 700 10px/1 'Share Tech Mono', monospace;
  letter-spacing: .18em;
}
.slv-live-doc-screen-head span { display: inline-flex; align-items: center; gap: 8px; color: #ff6d7c; }
.slv-live-doc-screen-head i { width: 7px; height: 7px; border-radius: 50%; background: #ff4d62; box-shadow: 0 0 13px #ff4d62; }
.slv-live-doc-sonar {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 290px;
  height: 290px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(173,125,255,.24);
  border-radius: 50%;
}
.slv-live-doc-sonar i { position: absolute; inset: 16%; border: 1px solid rgba(173,125,255,.22); border-radius: 50%; }
.slv-live-doc-sonar i:nth-child(2) { inset: 32%; }
.slv-live-doc-sonar i:nth-child(3) { inset: 47%; background: #ad73ff; box-shadow: 0 0 35px rgba(173,115,255,.95); }
.slv-live-doc-sonar b {
  position: absolute;
  left: 50%; top: 50%;
  width: 48%; height: 48%;
  transform-origin: 0 0;
  border-top: 1px solid rgba(109,230,235,.72);
  background: linear-gradient(25deg, rgba(88,216,231,.18), transparent 66%);
  animation: slv-live-doc-sweep 4.8s linear infinite;
}
.slv-live-doc-scanline {
  position: absolute;
  z-index: 1;
  left: 0; right: 0; top: -8%;
  height: 12%;
  opacity: .35;
  background: linear-gradient(to bottom, transparent, rgba(118,221,238,.14), rgba(168,114,255,.45), transparent);
  animation: slv-live-doc-scan 5.5s linear infinite;
}
.slv-live-doc-screen-copy {
  position: absolute;
  z-index: 2;
  left: 28px; right: 28px; bottom: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.slv-live-doc-screen-copy span { display: block; margin-bottom: 8px; color: #b986ff; font: 700 10px/1.3 'Orbitron', sans-serif; letter-spacing: .16em; }
.slv-live-doc-screen-copy strong { display: block; color: #fff; font: 600 clamp(24px, 2.5vw, 36px)/1.15 'Orbitron', sans-serif; }
.slv-live-doc-screen-copy small { display: block; margin-top: 9px; color: rgba(255,255,255,.45); font: 400 12px/1.5 'Open Sans', sans-serif; }
.slv-live-doc-status { display: flex; justify-content: space-between; padding: 14px 16px 5px; color: rgba(255,255,255,.44); font: 700 9px/1.4 'Share Tech Mono', monospace; letter-spacing: .14em; }
.slv-live-doc-status span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.slv-live-doc-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #54e29f; box-shadow: 0 0 12px rgba(84,226,159,.75); }

@keyframes slv-live-doc-pulse { 0%,100% { transform: scale(.92); opacity: .65; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes slv-live-doc-sweep { to { transform: rotate(360deg); } }
@keyframes slv-live-doc-scan { from { transform: translateY(0); } to { transform: translateY(900%); } }

@media (max-width: 980px) {
  .slv-live-doc-shell { grid-template-columns: 1fr; gap: 54px; }
  .slv-live-doc-broadcast { width: min(680px, 100%); margin: 0 auto; }
}

@media (max-width: 600px) {
  #slv-live-documentary { padding: 68px 18px; }
  .slv-live-doc-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .slv-live-doc-lead { margin-top: 22px; font-size: 16px; line-height: 1.65; }
  .slv-live-doc-points > div { grid-template-columns: 34px 1fr; gap: 10px; padding: 15px 0; }
  .slv-live-doc-actions { display: grid; grid-template-columns: 1fr; }
  .slv-live-doc-actions a { width: 100%; }
  .slv-live-doc-broadcast { padding: 7px; border-radius: 20px; }
  .slv-live-doc-screen { min-height: 420px; border-radius: 14px; }
  .slv-live-doc-sonar { width: 230px; height: 230px; }
  .slv-live-doc-screen-head { top: 20px; left: 19px; right: 19px; }
  .slv-live-doc-screen-copy { left: 20px; right: 20px; bottom: 24px; }
  .slv-live-doc-status { padding-inline: 9px; }
  .slv-live-doc-status span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .slv-live-doc-live-dot,
  .slv-live-doc-sonar b,
  .slv-live-doc-scanline { animation: none !important; }
  .slv-live-doc-copy,
  .slv-live-doc-broadcast { opacity: 1; transform: none; }
}
