/**
 * FifoConsult Custom WordPress Theme
 *
 * CSS module: HYRO Scroll Teaser.
 *
 * Module:
 * FifoConsult - HYRO Scroll Teaser / Cinematic Typography Interlude.
 *
 * This stylesheet controls the typography-only teaser displayed inside the
 * hero before the MORE control reveals the BODY storytelling sequence. It
 * provides the scene layout, directional enter/exit states, gold sweep effect,
 * decoding text presentation, responsive typography and reduced-motion safety
 * for the HYRO scroll teaser.
 *
 * Main visual responsibilities:
 * - position teaser scenes inside the hero without blocking pointer input
 * - style scene labels, titles, subtitles and microcopy
 * - define forward and reverse direction state variables
 * - control enter, current and leaving animation states
 * - support the JavaScript text-decoding state through data attributes
 * - keep the teaser visually isolated from the main body sections and popups
 *
 * Interaction boundary:
 * JavaScript in assets/js/hyro-scroll-teaser.js listens for wheel gestures,
 * checks open overlay states and toggles the CSS state classes defined here.
 * This stylesheet must preserve those class names and timing-related variables.
 *
 * Related PHP:
 * template-parts/hyro-scroll-teaser.php
 *
 * Related JavaScript:
 * assets/js/hyro-scroll-teaser.js
 *
 * Concept, visual direction, structure, interface design and implementation:
 * Dragan Oljaca / FifoConsult
 *
 * Website: https://www.fifoconsult.com
 * Author: Dragan Oljaca
 * Brand: FifoConsult
 *
 * All rights reserved.
 */

.fc-hyro-teaser {
  --fc-teaser-ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  --fc-teaser-ease-exit: cubic-bezier(0.4, 0, 0.2, 1);
  --fc-teaser-left-anchor: clamp(64px, 10vw, 170px);
  --fc-teaser-top-anchor: 43%;
  --fc-teaser-gold: rgba(216, 173, 66, 0.86);
  --fc-teaser-title-gold: #e3b341;
  --fc-teaser-spotlight-duration: 350ms;
  --fc-teaser-spotlight-delay: 70ms;
  --fc-teaser-label-enter-x: -24px;
  --fc-teaser-title-enter-x: 34px;
  --fc-teaser-subtitle-enter-y: 22px;
  --fc-teaser-micro-enter-y: 16px;
  --fc-teaser-label-exit-x: -18px;
  --fc-teaser-title-exit-x: -24px;
  --fc-teaser-title-exit-y: -6px;
  --fc-teaser-subtitle-exit-y: 18px;
  --fc-teaser-micro-exit-y: 14px;
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.fc-hyro-teaser.is-direction-reverse {
  --fc-teaser-label-enter-x: 18px;
  --fc-teaser-title-enter-x: -30px;
  --fc-teaser-subtitle-enter-y: -18px;
  --fc-teaser-micro-enter-y: -14px;
  --fc-teaser-label-exit-x: 18px;
  --fc-teaser-title-exit-x: 24px;
  --fc-teaser-title-exit-y: 8px;
  --fc-teaser-subtitle-exit-y: -16px;
  --fc-teaser-micro-exit-y: -12px;
}

.fc-hyro-teaser.is-teaser-active {
  opacity: 1;
  visibility: visible;
}

.fc-hyro-teaser.is-teaser-disabled {
  opacity: 0;
  visibility: hidden;
}

.fc-hyro-teaser__scene {
  position: absolute;
  left: clamp(64px, 10vw, 170px);
  right: clamp(104px, 14vw, 230px);
  top: 43%;
  transform: translateY(-50%);
  display: grid;
  gap: clamp(11px, 1.16vw, 18px);
  max-width: min(1120px, calc(100vw - 240px));
  color: rgba(244, 243, 247, 0.94);
  opacity: 0;
  visibility: hidden;
  filter: blur(8px);
  isolation: isolate;
}

.fc-hyro-teaser__scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4.4vw;
  top: -5.8vh;
  width: min(760px, 62vw);
  height: min(360px, 38vh);
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 32% 48%,
      rgba(0, 0, 0, 0.01),
      rgba(0, 0, 0, 0.13) 42%,
      transparent 72%
    );
  opacity: 0;
  transition: opacity 720ms ease;
}

.fc-hyro-teaser__scene.is-active {
  visibility: visible;
}

.fc-hyro-teaser__label,
.fc-hyro-teaser__title,
.fc-hyro-teaser__subtitle {
  margin: 0;
}

.fc-hyro-teaser__label {
  color: var(--fc-teaser-gold);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-hyro-teaser__title {
  position: relative;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(44px, 6.7vw, 108px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(36px, 0, 0);
  text-shadow:
    0 16px 48px rgba(0, 0, 0, 0.46),
    0 2px 12px rgba(0, 0, 0, 0.28);
  transition:
    opacity 840ms ease,
    transform 840ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 840ms ease;
}

.fc-hyro-teaser__title span {
  display: block;
}

.fc-hyro-teaser__title-word--gold {
  color: var(--fc-teaser-title-gold);
  position: relative;
  overflow: hidden;
}

.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__title-word--gold,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__title-word--gold {
  color: var(--fc-teaser-title-gold);
  opacity: 1;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__title-word--gold {
  color: var(--fc-teaser-title-gold);
}

.fc-hyro-teaser__title-word--gold::after {
  content: attr(data-sweep);
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #f0c85a;
  pointer-events: none;
  white-space: nowrap;
  clip-path: polygon(-28% 0, -8% 0, -18% 100%, -38% 100%);
  opacity: 0;
  filter: blur(2.75px);
  text-shadow: 0 0 3px rgba(240, 200, 90, 0.18);
}

.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__title-word--gold::after {
  animation:
    fcHyroTeaserGoldSweep
    var(--fc-teaser-spotlight-duration)
    var(--fc-teaser-ease-enter)
    var(--fc-teaser-spotlight-delay)
    1
    both;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__title-word--gold::after {
  animation: none;
  opacity: 0;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title::before {
  content: "INTERFACEFILM";
  position: absolute;
  inset: 0;
  color: var(--fc-teaser-title-gold);
  pointer-events: none;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(4px, -3px, 0);
}

.fc-hyro-teaser__subtitle {
  max-width: 580px;
  color: rgba(241, 238, 231, 0.84);
  font-size: clamp(15px, 1.08vw, 20px);
  font-weight: 600;
  line-height: 1.42;
  text-shadow:
    0 12px 30px rgba(0, 0, 0, 0.62),
    0 1px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 820ms ease 80ms,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.fc-hyro-teaser__micro,
.fc-hyro-teaser__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 620ms ease 160ms,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.fc-hyro-teaser__micro span,
.fc-hyro-teaser__pillars span {
  padding: 7px 10px;
  color: rgba(238, 234, 226, 0.76);
  font-size: clamp(10px, 0.66vw, 12px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__subtitle {
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 820ms ease 80ms,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.fc-hyro-teaser__scene--architecture {
  left: var(--fc-teaser-left-anchor);
  right: clamp(118px, 18vw, 300px);
  top: calc(var(--fc-teaser-top-anchor) + clamp(34px, 2.9vw, 42px));
  max-width: min(880px, calc(100vw - 360px));
  gap: clamp(10px, 0.98vw, 16px);
}

.fc-hyro-teaser__scene--film {
  top: calc(var(--fc-teaser-top-anchor) + clamp(18px, 1.5vw, 22px));
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title {
  font-size: clamp(40px, 5.35vw, 86px);
  line-height: 0.84;
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__micro {
  max-width: 580px;
  gap: 8px;
}

.fc-hyro-teaser__scene--value {
  text-align: center;
  left: clamp(80px, 12vw, 220px);
  right: clamp(112px, 14vw, 240px);
  justify-items: center;
  max-width: min(980px, calc(100vw - 360px));
  margin-inline: auto;
  padding-top: calc(12px + clamp(12px, 1.06vw, 17px));
  gap: clamp(12px, 1.06vw, 17px);
}

.fc-hyro-teaser__scene--value::after {
  left: 50%;
  top: -5vh;
  transform: translateX(-50%);
  width: min(720px, 58vw);
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
  font-size: clamp(42px, 5.9vw, 92px);
  line-height: 0.9;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__subtitle {
  max-width: 560px;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__pillars {
  justify-content: center;
  max-width: 620px;
  gap: 10px;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__label {
  transform: translate3d(0, -18px, 0);
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
  transform: translate3d(0, 18px, 0);
}

.fc-hyro-teaser__scene.is-entering,
.fc-hyro-teaser__scene.is-current {
  opacity: 1;
  filter: blur(0);
}

.fc-hyro-teaser__scene.is-entering::after,
.fc-hyro-teaser__scene.is-current::after {
  opacity: 1;
}

.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__label,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__label,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__title,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__title,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__pillars,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__pillars {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__subtitle {
  clip-path: inset(0 0 0 0);
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title {
  font-size: clamp(46px, 6.95vw, 112px);
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title {
  font-size: clamp(44px, 6.35vw, 100px);
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__micro {
  max-width: 680px;
  gap: 10px;
}

.fc-hyro-teaser__scene.is-leaving {
  opacity: 0;
  visibility: visible;
  filter: blur(6px);
  transition:
    opacity 340ms ease,
    filter 340ms ease;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__label {
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__title {
  opacity: 0;
  transform: translate3d(-22px, 0, 0);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars {
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

/* Phase 3A - controlled cinematic choreography. */

.fc-hyro-teaser__scene.is-active:not(.is-entering):not(.is-current):not(.is-leaving) .fc-hyro-teaser__label {
  transform: translate3d(var(--fc-teaser-label-enter-x), 0, 0);
}

.fc-hyro-teaser__scene.is-active:not(.is-entering):not(.is-current):not(.is-leaving) .fc-hyro-teaser__title {
  filter: blur(7px);
  transform: translate3d(var(--fc-teaser-title-enter-x), 0, 0);
}

.fc-hyro-teaser__scene.is-active:not(.is-entering):not(.is-current):not(.is-leaving) .fc-hyro-teaser__subtitle {
  filter: blur(5px);
  transform: translate3d(0, var(--fc-teaser-subtitle-enter-y), 0);
}

.fc-hyro-teaser__scene.is-active:not(.is-entering):not(.is-current):not(.is-leaving) .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-active:not(.is-entering):not(.is-current):not(.is-leaving) .fc-hyro-teaser__pillars {
  transform: translate3d(0, var(--fc-teaser-micro-enter-y), 0);
}

.fc-hyro-teaser__label {
  transition:
    opacity 620ms ease 0ms,
    transform 720ms var(--fc-teaser-ease-enter) 0ms,
    clip-path 620ms var(--fc-teaser-ease-enter) 0ms;
}

.fc-hyro-teaser__title {
  transition:
    opacity 760ms ease 120ms,
    transform 820ms var(--fc-teaser-ease-enter) 120ms,
    filter 780ms ease 120ms;
}

.fc-hyro-teaser__subtitle {
  transition:
    opacity 690ms ease 280ms,
    transform 760ms var(--fc-teaser-ease-enter) 280ms,
    filter 720ms ease 280ms;
}

.fc-hyro-teaser__micro,
.fc-hyro-teaser__pillars {
  transition:
    opacity 560ms ease 390ms,
    transform 650ms var(--fc-teaser-ease-enter) 390ms;
}

.fc-hyro-teaser__micro span,
.fc-hyro-teaser__pillars span {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 480ms ease,
    transform 560ms var(--fc-teaser-ease-enter);
}

.fc-hyro-teaser__micro span:nth-child(1),
.fc-hyro-teaser__pillars span:nth-child(1) {
  transition-delay: 390ms;
}

.fc-hyro-teaser__micro span:nth-child(2),
.fc-hyro-teaser__pillars span:nth-child(2) {
  transition-delay: 455ms;
}

.fc-hyro-teaser__micro span:nth-child(3),
.fc-hyro-teaser__pillars span:nth-child(3) {
  transition-delay: 520ms;
}

.fc-hyro-teaser__micro span:nth-child(4),
.fc-hyro-teaser__pillars span:nth-child(4) {
  transition-delay: 585ms;
}

.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__title,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__title,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__subtitle {
  filter: blur(0);
}

.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__micro span,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__micro span,
.fc-hyro-teaser__scene.is-entering .fc-hyro-teaser__pillars span,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__pillars span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__label,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__title,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__subtitle,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__pillars,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__micro span,
.fc-hyro-teaser__scene.is-current .fc-hyro-teaser__pillars span {
  transition-delay: 0ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__label {
  transform: translate3d(var(--fc-teaser-label-exit-x), 0, 0);
  transition:
    opacity 320ms ease 210ms,
    transform 360ms var(--fc-teaser-ease-exit) 210ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__title {
  filter: blur(5px);
  transform: translate3d(var(--fc-teaser-title-exit-x), var(--fc-teaser-title-exit-y), 0);
  transition:
    opacity 340ms ease 115ms,
    transform 360ms var(--fc-teaser-ease-exit) 115ms,
    filter 340ms ease 115ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__subtitle {
  filter: blur(4px);
  transform: translate3d(0, var(--fc-teaser-subtitle-exit-y), 0);
  transition:
    opacity 300ms ease 70ms,
    transform 330ms var(--fc-teaser-ease-exit) 70ms,
    filter 300ms ease 70ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro,
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars {
  transform: translate3d(0, var(--fc-teaser-micro-exit-y), 0);
  transition:
    opacity 260ms ease 0ms,
    transform 300ms var(--fc-teaser-ease-exit) 0ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro span,
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars span {
  opacity: 0;
  transform: translate3d(0, var(--fc-teaser-micro-exit-y), 0);
  transition:
    opacity 220ms ease,
    transform 260ms var(--fc-teaser-ease-exit);
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro span:nth-child(1),
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars span:nth-child(1) {
  transition-delay: 150ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro span:nth-child(2),
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars span:nth-child(2) {
  transition-delay: 100ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro span:nth-child(3),
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars span:nth-child(3) {
  transition-delay: 50ms;
}

.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__micro span:nth-child(4),
.fc-hyro-teaser__scene.is-leaving .fc-hyro-teaser__pillars span:nth-child(4) {
  transition-delay: 0ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__label {
  clip-path: inset(0 100% 0 0);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__label,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__label {
  clip-path: inset(0 0 0 0);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__title::before {
  animation: fcHyroTeaserFilmCalibration 420ms var(--fc-teaser-ease-exit) 90ms both;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__title::before {
  animation: fcHyroTeaserFilmExitCalibration 260ms var(--fc-teaser-ease-exit) both;
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__label {
  transition-delay: 90ms;
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(22px, 14px, 0);
  transition:
    opacity 680ms ease,
    transform 760ms var(--fc-teaser-ease-enter),
    filter 700ms ease;
}

.fc-hyro-teaser.is-direction-reverse .fc-hyro-teaser__scene--architecture:not(.is-entering):not(.is-current) .fc-hyro-teaser__title span {
  transform: translate3d(-18px, -10px, 0);
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 135ms;
}

.fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 220ms;
}

.fc-hyro-teaser__scene--architecture.is-entering .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--architecture.is-current .fc-hyro-teaser__title span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.fc-hyro-teaser__scene--architecture.is-leaving .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(var(--fc-teaser-title-exit-x), var(--fc-teaser-title-exit-y), 0);
  transition:
    opacity 300ms ease,
    transform 330ms var(--fc-teaser-ease-exit),
    filter 300ms ease;
}

.fc-hyro-teaser__scene--architecture.is-leaving .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 120ms;
}

.fc-hyro-teaser__scene--architecture.is-leaving .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 70ms;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 840ms ease 130ms,
    transform 900ms var(--fc-teaser-ease-enter) 130ms,
    filter 820ms ease 130ms;
}

.fc-hyro-teaser__scene--value.is-entering .fc-hyro-teaser__title,
.fc-hyro-teaser__scene--value.is-current .fc-hyro-teaser__title {
  transform: translate3d(0, 0, 0) scale(1);
}

.fc-hyro-teaser__scene--value.is-leaving .fc-hyro-teaser__title {
  transform: translate3d(0, var(--fc-teaser-subtitle-exit-y), 0) scale(0.99);
}

@keyframes fcHyroTeaserFilmCalibration {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(5px, -3px, 0);
  }

  34% {
    opacity: 0.42;
    filter: blur(3px);
    transform: translate3d(-2px, 2px, 0);
  }

  70% {
    opacity: 0.24;
    filter: blur(2px);
    transform: translate3d(2px, -1px, 0);
  }

  100% {
    opacity: 0;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fcHyroTeaserFilmExitCalibration {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  45% {
    opacity: 0.3;
    filter: blur(3px);
    transform: translate3d(3px, -2px, 0);
  }

  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(-2px, 2px, 0);
  }
}

@keyframes fcHyroTeaserGoldSweep {
  0% {
    opacity: 0;
    clip-path: polygon(-28% 0, -8% 0, -18% 100%, -38% 100%);
  }

  10% {
    opacity: 0.72;
    clip-path: polygon(-10% 0, 10% 0, 0 100%, -20% 100%);
  }

  50% {
    opacity: 0.72;
    clip-path: polygon(42% 0, 62% 0, 52% 100%, 32% 100%);
  }

  90% {
    opacity: 0.72;
    clip-path: polygon(94% 0, 114% 0, 104% 100%, 84% 100%);
  }

  100% {
    opacity: 0;
    clip-path: polygon(108% 0, 128% 0, 118% 100%, 98% 100%);
  }
}

/* Phase 3B - unique assembly choreography for Scenes 01, 02 and 04. */

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--film .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--value .fc-hyro-teaser__title span {
  display: inline-block;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title,
.fc-hyro-teaser__scene--film .fc-hyro-teaser__title,
.fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
  display: flex;
  align-items: baseline;
  gap: 0.04em;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
  justify-content: center;
}

.fc-hyro-teaser__calibration {
  pointer-events: none;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__label {
  display: flex;
  gap: 0.72em;
  overflow: hidden;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__label span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition:
    opacity 420ms ease,
    transform 560ms var(--fc-teaser-ease-enter);
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__label span:nth-child(1) {
  transition-delay: 90ms;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__label span:nth-child(2) {
  transform: translate3d(12px, 0, 0);
  transition-delay: 145ms;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(28px, 0, 0);
  transition:
    opacity 700ms ease,
    transform 780ms var(--fc-teaser-ease-enter),
    filter 760ms ease;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title span:nth-child(1) {
  transform: translate3d(-18px, 0, 0);
  transition-delay: 190ms;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 280ms;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__subtitle span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 540ms ease,
    transform 640ms var(--fc-teaser-ease-enter),
    filter 600ms ease;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__subtitle span:nth-child(1) {
  transition-delay: 470ms;
}

.fc-hyro-teaser__scene--trust .fc-hyro-teaser__subtitle span:nth-child(2) {
  transition-delay: 550ms;
}

.fc-hyro-teaser__scene--trust.is-entering .fc-hyro-teaser__label span,
.fc-hyro-teaser__scene--trust.is-current .fc-hyro-teaser__label span,
.fc-hyro-teaser__scene--trust.is-entering .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--trust.is-current .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--trust.is-entering .fc-hyro-teaser__subtitle span,
.fc-hyro-teaser__scene--trust.is-current .fc-hyro-teaser__subtitle span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__subtitle span {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, var(--fc-teaser-subtitle-exit-y), 0);
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__subtitle span:nth-child(1) {
  transition-delay: 80ms;
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__subtitle span:nth-child(2) {
  transition-delay: 20ms;
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(var(--fc-teaser-title-exit-x), var(--fc-teaser-title-exit-y), 0);
  transition:
    opacity 320ms ease,
    transform 350ms var(--fc-teaser-ease-exit),
    filter 320ms ease;
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 135ms;
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 75ms;
}

.fc-hyro-teaser__scene--trust.is-leaving .fc-hyro-teaser__label span {
  opacity: 0;
  transform: translate3d(var(--fc-teaser-label-exit-x), 0, 0);
  transition-delay: 230ms;
}

.fc-hyro-teaser__calibration {
  position: absolute;
  left: -24px;
  top: -30px;
  width: min(640px, 52vw);
  height: 112px;
  opacity: 0;
  transition: opacity 360ms ease 0ms;
}

@media (min-width: 1181px) {
  .fc-hyro-teaser__scene--film .fc-hyro-teaser__calibration {
    display: none;
  }
}

.fc-hyro-teaser__calibration span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(216, 173, 66, 0.42);
  background: transparent;
  opacity: 0;
  transform: scale(0.55);
  transition:
    opacity 360ms ease,
    transform 460ms var(--fc-teaser-ease-enter);
}

.fc-hyro-teaser__calibration span:nth-child(1) {
  left: 0;
  top: 0;
  transition-delay: 20ms;
}

.fc-hyro-teaser__calibration span:nth-child(2) {
  right: 0;
  bottom: 0;
  transition-delay: 130ms;
}

.fc-hyro-teaser__calibration span:nth-child(3) {
  left: 0;
  top: 0;
  transition-delay: 70ms;
}

.fc-hyro-teaser__calibration span:nth-child(4) {
  right: 0;
  bottom: 0;
  transition-delay: 180ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__label {
  display: flex;
  gap: 0.72em;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__label span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(-10px, 0, 0);
  transition:
    opacity 430ms ease,
    transform 520ms var(--fc-teaser-ease-enter),
    filter 500ms ease;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__label span:nth-child(1) {
  transition-delay: 100ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__label span:nth-child(2) {
  transition-delay: 150ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title {
  overflow: visible;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 760ms ease 160ms,
    transform 820ms var(--fc-teaser-ease-enter) 160ms,
    filter 780ms ease 160ms,
    clip-path 700ms var(--fc-teaser-ease-enter) 160ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(16px, 0, 0);
  transition:
    opacity 560ms ease,
    transform 640ms var(--fc-teaser-ease-enter),
    filter 640ms ease;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 220ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 300ms;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__micro span {
  position: relative;
  padding-left: 18px;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__decode-tag {
  min-width: max-content;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__decode-tag::after {
  content: attr(data-decode-text);
  position: absolute;
  left: 18px;
  top: 50%;
  color: rgba(238, 234, 226, 0.68);
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  filter: blur(1px);
  transform: translateY(-50%);
  pointer-events: none;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__decode-tag.is-decoding {
  color: transparent;
  text-shadow: none;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__decode-tag.is-decoding::after {
  opacity: 1;
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__decode-tag.is-decoded::after {
  opacity: 0;
  filter: blur(0);
}

.fc-hyro-teaser__scene--film .fc-hyro-teaser__micro span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(216, 173, 66, 0.68);
  opacity: 0;
  transform: translateY(-50%) scale(0.45);
  transition:
    opacity 280ms ease,
    transform 360ms var(--fc-teaser-ease-enter);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__calibration,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__calibration,
.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__calibration span,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__calibration span,
.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__label span,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__label span,
.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__micro span::before,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__micro span::before {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__micro span::before,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__micro span::before {
  transform: translateY(-50%) scale(1);
}

.fc-hyro-teaser__scene--film.is-entering .fc-hyro-teaser__title,
.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__title {
  clip-path: inset(0 0 0 0);
}

.fc-hyro-teaser__scene--film.is-current .fc-hyro-teaser__calibration {
  opacity: 1;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__calibration,
.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__calibration span,
.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__micro span::before {
  opacity: 0;
  transition-duration: 220ms;
  transition-delay: 220ms;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__title {
  clip-path: inset(0 0 0 100%);
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(var(--fc-teaser-title-exit-x), 0, 0);
  transition:
    opacity 300ms ease,
    transform 330ms var(--fc-teaser-ease-exit),
    filter 300ms ease;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 115ms;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 65ms;
}

.fc-hyro-teaser__scene--film.is-leaving .fc-hyro-teaser__label span {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(var(--fc-teaser-label-exit-x), 0, 0);
  transition-delay: 230ms;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 780ms ease,
    transform 900ms var(--fc-teaser-ease-enter),
    filter 800ms ease;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title span:nth-child(1) {
  opacity: 0;
  transition-delay: 220ms;
}

.fc-hyro-teaser__scene--value .fc-hyro-teaser__title span:nth-child(2) {
  transform: translate3d(0, 16px, 0);
  transition-delay: 340ms;
}

.fc-hyro-teaser__scene--value.is-entering .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--value.is-current .fc-hyro-teaser__title span {
  opacity: 1;
  filter: blur(0);
}

.fc-hyro-teaser__scene--value.is-entering .fc-hyro-teaser__title span,
.fc-hyro-teaser__scene--value.is-current .fc-hyro-teaser__title span {
  transform: translate3d(0, 0, 0);
}

.fc-hyro-teaser__scene--value.is-leaving .fc-hyro-teaser__subtitle {
  transition-delay: 0ms;
}

.fc-hyro-teaser__scene--value.is-leaving .fc-hyro-teaser__title span {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, var(--fc-teaser-subtitle-exit-y), 0);
  transition:
    opacity 360ms ease,
    transform 420ms var(--fc-teaser-ease-exit),
    filter 360ms ease;
}

.fc-hyro-teaser__scene--value.is-leaving .fc-hyro-teaser__title span:nth-child(1) {
  transition-delay: 120ms;
}

.fc-hyro-teaser__scene--value.is-leaving .fc-hyro-teaser__title span:nth-child(2) {
  transition-delay: 70ms;
}

@media (max-width: 1360px) {
  .fc-hyro-teaser {
    --fc-teaser-left-anchor: clamp(48px, 8vw, 110px);
  }

  .fc-hyro-teaser__scene {
    left: clamp(48px, 8vw, 110px);
    right: clamp(86px, 12vw, 160px);
    max-width: calc(100vw - 220px);
  }

  .fc-hyro-teaser__title,
  .fc-hyro-teaser__scene--trust .fc-hyro-teaser__title,
  .fc-hyro-teaser__scene--film .fc-hyro-teaser__title {
    font-size: clamp(40px, 6.15vw, 82px);
  }

  .fc-hyro-teaser__scene--architecture {
    max-width: calc(100vw - 280px);
  }

  .fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title {
    font-size: clamp(36px, 4.8vw, 68px);
  }

  .fc-hyro-teaser__scene--value {
    max-width: calc(100vw - 280px);
  }

  .fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
    font-size: clamp(38px, 5.25vw, 76px);
  }
}

@media (max-width: 1040px) {
  .fc-hyro-teaser {
    --fc-teaser-left-anchor: 44px;
    --fc-teaser-top-anchor: 42%;
  }

  .fc-hyro-teaser__scene {
    left: 44px;
    right: 82px;
    top: 42%;
    max-width: calc(100vw - 150px);
  }

  .fc-hyro-teaser__scene--architecture,
  .fc-hyro-teaser__scene--value {
    left: 44px;
    right: 82px;
    max-width: calc(100vw - 150px);
  }

  .fc-hyro-teaser__scene--film {
    top: calc(var(--fc-teaser-top-anchor) + clamp(18px, 1.5vw, 22px));
  }

  .fc-hyro-teaser__scene--architecture {
    top: calc(var(--fc-teaser-top-anchor) + clamp(34px, 2.9vw, 42px));
  }

  .fc-hyro-teaser__title,
  .fc-hyro-teaser__scene--trust .fc-hyro-teaser__title,
  .fc-hyro-teaser__scene--film .fc-hyro-teaser__title {
    font-size: clamp(36px, 6.6vw, 68px);
  }

  .fc-hyro-teaser__scene--architecture .fc-hyro-teaser__title {
    font-size: clamp(34px, 5.8vw, 58px);
  }

  .fc-hyro-teaser__scene--value .fc-hyro-teaser__title {
    font-size: clamp(34px, 6vw, 62px);
  }

  .fc-hyro-teaser__micro,
  .fc-hyro-teaser__pillars {
    max-width: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc-hyro-teaser {
    display: none !important;
  }

  .fc-hyro-teaser *,
  .fc-hyro-teaser *::before,
  .fc-hyro-teaser *::after {
    animation: none !important;
    transition: none !important;
  }
}
