/* ============================================================
   landing.css — Auroria Shard · Landing moderna com scroll
   ============================================================ */

.landing-page #auroria-wrap {
  overflow-x: clip;
}

.landing-page .aur-layout--landing {
  padding: 0;
  max-width: none;
}

.landing-page .aur-footer {
  margin-top: 0;
}

.landing-page [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. SCROLL PROGRESS BAR
   ============================================================ */
.landing-scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1060;
  background: rgba(7, 12, 24, 0.4);
}

.landing-scrollbar__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-light), var(--gold-mid) 55%, var(--gold-light));
  box-shadow: 0 0 10px rgba(201, 150, 42, 0.55);
  transition: width 0.08s linear;
}

/* ============================================================
   2. SIDE PROGRESS DOTS
   ============================================================ */
.landing-progress {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.5rem;
}

.landing-progress a {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 42, 0.45);
  background: rgba(7, 12, 24, 0.65);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.landing-progress a::after {
  content: attr(data-label);
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 0.25rem 0.6rem;
  font-family: var(--ff-head);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-light);
  background: rgba(13, 22, 40, 0.95);
  border: 1px solid rgba(201, 150, 42, 0.3);
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.landing-progress a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.landing-progress a:hover,
.landing-progress a.is-active {
  background: var(--gold-mid);
  box-shadow: 0 0 12px rgba(201, 150, 42, 0.55);
  transform: scale(1.35);
}

.landing-progress a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================================
   3. HERO
   ============================================================ */
.landing-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3.5rem;
  overflow: hidden;
}

.landing-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Soften the gameplay noise so text breathes */
  filter: blur(2px) saturate(0.75) brightness(0.7);
  transform: scale(1.04); /* compensate blur edge bleed */
}

.landing-hero__video--image {
  background-size: cover;
  background-position: center;
  /* Same blur on static image */
  filter: blur(3px) saturate(0.65) brightness(0.62);
  transform: scale(1.06);
  animation: landing-hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes landing-hero-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

.landing-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    /* Gold atmospheric glow at the top-center */
    radial-gradient(ellipse 65% 40% at 50% 15%, rgba(201, 150, 42, 0.14), transparent 60%),
    /* Dark centre where the text lives */
    radial-gradient(ellipse 80% 60% at 50% 52%, rgba(7, 12, 24, 0.55), transparent 80%),
    /* Top-to-bottom fade: lightest at top → full black at bottom */
    linear-gradient(180deg,
      rgba(7, 12, 24, 0.45) 0%,
      rgba(7, 12, 24, 0.72) 40%,
      rgba(7, 12, 24, 0.88) 72%,
      var(--bg-void) 100%
    );
}

.landing-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-hero__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.landing-hero__title {
  width: 100%;
  margin: 0 0 1.15rem;
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
}

.lh-line {
  display: block;
  font-size: clamp(2rem, 5.6vw, 3.75rem);
  color: var(--txt-parchment);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.75);
}

.lh-line--accent {
  color: var(--gold-light);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.75), 0 0 40px rgba(201, 150, 42, 0.3);
}

.lh-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.1em;
}

.lh-word > span {
  display: inline-block;
  transform: translateY(115%);
  animation: lh-word-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 0.05s + 0.1s);
}

@keyframes lh-word-in {
  to { transform: translateY(0); }
}

.landing-hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--txt-body);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.landing-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 150, 42, 0.25);
  background: rgba(13, 22, 40, 0.55);
  backdrop-filter: blur(10px);
}

.landing-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--txt-body);
}

.landing-hero__stat i {
  color: var(--gold);
  font-size: 0.95rem;
}

.landing-hero__stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--offline);
  box-shadow: 0 0 8px var(--offline-glow);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.landing-hero__stat-dot.is-online {
  background: var(--online);
  box-shadow: 0 0 8px var(--online-glow);
}

.landing-hero__stat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
}

.landing-hero__stat-label {
  font-family: var(--ff-head);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-dim);
}

.landing-hero__stat-value {
  font-weight: 600;
  color: var(--gold-light);
}

.landing-hero__stat-sep {
  width: 1px;
  height: 1.6rem;
  background: rgba(201, 150, 42, 0.25);
}

.landing-scroll-hint {
  position: relative;
  z-index: 2;
  margin-top: 2.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--ff-head);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-muted);
  text-decoration: none;
  animation: landing-bob 2.4s ease-in-out infinite;
}

.landing-scroll-hint:hover {
  color: var(--gold-light);
}

.landing-scroll-hint i {
  font-size: 1rem;
  color: var(--gold);
}

@keyframes landing-bob {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   4. MARQUEE
   ============================================================ */
.landing-marquee {
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(201, 150, 42, 0.16);
  border-bottom: 1px solid rgba(201, 150, 42, 0.16);
  background: var(--bg-base);
  white-space: nowrap;
}

.landing-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  animation: landing-marquee-scroll 32s linear infinite;
  will-change: transform;
}

.landing-marquee__track span {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-muted);
  padding: 0 0.35rem;
}

.landing-marquee__track i {
  font-size: 0.5rem;
  color: var(--gold-dim);
}

@keyframes landing-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   5. SECTION HEAD (shared)
   ============================================================ */
.landing-panel__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.7rem;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 150, 42, 0.35);
  border-radius: 2px;
  background: rgba(201, 150, 42, 0.08);
}

.landing-story__head {
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  text-align: center;
}

.landing-section-title {
  margin: 0 0 0.5rem;
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--txt-parchment);
}

.landing-section-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--txt-muted);
}

/* ============================================================
   6. TRAILER
   ============================================================ */
.landing-trailer {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.25rem, 5vw, 4rem);
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 144, 144, 0.06), transparent 60%);
}

.landing-trailer__frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(201, 150, 42, 0.3);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #000;
  box-shadow: var(--shadow-xl), var(--glow-gold);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.landing-trailer__frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 42px rgba(201, 150, 42, 0.4);
}

.landing-trailer__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.4s ease, transform 8s ease;
}

.landing-trailer__frame:hover .landing-trailer__poster {
  opacity: 0.5;
  transform: scale(1.05);
}

.landing-trailer__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.25) 0%, rgba(7, 12, 24, 0.75) 100%);
}

.landing-trailer__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(4rem, 8vw, 5.5rem);
  height: clamp(4rem, 8vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-cta-top), var(--gold-cta-mid) 55%, var(--gold-cta-bottom));
  color: #1a1208;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: 0 0 0 0 rgba(201, 150, 42, 0.55);
  animation: landing-play-pulse 2.6s ease-out infinite;
  transition: transform 0.3s ease;
}

.landing-trailer__frame:hover .landing-trailer__play {
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes landing-play-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 150, 42, 0.5); }
  70%  { box-shadow: 0 0 0 22px rgba(201, 150, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 150, 42, 0); }
}

.landing-trailer__label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-parchment);
  background: rgba(7, 12, 24, 0.65);
  border: 1px solid rgba(201, 150, 42, 0.3);
  border-radius: 999px;
}

/* ============================================================
   7. SCROLLYTELLING (sticky stage + narrative track)
   ============================================================ */
.landing-story {
  position: relative;
  padding: clamp(3.5rem, 8vh, 5rem) 0 clamp(3rem, 8vh, 5rem);
  background: var(--bg-void);
}

/* Isolate from body::before pseudo overlay so text is always readable */
.landing-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(13, 22, 40, 0.45), transparent 75%),
    linear-gradient(180deg, var(--bg-void) 0%, rgba(7, 12, 24, 0.0) 6%, rgba(7, 12, 24, 0.0) 94%, var(--bg-void) 100%);
  pointer-events: none;
  z-index: 0;
}

.landing-story__head,
.landing-story__grid {
  position: relative;
  z-index: 1;
}

.landing-story__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vh, 3.5rem);
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  max-width: 44rem;
  margin: 0 auto;
}

/* Imagem sticky lateral removida — cada card traz a sua própria imagem */
.landing-story__stage-col {
  display: none;
}

.landing-story__stage {
  --stage-accent: var(--gold-bright);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 150, 42, 0.35);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.5);
  background: #000;
}

.landing-stage__frame {
  position: relative;
  aspect-ratio: 4 / 5;
}

.landing-stage__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-stage__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.landing-stage__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-stage__tint {
  position: absolute;
  inset: 0;
  /* Stronger vignette: image readable but not distracting */
  background:
    linear-gradient(180deg, rgba(7, 12, 24, 0.28) 0%, transparent 30%, transparent 55%, rgba(7, 12, 24, 0.88) 100%),
    radial-gradient(ellipse 95% 90% at 50% 50%, transparent 35%, rgba(7, 12, 24, 0.45) 100%);
}

.landing-stage__slide img {
  filter: blur(0px) saturate(0.85) brightness(0.88);
  transition: filter 0.6s ease;
}

.landing-stage__slide.is-active img {
  filter: blur(0px) saturate(0.9) brightness(0.82);
}

.landing-story__stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px var(--stage-accent);
  opacity: 0.35;
  transition: box-shadow 0.5s ease, opacity 0.5s ease;
}

.landing-story__stage:hover::before {
  opacity: 0.55;
}

.landing-stage__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
}

.landing-stage__index {
  font-family: var(--ff-head);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.landing-stage__count {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--stage-accent, var(--gold-light));
}

.landing-stage__sep {
  margin: 0 0.15rem;
  opacity: 0.6;
  font-size: 0.9rem;
}

.landing-stage__total {
  font-size: 0.9rem;
  opacity: 0.75;
}

.landing-stage__dots {
  display: flex;
  gap: 0.5rem;
}

.landing-stage__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.landing-stage__dot.is-active {
  background: var(--stage-accent, var(--gold-light));
  border-color: var(--stage-accent, var(--gold-light));
  transform: scale(1.3);
}

.landing-story__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 6vh, 3rem);
  width: 100%;
  padding: 0 0 clamp(1rem, 4vh, 2rem);
}

.landing-story__block {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* Glass card so text is always readable regardless of background */
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(30, 46, 78, 0.0);
  background: rgba(7, 12, 24, 0.0);
  opacity: 0.4;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.landing-story__block.is-active {
  opacity: 1;
  transform: translateY(0);
  background: rgba(10, 16, 32, 0.72);
  border-color: rgba(201, 150, 42, 0.2);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.landing-story__block-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  border: 1px solid rgba(201, 150, 42, 0.3);
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}

.landing-story__block .landing-story__block-media {
  margin-bottom: 1.25rem;
}

.landing-story__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 0.85rem;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-dim);
}

.landing-story__num::before,
.landing-story__num::after {
  content: '';
  flex: 1;
  max-width: 5rem;
  height: 1px;
  background: rgba(201, 150, 42, 0.22);
}

.landing-story__num::before {
  background: linear-gradient(90deg, transparent, rgba(201, 150, 42, 0.35));
}

.landing-story__num::after {
  background: linear-gradient(90deg, rgba(201, 150, 42, 0.35), transparent);
}

.landing-story__title {
  margin: 0 0 0.9rem;
  font-family: var(--ff-head);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--txt-parchment);
}

.landing-story__body {
  margin: 0 0 1.2rem;
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--txt-body);
}

.landing-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.landing-panel__tags li {
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-body);
  border: 1px solid rgba(30, 46, 78, 0.9);
  border-radius: 999px;
  background: rgba(19, 31, 56, 0.75);
}

/* ============================================================
   7b. IMAGE SLOTS & PLACEHOLDERS
   ============================================================ */
.landing-img-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(10, 16, 32, 0.85);
}

.landing-img-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-img-slot--ph img {
  filter: blur(2px) saturate(0.65) brightness(0.7);
}

.landing-img-slot__empty {
  width: 100%;
  min-height: 12rem;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(19, 31, 56, 0.9),
      rgba(19, 31, 56, 0.9) 10px,
      rgba(13, 22, 40, 0.9) 10px,
      rgba(13, 22, 40, 0.9) 20px
    );
}

.landing-img-slot__badge {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  background: rgba(7, 12, 24, 0.62);
  border: 1px dashed rgba(201, 150, 42, 0.45);
  pointer-events: none;
}

.landing-img-slot__badge i {
  font-size: 1.5rem;
  color: var(--gold-dim);
}

.landing-img-slot__badge code {
  font-size: 0.68rem;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  border: 1px solid rgba(201, 150, 42, 0.25);
}

.landing-img-slot__badge span {
  font-size: 0.78rem;
  color: var(--txt-muted);
  max-width: 16rem;
  line-height: 1.4;
}

.landing-hero__ph-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  color: var(--gold-light);
  background: rgba(7, 12, 24, 0.72);
  border: 1px dashed rgba(201, 150, 42, 0.45);
  border-radius: 4px;
}

.landing-hero__ph-badge code {
  color: var(--gold-light);
}

.landing-trailer__poster-slot {
  position: absolute;
  inset: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}

.landing-section-lead code {
  font-size: 0.82em;
  color: var(--gold-bright);
  background: rgba(201, 150, 42, 0.1);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

/* ============================================================
   7c. GALERIA DE SCREENSHOTS
   ============================================================ */
.landing-gallery {
  padding: clamp(3rem, 8vh, 5rem) 0;
  border-top: 1px solid rgba(201, 150, 42, 0.12);
  background: var(--bg-base);
}

.landing-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 0.85rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.landing-gallery__tile {
  min-height: 160px;
}

.landing-gallery__tile--wide {
  grid-column: span 2;
}

.landing-gallery__tile--tall {
  grid-row: span 2;
}

.landing-gallery__slot {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: 8px;
  border: 1px solid rgba(201, 150, 42, 0.28);
  box-shadow: var(--shadow-sm);
}

.landing-gallery__tile--tall .landing-gallery__slot {
  min-height: 100%;
}

/* ============================================================
   8. BENTO GRID
   ============================================================ */
.landing-bento-section {
  padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 8vh, 5rem);
  border-top: 1px solid rgba(201, 150, 42, 0.12);
  background: var(--bg-base);
}

.landing-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.landing-bento__item {
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(30, 46, 78, 0.85);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(19, 31, 56, 0.75), rgba(13, 22, 40, 0.75));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.landing-bento__item--has-img {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.landing-bento__img {
  aspect-ratio: 16 / 9;
  border: none;
  border-bottom: 1px solid rgba(201, 150, 42, 0.22);
  border-radius: 0;
}

.landing-bento__item--wide .landing-bento__img {
  aspect-ratio: 21 / 8;
}

.landing-bento__copy {
  padding: 1.25rem 1.35rem 1.35rem;
}

.landing-bento__item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 150, 42, 0.45);
  box-shadow: var(--shadow-md);
}

.landing-bento__item--wide {
  grid-column: span 2;
}

.landing-bento__item i {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.6rem;
  color: var(--gold);
}

.landing-bento__copy strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.landing-bento__copy span {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--txt-muted);
}

/* legacy selectors — keep if old markup exists */
.landing-bento__item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.landing-bento__item span {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--txt-muted);
}

/* ============================================================
   9. CTA FINAL
   ============================================================ */
.landing-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vh, 2.5rem);
  padding: clamp(4rem, 10vh, 7rem) 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(201, 150, 42, 0.2);
}

.landing-cta__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
}

.landing-cta__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 10px;
  border: 1px solid rgba(201, 150, 42, 0.3);
  box-shadow: var(--shadow-lg);
}

.landing-cta__mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 25%, rgba(201, 150, 42, 0.22), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(26, 144, 144, 0.18), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(106, 74, 12, 0.25), transparent 50%),
    var(--bg-void);
  animation: landing-mesh-drift 22s ease-in-out infinite alternate;
}

@keyframes landing-mesh-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-2%, 2%) scale(1.06); }
}

.landing-cta__card {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid rgba(201, 150, 42, 0.3);
  border-radius: 12px;
  background: rgba(13, 22, 40, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xl), var(--glow-gold);
}

.landing-cta__card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--gold-light);
}

.landing-cta__card p {
  margin: 0 0 1.75rem;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--txt-body);
}

.landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   10. VIDEO LIGHTBOX
   ============================================================ */
.landing-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.landing-video-modal.is-open {
  display: flex;
}

.landing-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.88);
  backdrop-filter: blur(4px);
}

.landing-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 68rem);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 150, 42, 0.35);
  background: #000;
  box-shadow: var(--shadow-xl), var(--glow-gold);
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.landing-video-modal.is-open .landing-video-modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.landing-video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(7, 12, 24, 0.65);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.landing-video-modal__close:hover {
  background: var(--gold);
  color: #1a1208;
  border-color: var(--gold);
}

.landing-video-modal__stage {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-video-modal__stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.landing-video-modal__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--txt-body);
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 150, 42, 0.12), transparent 60%), var(--bg-base);
  width: 100%;
  height: 100%;
}

.landing-video-modal__placeholder i {
  font-size: 2.75rem;
  color: var(--gold-dim);
}

.landing-video-modal__placeholder p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============================================================
   11. RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .landing-story__block {
    opacity: 1;
    transform: none;
    background: rgba(10, 16, 32, 0.72);
    border-color: rgba(201, 150, 42, 0.18);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
  }

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

  .landing-gallery__tile--wide {
    grid-column: span 2;
  }

  .landing-gallery__tile--tall {
    grid-row: span 1;
  }

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

  .landing-bento__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 575.98px) {
  .landing-gallery__grid {
    grid-template-columns: 1fr;
  }

  .landing-gallery__tile--wide {
    grid-column: span 1;
  }

  .landing-hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }

  .landing-bento {
    grid-template-columns: 1fr;
  }

  .landing-bento__item--wide {
    grid-column: span 1;
  }

  .landing-hero__actions .aur-btn,
  .landing-cta__actions .aur-btn {
    width: 100%;
    justify-content: center;
  }

  .landing-trailer__label span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__video--image,
  .landing-scroll-hint,
  .landing-marquee__track,
  .landing-cta__mesh,
  .landing-trailer__play {
    animation: none;
  }

  .lh-word > span {
    animation: none;
    transform: translateY(0);
  }

  [data-reveal],
  .landing-stage__slide,
  .landing-story__block,
  .landing-bento__item,
  .landing-video-modal__dialog {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
