/* BCA Scroll World v2.0.14: poster-first walkthrough with a premium branded reveal. */
body.bca-loader-pending {
  overflow: hidden;
  touch-action: none;
  animation: bca-loader-unlock .01s 1.8s linear forwards;
}

.bca-loader,
.bca-loader * {
  box-sizing: border-box;
}

.bca-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #030c13;
  opacity: 1;
  visibility: visible;
  animation: bca-loader-failsafe .01s 1.8s linear forwards;
  transition: opacity .3s cubic-bezier(.22, .7, .2, 1), visibility 0s linear 0s;
}

.bca-loader-backdrop {
  position: absolute;
  inset: -2%;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(234, 215, 170, .06), transparent 33%),
    linear-gradient(180deg, rgba(3, 12, 19, .16), rgba(3, 12, 19, .34)),
    url('../bca-loader-material-v1.webp') center / cover no-repeat;
  transform: scale(1.018);
  animation: bca-loader-backdrop-settle 1.8s cubic-bezier(.2, .72, .18, 1) forwards;
  will-change: transform;
}

.bca-loader::before,
.bca-loader::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.bca-loader::before {
  background: radial-gradient(ellipse at center, transparent 20%, rgba(1, 7, 11, .15) 58%, rgba(1, 7, 11, .58) 100%);
}

.bca-loader::after {
  left: -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(234, 215, 170, .055), transparent);
  transform: skewX(-12deg);
  animation: bca-loader-light-pass 1.05s .08s ease-out forwards;
}

.bca-loader[hidden] {
  display: none !important;
}

.bca-loader.is-releasing,
body:not(.bca-loader-pending) .bca-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, .3s;
}

.bca-loader.is-releasing .bca-loader-backdrop {
  transform: scale(1.035);
  opacity: .65;
  transition: transform .3s cubic-bezier(.22, .7, .2, 1), opacity .3s ease;
}

.bca-loader-inner {
  position: relative;
  z-index: 2;
  width: min(470px, calc(100% - 48px));
  text-align: center;
  transition: transform .3s cubic-bezier(.22, .7, .2, 1), opacity .24s ease;
}

.bca-loader.is-releasing .bca-loader-inner {
  opacity: 0;
  transform: translate3d(0, -2px, 0) scale(1.012);
}

.bca-loader-plaque {
  position: relative;
  width: 100%;
  padding: 38px 42px 29px;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 170, .78);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .985), rgba(231, 224, 211, .965)),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .8), transparent 38%);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .46),
    0 0 0 1px rgba(7, 24, 36, .5),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  opacity: 0;
  transform: translate3d(0, 5px, 0) scale(.985);
  animation: bca-loader-plaque-in .42s .03s cubic-bezier(.2, .72, .18, 1) forwards;
}

.bca-loader-plaque::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(198, 165, 106, .26);
  pointer-events: none;
}

.bca-loader-logo {
  position: relative;
  width: min(330px, 70vw);
  aspect-ratio: 951 / 420;
  margin: 0 auto;
}

.bca-loader-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
  opacity: 0;
  transform: translate3d(0, 2px, 0);
  animation: bca-loader-logo-in .34s .11s ease-out forwards;
}

.bca-loader-foundation {
  position: relative;
  display: block;
  width: min(250px, 76%);
  height: 1px;
  margin: 20px auto 15px;
  overflow: hidden;
  background: rgba(11, 32, 48, .13);
}

.bca-loader-foundation i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #9d793c, #dfc58f 46%, #9d793c);
  transform: scaleX(0);
  transform-origin: center;
  animation: bca-loader-foundation-in .56s .15s cubic-bezier(.2, .72, .18, 1) forwards;
}

.bca-loader-brand {
  margin: 0;
  color: #071824;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: 0;
  animation: bca-loader-copy-in .3s .23s ease-out forwards;
}

.bca-loader-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  animation: bca-loader-copy-in .3s .27s ease-out forwards;
}

.bca-loader-status::before,
.bca-loader-status::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 215, 170, .75));
}

.bca-loader-status::after {
  transform: rotate(180deg);
}

@keyframes bca-loader-backdrop-settle {
  to { transform: scale(1); }
}

@keyframes bca-loader-light-pass {
  0% { opacity: 0; transform: translateX(0) skewX(-12deg); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translateX(390%) skewX(-12deg); }
}

@keyframes bca-loader-plaque-in {
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes bca-loader-logo-in {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes bca-loader-foundation-in {
  to { transform: scaleX(1); }
}

@keyframes bca-loader-copy-in {
  from { opacity: 0; transform: translate3d(0, 5px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes bca-loader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes bca-loader-unlock {
  to { overflow-x: hidden; overflow-y: auto; touch-action: auto; }
}

.bca-scroll-world {
  --bca-scene-count: 5;
  --bca-scroll-height: 560svh;
  position: relative;
  min-height: max(820px, 100svh);
  overflow: clip;
  color: #fff;
  background: #07131d;
}

.bca-scroll-stage {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.bca-scroll-media,
.bca-scroll-poster,
.bca-scroll-poster img,
.bca-scroll-video-stack,
.bca-scroll-video,
.bca-scroll-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bca-scroll-media {
  z-index: 0;
  overflow: hidden;
  background: #07131d;
}

.bca-scroll-poster {
  display: block;
  transition: opacity .35s ease;
}

.bca-scroll-poster img,
.bca-scroll-video {
  display: block;
  object-fit: cover;
  object-position: center;
}

.bca-scroll-poster img {
  will-change: transform;
}

.bca-scroll-video {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #07131d;
  transition: opacity .16s linear;
}

.bca-scroll-video.is-ready.is-current {
  opacity: 1;
  visibility: visible;
}

.bca-scroll-shade {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 12, 19, .94) 0%, rgba(4, 15, 23, .66) 43%, rgba(4, 15, 23, .12) 76%),
    linear-gradient(0deg, rgba(3, 12, 19, .82) 0%, transparent 52%),
    linear-gradient(180deg, rgba(3, 12, 19, .38) 0%, transparent 32%);
}

.bca-scroll-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 82% 16%, rgba(198, 165, 106, .16), transparent 27%);
  background-size: auto;
}

.bca-scroll-copy {
  position: relative;
  z-index: 8;
  width: min(1220px, calc(100% - 48px));
  min-height: max(820px, 100svh);
  margin: 0 auto;
}

.bca-scroll-chapter {
  max-width: 780px;
  padding: clamp(245px, 27svh, 330px) 0 clamp(74px, 11svh, 120px);
}

.bca-scroll-chapter:not(:first-child) {
  display: none;
}

.bca-scroll-chapter h1,
.bca-scroll-chapter h2 {
  margin: 30px 0 26px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
  text-shadow: 0 5px 30px rgba(0, 0, 0, .76);
}

.bca-scroll-chapter h1 {
  font-size: clamp(64px, 7.4vw, 112px);
}

.bca-scroll-chapter h1 em {
  color: #d9b878;
  font-weight: 400;
}

.bca-scroll-chapter h2 {
  max-width: 850px;
  font-size: clamp(52px, 6vw, 88px);
}

.bca-scroll-chapter > p {
  max-width: 650px;
  color: #f4f7f8;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .8);
}

.bca-scroll-world.is-enhanced {
  height: var(--bca-scroll-height);
  min-height: 0;
  overflow: visible;
}

.bca-scroll-world.is-enhanced .bca-scroll-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 0;
}

.bca-scroll-world.is-enhanced .bca-scroll-copy {
  height: 100%;
  min-height: 0;
}

.bca-scroll-world.is-enhanced .bca-scroll-chapter {
  position: absolute;
  left: 0;
  bottom: clamp(78px, 10svh, 118px);
  display: block;
  width: min(780px, 73vw);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 30px, 0);
  transition: opacity .34s ease, transform .48s cubic-bezier(.2, .75, .25, 1), visibility 0s linear .48s;
}

.bca-scroll-world.is-enhanced .bca-scroll-chapter.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.bca-scroll-world.is-enhanced .bca-scroll-chapter.is-past {
  transform: translate3d(0, -24px, 0);
}

.bca-scroll-ui {
  position: absolute;
  z-index: 9;
  right: clamp(24px, 4vw, 64px);
  top: 50%;
  display: none;
  grid-template-columns: 26px 1px 26px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  font: 800 9px/1 Inter, Arial, sans-serif;
  letter-spacing: .14em;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.is-enhanced .bca-scroll-ui {
  display: grid;
}

.bca-scroll-rule {
  position: relative;
  width: 1px;
  height: 112px;
  overflow: hidden;
  background: rgba(255, 255, 255, .26);
}

.bca-scroll-rule i {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background: #d9b878;
  transform: scaleY(0);
  transform-origin: top;
}

.bca-scroll-cue {
  position: absolute;
  z-index: 9;
  right: clamp(24px, 4vw, 64px);
  bottom: 42px;
  display: none;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .72);
  font: 800 9px/1 Inter, Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .3s ease;
}

.is-enhanced .bca-scroll-cue {
  display: flex;
}

.bca-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.bca-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d9b878;
  animation: bca-scroll-cue 1.8s ease-in-out infinite;
  transform: translateY(-100%);
}

.bca-scroll-world.has-progress .bca-scroll-cue {
  opacity: 0;
}

.bca-scroll-world.is-static,
.bca-scroll-world.is-static .bca-scroll-stage,
.bca-scroll-world.is-static .bca-scroll-copy {
  height: auto;
  min-height: max(760px, 100svh);
}

@keyframes bca-scroll-cue {
  0% { transform: translateY(-100%); }
  48%, 60% { transform: translateY(0); }
  100% { transform: translateY(105%); }
}

@media (max-width: 900px) {
  .bca-loader-inner {
    width: min(440px, calc(100% - 28px));
  }

  .bca-loader-plaque {
    padding: 30px 22px 24px;
  }

  .bca-loader-logo {
    width: min(250px, 72vw);
  }

  .bca-loader-foundation {
    margin-top: 16px;
    margin-bottom: 13px;
  }

  .bca-loader-brand {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .bca-loader-status {
    margin-top: 14px;
    font-size: 10.5px;
    letter-spacing: .13em;
  }

  .bca-scroll-world,
  .bca-scroll-stage,
  .bca-scroll-copy {
    min-height: max(760px, 100svh);
  }

  .bca-scroll-copy {
    width: calc(100% - 32px);
  }

  .bca-scroll-shade {
    background:
      linear-gradient(90deg, rgba(3, 12, 19, .92) 0%, rgba(3, 12, 19, .55) 82%, rgba(3, 12, 19, .26)),
      linear-gradient(0deg, rgba(3, 12, 19, .88) 0%, transparent 64%),
      linear-gradient(180deg, rgba(3, 12, 19, .55) 0%, transparent 38%);
  }

  .bca-scroll-chapter {
    padding: 185px 0 62px;
  }

  .bca-scroll-chapter h1,
  .bca-scroll-chapter h2 {
    margin: 24px 0 20px;
  }

  .bca-scroll-chapter h1 {
    max-width: 100%;
    font-size: clamp(45px, 13vw, 64px);
  }

  .bca-scroll-chapter h2 {
    font-size: clamp(42px, 11.4vw, 58px);
  }

  .bca-scroll-chapter > p {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.62;
  }

  .bca-scroll-world.is-enhanced {
    --bca-scroll-height: 530svh;
  }

  .bca-scroll-world.is-enhanced .bca-scroll-chapter {
    bottom: clamp(60px, 8svh, 82px);
    width: min(100%, 610px);
  }

  .bca-scroll-ui {
    right: 4px;
  }

  .bca-scroll-cue {
    right: 17px;
    bottom: 18px;
  }

  .bca-scroll-cue span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (max-width: 430px) {
  .bca-scroll-copy {
    width: calc(100% - 28px);
  }

  .bca-scroll-chapter h1 {
    font-size: clamp(40px, 12.2vw, 50px);
  }

  .bca-scroll-chapter h2 {
    font-size: clamp(38px, 10.7vw, 48px);
  }

  .bca-scroll-chapter > p {
    font-size: 15px;
  }

  .bca-scroll-world.is-enhanced .bca-scroll-chapter {
    bottom: max(52px, env(safe-area-inset-bottom));
    width: calc(100% - 18px);
  }

  .bca-scroll-world.is-enhanced .bca-scroll-chapter .bca-actions {
    gap: 10px;
    margin-top: 23px;
  }

  .bca-scroll-ui {
    display: none !important;
  }
}

@media (orientation: landscape) and (max-height: 450px) {
  .bca-loader-inner {
    width: min(420px, calc(100% - 32px));
  }

  .bca-loader-plaque {
    padding: 15px 28px 13px;
  }

  .bca-loader-logo {
    width: min(205px, 45vw);
  }

  .bca-loader-foundation {
    margin: 9px auto 8px;
  }

  .bca-loader-brand {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: .08em;
  }

  .bca-loader-status {
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.bca-loader-pending {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    touch-action: auto !important;
    animation: none !important;
  }

  .bca-loader,
  .bca-loader-inner {
    transition: none !important;
  }

  .bca-loader {
    display: none !important;
    animation: none !important;
  }

  .bca-loader-backdrop,
  .bca-loader::after,
  .bca-loader-plaque,
  .bca-loader-logo img,
  .bca-loader-foundation i,
  .bca-loader-brand,
  .bca-loader-status {
    animation: none !important;
  }

  .bca-loader-plaque,
  .bca-loader-logo img {
    opacity: 1;
    transform: none;
  }

  .bca-loader-brand,
  .bca-loader-status {
    opacity: 1;
  }

  .bca-loader-foundation i {
    transform: scaleX(1);
  }

  .bca-scroll-world,
  .bca-scroll-stage,
  .bca-scroll-copy {
    height: auto !important;
    min-height: max(760px, 100svh) !important;
  }

  .bca-scroll-stage {
    position: relative !important;
  }

  .bca-scroll-chapter:not(:first-child),
  .bca-scroll-ui,
  .bca-scroll-cue,
  .bca-scroll-video-stack {
    display: none !important;
  }
}
