/* ==========================================================================
   Home — Hero Slider + Marquee (staggered copy; marquee static)
   ========================================================================== */

.hero--slider {
  padding-block: 0;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: clamp(520px, 74vh, 820px);
  background: var(--void);
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 900ms var(--ease-cinema),
    transform 1400ms var(--ease-cinema);
  filter: saturate(1.08) contrast(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 20% 20%,
      rgba(45, 107, 255, 0.16),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      800px 520px at 80% 10%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 58%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 7, 0.1) 0%,
      rgba(5, 5, 7, 0.45) 35%,
      rgba(5, 5, 7, 0.82) 72%,
      rgba(5, 5, 7, 1) 100%
    );
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Layout */
.hero-content {
  position: relative;
  min-height: clamp(520px, 74vh, 820px);
  display: grid;
  align-items: end;
  padding-block: clamp(110px, 12vw, 170px);
}

.hero__copy {
  display: grid;
  gap: 18px;
  max-width: 72ch;
  padding-bottom: 44px; /* space above marquee */
}

.hero-title {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.hero-excerpt {
  color: rgba(156, 163, 175, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Controls */
.hero-controls {
  position: absolute;
  right: var(--pad-x);
  bottom: 70px;
  display: flex;
  gap: 10px;
}

.hero-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-controls {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Staggered fade-up
   - Exit: ease-out (fade out + move down)
   - Enter: ease-in (fade in + move up)
-------------------------------------------------------------------------- */
.hero-title,
.hero-excerpt,
.hero__actions a,
.hero-badges .badge {
  will-change: opacity, transform;
}

.hero-title.is-out,
.hero-excerpt.is-out,
.hero__actions a.is-out,
.hero-badges .badge.is-out {
  animation: cameoHeroExit 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title.is-in,
.hero-excerpt.is-in,
.hero__actions a.is-in,
.hero-badges .badge.is-in {
  animation: cameoHeroEnter 420ms cubic-bezier(0.4, 0, 1, 1) both;
  animation-delay: calc(var(--hero-stagger, 0) * 60ms);
}

@keyframes cameoHeroExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes cameoHeroEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title.is-out,
  .hero-excerpt.is-out,
  .hero__actions a.is-out,
  .hero-badges .badge.is-out,
  .hero-title.is-in,
  .hero-excerpt.is-in,
  .hero__actions a.is-in,
  .hero-badges .badge.is-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Marquee (global/static)
-------------------------------------------------------------------------- */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: fit-content;
  background: rgba(5, 5, 7, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-marquee__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 10px;
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cameoMarquee 28s linear infinite;
}

.hero-marquee__row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-inline: 7.5px;
  white-space: nowrap;
  flex-shrink: 0;

  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(229, 231, 235, 0.35);
  display: inline-block;
}

.hero-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.55);
}

@keyframes cameoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track {
    animation: none;
  }
}

/* ==========================================================================
   Home — About Cameo
   ========================================================================== */

.about-cameo__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cameo__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

@media (max-width: 980px) {
  .about-cameo__grid {
    grid-template-columns: 1fr;
  }
}

.about-cameo__copy {
  max-width: 72ch;
}

.about-cameo__title {
  margin-top: 8px;
}

.about-cameo__lead {
  margin-top: 14px;
  color: rgba(229, 231, 235, 0.86);
}

.about-cameo__text {
  margin-top: 12px;
  color: rgba(156, 163, 175, 0.78);
}

.about-cameo__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-cameo__cards {
  display: grid;
  gap: 12px;
}

.about-cameo__card {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.55);
  padding: 16px;
  transition:
    transform 220ms var(--ease-cinema),
    border-color 220ms var(--ease-cinema);
}

.about-cameo__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(45, 107, 255, 0.35);
}

.about-cameo__meta {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.72);
}

.about-cameo__card-title {
  margin-top: 8px;
  font-family: var(--ff-display, inherit);
  letter-spacing: -0.02em;
  color: rgba(229, 231, 235, 0.92);
}

.about-cameo__desc {
  margin-top: 8px;
  color: rgba(156, 163, 175, 0.78);
}

/* Glow */
.about-cameo__glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background:
    radial-gradient(
      420px 260px at 22% 22%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 65%
    ),
    radial-gradient(
      360px 240px at 78% 18%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 68%
    );
  filter: blur(22px);
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Staggered reveal (title -> lead -> text -> CTAs -> cards)
   JS sets --about-stagger
-------------------------------------------------------------------------- */
[data-about-anim] {
  will-change: opacity, transform;
}

[data-about-anim].is-out {
  animation: cameoAboutExit 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-about-anim].is-in {
  animation: cameoAboutEnter 420ms cubic-bezier(0.4, 0, 1, 1) both;
  animation-delay: calc(var(--about-stagger, 0) * 70ms);
}

@keyframes cameoAboutExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes cameoAboutEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-about-anim].is-out,
  [data-about-anim].is-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ==========================================================================
   Home — Upcoming Editions (Buy-first)
   ========================================================================== */

.upcoming-editions__head {
  padding-bottom: 20px;
}

.upcoming-editions__head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Grid */
.upcoming-editions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .upcoming-editions__grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.edition-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
  transition:
    transform 240ms var(--ease-cinema),
    border-color 240ms var(--ease-cinema);
}

.edition-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(45, 107, 255, 0.35);
}

.edition-card__link {
  display: grid;
  grid-template-rows: 170px 1fr;
  color: inherit;
  text-decoration: none;
}

/* Live editions pop more */
.edition-card--live {
  background-color: rgba(45, 107, 255, 0.38);
  transform: scale(1.5);
}

.edition-card--live .edition-pill {
  background-color: white;
  color: #050507;
  font-weight: 500;
}

.edition-card--live .edition-card__link {
  grid-template-rows: 190px 1fr;
}

@media (max-width: 980px) {
  .edition-card--live .edition-card__link {
    grid-template-rows: 180px 1fr;
  }
}

.edition-card__media {
  position: relative;
}

.edition-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1400ms var(--ease-cinema);
}

.edition-card:hover .edition-card__bg {
  transform: scale(1);
}

.edition-card__bg--fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      420px 260px at 20% 20%,
      rgba(45, 107, 255, 0.14),
      rgba(45, 107, 255, 0) 62%
    ),
    radial-gradient(
      360px 240px at 78% 18%,
      rgba(0, 212, 255, 0.08),
      rgba(0, 212, 255, 0) 68%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.25), rgba(5, 5, 7, 0.88));
}

.edition-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.12), rgba(5, 5, 7, 0.9));
}

/* Live glow (subtle, premium) */
.edition-card__live-glow {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(
      420px 260px at 18% 22%,
      rgba(45, 107, 255, 0.22),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      420px 260px at 78% 18%,
      rgba(0, 212, 255, 0.12),
      rgba(0, 212, 255, 0) 62%
    );
  filter: blur(18px);
}

/* Body */
.edition-card__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.edition-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.edition-card__city {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.edition-card__dates {
  margin-top: 4px;
  font-size: var(--fs-xs);
  color: rgba(156, 163, 175, 0.72);
}

.edition-card__title {
  color: rgba(229, 231, 235, 0.92);
  font-size: var(--fs-xl);
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.edition-card__desc {
  margin: 0;
  color: rgba(156, 163, 175, 0.78);
}

/* CTA row (more “cinematic” than a button) */
.edition-card__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(229, 231, 235, 0.86);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.edition-card__cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 220ms var(--ease-cinema);
}

.edition-card:hover .edition-card__cta-arrow {
  transform: translateX(4px);
}

/* Pill = urgency label (NOT status) */
.edition-pill {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-color: rgba(45, 107, 255, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.82);
  flex-shrink: 0;
}

.edition-pill--live {
  border-color: rgba(45, 107, 255, 0.35);
}

.edition-pill--soon {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(156, 163, 175, 0.9);
}

/* ==========================================================================
   Component — Fallback Newsletter
   ========================================================================== */

.fallback-newsletter {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(18px, 3.2vw, 28px);
}

.fallback-newsletter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

@media (max-width: 980px) {
  .fallback-newsletter__inner {
    grid-template-columns: 1fr;
  }
}

.fallback-newsletter__title {
  margin-top: 8px;
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: 0em;
}

.fallback-newsletter__subtitle {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.78);
  max-width: 70ch;
}

.fallback-newsletter__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fallback-newsletter__note {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.65);
}

.fallback-newsletter__aside {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .fallback-newsletter__aside {
    justify-content: flex-start;
  }
}

.fallback-newsletter__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fallback-newsletter__glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background:
    radial-gradient(
      420px 260px at 22% 22%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 65%
    ),
    radial-gradient(
      360px 240px at 78% 18%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 68%
    );
  filter: blur(22px);
  opacity: 0.9;
}
/* ==========================================================================
   Component: Stat Card
   ========================================================================== */

.stat-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: hidden;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: rgba(229, 231, 235, 0.92);
}

.stat-card__label {
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: rgba(229, 231, 235, 0.88);
}

.stat-card__desc {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 52ch;
}

.stat-card__glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    closest-side at 30% 35%,
    rgba(45, 107, 255, 0.18),
    rgba(45, 107, 255, 0) 62%
  );
  opacity: 0;
  transition: opacity 220ms var(--ease-cinema);
  pointer-events: none;
}

.stat-card:hover {
  border-color: rgba(45, 107, 255, 0.35);
}

.stat-card:hover .stat-card__glow {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .stat-card__glow {
    transition: none;
  }
}

/* ==========================================================================
   Section: Home / Numbers
   ========================================================================== */

.numbers__head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.numbers__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.numbers__note {
  margin-top: 16px;
  color: rgba(156, 163, 175, 0.7);
}

@media (max-width: 980px) {
  .numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .numbers__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Section: Home / Upcoming Screenings
   ========================================================================== */

.upcoming-screenings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1100px) {
  .upcoming-screenings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .upcoming-screenings__grid {
    grid-template-columns: 1fr;
  }
} /* ==========================================================================
   Component — Screening Card
   ========================================================================== */

.screening-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
  transition:
    transform 240ms var(--ease-cinema),
    border-color 240ms var(--ease-cinema);
}

.screening-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(45, 107, 255, 0.35);
}

.screening-card__link {
  display: grid;
  grid-template-rows: 220px 1fr;
  text-decoration: none;
  color: inherit;
}

.screening-card__media {
  position: relative;
}

.screening-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1200ms var(--ease-cinema);
  filter: saturate(1.06) contrast(1.04);
}

.screening-card:hover .screening-card__bg {
  transform: scale(1);
}

.screening-card__bg--fallback {
  background:
    radial-gradient(
      420px 260px at 20% 20%,
      rgba(45, 107, 255, 0.14),
      rgba(45, 107, 255, 0) 62%
    ),
    radial-gradient(
      360px 240px at 78% 18%,
      rgba(0, 212, 255, 0.08),
      rgba(0, 212, 255, 0) 68%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.25), rgba(5, 5, 7, 0.9));
}

.screening-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 7, 0.08) 0%,
    rgba(5, 5, 7, 0.62) 55%,
    rgba(5, 5, 7, 0.92) 100%
  );
}

/* Top pills */
.screening-card__top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  flex-shrink: 0;
}

.pill--live {
  border-color: rgba(45, 107, 255, 0.35);
}
.pill--sold {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(156, 163, 175, 0.9);
}
.pill--closed {
  opacity: 0.7;
}
.pill--price {
  border-color: rgba(0, 212, 255, 0.22);
}

/* “When” chips (bottom-left) */
.screening-card__chips {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chip {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.6);
  color: rgba(229, 231, 235, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.chip--muted {
  color: rgba(156, 163, 175, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Body */
.screening-card__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.screening-card__context {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.8);
}

.context__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.65);
  display: inline-block;
}

.screening-card__title {
  margin: 0;
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.02em;
}

.screening-card__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-xs);
}

.sub__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-block;
}

/* CTA */
.screening-card__cta {
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(229, 231, 235, 0.86);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.cta__arrow {
  transform: translateX(0);
  transition: transform 220ms var(--ease-cinema);
}

.screening-card:hover .cta__arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   FAQ + Newsletter section
   ========================================================================== */

.faq-news__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(14px, 2.4vw, 22px);
  align-items: start;
}

@media (max-width: 980px) {
  .faq-news__grid {
    grid-template-columns: 1fr;
  }
}

.faq-news__panel {
  position: relative;
  border-radius: var(--r-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(18, 20, 24, 0.78),
    rgba(18, 20, 24, 0.48)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
  padding: 16px;
  overflow: hidden;
}

.faq-news__panel--primary {
  border-color: rgba(45, 107, 255, 0.2);
  background:
    radial-gradient(
      900px 420px at 20% 0%,
      rgba(45, 107, 255, 0.16),
      rgba(45, 107, 255, 0) 60%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.82), rgba(18, 20, 24, 0.5));
}

.faq-news__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-1);
  background: rgba(5, 5, 7, 0.22);
  transition:
    transform 260ms var(--ease-cinema),
    border-color 260ms var(--ease-cinema),
    box-shadow 260ms var(--ease-cinema);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(45, 107, 255, 0.22);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 107, 255, 0.24);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.45),
    var(--glow-primary);
}

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  cursor: pointer;

  color: rgba(229, 231, 235, 0.88);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1);
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 212, 255, 0.85);
  border-radius: 999px;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .faq-icon::after {
  opacity: 0; /* minus icon */
}

.faq-a {
  padding: 0 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-a p {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.8);
  line-height: 1.75;
}

/* Newsletter */
.faq-news__title {
  margin-top: 10px;
  color: rgba(229, 231, 235, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  line-height: 1.1;
}

.faq-news__text {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.82);
  line-height: 1.75;
  max-width: 44ch;
}

.newsletter {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.input {
  height: 46px;
  border-radius: var(--r-1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.35);
  color: rgba(229, 231, 235, 0.86);
  padding: 0 12px;
  outline: none;
  transition:
    border-color 260ms var(--ease-cinema),
    box-shadow 260ms var(--ease-cinema);
}

.input::placeholder {
  color: rgba(156, 163, 175, 0.62);
}

.input:focus {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--focus);
}

.faq-news__fineprint {
  margin-top: 8px;
  color: rgba(156, 163, 175, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-news__glow {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      700px 340px at 25% 15%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      540px 300px at 80% 10%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 58%
    );
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
}
select.input {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(229, 231, 235, 0.75) 50%),
    linear-gradient(135deg, rgba(229, 231, 235, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

select.input option {
  background-color: #050507 !important; /* The Void */
  color: rgba(229, 231, 235, 0.88);
  font-size: 0.95rem;
  padding: 10px; /* works in Firefox */
}

/* Disabled placeholder option */
select.input option[disabled] {
  color: rgba(156, 163, 175, 0.55);
}

/* Selected option (some browsers only) */
select.input option:checked {
  background-color: #121418;
  color: rgba(229, 231, 235, 0.95);
}

/* ==========================================================================
   Page: Current Editions
   ========================================================================== */

.section__head--page {
  padding-top: clamp(20px, 4vw, 44px);
}

.current-editions__stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.edition-block {
  border: 1px solid var(--stroke);
  border-radius: 4px;
  overflow: hidden;
}

.edition-block__hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 340px;
}

.edition-block__media {
  position: relative;
  background: #0b0c10;
  overflow: hidden;
}

.edition-block__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.05);
}

.edition-block__bg--fallback {
  background:
    radial-gradient(
      900px 600px at 20% 20%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 1), rgba(5, 5, 7, 1));
}

.edition-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.15), rgba(5, 5, 7, 0.86));
}

.edition-block__copy {
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.edition-block__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.72);
}

.edition-block__title {
  margin: 0;
}

.edition-block__intro {
  margin: 0;
  max-width: 70ch;
  color: rgba(156, 163, 175, 0.82);
}

.edition-block__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.edition-block__screenings {
  padding: clamp(16px, 2.5vw, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.55);
}

.edition-block__screenings-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.edition-block__screenings-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: rgba(229, 231, 235, 0.92);
}

.edition-block__screenings-hint {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.7);
}

.edition-block__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.current-editions__divider {
  margin: clamp(26px, 4vw, 44px) 0;
}

.current-editions__upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1100px) {
  .edition-block__hero {
    grid-template-columns: 1fr;
  }
  .edition-block__overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 7, 0.1),
      rgba(5, 5, 7, 0.92)
    );
  }
  .edition-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .current-editions__upcoming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .edition-block__grid {
    grid-template-columns: 1fr;
  }
  .current-editions__upcoming-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Page — Editions Current
   ========================================================================== */

.page--editions .section__head {
  margin-bottom: 0;
}

/* Intro */
.editions-hero__head {
  padding-bottom: 10px;
}

/* HUB */

.editions-hub {
  padding: 0 !important;
}

.editions-hub__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 980px) {
  .editions-hub__grid {
    grid-template-columns: 1fr;
  }
}

/* Edition Window */
.edition-window {
  transform: scale(1.5);
  border: solid 1px white;
  border-radius: 4px;
  padding: 20px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    transform 240ms var(--ease-cinema),
    border-color 240ms var(--ease-cinema);
}
.edition-window:hover {
  border: solid 1px white !important;
}

.edition-window::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.9);
  mix-blend-mode: multiply;
}

.edition-window__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.edition-window:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(45, 107, 255, 0.35);
}

.edition-window__link {
  display: grid;
  grid-template-rows: 180px 1fr;
  text-decoration: none;
  color: inherit;
}

.edition-window__media {
  position: relative;
}
.edition-window__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 1200ms var(--ease-cinema);
  filter: saturate(1.06) contrast(1.04);
}

.edition-window:hover .edition-window__bg {
  transform: scale(1);
}

.edition-window__bg--fallback {
  background:
    radial-gradient(
      420px 260px at 20% 20%,
      rgba(45, 107, 255, 0.14),
      rgba(45, 107, 255, 0) 62%
    ),
    radial-gradient(
      360px 240px at 78% 18%,
      rgba(0, 212, 255, 0.08),
      rgba(0, 212, 255, 0) 68%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.25), rgba(5, 5, 7, 0.9));
}

.edition-window__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.1), rgba(5, 5, 7, 0.92));
}

.edition-window__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.edition-window__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.edition-window__city {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.edition-window__dates {
  margin-top: 4px;
  font-size: var(--fs-xs);
  color: rgba(156, 163, 175, 0.72);
}

.edition-window__title {
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.02em;
}

.edition-window__right {
  display: flex;
  justify-content: end;
}

.edition-window__desc {
  margin: 0;
  color: rgba(156, 163, 175, 0.78);
}

.edition-window__screenings {
  display: grid;
  padding: 20px;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.edition-window__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: rgba(229, 231, 235, 0.86);
  font-size: var(--fs-xs);
}

.line__when {
  color: rgba(156, 163, 175, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.edition-window__cta {
  margin-top: 6px;
}

/* Dedicated edition */
.edition-dedicated__panel {
  padding: 22px;
}

.edition-dedicated__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: baseline;
  color: rgba(156, 163, 175, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
}

.edition-dedicated__city {
  color: rgba(229, 231, 235, 0.86);
}
.edition-dedicated__dates {
  color: rgba(156, 163, 175, 0.78);
}

.edition-dedicated__title {
  margin-top: 10px;
}

.edition-dedicated__intro {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.82);
  max-width: 72ch;
}

.edition-dedicated__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 980px) {
  .edition-dedicated__grid {
    grid-template-columns: 1fr;
  }
}

/* Countdown */
.edition-countdown__panel {
  padding: 22px;
}

.edition-countdown__kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.78);
}

.edition-countdown__city {
  margin-top: 6px;
  color: rgba(156, 163, 175, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
}

.edition-countdown__desc {
  margin: 10px 0 0;
  max-width: 72ch;
  color: rgba(156, 163, 175, 0.82);
}

.edition-countdown__timer {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timer__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
  border-radius: 4px;
  padding: 12px 14px;
  min-width: 120px;
}

.timer__num {
  font-size: clamp(22px, 3vw, 34px);
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.02em;
}

.timer__label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
}

.edition-countdown__divider {
  margin: 18px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Component — Page Hero (Cinematic)
   ========================================================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 12vw, 170px);
  background: var(--void);
}

.page-hero--tight {
  padding-block: clamp(92px, 9vw, 130px);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
}

.page-hero__img--fallback {
  background:
    radial-gradient(
      820px 480px at 18% 18%,
      rgba(45, 107, 255, 0.16),
      rgba(45, 107, 255, 0) 62%
    ),
    radial-gradient(
      720px 420px at 78% 12%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 64%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.15), rgba(5, 5, 7, 1));
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 20% 20%,
      rgba(45, 107, 255, 0.14),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      760px 520px at 80% 10%,
      rgba(0, 212, 255, 0.08),
      rgba(0, 212, 255, 0) 58%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 7, 0.18) 0%,
      rgba(5, 5, 7, 0.52) 38%,
      rgba(5, 5, 7, 0.86) 74%,
      rgba(5, 5, 7, 1) 100%
    );
}

.page-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.page-hero__inner {
  position: relative;
  max-width: 82ch;
  display: grid;
  gap: 16px;
}

.page-hero--center .page-hero__inner {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.page-hero__kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.page-hero__kicker span {
  position: relative;
  padding-left: 14px;
}

.page-hero__kicker span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 8px;
  height: 8px;
  margin-left: -10px;
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.75);
  box-shadow: 0 0 0 6px rgba(45, 107, 255, 0.12);
}

.page-hero__title {
  margin: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
}

.page-hero__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(229, 231, 235, 0.28);
}

.page-hero__subtitle {
  margin: 0;
  color: rgba(156, 163, 175, 0.82);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.page-hero--center .page-hero__actions {
  justify-content: center;
}

.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.page-hero--center .page-hero__badges {
  justify-content: center;
}

.page-hero__glow {
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(
    420px 140px at 30% 40%,
    rgba(45, 107, 255, 0.22),
    rgba(45, 107, 255, 0) 70%
  );
  filter: blur(10px);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__img {
    transform: none;
  }
}
/* ==========================================================================
   Editions — Countdown
   ========================================================================== */

.countdown {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 14px;
  max-width: 420px;
}

.countdown__item {
  position: relative;
  border-radius: 6px;
  background: rgba(18, 20, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 10px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.countdown__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
  pointer-events: none;
}

.countdown__value {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.countdown__label {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.85);
}

/* Zero-state visual cue */
.countdown.is-zero .countdown__value {
  color: rgba(156, 163, 175, 0.75);
}
/* ==========================================================================
   B2B Page
   ========================================================================== */

.b2b-page {
}

/* ---- Page hero (B2B flavor) ------------------------------------------- */
.page-hero--b2b {
  position: relative;
  min-height: clamp(520px, 75vh, 840px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
}

.page-hero--b2b .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.page-hero--b2b .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 18% 18%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      820px 520px at 82% 14%,
      rgba(0, 212, 255, 0.12),
      rgba(0, 212, 255, 0) 62%
    ),
    linear-gradient(180deg, rgba(5, 5, 7, 0.25), rgba(5, 5, 7, 0.92));
}

.page-hero--b2b .container {
  position: relative;
  z-index: 2;
}

.page-hero__content {
  padding-block: clamp(90px, 10vw, 140px);
  max-width: 78ch;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.page-hero__title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero__title {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.page-hero__subtitle {
  color: rgba(209, 213, 219, 0.9);
  font-size: clamp(16px, 1.4vw, 19px);
}

.page-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.page-hero__trust {
  margin-top: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(229, 231, 235, 0.82);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.45);
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.85);
}

/* ---- Split rails ------------------------------------------------------- */
.b2b-split__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .b2b-split__grid {
    grid-template-columns: 1fr;
  }
}

.b2b-rail {
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: grid;
  gap: 20px;
  border-radius: 8px;
}

.b2b-rail__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.b2b-rail__lead {
  margin: 0;
  color: rgba(209, 213, 219, 0.88);
}

.b2b-rail__bullets {
  margin: 0;
  padding: 18px;
  color: rgba(156, 163, 175, 0.86);
  display: grid;
  gap: 8px;
}

.b2b-rail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 980px) {
  .b2b-rail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.b2b-shot {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
}

.b2b-shot__img {
  height: 140px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 900ms var(--ease-cinema);
}

.b2b-shot:hover .b2b-shot__img {
  transform: scale(1);
}

.b2b-shot__cap {
  padding: 10px 10px 11px;
  font-size: 12px;
  color: rgba(156, 163, 175, 0.82);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-rail__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    520px 320px at 20% 20%,
    rgba(45, 107, 255, 0.16),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0.8;
}

/* ---- Stats ------------------------------------------------------------- */
.b2b-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .b2b-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.b2b-stat {
  position: relative;
  border-radius: 8px;
  padding: 16px;
  background: rgba(18, 20, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.b2b-stat__value {
  font-size: 26px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.b2b-stat__label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.b2b-stat__desc {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.8);
}

.b2b-stat__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    420px 260px at 20% 20%,
    rgba(0, 212, 255, 0.12),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0.7;
}

/* ---- Logos ------------------------------------------------------------- */
.b2b-logos {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .b2b-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .b2b-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.b2b-logo {
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.35);
  overflow: hidden;
}

.b2b-logo img {
  width: 100%;
  height: 100%;
  opacity: 0.85;
  filter: grayscale(1) contrast(1.05);
  transition:
    opacity 240ms var(--ease-cinema),
    filter 240ms var(--ease-cinema);
}

.b2b-logo:hover img {
  opacity: 1;
  filter: grayscale(0) contrast(1.05);
}

/* ---- Form -------------------------------------------------------------- */
.b2b-form {
  margin-top: 18px;
  border-radius: 8px;
  padding: 18px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.86);
}

.field__input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.45);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  outline: none;
}

.field__textarea {
  resize: vertical;
  min-height: 140px;
}

.field__input:focus {
  border-color: rgba(45, 107, 255, 0.38);
}

.form__actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  align-items: start;
}

.form__note {
  margin: 0;
  font-size: 13px;
  color: rgba(156, 163, 175, 0.78);
}

.form__toast {
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(45, 107, 255, 0.25);
  background: rgba(45, 107, 255, 0.1);
  color: rgba(229, 231, 235, 0.92);
}

/* ==========================================================================
   Page — Édition précédente
   ========================================================================== */

.page-hero--previous {
  position: relative;
  min-height: clamp(520px, 75vh, 820px);
  padding: 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
}

.page-hero__bg--previous {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 18% 18%,
      rgba(45, 107, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      820px 520px at 82% 14%,
      rgba(0, 212, 255, 0.1),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.35), rgba(5, 5, 7, 1));
}

.page-hero--previous .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.1), rgba(5, 5, 7, 0.92));
}

.page-hero--previous .container {
  position: relative;
  z-index: 2;
}

.page-hero--previous .page-hero__content {
  padding-block: clamp(90px, 10vw, 140px);
  max-width: 78ch;
  display: grid;
  gap: 18px;
}

.page-hero--previous .page-hero__title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero--previous .page-hero__title {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.page-hero--previous .page-hero__subtitle {
  color: rgba(209, 213, 219, 0.9);
  font-size: clamp(16px, 1.4vw, 19px);
}

.page-hero--previous .page-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.4);
  color: rgba(229, 231, 235, 0.86);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================================
   Previous edition — City galleries
   Vertical masonry: always 3 columns (desktop)
   ========================================================================== */

.previous-gallery__stack {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.city-gallery {
  border-radius: 12px;
  padding: 14px;
}

.city-gallery__head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.city-gallery__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.86);
}

.city-gallery__lead {
  color: rgba(156, 163, 175, 0.82);
}

/* Masonry using columns — 3 columns on desktop */
.city-masonry {
  margin-top: 10px;
  column-count: 4;
  column-gap: 12px;
}

@media (max-width: 1100px) {
  .city-masonry {
    column-count: 3;
  }
}
@media (max-width: 720px) {
  .city-masonry {
    column-count: 1;
  }
}

.city-masonry__item {
  margin: 0 0 12px;
}

/* Make tile clickable (button-like) but keep your cinematic style */
.tile {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

/* ==========================================================================
   Media card
   ========================================================================== */

.media-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
}

.media-card__frame {
  position: relative;
  aspect-ratio: var(--ratio, 4/5);
}

.media-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 900ms var(--ease-cinema);
  filter: saturate(1.04) contrast(1.05);
}

.city-masonry__item:hover .media-card__img {
  transform: scale(1);
}

.media-card__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.05), rgba(5, 5, 7, 0.82));
  pointer-events: none;
}

.media-card__cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-start;
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.55);
  color: rgba(229, 231, 235, 0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-card__play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 7, 0.55);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

/* ==========================================================================
   Popup (dialog lightbox)
   ========================================================================== */

.media-lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(980px, calc(100vw - 28px));
  width: 100%;
}

.media-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.media-lightbox__panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 12, 0.92);
}

.media-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 7, 0.55);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.media-lightbox__body {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 720px) {
  .media-lightbox__body {
    aspect-ratio: 4 / 5;
  }
}

.media-lightbox__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-lightbox__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-lightbox__footer {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.media-lightbox__cap {
  color: rgba(229, 231, 235, 0.86);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.previous-stats__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .previous-stats__grid {
    grid-template-columns: 1fr;
  }
}

.previous-stat {
  position: relative;
  border-radius: 10px;
  padding: 16px;
  background: rgba(18, 20, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.previous-stat__value {
  font-size: 28px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.previous-stat__label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.previous-stat__desc {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.82);
}

.previous-stat__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    520px 320px at 20% 20%,
    rgba(45, 107, 255, 0.14),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0.75;
}
/* ==========================================================================
   Page — About
   ========================================================================== */

.page-hero--about .page-hero__bg--about {
  background:
    radial-gradient(
      900px 520px at 18% 20%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      760px 520px at 82% 18%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 62%
    ),
    linear-gradient(180deg, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 0.92)),
    url("") center/cover no-repeat;
}

/* If you later want a real bg image, set it inline in template like hero did.
   Keep gradients here as cinematic overlay. */
.page-hero--about .container--wide,
.page-hero--contact .container--wide {
  position: relative;
  z-index: 1;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Intro panel */
.about-intro__panel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  padding: 18px;
}

@media (max-width: 980px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
  }
}

.about-intro__text p {
  margin: 0 0 12px 0;
  color: rgba(156, 163, 175, 0.86);
  line-height: 1.7;
}

.quote-card {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  background: rgba(18, 20, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-card__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.quote-card__title {
  margin-top: 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: rgba(229, 231, 235, 0.94);
}

.quote-card__desc {
  margin: 10px 0 0 0;
  color: rgba(156, 163, 175, 0.86);
}

.quote-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.quote-card__glow {
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(45, 107, 255, 0.16),
    rgba(45, 107, 255, 0) 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}

.principle-card__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.principle-card__title {
  margin-top: 10px;
  color: rgba(229, 231, 235, 0.94);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.principle-card__desc {
  margin: 10px 0 0 0;
  color: rgba(156, 163, 175, 0.84);
  line-height: 1.65;
}

.principle-card__glow {
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(0, 212, 255, 0.1),
    rgba(0, 212, 255, 0) 60%
  );
  pointer-events: none;
  opacity: 0.8;
}

/* Values strip */
.values-strip {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}

.values-strip__head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.values-strip__title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.9);
}

.values-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .values-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .values-strip__grid {
    grid-template-columns: 1fr;
  }
}

.value-item__label {
  color: rgba(229, 231, 235, 0.94);
  letter-spacing: -0.01em;
}

.value-item__desc {
  margin-top: 6px;
  color: rgba(156, 163, 175, 0.82);
  line-height: 1.6;
}

.values-strip__glow {
  position: absolute;
  inset: -50% -30%;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(45, 107, 255, 0.16),
    rgba(45, 107, 255, 0) 62%
  );
  pointer-events: none;
  opacity: 0.85;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border-radius: 14px;
  padding: 16px;
}

.faq-item__q {
  color: rgba(229, 231, 235, 0.94);
  letter-spacing: -0.01em;
}

.faq-item__a {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.84);
  line-height: 1.65;
}
/* ==========================================================================
   Page — Contact
   ========================================================================== */

.page-hero--contact .page-hero__bg--contact {
  background:
    radial-gradient(
      900px 520px at 16% 20%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      760px 520px at 84% 18%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 62%
    ),
    linear-gradient(180deg, rgba(5, 5, 7, 0.22), rgba(5, 5, 7, 0.92));
}

.contact-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.page-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Form container */
.contact-form {
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}

.form {
  display: grid;
  gap: 12px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.84);
}

.field__input {
  width: 100%;
  border-radius: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 14, 18, 0.55);
  color: rgba(229, 231, 235, 0.92);
  outline: none;
  transition:
    border-color 180ms var(--ease-cinema),
    transform 180ms var(--ease-cinema);
}

.field__input::placeholder {
  color: rgba(156, 163, 175, 0.6);
}

.field__input:focus {
  border-color: rgba(45, 107, 255, 0.45);
  transform: translateY(-1px);
}

.field__textarea {
  min-height: 160px;
  resize: vertical;
}

.field__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(229, 231, 235, 0.7) 50%),
    linear-gradient(135deg, rgba(229, 231, 235, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* Footer row */
.form__foot {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-xs);
}

.form__note .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(45, 107, 255, 0.55);
}

.form__success {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(45, 107, 255, 0.25);
  background: rgba(45, 107, 255, 0.08);
  color: rgba(229, 231, 235, 0.9);
}

/* Side */
.contact-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}

.contact-card__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

.contact-card__title {
  margin-top: 10px;
  color: rgba(229, 231, 235, 0.94);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.contact-card__desc {
  margin: 10px 0 0 0;
  color: rgba(156, 163, 175, 0.84);
  line-height: 1.65;
}

.contact-list {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(156, 163, 175, 0.84);
}

.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-list .check {
  color: rgba(45, 107, 255, 0.85);
}

.contact-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 14px 0;
}

.contact-mini {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: var(--fs-xs);
}

.contact-mini__label {
  color: rgba(156, 163, 175, 0.78);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-mini__value {
  color: rgba(229, 231, 235, 0.9);
}

.contact-card__glow {
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(0, 212, 255, 0.1),
    rgba(0, 212, 255, 0) 60%
  );
  pointer-events: none;
  opacity: 0.85;
}
/* ==========================================================================
   Single Screening — Cinematic Booking
   ========================================================================== */

.screening-page {
  background: var(--void, #050507);
}

/* ---------------- HERO ---------------- */

.screening-hero {
  position: relative;
  min-height: clamp(620px, 86vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.screening-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.05) brightness(0.62);
  transform: scale(1.02);
}

.screening-hero__bg--fallback {
  background:
    radial-gradient(
      900px 520px at 20% 20%,
      rgba(45, 107, 255, 0.18),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      800px 520px at 80% 10%,
      rgba(0, 212, 255, 0.12),
      rgba(0, 212, 255, 0) 58%
    ),
    linear-gradient(180deg, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 1));
}

.screening-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 7, 0.15) 0%,
    rgba(5, 5, 7, 0.65) 55%,
    rgba(5, 5, 7, 1) 100%
  );
}

.screening-hero__content {
  position: relative;
  padding-block: clamp(120px, 14vw, 190px);
  padding-bottom: clamp(70px, 10vw, 110px);
  max-width: 78ch;
}

.screening-hero__topline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-context {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(229, 231, 235, 0.88);
  font-size: var(--fs-xs, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-context__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(229, 231, 235, 0.55);
}

.screening-hero__title {
  margin-top: 14px;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.screening-hero__meta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.86);
  font-size: var(--fs-xs, 12px);
  letter-spacing: 0.08em;
}

.meta-pill--muted {
  color: rgba(156, 163, 175, 0.82);
  background: rgba(18, 20, 24, 0.45);
}

.screening-hero__subtitle {
  margin-top: 16px;
  color: rgba(156, 163, 175, 0.86);
}

.screening-hero__ctas {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-credit {
  color: rgba(156, 163, 175, 0.75);
  font-size: var(--fs-sm, 14px);
}

/* Pills (status) */
.pill {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.86);
}

.pill--live {
  border-color: rgba(45, 107, 255, 0.35);
}
.pill--sold {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(229, 231, 235, 0.78);
}
.pill--closed {
  opacity: 0.8;
}
/* Trailer background layer (desktop) */
.screening-hero__trailer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-cinema);
}

.screening-hero__trailer iframe {
  transform: scale(1.2);
}

.screening-hero__trailer.is-on {
  opacity: 1;
  pointer-events: auto;
}

.screening-hero__trailer iframe {
  position: absolute;
  inset: -6% -6%;
  width: 112%;
  height: 112%;
  border: 0;
  filter: saturate(1.05) contrast(1.05) brightness(0.7);
}

.screening-hero__trailer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.92);
}

/* Mobile trailer modal */
.trailer-modal[hidden] {
  display: none;
}

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.trailer-modal__panel {
  position: relative;
  width: min(920px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.85);
  overflow: hidden;
}

.trailer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 20, 24, 0.55);
  color: rgba(229, 231, 235, 0.92);
  z-index: 2;
}

.trailer-modal__frame {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.6);
}

.trailer-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- BOOKING LAYOUT ---------------- */

.booking__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 980px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
}

.booking__head {
  margin-bottom: 14px;
}

.booking__title {
  margin-top: 8px;
}

.zones {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.zones__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.zones__map-inner {
  position: relative;
  padding: 24px;
}

.zones__map-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.35);
}

.zones__map-note {
  max-width: 56ch;
  color: rgba(229, 231, 235, 0.82);
  text-align: center;
}

.zones__map-hint {
  margin-top: 8px;
  color: rgba(156, 163, 175, 0.8);
  font-size: var(--fs-sm, 14px);
}

.zones__controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.zone-btn {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.45);
  color: rgba(229, 231, 235, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-xs, 12px);
}

.zone-btn.is-active {
  border-color: rgba(45, 107, 255, 0.5);
  background: rgba(45, 107, 255, 0.14);
}

#Layer_1,
#Layer_2 {
  fill: rgba(229, 231, 235, 0.4);
}

.is-active .zone__sofa,
.is-active .zone__beanbag {
  fill: var(--primary);
  transition: 0.4s;
}

/* SVG zone highlighting hook */
[data-zone-svg] {
  cursor: pointer;
  transition: filter 220ms var(--ease-cinema, cubic-bezier(0.2, 0.8, 0.2, 1));
}
[data-zone-svg].is-active {
  filter: drop-shadow(0 0 14px rgba(45, 107, 255, 0.35));
}

/* ---------------- PLANS ---------------- */

.plans {
  margin-top: 14px;
}

.plans__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.plans__title {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs, 12px);
  color: rgba(229, 231, 235, 0.86);
}

.plans__hint {
  color: rgba(156, 163, 175, 0.82);
  font-size: var(--fs-sm, 14px);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

@media (max-width: 980px) {
  .plans__grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
  padding: 14px;
  display: grid;
  gap: 12px;
  transition:
    transform 240ms var(--ease-cinema, cubic-bezier(0.2, 0.8, 0.2, 1)),
    border-color 240ms var(--ease-cinema, cubic-bezier(0.2, 0.8, 0.2, 1));
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 107, 255, 0.32);
}

.plan-card.is-bump {
  transform: translateY(-3px) scale(1.01);
}

.plan-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.plan-card__name {
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.01em;
}

.plan-card__price {
  color: rgba(229, 231, 235, 0.9);
  font-weight: 600;
}

.plan-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.35);
  color: rgba(156, 163, 175, 0.9);
}

.chip--zone {
  border-color: rgba(45, 107, 255, 0.24);
  color: rgba(229, 231, 235, 0.82);
}
.chip--sold {
  opacity: 0.9;
}
.chip--muted {
  opacity: 0.9;
}

.plan-card__controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.stepper {
  display: grid;
  height: 100%;

  grid-template-columns: 44px 1fr 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(18, 20, 24, 0.35);
}

.stepper__btn {
  background: transparent;
  border: 0;
  color: rgba(229, 231, 235, 0.92);
  cursor: pointer;
}

.stepper__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.stepper__qty {
  width: 100%;
  border: 0;
  outline: none;
  text-align: center;
  background: transparent;
  color: rgba(229, 231, 235, 0.92);
}
/* Right column synopsis panel */
.screening-side {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.55);
  padding: 14px;
}

.screening-side__kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs, 12px);
  color: rgba(229, 231, 235, 0.86);
  margin-bottom: 10px;
}

.screening-side__text {
  margin: 0;
  color: rgba(156, 163, 175, 0.86);
  line-height: 1.7;
}

.screening-side__meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.side-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(156, 163, 175, 0.85);
}

.side-row strong {
  color: rgba(229, 231, 235, 0.9);
  font-weight: 600;
}

/* Small story block */
.booking__story {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.45);
}

.booking__story-title {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs, 12px);
  color: rgba(229, 231, 235, 0.86);
  margin-bottom: 8px;
}

.booking__story-text {
  margin: 0;
  color: rgba(156, 163, 175, 0.86);
}

/* ===== Floorplan (stacked SVGs) ===== */
.floorplan {
  border-radius: var(--r-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 7, 0.35);
  overflow: hidden;
  padding: 12px;
  width: 50%;
}
.floorplan__layer {
  inset: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floorplan__layer svg {
  max-width: 300px;
  height: auto;
  max-height: 320px;
  display: block;
}

/* Make only the zone paths clickable */
.floorplan__layer svg * {
  pointer-events: none;
}
.floorplan__layer svg .zone__sofa,
.floorplan__layer svg .zone__beanbag {
  pointer-events: auto;
  cursor: pointer;
}

/* Default: muted */
.floorplan .zone__sofa,
.floorplan .zone__beanbag {
  fill: rgba(229, 231, 235, 0.12);
  transition:
    fill 220ms var(--ease-cinema),
    filter 220ms var(--ease-cinema);
}

/* Hover highlight on the plan itself */
.floorplan .zone__sofa:hover {
  fill: rgba(45, 107, 255, 0.26);
}
.floorplan .zone__beanbag:hover {
  fill: rgba(0, 212, 255, 0.2);
}

/* Selected zone = white (your requirement) */
.floorplan.is-sofa .zone__sofa {
  fill: rgba(255, 255, 255, 0.92);
}
.floorplan.is-beanbag .zone__beanbag {
  fill: rgba(255, 255, 255, 0.92);
}

/* De-emphasize non-selected */
.floorplan.is-sofa .zone__beanbag {
  fill: rgba(229, 231, 235, 0.08);
}
.floorplan.is-beanbag .zone__sofa {
  fill: rgba(229, 231, 235, 0.08);
}

.floorplan__hint {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
/* Ticket cards */
.ticket-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.45);
  overflow: hidden;
  position: relative;
  transition:
    transform 240ms var(--ease-cinema),
    border-color 240ms var(--ease-cinema);
}

.ticket-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 107, 255, 0.32);
}

.ticket-card.is-bump {
  transform: translateY(-3px) scale(1.01);
}

.ticket-card::before,
.ticket-card::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--void, #050507);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 2;
}
.ticket-card::before {
  left: -9px;
}
.ticket-card::after {
  right: -9px;
}

.ticket-card__head {
  padding: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  background: rgba(18, 20, 24, 0.55);
}

.ticket-card__name {
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.01em;
}

.ticket-card__price {
  color: rgba(229, 231, 235, 0.92);
  font-weight: 700;
}

.ticket-card__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;

  gap: 12px;
  position: relative;
}

.ticket-card__body::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .ticket-card__body {
    grid-template-columns: 1fr;
  }
}

.ticket-card__desc {
  margin: 0;
  color: rgba(156, 163, 175, 0.86);
  line-height: 1.6;
}

.ticket-card__side {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.ticket-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ticket-card__controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
/* Bottom cart drawer */
.cart-drawer[hidden] {
  display: none;
  transform: translateY(200px);
}

.cart-drawer {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 1100;
  padding-inline: 14px;
  transition: 1s;
  transform: translateY(0);
}

.cart-drawer__bar {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 0.78);
  backdrop-filter: blur(10px);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 0 18px 1px var(--primary);
}

.cart-drawer__sum {
  display: grid;
  gap: 2px;
}

.cart-drawer__count {
  color: rgba(156, 163, 175, 0.85);
  font-size: 13px;
}

.cart-drawer__total {
  color: rgba(229, 231, 235, 0.92);
}

.cart-drawer__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-drawer__panel {
  max-width: 1180px;
  margin: 10px auto 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 20, 24, 1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 260ms var(--ease-cinema),
    opacity 260ms var(--ease-cinema),
    transform 260ms var(--ease-cinema);
}

.cart-drawer.is-open .cart-drawer__panel {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
}

.cart-panel__head {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-panel__title {
  color: rgba(229, 231, 235, 0.92);
}

.cart-panel__head-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-panel__clear,
.cart-panel__close {
  background: transparent;
  border: 0;
  color: rgba(156, 163, 175, 0.9);
  cursor: pointer;
}

.cart-panel__list {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.cart-panel__foot {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(156, 163, 175, 0.75);
  font-size: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.35);
}

.cart-row__title {
  color: rgba(229, 231, 235, 0.9);
}

.cart-row__sub {
  margin-top: 4px;
  color: rgba(156, 163, 175, 0.82);
  font-size: var(--fs-sm, 14px);
}

.cart-row__right {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.mini-stepper {
  display: grid;
  grid-template-columns: 30px 30px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(18, 20, 24, 0.35);
}

.mini-stepper__btn {
  background: transparent;
  border: 0;
  color: rgba(229, 231, 235, 0.92);
  cursor: pointer;
}
.mini-stepper__qty {
  display: grid;
  place-items: center;
  color: rgba(229, 231, 235, 0.92);
}

.cart-row__remove {
  background: transparent;
  border: 0;
  color: rgba(156, 163, 175, 0.9);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Checkout
   ========================================================================== */

.checkout-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 980px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Alert */
.checkout-alert {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.checkout-alert__title {
  color: rgba(229, 231, 235, 0.92);
  margin-bottom: 8px;
}

.checkout-alert__list {
  margin: 0;
  padding-left: 16px;
  color: rgba(156, 163, 175, 0.92);
}

/* Empty */
.checkout-empty {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
}

.checkout-empty__title {
  color: rgba(229, 231, 235, 0.92);
  font-size: 18px;
  margin-bottom: 6px;
}

.checkout-empty__text {
  margin: 0 0 14px;
  color: rgba(156, 163, 175, 0.88);
}

.checkout-empty__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Form card */
.checkout-form {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  padding: 16px;
}

.checkout-form__kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.86);
}

.checkout-form__title {
  margin-top: 8px;
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.checkout-form__sub {
  margin: 8px 0 0;
  color: rgba(156, 163, 175, 0.86);
}

/* Fields */
.form__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field--full {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

.field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(156, 163, 175, 0.92);
  letter-spacing: 0.02em;
}

.field__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.55);
  color: rgba(229, 231, 235, 0.92);
  padding: 12px 12px;
}

.field__input:focus {
  outline: none;
  border-color: rgba(45, 107, 255, 0.35);
}

/* Payment placeholder */
.pay {
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 24, 0.35);
  padding: 12px;
}

.pay__title {
  color: rgba(229, 231, 235, 0.92);
  margin-bottom: 6px;
}

.pay__text {
  margin: 0;
  color: rgba(156, 163, 175, 0.86);
  line-height: 1.6;
}

.checkout-form__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-form__note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(156, 163, 175, 0.78);
}

/* Summary */
.checkout-summary {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  padding: 16px;
}

.checkout-summary__kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.86);
}

.checkout-summary__title {
  margin-top: 8px;
  color: rgba(229, 231, 235, 0.92);
  font-size: 18px;
}

/* Lines */
.checkout-lines {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.line {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.35);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.line::before,
.line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #050507;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}
.line::before {
  left: -8px;
}
.line::after {
  right: -8px;
}

.line__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.line__name {
  color: rgba(229, 231, 235, 0.92);
}

.line__price {
  color: rgba(229, 231, 235, 0.92);
  font-weight: 700;
}

.line__sub {
  margin-top: 6px;
  color: rgba(156, 163, 175, 0.86);
  font-size: 13px;
}

.line__controls {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty__btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.55);
  color: rgba(229, 231, 235, 0.92);
}

.qty__num {
  min-width: 28px;
  text-align: center;
  color: rgba(229, 231, 235, 0.92);
}

.line__remove {
  background: transparent;
  border: 0;
  color: rgba(156, 163, 175, 0.9);
  cursor: pointer;
}

/* Totals */
.checkout-totals {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(156, 163, 175, 0.92);
}

.total-row strong {
  color: rgba(229, 231, 235, 0.92);
}

.total-row--grand {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.total-hint {
  font-size: 12px;
  color: rgba(156, 163, 175, 0.78);
}

.page-hero--checkout {
  height: fit-content;
  padding: 0;
}
/* ==========================================================================
   Order Confirmation
   ========================================================================== */

.page-hero--order .page-hero__bg--order {
  background:
    radial-gradient(
      900px 520px at 18% 20%,
      rgba(45, 107, 255, 0.16),
      rgba(45, 107, 255, 0) 60%
    ),
    radial-gradient(
      760px 520px at 82% 18%,
      rgba(0, 212, 255, 0.1),
      rgba(0, 212, 255, 0) 62%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.25), rgba(5, 5, 7, 0.96));
}

.order-confirmation__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px) {
  .order-confirmation__grid {
    grid-template-columns: 1fr;
  }
}

/* Summary */
.order-summary {
  padding: 18px;
}

.order-summary__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.order-summary__title {
  margin: 0;
}

.order-summary__hint {
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-sm);
}

.order-summary__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-summary__row:last-of-type {
  border-bottom: 0;
}

.order-summary__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
}

.order-summary__value {
  color: rgba(229, 231, 235, 0.92);
}

.order-summary__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 14px 0;
}

.order-summary__tickets-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
  margin-bottom: 10px;
}

.order-summary__tickets-list {
  display: grid;
  gap: 10px;
}

.ticket-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(18, 20, 24, 0.42);
}

.ticket-line__name {
  color: rgba(229, 231, 235, 0.92);
}

.ticket-line__meta {
  margin-top: 6px;
  font-size: var(--fs-xs);
  color: rgba(156, 163, 175, 0.78);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-line__qty {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
  align-self: start;
}

.order-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.order-summary__total-label {
  font-size: var(--fs-sm);
  color: rgba(156, 163, 175, 0.82);
}

.order-summary__total-value {
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.02em;
  color: rgba(229, 231, 235, 0.92);
}

.order-summary__note {
  margin-top: 12px;
  color: rgba(156, 163, 175, 0.72);
}

/* Entry */
.order-entry {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.order-entry__kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
}

.order-entry__code {
  margin-top: 10px;
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.92);
}

.order-entry__qr {
  margin-top: 12px;
  width: 160px;
  height: 160px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.42);
  overflow: hidden;
}

.order-entry__sub {
  margin-top: 10px;
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-sm);
}

.order-entry__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.order-entry__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}

.order-entry__rules-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.78);
}

.order-entry__rules-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(156, 163, 175, 0.82);
  display: grid;
  gap: 8px;
}

.order-entry__footer {
  margin-top: 16px;
}

/* Empty state */
.order-empty {
  margin-top: 14px;
  padding: 18px;
}

.order-empty__inner {
  display: grid;
  gap: 10px;
  max-width: 70ch;
}

.order-empty__title {
  margin: 0;
}

.order-empty__subtitle {
  color: rgba(156, 163, 175, 0.82);
}

.order-empty__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
/* ==========================================================================
   Page — Order Confirmation
   Uses tokens: radius/ease/shadows/glow from your system :contentReference[oaicite:2]{index=2}
   ========================================================================== */

.page-hero--confirm {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 130px) 0 clamp(34px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero__bg--confirm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 520px at 18% 18%,
      rgba(45, 107, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 85% 25%,
      rgba(0, 212, 255, 0.12),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(18, 20, 24, 0.35), rgba(5, 5, 7, 0.92));
  transform: scale(1.03);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.35), rgba(5, 5, 7, 0.92));
}

.page-hero--confirm .page-hero__content {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.page-hero__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.confirm-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* simple pill */
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(229, 231, 235, 0.86);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirm-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

@media (max-width: 980px) {
  .confirm-layout {
    grid-template-columns: 1fr;
  }
}

/* Left block */
.confirm-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.confirm-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .confirm-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fact {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-1);
  background: rgba(18, 20, 24, 0.35);
  padding: 12px;
}

.fact__k {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.75);
}

.fact__v {
  margin-top: 6px;
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.01em;
}

/* Right summary */
.confirm-right {
  position: sticky;
  top: 18px;
}

@media (max-width: 980px) {
  .confirm-right {
    position: static;
  }
}

.summary-lines {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-line__left {
  display: grid;
  gap: 4px;
}

.summary-line__name {
  color: rgba(229, 231, 235, 0.92);
  letter-spacing: -0.01em;
}

.summary-line__desc {
  color: rgba(156, 163, 175, 0.72);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-line__right {
  color: rgba(229, 231, 235, 0.92);
  font-weight: 650;
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(229, 231, 235, 0.92);
}

.summary-total strong {
  font-weight: 800;
}

.summary-note {
  margin-top: 10px;
}

.summary-actions {
  margin-top: 12px;
}

/* Tickets grid */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

/* Ticket card (inspired by your PDF look, but HTML) */
.ticket {
  border-radius: var(--r-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(18, 20, 24, 0.85),
    rgba(18, 20, 24, 0.55)
  );
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ticket__inner {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 0;
  min-height: 168px;
}

@media (max-width: 520px) {
  .ticket__inner {
    grid-template-columns: 1fr;
  }
}

.ticket__left {
  padding: 16px;
  display: grid;
  gap: 10px;
  position: relative;
}

.ticket__left::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
  .ticket__left::after {
    display: none;
  }
}

.ticket__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ticket__movie {
  color: rgba(229, 231, 235, 0.95);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket__plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 107, 255, 0.28);
  background: rgba(45, 107, 255, 0.08);
  color: rgba(229, 231, 235, 0.9);
}

.ticket__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(156, 163, 175, 0.78);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket__code {
  color: rgba(229, 231, 235, 0.9);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ticket__right {
  padding: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 13, 16, 0.55);
}

.ticket__qr {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ticket__qr canvas {
  width: 118px;
  height: 118px;
  image-rendering: pixelated;
}

.ticket__scan {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.85);
}

/* Toast */
.toast[hidden] {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1000;
}

.toast__inner {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px;
  box-shadow: var(--shadow-lift), var(--glow-primary);
  color: rgba(229, 231, 235, 0.9);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
