/* ============================================================
   CINEMA MACHINA — GLOBAL DESIGN SYSTEM
   Premium Dark Cinematic Tech-Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --bg: #070604;
  --bg-warm: #0d0b08;
  --surface: #111009;
  --surface-2: #181510;
  --surface-3: #211e17;
  --border: rgba(201, 169, 110, 0.12);
  --border-hover: rgba(201, 169, 110, 0.28);
  --glass: rgba(15, 14, 12, 0.7);

  /* Accent */
  --bronze: #c9a96e;
  --bronze-light: #e2c19b;
  --bronze-dim: rgba(201, 169, 110, 0.45);
  --bronze-glow: rgba(201, 169, 110, 0.08);

  /* Text */
  --text-primary: #ede8db;
  --text-secondary: #9a9080;
  --text-muted: #5c5650;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(6rem, 12vw, 10rem);
  --content-max: 1440px; /* Increased for premium desktop presence */
  --gutter: clamp(1.5rem, 6vw, 5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --duration: 0.8s;

  /* Optical Logo Scaling Tokens */
  --logo-scale-standard: 1;
  --logo-scale-dense: 1.12;
  --logo-scale-whitespace: 1.35;

  /* Context Heights */
  --height-ecosystem-desktop: 28px;
  --height-format-desktop: 24px; /* Slightly tighter for precision */
  --height-table-desktop: 22px;

  /* UX Polish */
  --btn-radius: 4px;
}

/* ── GLOBAL FIXES ─────────────────────────────────────────── */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

::selection {
  background: var(--bronze-dim);
  color: var(--text-primary);
}

/* ── CUSTOM SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--bronze-dim);
  border-radius: 2px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}

.display-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.display-sm {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 60ch;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 55ch;
}

.label {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section--strip {
  background: var(--bg-warm);
  padding-top: 5rem;
  padding-bottom: 0;
}

.section--strip + .cta-full {
  padding-top: 4rem;
}

.accent {
  color: var(--bronze);
}
.accent-light {
  color: var(--bronze-light);
}

.text-script {
  position: relative;
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bronze-light);
  transform: translateY(0);
}

.text-script--gold {
  color: var(--bronze-light);
  display: inline-flex;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .text-script--gold {
    background: linear-gradient(
      135deg,
      #c9a96e 0%,
      #e2c19b 25%,
      #f2dfc3 50%,
      #e2c19b 75%,
      #c9a96e 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldLustre 6s linear infinite;
  }
}

@keyframes goldLustre {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section {
  padding: var(--section-gap) 0;
}
.section--tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section--flush {
  padding: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  white-space: nowrap; /* Prevent awkward wrapping */
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--bronze);
  color: #0a0805;
  padding: 0.875rem 2.25rem;
}

.btn-primary:hover {
  background: var(--bronze-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--bronze);
  padding: 0.875rem 2.25rem;
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--bronze);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  color: var(--bronze);
  border-color: var(--bronze);
  background: rgba(226, 193, 155, 0.05);
  transform: translateY(-2px);
}

/* ── STICKY NAVIGATION ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s var(--ease-out),
    -webkit-backdrop-filter 0.5s var(--ease-out),
    backdrop-filter 0.5s var(--ease-out),
    border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
  border-color: var(--border);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 68px; /* High-end visibility */
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__logo img.logo-shape--padded {
  height: 68px;
  width: auto;
  max-width: none;
  max-height: none;
}

@media (max-width: 768px) {
  .nav__logo img {
    height: 54px;
  }

  .nav__logo img.logo-shape--padded {
    height: 54px;
  }
}

.nav__logo:hover img {
  opacity: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.7rem);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--bronze-light);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__links a[href='film-request.html'] {
  padding: 0.46rem 0.78rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 999px;
  color: var(--bronze-light);
  background: linear-gradient(
    160deg,
    rgba(201, 169, 110, 0.1),
    rgba(201, 169, 110, 0.02)
  );
  box-shadow: 0 0 0 rgba(201, 169, 110, 0);
}

.nav__links a[href='film-request.html']::after {
  bottom: 0.22rem;
  left: 0.82rem;
  right: 0.82rem;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.nav__links a[href='film-request.html']:hover,
.nav__links a[href='film-request.html'].active {
  border-color: rgba(201, 169, 110, 0.42);
  box-shadow: 0 0 28px rgba(201, 169, 110, 0.1);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bronze);
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--border-hover);
  transition: all 0.3s;
  white-space: nowrap;
}

.nav__cta:hover,
.nav__cta.nav__cta--active {
  background: var(--bronze);
  color: var(--bg);
  border-color: var(--bronze);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  bottom: auto;
  z-index: 800;
  border-top: 1px solid rgba(201, 169, 110, 0.16);
  border-bottom: 1px solid rgba(201, 169, 110, 0.16);
  background:
    linear-gradient(180deg, rgba(9, 7, 4, 0.98), rgba(5, 4, 3, 0.96)),
    rgba(7, 6, 4, 0.97);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  gap: 0.05rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.65rem);
  transition:
    opacity 0.32s var(--ease-out),
    transform 0.32s var(--ease-out);
  padding: 0.65rem var(--gutter) 0.8rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

.nav__mobile a {
  padding: 0.66rem 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  font-size: 0.74rem;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

/* ── RESPONSIVE TABLE WRAPPER ─────────────────────────────── */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.table-responsive-wrapper table {
  min-width: 600px;
  width: 100%;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(237, 232, 219, 0.82);
  text-decoration: none;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.nav__mobile a:hover {
  color: var(--bronze);
}

.nav__mobile a.active {
  color: var(--bronze-light);
}

.nav__mobile a[href='film-request.html'] {
  margin-top: 0.2rem;
  border: 1px solid rgba(201, 169, 110, 0.34);
  border-radius: 999px;
  color: var(--bronze-light);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201, 169, 110, 0.14), transparent),
    rgba(201, 169, 110, 0.045);
  box-shadow: 0 0 34px rgba(201, 169, 110, 0.08);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 7vw, 6rem) 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand img {
  height: 64px;
  opacity: 0.98;
  margin-bottom: 1.65rem;
  display: block;
  object-fit: contain;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 26ch;
  line-height: 1.75;
}

.footer__nav h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--text-primary);
}

.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__contact-link:hover {
  color: var(--bronze-light);
}

.footer__contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.65;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: none;
}

/* ── SECTION DIVIDER ──────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--gutter);
}

/* ── BRONZE LINE DECORATOR ────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
/* Default: always visible. JS will opt-in to animation by adding .js-ready to <html>. */
.reveal {
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

/* Only hide if JS is confirmed running and has set up the observer */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: reduced motion users get no animation */
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.45s;
}
.reveal-delay-5 {
  transition-delay: 0.6s;
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition:
    border-color 0.35s,
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    var(--bronze-glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border-hover);
}

.card:hover::before {
  opacity: 1;
}

.card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bronze-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--bronze);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.875rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ── IMAGE FRAMES ─────────────────────────────────────────── */
.img-frame {
  position: relative;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.img-frame:hover img {
  transform: scale(1.04);
}

/* ── HERO BASE ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__title {
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  opacity: 1; /* Visible by default */
}

/* Fail-safe visibility */
.hero__word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

/* Consolidated hero reveal logic below */

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 6, 4, 0.6) 0%,
    rgba(7, 6, 4, 0.45) 40%,
    rgba(7, 6, 4, 0.85) 80%,
    rgba(7, 6, 4, 1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px; /* Increased for fuller desktop presence */
  margin: 0 auto;
}

.hero__content::before,
.hero__copy::before {
  content: '';
  position: absolute;
  inset: -30px -40px;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
  border-radius: 40px;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

.hero h1,
.hero .display-xl,
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(
    3rem,
    9vw,
    5.25rem
  ); /* Scaled up for better desktop density */
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.hero__title--tagline {
  position: relative;
  display: inline-block;
  opacity: 1;
  transform: none;
  filter: none;
  will-change: opacity, transform;
}

.hero__word-group {
  display: inline-block;
}

.hero__word {
  display: inline-block;
  opacity: 1;
  transform: none;
  filter: none;
  white-space: pre-wrap;
}

.hero__word--accent {
  color: var(--bronze-light);
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-display);
  text-shadow: 0 0 25px rgba(201, 169, 110, 0.2);
  letter-spacing: 0.02em;
}

.js-ready .hero__title--tagline {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTitleReveal 1.35s var(--ease-out) forwards;
  animation-delay: 0.28s;
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lead,
.hero p,
.hero__body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 239, 228, 0.93);
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.34);
}

/* ── GRID SYSTEMS ─────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* ── ECOSYSTEM STRIP ──────────────────────────────────────── */
.ecosystem-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
  /* Fade logos in/out at the edges instead of hard-clipping mid-logo */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.ecosystem-strip__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: scroll-track 32s linear infinite;
  width: max-content;
}

/* Pause the rail on hover/focus so logos can be read */
.ecosystem-strip:hover .ecosystem-strip__track,
.ecosystem-strip:focus-within .ecosystem-strip__track {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .ecosystem-strip__track {
    animation: none;
  }
}

.ecosystem-strip__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  opacity: 0.82;
  transition: opacity 0.3s;
}

.ecosystem-strip__item:hover {
  opacity: 1;
}

.ecosystem-strip__item img {
  --logo-multiplier: 1;
  height: auto;
  max-height: min(
    calc(var(--height-ecosystem-desktop) * var(--logo-multiplier)),
    var(--logo-max-h, 22px)
  );
  max-width: var(--logo-max-w, 108px);
  width: auto;
  display: block;
  object-fit: contain;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.ecosystem-strip__item span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* -- VIDEO SECTION ----------------------------------------- */
.video-section {
  padding: var(--section-gap) 0;
  background: var(--bg-warm);
}

.intro-section p {
  text-align: center;
  max-width: 860px;
  margin: 2rem auto 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Legacy wrapper kept for any other uses */
.video-wrapper {
  position: relative;
  width: 100%;
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--bronze);
}

.comparison-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tr:hover td {
  background: var(--surface);
}

.comparison-table .check {
  color: var(--bronze);
  font-size: 1.1rem;
}
.comparison-table .cross {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── BAR CHART MODULE ─────────────────────────────────────── */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.bar-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: right;
}

.bar-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--bronze);
  width: 0%;
  transition: width 1.5s var(--ease-out);
}

.bar-fill.low {
  background: var(--text-muted);
}
.bar-fill.mid {
  background: var(--bronze-dim);
}
.bar-fill.high {
  background: var(--bronze);
}

.bar-value {
  font-size: 0.8125rem;
  color: var(--bronze);
  font-weight: 500;
}

/* ── STAT BLOCKS ──────────────────────────────────────────── */
.stat-block {
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-block__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── PAGE HERO (sub-pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(8rem, 15vw, 13rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg--high-contrast {
  filter: contrast(1.1) brightness(0.9);
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 6, 4, 0.7) 0%,
    rgba(7, 6, 4, 0.55) 30%,
    rgba(7, 6, 4, 0.85) 80%,
    rgba(7, 6, 4, 1) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

/* ── STEP PROCESS ─────────────────────────────────────────── */
.step-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-visual-layer {
  position: relative;
  height: 40px;
  width: 100%;
  margin-bottom: 24px;
}

.process-flow-diagram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.process-line-flow {
  stroke-dasharray: 20 80;
  stroke-linecap: round;
  animation: flowLine 2s linear infinite;
  opacity: 0.85;
}

@keyframes flowLine {
  to {
    stroke-dashoffset: -100;
  }
}

.process-node--pulse {
  animation: nodePulse 2s ease-in-out infinite alternate;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    fill: var(--bg);
    filter: drop-shadow(0 0 2px var(--bronze-dim));
  }
  100% {
    transform: scale(1.15);
    fill: var(--bronze-dim);
    filter: drop-shadow(0 0 8px var(--bronze));
  }
}

.step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.step + .step {
  border-left: none;
}

.step__num-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--bronze-dim);
  animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.step__num {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bronze);
  background: var(--bg-warm);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.15);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.875rem;
  max-width: none;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem; /* Improved rhythm */
}

.form-group label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--text-primary);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  width: 100%;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--bronze);
  background: rgba(201, 169, 110, 0.04);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.12);
  transform: translateY(-1px);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--surface);
  color: var(--text-primary);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.nav__mobile a:focus-visible,
.contact-action:focus-visible {
  outline: 2px solid rgba(226, 193, 155, 0.72);
  outline-offset: 4px;
}

/* ── FORM STATES ── */
.submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.submit-btn.is-success {
  background: var(--surface-3) !important;
  color: var(--bronze) !important;
  border-color: var(--bronze-dim) !important;
  pointer-events: none;
}

.submit-btn.is-success::before {
  content: '✓';
  margin-right: 0.45rem;
}

.submit-btn.is-unavailable {
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}

.form-note.is-unavailable {
  color: var(--bronze-dim);
}

/* ── VALIDATION ── */
.form-touched input:invalid,
.form-touched textarea:invalid,
.form-touched select:invalid {
  border-color: rgba(201, 169, 110, 0.35);
}

/* ── CONTACT ACTION CARDS ─────────────────────────────────── */
.contact-action {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    border-color 0.35s,
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.contact-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    var(--bronze-glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s;
}

.contact-action:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.contact-action:hover::before {
  opacity: 1;
}

.contact-action__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.contact-action__icon svg {
  width: 18px;
  height: 18px;
}

.contact-action__text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.contact-action__text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.25rem;
}
.contact-action__text strong {
  font-weight: 400;
  font-size: 0.9375rem;
}

/* ── CONTACT PAGE LAYOUT ── */
.contact-body {
  padding: var(--section-gap) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trust-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.trust-block h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-list li::before {
  content: '✦';
  color: var(--bronze);
  flex-shrink: 0;
  font-size: 0.5rem;
  margin-top: 0.4rem;
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.form-panel__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.form-panel__header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-panel__header p {
  font-size: 0.875rem;
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── FILM REQUEST PAGE ───────────────────────────────────── */
.film-request-page {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(201, 169, 110, 0.055),
      transparent 28vw
    ),
    var(--bg);
}

.film-request-hero .section-label {
  justify-content: center;
  margin-bottom: 1.35rem;
}

.film-request-hero__content {
  display: flex;
  justify-content: center;
}

.film-request-hero h1 {
  max-width: 9ch;
  margin: 0 auto;
  line-height: 1.02;
}

.film-request-hero .lead {
  max-width: 48ch;
  margin: 1.2rem auto 0;
}

.film-request-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.film-request-intro {
  border-bottom: 1px solid var(--border);
}

.film-request-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.request-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(
    145deg,
    rgba(24, 21, 16, 0.88),
    rgba(10, 9, 7, 0.88)
  );
  border: 1px solid var(--border);
}

.request-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0 0,
    rgba(201, 169, 110, 0.12),
    transparent 52%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.request-preview-card:hover::before {
  opacity: 1;
}

.request-preview-card__label,
.selected-title-card__type {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--bronze);
}

.request-preview-card h2 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.request-preview-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  font-size: 0.9rem;
}

.film-search-section,
.film-request-form-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.film-search-section {
  background: var(--bg-warm);
}

.film-search-grid,
.film-request-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.film-search-copy p,
.film-request-form-copy p {
  max-width: 50ch;
}

.film-search-copy__note {
  margin-top: 1rem;
  color: rgba(226, 193, 155, 0.76);
}

.film-search-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(17, 16, 9, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.film-search-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.film-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.film-search-box input {
  min-height: 50px;
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px;
}

.film-search-box input:focus,
.film-search-box input:focus-visible {
  border-color: var(--bronze);
  background: rgba(201, 169, 110, 0.04);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.12);
  transform: translateY(-1px);
}

.film-search-status {
  min-height: 1.5rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: none;
}

.film-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.film-result-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.film-result-card:hover,
.film-result-card:focus-visible,
.film-result-card.is-selected {
  border-color: var(--border-hover);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(201, 169, 110, 0.16);
  transform: translateY(-3px);
  outline: none;
}

.film-result-card__poster {
  aspect-ratio: 2/3;
  background:
    linear-gradient(145deg, rgba(201, 169, 110, 0.16), transparent),
    var(--surface-2);
}

.film-result-card__poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.film-result-card__body {
  padding: 0.8rem;
}

.film-result-card h3 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.film-result-card p {
  max-width: none;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.selected-title-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(rgba(7, 6, 4, 0.72), rgba(7, 6, 4, 0.92)), var(--bg);
}

.selected-title-empty {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: clamp(2.25rem, 5vw, 4rem);
  border: 1px dashed rgba(201, 169, 110, 0.25);
  text-align: center;
}

.selected-title-empty p {
  max-width: 48ch;
}

.selected-title-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border-hover);
  background: var(--surface);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.selected-title-card__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  filter: saturate(0.95);
}

.selected-title-card__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.96), rgba(7, 6, 4, 0.68)),
    linear-gradient(0deg, rgba(7, 6, 4, 1), transparent 42%);
}

.selected-title-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  min-height: 460px;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.selected-title-card__poster {
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: var(--surface-2);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.selected-title-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.selected-title-card h2 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.selected-title-card__meta {
  margin-bottom: 1rem;
  color: var(--bronze-light);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.selected-title-card__overview {
  max-width: 64ch;
  margin-bottom: 1.5rem;
  color: rgba(237, 232, 219, 0.78);
}

.selected-title-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.selected-title-card__links a {
  color: var(--bronze);
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
}

.film-request-assurance {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.film-request-assurance li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.85rem;
  color: rgba(237, 232, 219, 0.74);
  font-size: 0.9rem;
}

.film-request-assurance li::before {
  content: '✦';
  color: var(--bronze);
  font-size: 0.55rem;
  margin-top: 0.38rem;
}

.film-request-form-panel {
  background:
    linear-gradient(145deg, rgba(17, 16, 9, 0.95), rgba(10, 9, 7, 0.94)),
    var(--surface);
}

.request-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
}

.request-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.request-fieldset label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: rgba(237, 232, 219, 0.76);
  font-size: 0.84rem;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.request-fieldset label:has(input:checked) {
  border-color: var(--border-hover);
  background: rgba(201, 169, 110, 0.08);
  color: var(--text-primary);
}

.request-fieldset input {
  accent-color: var(--bronze);
}

.film-request-fallback {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-hover);
  background: rgba(201, 169, 110, 0.06);
}

.film-request-fallback p {
  max-width: none;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.film-request-fallback .btn {
  width: 100%;
  justify-content: center;
}

.location-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}

.location-grid > :first-child {
  min-width: 0;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.location-grid > .reveal:last-child {
  display: flex;
  align-self: stretch;
}

.location-grid .image-frame--support {
  width: 100%;
  max-width: 520px;
  height: 100%;
  margin-left: auto;
  align-self: stretch;
  overflow: hidden;
}

.location-grid .image-frame--support img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: start;
  }

  .location-grid > .reveal:last-child {
    display: block;
    align-self: start;
  }

  .location-grid .image-frame--support {
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .location-grid .image-frame--support img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

.location-item h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.location-item p {
  font-size: 0.9rem;
  max-width: none;
}

/* ── BACKGROUND TEXTURES ──────────────────────────────────── */
.bg-warm {
  background: var(--bg-warm);
}
.bg-surface {
  background: var(--surface);
}

/* ── THIN GOLD RULE ───────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--bronze);
  margin: 1.5rem 0;
}

.gold-rule--center {
  margin: 1.5rem auto;
}

/* ============================================================
   UTILITY HELPERS
   Small, reusable layout and spacing overrides
   ============================================================ */

.u-text-center {
  text-align: center !important;
}
.u-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.u-flex-start {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
}
.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Spacing Helpers */
.u-mt-05 {
  margin-top: 0.5rem !important;
}
.u-mt-1 {
  margin-top: 1rem !important;
}
.u-mt-125 {
  margin-top: 1.25rem !important;
}
.u-mt-15 {
  margin-top: 1.5rem !important;
}
.u-mt-2 {
  margin-top: 2rem !important;
}
.u-mt-25 {
  margin-top: 2.5rem !important;
}
.u-mt-3 {
  margin-top: 3rem !important;
}
.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}
.u-mb-15 {
  margin-bottom: 1.5rem !important;
}
.u-mb-2 {
  margin-bottom: 2rem !important;
}
.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-pb-2 {
  padding-bottom: 2rem !important;
}
.u-pt-4 {
  padding-top: 4rem !important;
}

/* Constraints */
.u-max-none {
  max-width: none !important;
}
.u-max-700 {
  max-width: 700px !important;
}
.u-max-820 {
  max-width: 820px !important;
}

/* Layout Comps */
.u-section-header-center {
  text-align: center !important;
  margin-bottom: 3.5rem !important;
}

.u-lead-center {
  margin: 1rem auto 0 !important;
  text-align: center !important;
}

.u-lead-refined {
  margin: 1.25rem auto !important;
  text-align: center !important;
}

.u-border-top {
  border-top: 1px solid var(--border) !important;
}
.u-border-all {
  border: 1px solid var(--border) !important;
}
.u-border-v {
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}

/* Visual Hacks */
.u-pos-sticky {
  position: sticky !important;
  top: 120px !important;
}
.u-color-muted {
  color: var(--text-muted) !important;
}
.u-color-bronze {
  color: var(--bronze) !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-sm {
  font-size: 0.875rem !important;
}
.u-text-xs {
  font-size: 0.7rem !important;
}
.u-h-8 {
  height: 8px !important;
}
.u-gap-15 {
  gap: 1.5px !important;
}

/* Surface Utilities */
.u-surface-box {
  background: var(--surface) !important;
  padding: 2.5rem !important;
  border: 1px solid var(--border) !important;
}

/* Width Utilities */
.u-w-18p {
  width: 18% !important;
}
.u-w-40p {
  width: 40% !important;
}
.u-w-30p {
  width: 30% !important;
}
.u-w-full {
  width: 100% !important;
}

/* Text & Spacing */
.u-text-base {
  font-size: 0.9375rem !important;
}
.u-lh-16 {
  line-height: 1.6 !important;
}
.u-p-2 {
  padding: 2rem !important;
}
.u-m-0 {
  margin: 0 !important;
}

/* Grid Utilities */
.u-grid-2-even {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(2rem, 5vw, 5rem) !important;
  align-items: center !important;
}

.u-gap-6vw {
  gap: clamp(3rem, 6vw, 7rem) !important;
}

.u-label-caps {
  font-family: var(--font-body) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--bronze) !important;
  margin-bottom: 1.25rem !important;
}

@media (max-width: 768px) {
  .u-grid-2-even {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ── TYPOGRAPHY LINE CONTROL ── */
.hero__lead-line,
.approach__title-line {
  display: block;
}

@media (min-width: 769px) {
  .hero__lead-line--desktop-single,
  .approach__title-line--single {
    display: block !important;
    white-space: nowrap !important;
  }
}

/* ============================================================
   LOGO NORMALIZATION SYSTEM
   Separate optical rules by context:
   1) codec badge chips
   2) device badge chips
   3) ecosystem strip
   ============================================================ */

:root {
  --logo-fit: contain;

  /* shared badge geometry */
  --chip-height: 46px;
  --chip-pad-y: 10px;
  --chip-pad-x: 18px;

  /* default fallback caps */
  --logo-chip-max-h: 16px;
  --logo-strip-max-h: 14px;

  /* optical hierarchy */
  --logo-neutral-filter: none;
  --logo-neutral-filter-hover: brightness(1.08);
  --logo-neutral-opacity: 0.85;

  --logo-premium-filter: none;
  --logo-premium-filter-hover: brightness(1.08);
  --logo-premium-opacity: 1;

  --logo-companion-filter: none;
  --logo-companion-filter-hover: brightness(1.08);
  --logo-companion-opacity: 0.75;
}

.format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.format-badge-chip,
.logo-chip-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--chip-height);
  padding: var(--chip-pad-y) var(--chip-pad-x);
  border-radius: 8px;
  border: 1px solid rgba(226, 193, 155, 0.1);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.012);
}

.format-badge-chip img,
.ecosystem-strip__item img,
.logo-chip img,
.feature-brand__img,
.comparison-brand-logo,
.footer-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 90px;
  max-height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease-out);
}

/* Ensure comparison and footer logos can be slightly larger if needed, but still constrained */
.comparison-brand-logo {
  max-height: 54px;
  max-width: 200px;
  margin-bottom: 2.25rem;
}

.footer-brand-logo {
  max-height: 64px;
  max-width: 220px;
}

.comparison-brand-logo.logo-shape--padded {
  --logo-max-w: 200px;
  --logo-max-h: 54px;
}

.footer-brand-logo.logo-shape--padded,
.footer__brand img.logo-shape--padded {
  --logo-max-w: 220px;
  --logo-max-h: 64px;
}

.device-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(226, 193, 155, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.012);
  border-radius: 8px;
  padding: 8px 16px;
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  gap: 1.2rem;
}

.device-logo-container--tight {
  gap: 0.8rem;
}

.device-logo {
  display: block;
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: var(--logo-max-w, 100px);
  max-height: var(--logo-max-h, 22px);
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.equip-item__icon-img {
  max-width: var(--logo-max-w, 92px);
  max-height: var(--logo-max-h, 20px);
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.lcv-module:hover .device-logo-container,
.device-card:hover .device-logo-container,
.equip-item:hover .device-logo-container {
  transform: translateY(-1px);
  border-color: rgba(226, 193, 155, 0.2);
  background: rgba(255, 255, 255, 0.022);
}

.lcv-module:hover .device-logo,
.device-card:hover .device-logo,
.equip-item:hover .equip-item__icon-img,
.equip-item:hover .device-logo {
  filter: var(
    --logo-filter-hover,
    var(--logo-filter, var(--logo-neutral-filter))
  );
  opacity: calc(var(--logo-opacity, var(--logo-neutral-opacity)) + 0.06);
}

/* Shared optical logo surface and tiers */
.logo-surface {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(226, 193, 155, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.012);
}

.logo-tier--neutral {
  --logo-filter: var(--logo-neutral-filter);
  --logo-filter-hover: var(--logo-neutral-filter-hover);
  --logo-opacity: var(--logo-neutral-opacity);
}

.logo-tier--premium {
  --logo-filter: var(--logo-premium-filter);
  --logo-filter-hover: var(--logo-premium-filter-hover);
  --logo-opacity: var(--logo-premium-opacity);
}

.logo-tier--companion {
  --logo-filter: var(--logo-companion-filter);
  --logo-filter-hover: var(--logo-companion-filter-hover);
  --logo-opacity: var(--logo-companion-opacity);
}

/* Shape tiers keep normalization measured and reusable across pages */
.logo-shape--square {
  --logo-max-w: 44px;
  --logo-max-h: 18px;
}

.logo-shape--wide {
  --logo-max-w: 96px;
  --logo-max-h: 22px;
}

.logo-shape--ultrawide {
  --logo-max-w: 116px;
  --logo-max-h: 20px;
}

.logo-shape--tall {
  --logo-max-w: 76px;
  --logo-max-h: 22px;
}

.logo-shape--padded {
  --logo-max-w: 108px;
  --logo-max-h: 20px;
}

.logo-shape--tiny-source {
  --logo-max-w: 74px;
  --logo-max-h: 21px;
}

img.logo-tier--neutral,
img.logo-tier--premium,
img.logo-tier--companion {
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

img.logo-shape--square,
img.logo-shape--wide,
img.logo-shape--ultrawide,
img.logo-shape--tall,
img.logo-shape--padded,
img.logo-shape--tiny-source {
  width: auto;
  height: auto;
  max-width: var(--logo-max-w, 100px);
  max-height: var(--logo-max-h, 22px);
  object-fit: contain;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.u-section-header {
  margin-bottom: 3.5rem;
}
.u-section-header--center {
  text-align: center;
}
.u-section-header .section-label {
  margin-bottom: 1.25rem;
}
.u-section-header .lead {
  margin-top: 1rem;
}
.u-section-header--center .section-label {
  justify-content: center;
}
.u-section-header--center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FINAL MOBILE STABILIZATION + FIVE AREAS FIX
   ============================================================ */

/* Service card 05 spans 2 cols on desktop only */
@media (min-width: 769px) {
  .service-card--wide {
    grid-column: span 2;
  }
}

/* Switch to the mobile hamburger before the 7-item desktop nav crowds.
   The full nav + "Book Consultation" CTA only fits comfortably above ~1200px. */
@media (max-width: 1200px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__mobile {
    display: flex;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }
}

/* Ensure all service/mastery cards are always visible on mobile */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  /* iOS Safari Auto-Zoom Fix */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important;
  }

  section,
  .section,
  .section--tight {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  /* Force all reveal animations visible — solve hidden card 01 */
  .js-ready .reveal,
  .js-ready .reveal-delay-1,
  .js-ready .reveal-delay-2,
  .js-ready .reveal-delay-3,
  .js-ready .reveal-delay-4,
  .js-ready .reveal-delay-5 {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition-delay: 0s !important;
  }

  /* Force card visibility explicitly */
  .service-card,
  .service-card--wide {
    grid-column: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100% !important;
  }

  /* Collapse grid-3 (Five Areas) to single column */
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-2-1 {
    grid-template-columns: 1fr;
  }

  /* Proof and editorial two-col layouts */
  .proof-two-col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Hero cleanup */
  .hero h1,
  .hero .display-xl,
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.8rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    text-shadow:
      0 4px 12px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(0, 0, 0, 0.3) !important;
  }

  .hero__content::before,
  .hero__copy::before {
    inset: -14px -12px;
    border-radius: 16px;
  }

  .hero__body,
  .hero__lead,
  .hero p {
    max-width: 92%;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero__actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Overflow-safe proof/table sections */
  .comparison-table-shell,
  .format-table-wrapper,
  .chart-container {
    overflow-x: auto;
  }

  /* Logo chips: mobile overrides */
  .format-badges,
  .badge-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .format-badge-chip {
    min-height: 48px;
    padding: 8px 16px;
    --logo-base-h: 24px; /* Optimized mobile baseline */
  }

  .ecosystem-strip__item img {
    max-height: min(
      calc(var(--height-ecosystem-mobile) * var(--logo-multiplier, 1)),
      var(--logo-max-h, 20px)
    );
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-process {
    grid-template-columns: 1fr;
  }
  .process-visual-layer {
    display: none;
  }
  .step + .step {
    border-left: 1px solid var(--border);
    border-top: none;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 1rem;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__mobile {
    display: flex;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  /* ── CONTACT MOBILE ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    margin-bottom: 2.5rem;
  }

  .film-request-intro__grid,
  .film-search-grid,
  .film-request-form-grid,
  .selected-title-card__content {
    grid-template-columns: 1fr;
  }

  .film-search-box {
    grid-template-columns: 1fr;
  }

  .film-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-title-card__content {
    min-height: 0;
  }

  .selected-title-card__poster {
    max-width: 210px;
  }

  .request-fieldset {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DEVICE COMPARISON TABLE — PLATFORM EXPECTATIONS
   ============================================================ */

.section--comparison .comparison-heading {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ── FILM REQUEST VAULT POLISH ───────────────────────────── */
.film-request-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 8%,
      rgba(201, 169, 110, 0.11),
      transparent 32rem
    ),
    radial-gradient(
      circle at 16% 22%,
      rgba(117, 75, 38, 0.16),
      transparent 30rem
    ),
    linear-gradient(180deg, #050403 0%, #0a0806 46%, #050403 100%);
}

.film-vault-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #050403;
}

.film-vault-atmosphere__backdrop {
  position: absolute;
  inset: -4rem;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(26px) saturate(0.86);
  transform: scale(1.06);
  transition: opacity 0.8s var(--ease-out);
}

.film-vault-atmosphere__backdrop.is-visible {
  opacity: 0.22;
}

.film-vault-atmosphere__backdrop::after,
.film-vault-atmosphere__grain {
  content: '';
  position: absolute;
  inset: 0;
}

.film-vault-atmosphere__backdrop::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.98),
      rgba(5, 4, 3, 0.7),
      rgba(5, 4, 3, 0.96)
    ),
    linear-gradient(180deg, rgba(5, 4, 3, 0.55), #050403 78%);
}

.film-vault-atmosphere__grain {
  z-index: 2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.film-vault-atmosphere__orb {
  position: absolute;
  top: 12vh;
  right: 10vw;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 38% 34%,
      rgba(244, 218, 167, 0.52),
      transparent 8%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 169, 110, 0.18),
      transparent 50%
    );
  filter: blur(4px);
  opacity: 0.42;
  animation: film-vault-orb 12s ease-in-out infinite alternate;
}

@keyframes film-vault-orb {
  from {
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  to {
    transform: translate3d(-2vw, 3vh, 0) scale(1.04);
  }
}

.film-vault-hero {
  position: relative;
  padding: clamp(6.9rem, 9vw, 8.4rem) 0 clamp(1.4rem, 4vw, 2.5rem);
}

.film-vault-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.film-vault-label {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-vault-hero h1 {
  max-width: 8ch;
  line-height: 0.95;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.7);
}

.film-vault-hero .lead {
  max-width: 36ch;
  margin-top: 1.2rem;
}

.film-request-module {
  position: relative;
  overflow: hidden;
  --console-backdrop: none;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: clamp(1.1rem, 2vw, 1.7rem);
  border: 1px solid rgba(201, 169, 110, 0.28);
  background:
    linear-gradient(145deg, rgba(21, 18, 13, 0.9), rgba(5, 4, 3, 0.92)),
    rgba(9, 8, 6, 0.86);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(201, 169, 110, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
}

.film-request-module::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 82% 8%,
      rgba(232, 193, 118, 0.18),
      transparent 18rem
    ),
    linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.32),
      transparent 16%,
      transparent 84%,
      rgba(201, 169, 110, 0.18)
    );
  opacity: 0.72;
}

.film-request-module::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.96),
      rgba(5, 4, 3, 0.74) 46%,
      rgba(5, 4, 3, 0.9)
    ),
    linear-gradient(0deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.42)),
    var(--console-backdrop);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(0.9);
  transform: scale(1.02);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.film-request-module.is-media-selected::after {
  opacity: 0.72;
  transform: scale(1);
}

.film-request-form--module {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
}

.film-request-module__header {
  display: grid;
  gap: 0.4rem;
  padding: 0.1rem 0 0.25rem;
}

.film-request-module__header .film-vault-label {
  margin: 0;
}

.film-request-module__header h1 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.film-request-module__header p {
  margin: 0;
  max-width: 62ch;
  color: rgba(237, 232, 219, 0.74);
  font-size: 0.92rem;
}

.film-module-search {
  position: relative;
  z-index: 4;
}

.film-search-label span {
  float: right;
  color: rgba(201, 169, 110, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.film-vault-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.film-vault-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: rgba(237, 232, 219, 0.66);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(15, 13, 9, 0.46);
}

.film-vault-steps span.is-active {
  border-color: rgba(201, 169, 110, 0.48);
  color: var(--bronze-light);
  box-shadow: 0 0 34px rgba(201, 169, 110, 0.1);
}

.film-vault-search,
.film-request-form-panel,
.selected-title-card {
  border: 1px solid rgba(201, 169, 110, 0.23);
  background:
    linear-gradient(145deg, rgba(20, 17, 12, 0.82), rgba(6, 5, 4, 0.88)),
    rgba(9, 8, 6, 0.78);
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
}

.film-vault-search {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.film-vault-search::before,
.selected-title-card::before,
.film-request-form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.3),
      transparent 18%,
      transparent 82%,
      rgba(201, 169, 110, 0.18)
    ),
    radial-gradient(
      circle at 16% 0%,
      rgba(201, 169, 110, 0.16),
      transparent 32rem
    );
  opacity: 0.55;
}

.film-search-box--vault {
  min-height: 58px;
  padding: 0.28rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: rgba(0, 0, 0, 0.36);
}

.film-search-box--vault input {
  min-height: 50px;
  border: 0;
  background: transparent;
  font-size: 1.05rem;
}

.film-search-box--vault input:focus,
.film-search-box--vault input:focus-visible {
  border-color: transparent;
  box-shadow: none;
}

.film-vault-intro {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 5vw, 3rem);
}

.film-vault-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.film-vault-intro__grid--compact .request-preview-card {
  padding: 1.3rem 1.2rem;
}

.film-vault-intro__grid--compact .request-preview-card h2 {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

.film-vault-intro__grid--compact .request-preview-card p {
  margin-top: 0.68rem;
  font-size: 0.83rem;
}

.request-preview-card {
  border-color: rgba(201, 169, 110, 0.18);
  background:
    linear-gradient(145deg, rgba(20, 17, 12, 0.72), rgba(7, 6, 5, 0.78)),
    rgba(10, 9, 7, 0.8);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.release-radar {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.release-radar::before {
  content: '';
  position: absolute;
  inset: 10% 0 auto;
  height: 48%;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(201, 169, 110, 0.14),
      transparent 30rem
    ),
    linear-gradient(180deg, rgba(9, 7, 4, 0), rgba(9, 7, 4, 0.64));
  opacity: 0.7;
}

.release-radar__header {
  position: relative;
  max-width: 760px;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.release-radar__header h2 {
  margin-top: 0.6rem;
  max-width: 13ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.release-radar__header p {
  max-width: 58ch;
  margin-top: 1rem;
  color: rgba(237, 232, 219, 0.68);
}

.release-radar__console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    linear-gradient(145deg, rgba(19, 15, 9, 0.86), rgba(5, 4, 3, 0.92)),
    rgba(9, 7, 4, 0.84);
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.release-radar__console::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.15),
      transparent 16%,
      transparent 84%,
      rgba(201, 169, 110, 0.1)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 92px
    );
  opacity: 0.35;
}

.release-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
  scrollbar-width: thin;
}

.release-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  color: rgba(237, 232, 219, 0.68);
  background: rgba(0, 0, 0, 0.24);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.release-tab:hover,
.release-tab:focus-visible,
.release-tab.is-active {
  border-color: rgba(201, 169, 110, 0.44);
  color: var(--bronze-light);
  background: rgba(201, 169, 110, 0.09);
  transform: translateY(-1px);
}

.release-radar__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.release-panel[hidden],
.release-detail[hidden] {
  display: none;
}

.release-panel__intro,
.release-grid__empty {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(201, 169, 110, 0.16);
  background:
    radial-gradient(
      circle at 82% 8%,
      rgba(201, 169, 110, 0.12),
      transparent 18rem
    ),
    rgba(0, 0, 0, 0.22);
}

.release-panel__intro h3,
.release-grid__empty h3 {
  max-width: 15ch;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.release-panel__intro p,
.release-grid__empty p {
  max-width: 42ch;
  color: rgba(237, 232, 219, 0.66);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.release-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(4, 3, 2, 0.74);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.release-card:hover,
.release-card:focus-visible,
.release-card.is-selected {
  border-color: rgba(201, 169, 110, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.release-card__poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(201, 169, 110, 0.18),
      transparent 45%
    ),
    linear-gradient(145deg, #17120c, #030302);
}

.release-card__poster img,
.release-detail__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 52%);
}

.release-card__meta {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.release-card__meta span,
.release-source-chip {
  color: var(--bronze-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-card__meta h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.release-card__date {
  display: grid;
  gap: 0.18rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 14px;
  padding: 0.44rem 0.58rem;
  background:
    linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(0, 0, 0, 0.22)),
    rgba(8, 6, 4, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.release-card__date strong,
.release-card__date em {
  display: block;
  font-style: normal;
  line-height: 1.15;
}

.release-card__date strong {
  color: var(--bronze-light);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card__date em {
  color: rgba(255, 250, 235, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.release-card__meta p {
  margin: 0;
  color: rgba(237, 232, 219, 0.68);
  font-size: 0.75rem;
}

.release-card--skeleton {
  pointer-events: none;
  border-color: rgba(201, 169, 110, 0.2);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.12),
      transparent 18rem
    ),
    rgba(8, 6, 4, 0.78);
}

.release-card--skeleton .release-card__poster,
.release-card--skeleton .release-card__meta span {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(201, 169, 110, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 240% 100%;
  animation: film-skeleton 1.2s ease-in-out infinite;
}

.release-card--skeleton .release-card__poster {
  opacity: 0.72;
}

.release-card--skeleton .release-card__meta span {
  display: block;
  width: min(78%, 11rem);
  height: 0.72rem;
  border-radius: 999px;
}

.release-card--skeleton .release-card__meta span + span {
  width: min(56%, 8rem);
}

.release-detail {
  display: grid;
  grid-template-rows: minmax(220px, 0.8fr) auto;
  min-height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.22);
  background:
    linear-gradient(180deg, rgba(21, 17, 10, 0.9), rgba(5, 4, 3, 0.94)),
    rgba(6, 5, 3, 0.9);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.release-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.release-detail__poster {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: linear-gradient(145deg, #17120c, #030302);
}

.release-detail__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}

.release-detail__body {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.release-detail h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.release-detail__meta,
.release-detail__overview {
  color: rgba(237, 232, 219, 0.68);
  font-size: 0.86rem;
  line-height: 1.65;
}

.release-detail__scores,
.release-detail__formats,
.release-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.release-detail__scores span,
.release-source-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(201, 169, 110, 0.06);
}

.release-detail__external {
  display: inline-flex;
  align-items: center;
  color: var(--bronze-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.film-concierge-review {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(1.6rem, 4vw, 3rem);
}

.film-concierge-review__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(201, 169, 110, 0.14),
      transparent 28rem
    ),
    linear-gradient(145deg, rgba(18, 15, 10, 0.82), rgba(5, 4, 3, 0.9));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
}

.film-concierge-review__panel h2 {
  max-width: 15ch;
  margin-top: 0.65rem;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.film-concierge-review__panel p {
  max-width: 58ch;
  margin-top: 0.9rem;
  color: rgba(237, 232, 219, 0.68);
}

.film-concierge-review__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.film-concierge-review__checks span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.08), transparent),
    rgba(0, 0, 0, 0.22);
  color: var(--bronze-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.film-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.1rem);
}

.film-request-module .film-results-grid {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr;
  max-height: min(360px, 48vh);
  overflow: auto;
  padding: 0.55rem;
  border: 1px solid rgba(201, 169, 110, 0.24);
  background: rgba(7, 6, 4, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.film-request-module .film-results-grid:empty {
  display: none;
}

.film-result-card {
  border-color: rgba(201, 169, 110, 0.18);
  background: rgba(9, 8, 6, 0.86);
}

.film-request-module .film-result-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.75rem;
  min-height: 82px;
  padding: 0.45rem;
  text-align: left;
  transition:
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.film-request-module .film-result-card:hover,
.film-request-module .film-result-card:focus-visible {
  border-color: rgba(201, 169, 110, 0.42);
  background: rgba(24, 18, 10, 0.96);
  transform: translateY(-1px);
}

.film-result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(201, 169, 110, 0.08)
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.film-result-card:hover::after,
.film-result-card:focus-visible::after,
.film-result-card.is-selected::after {
  opacity: 1;
}

.film-result-card__poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(201, 169, 110, 0.2),
      transparent 42%
    ),
    linear-gradient(145deg, #17120c, #050403);
}

.film-result-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
}

.film-request-module .film-result-card__body {
  align-content: center;
  gap: 0.25rem;
  min-width: 0;
  padding: 0;
}

.film-request-module .film-result-card h3 {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.film-request-module .film-result-card p {
  display: none;
}

.film-result-card__eyebrow {
  color: var(--bronze);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-result-card h3 {
  margin: 0;
  color: var(--text-primary);
}

.film-result-card p {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.film-result-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 0.25rem;
  color: rgba(237, 232, 219, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-result-card__meta span:last-child {
  color: var(--bronze-light);
}

.film-result-card--skeleton {
  pointer-events: none;
}

.film-result-card--skeleton .film-result-card__poster,
.film-result-card--skeleton .film-result-card__body span {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(201, 169, 110, 0.11),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 240% 100%;
  animation: film-skeleton 1.2s ease-in-out infinite;
}

.film-result-card--skeleton .film-result-card__body span {
  display: block;
  height: 0.75rem;
}

@keyframes film-skeleton {
  to {
    background-position: -240% 0;
  }
}

.cm-poster-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-align: center;
  background: var(--surface-2, rgba(16, 14, 12, 0.8));
}

.cm-poster-fallback span {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 169, 110, 0.42);
  color: var(--bronze-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.cm-poster-fallback strong {
  color: rgba(237, 232, 219, 0.82);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.selected-title-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: transparent;
}

.selected-title-shell {
  position: relative;
}

.selected-title-empty {
  border-color: rgba(201, 169, 110, 0.25);
  background: rgba(10, 9, 7, 0.42);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.selected-title-card {
  min-height: 560px;
  transform: translateY(10px);
  opacity: 0;
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.film-request-module .selected-title-empty,
.film-request-module .selected-title-card {
  min-height: 86px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: rgba(0, 0, 0, 0.26);
}

.film-request-module .selected-title-empty {
  padding: 1rem;
}

.film-request-module .selected-title-empty[hidden] {
  display: none;
}

.film-request-module .selected-title-empty span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.film-request-module .selected-title-empty p {
  margin: 0;
  color: rgba(237, 232, 219, 0.72);
}

.film-request-module .selected-title-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 0.75rem;
  opacity: 0;
}

.film-request-module .selected-title-card[hidden] {
  display: none;
}

.film-request-module .selected-title-card.is-visible {
  opacity: 1;
}

.selected-title-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.selected-title-card__backdrop {
  opacity: 0.42;
  filter: blur(1px) saturate(0.92);
}

.selected-title-card__backdrop::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.98),
      rgba(5, 4, 3, 0.74),
      rgba(5, 4, 3, 0.44)
    ),
    linear-gradient(0deg, #050403, transparent 56%);
}

.selected-title-card__content {
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  min-height: 560px;
}

.selected-title-card__poster {
  border-color: rgba(201, 169, 110, 0.38);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(201, 169, 110, 0.16);
}

.film-request-module .selected-title-card__poster {
  width: 64px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.film-request-module .selected-title-card__poster img,
.film-result-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-title-card__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.film-request-module .selected-title-card__copy {
  display: grid;
  align-content: center;
  gap: 0.24rem;
}

.selected-title-card__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.selected-title-card__line button {
  border: 0;
  color: var(--bronze-light);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.selected-title-card h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.film-request-module .selected-title-card h2 {
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-title-card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.26);
  background: rgba(201, 169, 110, 0.08);
}

.film-request-module .selected-title-card__rating {
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.film-request-module .selected-title-card__rating span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
}

.film-request-module .selected-title-card__rating small {
  font-size: 0.62rem;
}

.film-request-module .selected-film-detail {
  display: grid;
  grid-template-columns: minmax(144px, 214px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
  min-height: 0;
  margin-top: 0.8rem;
  padding: clamp(0.9rem, 2vw, 1.3rem);
  border-color: rgba(201, 169, 110, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(5, 4, 3, 0.54), rgba(17, 13, 8, 0.72)),
    rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 70px rgba(0, 0, 0, 0.22);
}

.film-request-module .selected-film-detail[hidden] {
  display: none;
}

.film-request-module .selected-film-detail__poster {
  align-self: start;
  width: 100%;
  max-width: 192px;
  border-color: rgba(201, 169, 110, 0.36);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.44);
}

.film-request-module .selected-film-detail__body {
  max-width: none;
  min-width: 0;
}

.film-request-module .selected-film-detail__topline {
  gap: 0.45rem;
}

.film-request-module .selected-film-detail__status,
.film-request-module .selected-film-detail__imdb,
.film-request-module .selected-film-detail__tmdb {
  min-height: 26px;
  padding: 0 0.55rem;
  font-size: 0.58rem;
}

.film-request-module .selected-film-detail h2 {
  max-width: none;
  margin: 0.45rem 0 0.45rem;
  font-size: clamp(2rem, 4.3vw, 3.3rem);
}

.film-request-module .selected-film-detail__meta {
  gap: 0.42rem;
  font-size: 0.78rem;
}

.film-request-module .selected-film-detail__rating {
  margin: 0.7rem 0;
  padding: 0.46rem 0.64rem;
}

.film-request-module .selected-film-analysis {
  margin: 0.75rem 0;
}

.film-request-module .selected-film-detail__overview {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: rgba(237, 232, 219, 0.76);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.film-request-module .selected-film-detail__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.8rem 0;
}

.film-request-module .selected-film-detail__facts div {
  padding: 0.55rem;
  background: rgba(0, 0, 0, 0.22);
}

.film-request-module .selected-film-detail__formats {
  gap: 0.42rem;
}

.film-request-module .selected-film-detail__formats span {
  padding: 0.38rem 0.58rem;
  font-size: 0.62rem;
}

.film-request-module .selected-film-detail__note {
  margin-top: 0.65rem;
  font-size: 0.72rem;
}

.selected-film-detail__trailer {
  margin-top: 0.75rem;
  min-height: 38px;
  padding: 0 1rem;
  border: 1px solid rgba(201, 169, 110, 0.38);
  color: var(--bronze-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.1);
  cursor: pointer;
  transition:
    transform 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    background 0.22s var(--ease-out);
}

.selected-film-detail__trailer:hover,
.selected-film-detail__trailer:focus-visible {
  border-color: rgba(201, 169, 110, 0.56);
  background: rgba(201, 169, 110, 0.2);
  transform: translateY(-1px);
}

.selected-title-card__rating span {
  color: var(--bronze-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.selected-title-card__rating small {
  color: rgba(237, 232, 219, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-title-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.selected-title-card__facts div {
  padding: 0.85rem;
  border: 1px solid rgba(201, 169, 110, 0.16);
  background: rgba(0, 0, 0, 0.24);
}

.selected-title-card__facts span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.selected-title-card__facts strong {
  color: rgba(237, 232, 219, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
}

.selected-title-card__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.selected-title-card__formats span,
.request-fieldset label {
  border-radius: 999px;
}

.selected-title-card__formats span {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: rgba(237, 232, 219, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.26);
}

.film-request-form-section {
  padding-top: clamp(3rem, 7vw, 6rem);
  background: linear-gradient(180deg, transparent, rgba(10, 8, 5, 0.76));
}

.film-request-form-panel {
  position: relative;
  overflow: hidden;
}

.film-request-form {
  position: relative;
  z-index: 1;
}

.film-request-form--module .request-section {
  margin-bottom: 0;
}

.film-request-form--module .form-row {
  gap: 0.75rem;
}

.film-request-form--module .form-group {
  gap: 0.42rem;
  margin-bottom: 0;
}

.film-request-form--module .request-section legend {
  margin-bottom: 0.65rem;
}

.film-request-form--module .form-group input,
.film-request-form--module .form-group select,
.film-request-form--module .form-group textarea {
  min-height: 48px;
}

.selected-film-detail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: clamp(460px, 54vw, 620px);
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(6, 5, 4, 0.95);
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 40px rgba(201, 169, 110, 0.05);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.selected-film-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.selected-film-detail__backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  filter: saturate(0.9);
}

.selected-film-detail__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.98),
      rgba(5, 4, 3, 0.76) 48%,
      rgba(5, 4, 3, 0.42)
    ),
    linear-gradient(0deg, #050403, transparent 58%);
}

.selected-film-detail__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
  min-height: inherit;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.selected-film-detail__poster {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(201, 169, 110, 0.38);
  background: #080604;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(201, 169, 110, 0.14);
}

.selected-film-detail__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-film-detail__body {
  max-width: 850px;
}

.selected-film-detail__topline,
.selected-film-detail__meta,
.selected-film-detail__rating,
.selected-film-detail__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.selected-film-detail__status,
.selected-film-detail__imdb,
.selected-film-detail__tmdb {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.7rem;
  border: 1px solid rgba(201, 169, 110, 0.24);
  color: var(--bronze-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.28);
}

.selected-film-detail h2 {
  max-width: 14ch;
  margin: 0.95rem 0 0.8rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.selected-film-detail__meta {
  color: rgba(237, 232, 219, 0.78);
  font-size: 0.88rem;
}

.selected-film-detail__rating {
  width: fit-content;
  margin: 1rem 0;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.1);
}

.selected-film-detail__rating span {
  color: var(--bronze-light);
  font-weight: 800;
}

.selected-film-detail__rating small {
  color: rgba(237, 232, 219, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-film-analysis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.selected-film-analysis__item {
  min-height: 82px;
  padding: 0.68rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background:
    linear-gradient(150deg, rgba(201, 169, 110, 0.08), transparent 54%),
    rgba(0, 0, 0, 0.28);
}

.selected-film-analysis__item span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bronze);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.selected-film-analysis__item strong {
  color: rgba(237, 232, 219, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.selected-film-analysis__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.55rem;
}

.selected-film-analysis__chips span {
  margin: 0;
  padding: 0.24rem 0.4rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 999px;
  color: rgba(237, 232, 219, 0.7);
  font-size: 0.52rem;
  background: rgba(0, 0, 0, 0.3);
}

.selected-film-detail__overview {
  max-width: 72ch;
  color: rgba(237, 232, 219, 0.82);
}

.selected-film-detail__facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.3rem 0;
}

.selected-film-detail__facts div {
  padding: 0.75rem;
  border: 1px solid rgba(201, 169, 110, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

.selected-film-detail__facts span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-film-detail__facts strong {
  color: rgba(237, 232, 219, 0.86);
  font-size: 0.78rem;
  font-weight: 500;
}

.selected-film-detail__formats span {
  color: rgba(237, 232, 219, 0.68);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-film-detail__formats span {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.selected-film-detail__note {
  margin-top: 0.9rem;
  color: rgba(237, 232, 219, 0.56);
  font-size: 0.78rem;
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.request-progress span {
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.85),
    rgba(201, 169, 110, 0.18)
  );
}

.request-section {
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
}

.request-section legend,
.request-fieldset legend {
  margin-bottom: 0.9rem;
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-group label span {
  float: right;
  color: rgba(201, 169, 110, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.form-helper {
  display: block;
  font-size: 0.75rem;
  color: rgba(237, 232, 219, 0.55);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.request-fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-fieldset label {
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
}

.request-fieldset input {
  position: absolute;
  opacity: 0;
}

.request-fieldset label:has(input:focus-visible) {
  outline: 2px solid rgba(201, 169, 110, 0.6);
  outline-offset: 2px;
}

.request-fieldset label:has(input:checked) {
  background:
    linear-gradient(
      135deg,
      rgba(201, 169, 110, 0.2),
      rgba(201, 169, 110, 0.06)
    ),
    rgba(201, 169, 110, 0.08);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.18);
}

.film-request-fallback {
  border-color: rgba(201, 169, 110, 0.38);
  background: rgba(201, 169, 110, 0.08);
}

.advanced-request {
  border: 1px solid rgba(202, 163, 103, 0.22);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(
    160deg,
    rgba(14, 14, 18, 0.84) 10%,
    rgba(20, 16, 12, 0.88) 100%
  );
}

.advanced-request > summary {
  cursor: pointer;
  color: var(--color-ivory);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advanced-request[open] > summary {
  margin-bottom: 0.95rem;
}

.submit-btn--vault {
  position: relative;
  overflow: hidden;
  min-height: 3.75rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.film-vault-discovery {
  padding: clamp(0.8rem, 2vw, 1.4rem) 0 clamp(1.4rem, 3.2vw, 2.1rem);
}

.film-vault-discovery__stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.film-discovery-rail {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.18);
  padding: clamp(0.85rem, 2vw, 1.1rem);
  background:
    linear-gradient(145deg, rgba(20, 17, 12, 0.72), rgba(7, 6, 5, 0.8)),
    rgba(10, 9, 7, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.film-discovery-rail::after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 4.3rem;
  right: 0;
  bottom: 0;
  width: 4.5rem;
  background: linear-gradient(90deg, transparent, rgba(5, 4, 3, 0.9));
}

.film-discovery-rail__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.78rem;
}

.film-discovery-rail__header h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.film-discovery-rail__header p {
  margin: 0;
  color: rgba(237, 232, 219, 0.64);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-discovery-rail__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(198px, 220px);
  gap: 0.9rem;
  overflow-x: auto;
  padding: 0.1rem 1.7rem 0.55rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(201, 169, 110, 0.42) rgba(255, 255, 255, 0.06);
}

.film-discovery-rail__cards:empty::before {
  content: 'Discovery titles unavailable right now.';
  display: block;
  color: rgba(237, 232, 219, 0.62);
  font-size: 0.84rem;
}

.film-discovery-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.58rem;
  overflow: hidden;
  padding: 0.62rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 18px;
  color: var(--text-primary);
  text-align: left;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.13),
      transparent 46%
    ),
    rgba(8, 7, 5, 0.86);
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.film-discovery-card:hover,
.film-discovery-card:focus-visible,
.film-discovery-card.is-selected {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.film-discovery-card__poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 13px;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(201, 169, 110, 0.2),
      transparent 42%
    ),
    linear-gradient(145deg, #17120c, #050403);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.film-discovery-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.4s var(--ease-out);
}

.film-discovery-card:hover .film-discovery-card__poster img,
.film-discovery-card:focus-visible .film-discovery-card__poster img {
  filter: saturate(1.15) contrast(1.1) brightness(1.1);
  transform: scale(1.08);
}

.film-discovery-card__body {
  display: grid;
  gap: 0.35rem;
}

.film-discovery-card__eyebrow {
  color: var(--bronze);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-discovery-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.film-discovery-card__meta {
  color: rgba(237, 232, 219, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.film-discovery-card__select {
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 999px;
  color: var(--bronze-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
  transition:
    opacity 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.film-discovery-card:hover .film-discovery-card__select,
.film-discovery-card:focus-visible .film-discovery-card__select {
  background: rgba(201, 169, 110, 0.12);
  opacity: 1;
}

.film-discovery-card--skeleton {
  pointer-events: none;
}

.film-discovery-card--skeleton .film-discovery-card__poster,
.film-discovery-card--skeleton .film-discovery-card__body span {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(201, 169, 110, 0.11),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 240% 100%;
  animation: film-skeleton 1.2s ease-in-out infinite;
}

.film-discovery-card--skeleton .film-discovery-card__body span {
  display: block;
  height: 0.75rem;
}

.film-discovery-empty {
  margin: 0;
  color: rgba(237, 232, 219, 0.62);
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .release-radar__body {
    grid-template-columns: 1fr;
  }

  .release-detail {
    grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .release-detail__poster {
    min-height: 100%;
  }
}

@media (max-width: 860px) {
  .release-radar__header h2 {
    max-width: 10ch;
  }

  .film-concierge-review__panel {
    grid-template-columns: 1fr;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-card {
    min-height: 300px;
  }

  .release-detail {
    grid-template-columns: 1fr;
  }

  .release-detail__poster {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .release-radar {
    padding-top: 1rem;
  }

  .release-radar__console {
    margin-inline: -0.25rem;
  }

  .release-tabs {
    padding: 0.65rem;
  }

  .release-tab {
    min-height: 38px;
    padding: 0.55rem 0.78rem;
    font-size: 0.62rem;
  }

  .release-radar__body {
    padding: 0.75rem;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-card {
    min-height: 220px;
  }

  .film-concierge-review__checks {
    grid-template-columns: 1fr;
  }

  .film-concierge-review__checks span {
    min-height: 64px;
  }

  .release-panel__intro,
  .release-grid__empty {
    min-height: 260px;
  }
}

.submit-btn--vault::after {
  content: '';
  position: absolute;
  top: 0;
  left: -38%;
  width: 32%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 226, 176, 0.36),
    transparent
  );
  transform: skewX(-24deg);
  animation: request-btn-sweep 3.2s ease-in-out infinite;
}

.submit-btn--vault:active {
  transform: translateY(1px) scale(0.995);
}

.submit-btn--vault.is-loading {
  letter-spacing: 0.12em;
}

.submit-btn--vault.is-success {
  border-color: rgba(201, 169, 110, 0.42);
  background:
    linear-gradient(
      145deg,
      rgba(201, 169, 110, 0.22),
      rgba(201, 169, 110, 0.1)
    ),
    rgba(14, 12, 10, 0.9);
}

@keyframes request-btn-sweep {
  0%,
  45% {
    left: -38%;
  }
  100% {
    left: 130%;
  }
}

.film-trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.film-trailer-modal[hidden] {
  display: none;
}

.film-trailer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 1, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.film-trailer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 96vw);
  border: 1px solid rgba(201, 169, 110, 0.3);
  background:
    linear-gradient(160deg, rgba(18, 14, 10, 0.95), rgba(5, 4, 3, 0.97)),
    rgba(8, 7, 5, 0.95);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.62);
  padding: 0.9rem;
}

.film-trailer-modal__dialog h2 {
  margin: 0 0 0.75rem;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
}

.film-trailer-modal__close {
  float: right;
  border: 1px solid rgba(201, 169, 110, 0.28);
  color: var(--bronze-light);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.08);
  min-height: 32px;
  padding: 0 0.85rem;
  cursor: pointer;
}

.film-trailer-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: #040302;
}

.film-trailer-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .film-vault-hero__grid,
  .film-vault-intro__grid,
  .selected-title-card__content,
  .film-request-form-grid {
    grid-template-columns: 1fr;
  }

  .film-vault-hero {
    padding-top: 6.4rem;
  }

  .selected-title-card__content {
    min-height: 0;
  }

  .selected-title-card__facts,
  .selected-film-analysis,
  .selected-film-detail__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-film-detail__content {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    align-items: end;
  }
}

@media (max-width: 720px) {
  .film-vault-hero {
    padding-top: 5.3rem;
  }

  .film-request-module {
    width: 100%;
    padding: 0.82rem;
  }

  .film-request-form--module {
    gap: 0.7rem;
  }

  .film-request-module__header h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .film-request-module__header p {
    font-size: 0.82rem;
  }

  .film-vault-search {
    padding: 1rem;
  }

  .film-search-box--vault {
    grid-template-columns: 1fr;
  }

  .film-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-result-card__body {
    padding: 0.75rem;
  }

  .selected-title-card__poster {
    max-width: 190px;
  }

  .selected-title-card__facts,
  .selected-film-analysis,
  .selected-film-detail__facts,
  .request-fieldset {
    grid-template-columns: 1fr;
  }

  .selected-film-detail {
    min-height: 0;
  }

  .film-request-module .selected-film-detail {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .film-request-module .selected-film-detail__poster {
    max-width: 96px;
  }

  .film-request-module .selected-film-detail h2 {
    max-width: none;
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .film-request-module .selected-film-detail__meta {
    font-size: 0.68rem;
  }

  .film-request-module .selected-film-detail__overview {
    -webkit-line-clamp: 2;
  }

  .film-request-module .selected-film-detail__facts {
    grid-template-columns: 1fr;
  }

  .film-request-module .selected-film-analysis {
    grid-template-columns: 1fr;
  }

  .film-request-module .selected-film-detail__formats {
    display: none;
  }

  .film-discovery-rail {
    padding: 0.75rem;
  }

  .film-discovery-rail__cards {
    grid-auto-columns: minmax(152px, 62vw);
  }

  .selected-film-detail__trailer {
    width: 100%;
    justify-content: center;
  }

  .selected-film-detail__content {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .selected-film-detail__poster {
    width: min(42vw, 160px);
  }

  .selected-film-detail h2 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .film-vault-steps span {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-vault-atmosphere__orb,
  .film-result-card--skeleton .film-result-card__poster,
  .film-result-card--skeleton .film-result-card__body span {
    animation: none;
  }

  .film-vault-atmosphere__backdrop,
  .selected-title-card,
  .selected-film-detail,
  .film-request-module::after,
  .selected-film-detail__trailer {
    transition: none;
  }
}

.section--comparison .comparison-heading .section-label {
  justify-content: center;
}

.comparison-intro {
  max-width: 820px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  max-width: none;
}

.comparison-table-wrap {
  margin-top: 1rem;
}

.comparison-table-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.025)
  );
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(226, 193, 155, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead tr th {
  color: #e2c19b;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tbody th {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
}

.comparison-table tbody td {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover th,
.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.comparison-status--yes {
  color: #e2c19b;
  border-color: rgba(226, 193, 155, 0.28);
  background: rgba(226, 193, 155, 0.08);
}

.comparison-status--no {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-status--conditional {
  color: #d0b480;
  border-color: rgba(208, 180, 128, 0.22);
  background: rgba(208, 180, 128, 0.05);
}

.comparison-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Proof section two-column layout */
.proof-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 480px) {
  .bar-item {
    grid-template-columns: 80px 1fr 50px;
  }
  .bar-label {
    font-size: 0.75rem;
  }
}

/* ============================================================
   FINAL VISUAL REFINEMENT PASS vR2
   Mobile comparison cards, Synology scale, footer, CTA spacing
   ============================================================ */

/* ============================================================
   FULL DEVICE COMPARISON SYSTEM
   ============================================================ */

.comparison-heading {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.comparison-intro {
  max-width: 820px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.comparison-table-shell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.025)
  );
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(226, 193, 155, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  color: #e2c19b;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  vertical-align: top;
  padding-top: 22px;
  padding-bottom: 20px;
}

.feature-head {
  display: inline-block;
  color: #e2c19b;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.device-head__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: var(--logo-max-h, 18px);
  max-width: var(--logo-max-w, 108px);
  object-fit: contain;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.device-head__title {
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 290px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.comparison-table tbody td {
  color: rgba(255, 255, 255, 0.72);
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.feature-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

/* 4. PLATFORM EXPECTATIONS LOGO POLISH — Unified system handles heights via tokens */
.feature-brand__img {
  display: block;
  width: auto;
  height: auto;
  max-height: min(
    calc(var(--logo-base-h, 24px) * var(--logo-multiplier, 1)),
    var(--logo-max-h, 24px)
  );
  max-width: var(--logo-max-w, 120px);
  object-fit: contain;
  opacity: 0.82;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .feature-brand__img {
    height: 24px;
  }
}

.feature-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e2c19b;
  opacity: 0.88;
  flex: 0 0 auto;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.device-fit {
  display: inline-block;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.comparison-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.comparison-status--available {
  color: #e2c19b;
  background: linear-gradient(
    180deg,
    rgba(226, 193, 155, 0.12),
    rgba(226, 193, 155, 0.06)
  );
  border: 1px solid rgba(226, 193, 155, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(226, 193, 155, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.14);
}

.comparison-status--unavailable {
  color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-status--verify {
  color: #d8bb93;
  background: linear-gradient(
    180deg,
    rgba(216, 187, 147, 0.09),
    rgba(216, 187, 147, 0.04)
  );
  border: 1px solid rgba(216, 187, 147, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(216, 187, 147, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.comparison-status:hover {
  transform: translateY(-1px);
}

.comparison-disclaimer {
  margin-top: 1rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
}

/* ── LOGO SCALING (TOKEN SYSTEM) ── */
/* Consolidated below */

/* Handled by unified token system */

/* ── VIDEO WRAPPER & VIMEO CUSTOM UI ── */
.vimeo-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  isolation: isolate;
  cursor: pointer;
}

.vimeo-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
}

.vimeo-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 6, 4, 0.5) 0%,
    rgba(7, 6, 4, 0.14) 25%,
    rgba(7, 6, 4, 0.05) 45%,
    rgba(7, 6, 4, 0.18) 100%
  );
  pointer-events: none;
}

/* ── SURFACE TOGGLE (CENTER) ── */
.vimeo-surface-toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.4s var(--ease-out);
}

.vimeo-surface-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(226, 193, 155, 0.25);
  background: rgba(12, 10, 8, 0.4);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
  color: var(--bronze-light);
  border-radius: 50%;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.4s var(--ease-out);
}

.vimeo-surface-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.is-playing .vimeo-surface-toggle {
  opacity: 0;
  pointer-events: none;
}

/* Hover over shell shows button even if playing, unless idle */
.vimeo-shell:hover .vimeo-surface-toggle {
  opacity: 1;
}

.vimeo-shell.is-idle .vimeo-surface-toggle {
  opacity: 0 !important;
}

.vimeo-surface-toggle__icon--play {
  display: flex;
}
.vimeo-surface-toggle__icon--pause {
  display: none;
}

.vimeo-surface-toggle .icon-pause,
.vimeo-surface-toggle__icon--pause {
  display: none !important;
}

.vimeo-shell:hover .vimeo-surface-toggle__icon {
  transform: scale(1.05);
  border-color: rgba(226, 193, 155, 0.5);
  background: rgba(12, 10, 8, 0.6);
}

/* Hide surface toggle when playing AND idle */
.vimeo-shell.is-playing.is-idle .vimeo-surface-toggle {
  opacity: 0;
  pointer-events: none;
}

/* ── CONTROLS BAR ── */
.vimeo-controls {
  position: absolute;
  left: clamp(0.875rem, 2vw, 1.5rem);
  right: clamp(0.875rem, 2vw, 1.5rem);
  bottom: clamp(0.875rem, 2vw, 1.5rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 1.2vw, 1.25rem);
  padding: clamp(0.625rem, 1.1vw, 0.85rem) clamp(0.75rem, 1.5vw, 1.25rem);
  border: 1px solid rgba(201, 169, 110, 0.13);
  background: rgba(10, 9, 8, 0.46);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    border-color 0.4s ease;
}

/* Idle logic: controls follow idle state only if playing */
.vimeo-shell.is-playing.is-idle .vimeo-controls {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* Always show controls when paused */
.vimeo-shell.is-paused .vimeo-controls {
  opacity: 1;
  transform: translateY(0);
}

.vimeo-controls__left,
.vimeo-controls__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.vimeo-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.vimeo-progress {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

.vimeo-progress::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
}
.vimeo-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  box-shadow: -100vw 0 0 100vw var(--bronze);
}

.vimeo-control-btn {
  background: transparent;
  border: 0;
  color: var(--bronze-light);
  width: clamp(30px, 2.2vw, 38px);
  height: clamp(30px, 2.2vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  flex: 0 0 auto;
}

.vimeo-control-btn svg {
  width: clamp(16px, 1.25vw, 20px);
  height: clamp(16px, 1.25vw, 20px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vimeo-control-btn .icon-pause {
  display: none;
}

.vimeo-shell.is-playing .vimeo-control-btn .icon-play {
  display: none;
}
.vimeo-shell.is-playing .vimeo-control-btn .icon-pause {
  display: block;
  opacity: 1;
  transform: scale(1);
  position: static;
}

.vimeo-control-btn:hover {
  transform: scale(1.1);
  color: #fff;
  text-shadow: 0 0 15px rgba(226, 193, 155, 0.4);
}

.vimeo-time {
  min-width: clamp(62px, 7vw, 95px);
  text-align: right;
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono, monospace);
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Handled by global vimeo-controls media query below */

/* ── RESPONSIVE COMPONENTS ── */
.table-responsive-wrapper,
.format-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem;
}

.audio-format-cards {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.audio-format-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.audio-format-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.audio-format-card__logo {
  height: 18px;
  width: auto;
}

.audio-format-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .table-responsive-wrapper,
  .format-table-wrapper {
    display: none;
  }
  .audio-format-cards {
    display: grid;
  }
  .vimeo-surface-toggle__icon {
    width: 54px;
    height: 54px;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  }
  .vimeo-surface-toggle__icon svg {
    width: 18px;
    height: 18px;
  }
  .vimeo-shell::after {
    background: linear-gradient(
      to top,
      rgba(7, 6, 4, 0.26) 0%,
      rgba(7, 6, 4, 0.08) 26%,
      rgba(7, 6, 4, 0.02) 48%,
      rgba(7, 6, 4, 0.1) 100%
    );
  }
  .vimeo-controls {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.5rem 0.625rem;
    gap: 0.375rem;
    background: rgba(0, 0, 0, 0.76);
    border-color: rgba(201, 169, 110, 0.1);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.012);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
  }
  .vimeo-controls__left,
  .vimeo-controls__right {
    gap: 0.25rem;
  }
  .vimeo-progress-wrap {
    min-width: 0;
  }
  .vimeo-control-btn {
    width: 28px;
    height: 28px;
  }
  .vimeo-control-btn svg {
    width: 14px;
    height: 14px;
  }
  .vimeo-progress {
    height: 2px;
  }
  .vimeo-progress::-webkit-slider-runnable-track {
    height: 2px;
  }
  .vimeo-time {
    min-width: 56px;
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }
  .vimeo-shell iframe {
    pointer-events: auto;
  }
}

.comparison-mobile-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.comparison-device-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    inset 0 0 0 1px rgba(226, 193, 155, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.18);
  padding: 22px 20px;
}

.comparison-device-card + .comparison-device-card {
  margin-top: 0;
}

.comparison-device-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.comparison-device-card__title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-device-status {
  display: inline-flex;
  min-height: 28px;
  padding: 0 12px;
  font-size: 11px;
  align-items: center;
  border-radius: 100px;
}

.comparison-device-card__rows {
  display: grid;
  gap: 12px;
}

.comparison-device-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-device-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.comparison-device-row__label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

/* ── STATUS PILLS ───────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.status-pill--gold {
  background: rgba(226, 193, 155, 0.1);
  color: var(--bronze);
  border: 1px solid rgba(226, 193, 155, 0.2);
}

.status-pill--dim {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── TABLE UTILITIES ────────────────────────────────────── */
.format-table-shell,
.table-responsive-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .format-table-shell::after,
  .table-responsive-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .comparison-table-shell {
    display: none;
  }

  .comparison-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .comparison-device-card + .comparison-device-card {
    margin-top: 0px;
  }

  .device-head__title,
  .comparison-device-card__title {
    font-size: 12px;
    line-height: 1.4;
  }

  .comparison-status {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .device-fit {
    max-width: 180px;
    font-size: 14px;
  }
}

/* ---------- SYNOLOGY SCALE FINAL BOOST (Optical compensation for padding) ---------- */
/* Based on asset measurement (500x140 trimmed) 
   Correction and visual balance now handled by central multiplier and chip rules */

/* Consolidated synology scaling logic moved to central mapping */

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-full {
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
  position: relative;
}

.cta-full .section-label {
  margin-bottom: 2rem;
  justify-content: center;
}

.cta-full .display-lg,
.cta-full h2 {
  margin-bottom: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-full .lead {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-full__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-full .format-badges {
  margin-bottom: 3rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-full {
    padding: 80px 0 !important;
  }
  .cta-full .display-lg,
  .cta-full h2 {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
  }
  .cta-full__actions {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 2rem !important;
  }
  .cta-full__actions .btn {
    width: 100% !important;
  }
}

/* Cleaned redundant footer rules */

/* ---------- CTA SECTIONS — BREATHING SPACE ---------- */

.cta-full,
.cta-full--take-action {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

/* ---------- ECOSYSTEM LOGO ROW ---------- */

.comparison-section .format-badges,
.comparison-col .format-badges {
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.comparison-col--good .format-badges + .format-badges {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .comparison-col {
    padding: 1.75rem 1.5rem;
  }

  .comparison-col .format-badges {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ============================================================
   HOMEPAGE HERO CTA / SCROLL MOBILE FIX
   ============================================================ */

.hero__actions--stack-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 760px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 3;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.5s 2.2s var(--ease-out) forwards;
}

/* ── UTILITY REPLACEMENTS ── */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.section-center-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero__button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.btn--hero {
  min-width: 240px;
  justify-content: center;
}

.hero__scroll-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
}

.hero__scroll-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(226, 193, 155, 0.92);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.hero__scroll-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.hero__scroll-label {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(226, 193, 155, 0.82);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(
    180deg,
    rgba(226, 193, 155, 0) 0%,
    rgba(226, 193, 155, 0.8) 50%,
    rgba(226, 193, 155, 0) 100%
  );
}

/* desktop refinement */
@media (min-width: 769px) {
  .hero__actions--stack-safe {
    gap: 26px;
    margin-top: 2.25rem;
  }

  .hero__button-row {
    gap: 16px;
  }

  .hero__scroll-wrap {
    margin-top: 4px;
  }
}

/* mobile stabilization */
@media (max-width: 768px) {
  .hero__actions--stack-safe {
    gap: 18px;
    margin-top: 1.5rem;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .hero__button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .btn--hero {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero__scroll-wrap {
    margin-top: 2px;
  }

  .hero__scroll-link {
    gap: 8px;
  }

  .hero__scroll-line {
    height: 24px;
  }
}

/* extra small phones */
@media (max-width: 480px) {
  .hero__actions--stack-safe {
    gap: 16px;
    margin-top: 1.25rem;
  }

  .vimeo-surface-toggle__icon {
    width: 48px;
    height: 48px;
  }

  .vimeo-surface-toggle__icon svg {
    width: 16px;
    height: 16px;
  }

  .vimeo-controls {
    left: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    padding: 0.45rem 0.5rem;
    gap: 0.25rem;
  }

  .vimeo-controls__left,
  .vimeo-controls__right {
    gap: 0.2rem;
  }

  .vimeo-control-btn {
    width: 26px;
    height: 26px;
  }

  .vimeo-control-btn svg {
    width: 13px;
    height: 13px;
  }

  .vimeo-time {
    min-width: 50px;
    font-size: 0.54rem;
  }

  .hero__scroll-label {
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .hero__scroll-line {
    height: 20px;
  }
}

/* Global reveal normalization */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.88s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.88s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 4. PLATFORM EXPECTATIONS FINAL POLISH */
.comparison-table-shell thead th {
  padding-top: 28px;
  padding-bottom: 24px;
}

/* ── LOGO SCALING SYSTEM (Final Verification) ── */
/* Handled by unified token system at line ~1340 */

/* ── MOBILE TABLE RESPONSIVENESS ── */
.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.table-responsive-wrapper table {
  min-width: 600px; /* Force scroll on narrow screens */
}

@media (prefers-reduced-motion: reduce) {
  .submit-btn--vault::after {
    animation: none;
  }
}

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--surface-3);
  border: 1px solid var(--border-hover);
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.wa-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-fab:hover {
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  color: var(--bronze-light);
}
.wa-fab svg {
  flex-shrink: 0;
}
/* Ensure FAB doesn't overlap form submit buttons on narrow viewports */
@media (max-width: 375px) {
  .wa-fab {
    bottom: 80px;
  }
}

/* ── CINEMATIC SPLIT VIEW ────────────────────────────────────────── */
.split-view-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  max-height: 562px;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  border: 1px solid rgba(226, 193, 155, 0.2);
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  touch-action: none; /* prevent scrolling when swiping horizontally */
  cursor: ew-resize;
  border-radius: 4px;
  -webkit-user-select: none;
  user-select: none;
}

/* While dragging the HDR divider, suppress text/image selection page-wide
   (the move handler is bound to window, so selection could otherwise start
   on nearby labels/copy). */
body.is-hdr-dragging {
  cursor: ew-resize;
  -webkit-user-select: none;
  user-select: none;
}

.split-view-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  transform: none !important;
}

.split-view-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  contain: paint;
}

.split-view-left img {
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
}

/* Exported HDR comparison stills: no CSS tone mapping. */
.img-sdr {
  filter: none;
}

.img-hdr {
  filter: none;
  transition: opacity 0.28s ease;
}

.img-hdr10 {
  filter: none;
}

.img-hdr10p {
  filter: none;
}

.img-dv {
  filter: none;
}

.split-view-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(226, 193, 155, 0.6);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(226, 193, 155, 0.5);
}

.split-view-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(12, 10, 8, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 226, 183, 0.4);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.split-view-container:hover .split-view-handle {
  border-color: rgba(246, 226, 183, 0.7);
  transform: translate(-50%, -50%) scale(1.05);
}

.split-view-container:active .split-view-handle {
  transform: translate(-50%, -50%) scale(0.95);
}

.split-view-handle::before,
.split-view-handle::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}

.split-view-handle::before {
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--bronze-light) transparent transparent;
  margin-right: 5px;
}

.split-view-handle::after {
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--bronze-light);
  margin-left: 5px;
}

.split-view-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 4;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  pointer-events: none;
}

.split-view-label--left {
  left: 1rem;
}

.split-view-label--right {
  right: 1rem;
}

.disclaimer-text {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(237, 232, 219, 0.5);
  margin-top: 0.8rem;
  font-style: italic;
}

/* Markers */
.split-view-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.7;
}
.split-view-marker--highlight {
  top: 20%;
  right: 25%;
}
.split-view-marker--shadow {
  bottom: 25%;
  right: 15%;
}
.is-dv .split-view-marker,
.is-hdr10p .split-view-marker {
  animation: marker-pulse 2s infinite alternate;
}
@keyframes marker-pulse {
  from {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }
  to {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 1);
  }
}

/* ── GLOBAL LOGO CHIP SYSTEM ─────────────────────────────────────────── */
/*
  Usage: <img class="logo-chip logo--dolby-atmos" src="..." alt="Dolby Atmos" />
  Per-logo modifiers control any size/filter override needed for legibility.
  All logos must fit in a fixed container; none should overflow or dominate.
*/

.logo-chip {
  display: block;
  width: auto;
  height: var(--logo-max-h, var(--logo-h, 28px));
  max-width: var(--logo-max-w, var(--logo-w, 120px));
  max-height: var(--logo-max-h, var(--logo-h, 28px));
  object-fit: contain;
  object-position: center;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  flex-shrink: 0;
  filter: var(--logo-filter, var(--logo-neutral-filter));
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.logo-chip:hover,
.logo-chip.is-active {
  opacity: calc(var(--logo-opacity, var(--logo-neutral-opacity)) + 0.06);
  filter: var(
    --logo-filter-hover,
    var(--logo-filter, var(--logo-neutral-filter))
  );
}

/* Per-logo size modifiers */
.logo--dolby-atmos {
  --logo-h: 26px;
  --logo-w: 130px;
}
.logo--dolby-truehd {
  --logo-h: 28px;
  --logo-w: 120px;
}
.logo--dolby-vision {
  --logo-h: 24px;
  --logo-w: 140px;
}
.logo--dts-x {
  --logo-h: 30px;
  --logo-w: 80px;
}
.logo--dts-hd-ma {
  --logo-h: 26px;
  --logo-w: 110px;
}
.logo--dolby-digital {
  --logo-h: 24px;
  --logo-w: 110px;
}
.logo--hdr10 {
  --logo-h: 28px;
  --logo-w: 80px;
}
.logo--hdr10-plus {
  --logo-h: 28px;
  --logo-w: 90px;
}

/* Dark-logo visibility fix: for logos that are black/dark on dark bg */
.logo-chip--light {
  --logo-filter: var(--logo-neutral-filter);
  --logo-filter-hover: var(--logo-neutral-filter-hover);
  --logo-opacity: var(--logo-neutral-opacity);
}

/* Codec card logo (inline) */
.logo-chip--codec {
  --logo-h: 28px;
  --logo-w: 96px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.45rem;
}

/* Format card logo (card top) */
.logo-chip--format {
  --logo-h: 42px;
  --logo-w: 180px;
  margin-bottom: 0.85rem;
}

/* Device card logo */
.logo-chip--device {
  --logo-h: 36px;
  --logo-w: 150px;
  margin-bottom: 0.8rem;
}

/* Inline icon (equip-item) */
.logo-chip--icon {
  --logo-h: 20px;
  --logo-w: 40px;
  display: inline-block;
  vertical-align: middle;
}

/* HDR logo row */
.logo-chip--hdr-row {
  --logo-h: 20px;
  --logo-w: 150px;
  display: inline-block;
}

/* ============================================================
   SPATIAL AUDIO FULLSCREEN DEMO OVERLAY
   ============================================================ */
.spatial-demo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070604;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.spatial-demo-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.spatial-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(13, 11, 8, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.spatial-close-btn {
  background: rgba(226, 193, 155, 0.05);
  border: 1px solid rgba(226, 193, 155, 0.25);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.spatial-close-btn:hover {
  background: rgba(226, 193, 155, 0.15);
  border-color: var(--bronze-light);
}

.spatial-demo-body {
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

@media (max-width: 991px) {
  .spatial-demo-body {
    flex-direction: column;
    overflow-y: auto;
  }
}

.spatial-demo-stage {
  flex: 2;
  background: #060504;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .spatial-demo-stage {
    flex: none;
    height: 60vh;
    padding: 1rem;
  }
}

.spatial-demo-stage svg {
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 3;
}

.spatial-demo-controls {
  flex: 1;
  max-width: 400px;
  background: #0d0b08;
  border-left: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

@media (max-width: 991px) {
  .spatial-demo-controls {
    max-width: 100%;
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    overflow-y: visible;
    padding: 1.5rem;
  }
}

.control-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.control-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin: 0;
}

.control-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Play & Mute Button styles */
.main-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.btn-play-pause {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.btn-mute {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--text-primary);
  border-radius: var(--btn-radius);
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-mute:hover {
  background: rgba(226, 193, 155, 0.08);
  border-color: rgba(201, 169, 110, 0.4);
}

.btn-mute.is-muted {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--bronze);
  color: var(--bronze-light);
}

/* Segmented selector in modal */
.segmented--spatial {
  width: 100%;
}
.segmented--spatial button {
  flex: 1;
  padding: 0.6rem;
  font-size: 0.75rem;
}

/* Path buttons */
.path-selectors-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.path-btn {
  background: rgba(24, 21, 16, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: all 0.25s ease;
}

.path-btn strong {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 500;
}

.path-btn span {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.path-btn:hover {
  background: rgba(201, 169, 110, 0.04);
  border-color: rgba(201, 169, 110, 0.35);
}

.path-btn.is-active {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--bronze);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.1);
}

.path-btn.is-active strong {
  color: var(--bronze-light);
}

/* Info technical panel */
.info-panel {
  background: rgba(201, 169, 110, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 6px;
  padding: 1rem;
  margin-top: auto;
}

.info-content {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Visualizer SVG Elements */
.spatial-speaker {
  fill: rgba(20, 18, 15, 0.8);
  stroke: rgba(201, 169, 110, 0.15);
  stroke-width: 1.5;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.15; /* Dim inactive speakers by default */
}

.spatial-speaker.is-active-speaker {
  opacity: 1;
  stroke: rgba(201, 169, 110, 0.5);
  fill: rgba(201, 169, 110, 0.05);
}

.spatial-speaker.is-height {
  stroke: rgba(226, 193, 155, 0.35);
  stroke-dasharray: 1, 1;
}

.spatial-speaker.is-height.is-active-speaker {
  stroke: rgba(226, 193, 155, 0.7);
  fill: rgba(226, 193, 155, 0.1);
}

/* Glowing class for proximity */
.spatial-speaker.is-glow {
  fill: var(--bronze);
  stroke: var(--bronze-light);
  filter: drop-shadow(0 0 12px var(--bronze));
  transform-origin: center;
  transform: scale(1.15);
}

.spatial-speaker.is-height.is-glow {
  fill: var(--bronze-light);
  stroke: #fff;
  filter: drop-shadow(0 0 16px var(--bronze-light));
  transform-origin: center;
  transform: scale(1.2);
}

.spatial-speaker-label {
  fill: var(--text-muted);
  font-size: 9px;
  font-weight: 500;
  font-family: var(--font-body);
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.3s ease;
  opacity: 0.25;
}

.is-active-speaker + .spatial-speaker-label {
  opacity: 1;
  fill: var(--text-secondary);
}

.is-glow + .spatial-speaker-label {
  fill: var(--bronze-light);
  font-weight: 600;
  opacity: 1;
}

/* Subwoofer animations */
.spatial-speaker.is-subwoofer {
  fill: rgba(20, 18, 15, 0.8);
  stroke: rgba(201, 169, 110, 0.2);
  transition: all 0.3s ease;
}

.spatial-speaker.is-subwoofer.is-active-speaker {
  stroke: rgba(201, 169, 110, 0.5);
}

.spatial-speaker.is-subwoofer.is-glow {
  fill: var(--bronze);
  stroke: var(--bronze-light);
  filter: drop-shadow(0 0 16px var(--bronze));
}

.sub-ripple-wave {
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.5;
  opacity: 0;
  pointer-events: none;
}

/* Moving orb */
.spatial-orb {
  filter: drop-shadow(0 0 15px var(--bronze-light));
}

.spatial-drop-line {
  transition: opacity 0.3s ease;
  opacity: 0.15;
}

/* Interactive custom styled focus outline in spatial modal */
.spatial-demo-overlay :focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 2px;
}

/* Preferences reduced motion implementation */
@media (prefers-reduced-motion: reduce) {
  .spatial-orb {
    transition:
      cx 0.5s ease,
      cy 0.5s ease !important;
    animation: none !important;
  }
  .sub-ripple-wave {
    animation: none !important;
  }
  .spatial-speaker {
    transition: none !important;
  }
}

/* ============================================================
   RECOMMENDED PLAYBACK CHAIN
   ============================================================ */
.gear-hero {
  min-height: 72vh;
  padding: clamp(8rem, 12vw, 11rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.2), #070604 92%),
    url('../images/services-signal-chain.jpg') center / cover;
  overflow: hidden;
  position: relative;
}

.gear-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.96), rgba(7, 6, 4, 0.62)),
    linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.8));
}

.gear-hero__inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.gear-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: var(--bronze-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gear-hero__kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(226, 193, 155, 0.64);
}

.gear-hero h1 {
  max-width: 11ch;
}

.gear-hero p {
  max-width: 58ch;
  margin-top: 1.25rem;
  color: rgba(237, 232, 219, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.gear-hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.gear-hero__rail span,
.gear-disclosure {
  border: 1px solid rgba(226, 193, 155, 0.14);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(237, 232, 219, 0.66);
}

.gear-hero__rail span {
  padding: 0.55rem 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gear-page {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg-warm);
}

.gear-disclosure {
  max-width: 860px;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: 1rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.7;
}

.gear-catalog {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
}

.gear-category {
  display: grid;
  gap: 1.25rem;
}

.gear-category__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 193, 155, 0.12);
}

.gear-category__head .section-label {
  margin: 0;
}

.gear-category__head p {
  margin: 0;
  color: rgba(237, 232, 219, 0.48);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gear-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(226, 193, 155, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent),
    rgba(7, 6, 4, 0.38);
}

.gear-card__top,
.gear-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gear-card__top span,
.gear-card__footer span,
.gear-card__pending,
.gear-card__link {
  color: rgba(237, 232, 219, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gear-card__logo {
  display: block;
  width: auto;
  max-width: var(--logo-max-w, 92px);
  max-height: var(--logo-max-h, 22px);
  object-fit: contain;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.gear-card__mark {
  width: 34px;
  height: 1px;
  background: rgba(226, 193, 155, 0.34);
}

.gear-card h3 {
  margin: 0;
  color: rgba(237, 232, 219, 0.94);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0;
}

.gear-card__details {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.gear-card__details div {
  display: grid;
  grid-template-columns: minmax(84px, 0.32fr) 1fr;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(226, 193, 155, 0.08);
}

.gear-card__details dt {
  color: rgba(226, 193, 155, 0.74);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gear-card__details dd {
  margin: 0;
  color: rgba(237, 232, 219, 0.66);
  font-size: 0.88rem;
  line-height: 1.62;
}

.gear-card__footer {
  margin-top: auto;
  padding-top: 0.4rem;
}

.gear-card__link {
  color: var(--bronze-light);
  text-decoration: none;
}

.gear-card__link:hover {
  color: var(--text-primary);
}

.gear-catalog-error {
  color: rgba(237, 232, 219, 0.72);
}

/* ── Inline contextual chain CTA (link-pill) ────────────────── */
.chain-cta {
  margin-top: 1.75rem;
}

.chain-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.1),
    rgba(201, 169, 110, 0.02)
  );
  color: var(--bronze-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s var(--ease-out);
}

.chain-cta a::after {
  content: '→';
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

.chain-cta a:hover {
  border-color: rgba(201, 169, 110, 0.55);
  background: rgba(201, 169, 110, 0.12);
  box-shadow: 0 0 28px rgba(201, 169, 110, 0.1);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.chain-cta a:hover::after {
  transform: translateX(3px);
}

@media (max-width: 820px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .gear-category__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gear-card__details div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ============================================================
   DEVICE LOGO LEGIBILITY — CSS VARIABLE APPROACH

   Dark device logos (NVIDIA Shield, Apple TV, Synology, Jellyfin,
   Kodi, Dune HD, Zidoo, CoreELEC) are near-black PNGs that become
   invisible on the site's #070604 background.

   FIX: Override the --logo-filter / --logo-opacity CSS variables
   used by all logo-bearing selectors (.ecosystem-strip__item img,
   img.logo-tier--*, .device-logo, .equip-item__icon-img, .logo-chip).
   Setting the variable wins in every specificity context because
   var() reads the value from the element being styled — the cascade
   on the variable declaration wins, not on the consuming property.

   Pixel brightness analysis (avg visible pixels):
     nvidia-shield 15/255 · appletv indexed-dark · jellyfin 68/255
     kodi 33/255 · dune-hd 83/255 · synology 109/255 · zidoo 146/255
     coreelec 140/255 (colored red — still inverted for uniformity)
   ============================================================ */

/* All dark device logos: variables consumed by every logo context */
.logo--shield,
.logo--nvidia-shield,
.logo--appletv,
.logo--atv,
.logo--jellyfin,
.logo--coreelec,
.logo--kodi,
.logo--zidoo,
.logo--zidoo-hd,
.logo--dune,
.logo--dune-hd {
  --logo-filter: brightness(0) invert(1) brightness(0.9);
  --logo-filter-hover: brightness(0) invert(1) brightness(1);
  --logo-opacity: 0.92;
}

/* Synology text wordmark: marginally higher brightness for crisp type */
.logo--synology {
  --logo-filter: brightness(0) invert(1) brightness(0.98);
  --logo-filter-hover: brightness(0) invert(1) brightness(1.05);
  --logo-opacity: 0.92;
}

/* ── ECOSYSTEM STRIP IMAGE OPACITY ───────────────────────────────────── */
/* Unified img opacity; sits on top of the 0.7 container opacity.
   0.88 × 0.7 ≈ 0.62 effective — crisp but not dominating. */
.ecosystem-strip__item img {
  opacity: 0.88;
}

/* ── FORMAT LOGO ALIAS SIZE RULES ────────────────────────────────────── */
/* Some pages use short aliases (logo--atmos) while the canonical CSS
   rules use full names (logo--dolby-atmos). Add size tokens for aliases
   so they render at the same dimensions. Format logos are already white
   so no inversion is needed. */
.logo--atmos {
  --logo-h: 26px;
  --logo-w: 130px;
}
.logo--truehd {
  --logo-h: 28px;
  --logo-w: 120px;
}
.logo--vision {
  --logo-h: 24px;
  --logo-w: 140px;
}
.logo--dtsx {
  --logo-h: 30px;
  --logo-w: 80px;
}
.logo--dtshdma {
  --logo-h: 26px;
  --logo-w: 110px;
}
.logo--hdr10plus {
  --logo-h: 28px;
  --logo-w: 90px;
}

/* ============================================================
   THE PLAYBACK CHAIN — FULL REDESIGN
   Premium curated gear guide: hero, compare strip, filters,
   product cards, score bars, CM rating, CTA.
   ============================================================ */

/* ── Chain Hero ─────────────────────────────────────────────── */
.chain-hero {
  position: relative;
  padding: clamp(8rem, 16vw, 13rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.chain-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #0d0a07 0%, #070604 55%, #0a0806 100%);
}

.chain-hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  opacity: 0.35;
}

.chain-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.chain-hero__glow--a {
  top: -8%;
  right: 8%;
  width: clamp(240px, 32vw, 480px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201, 169, 110, 0.14),
    transparent 65%
  );
  animation: chain-glow-drift 14s ease-in-out infinite alternate;
}

.chain-hero__glow--b {
  bottom: 0;
  left: 4%;
  width: clamp(160px, 24vw, 360px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(117, 75, 38, 0.12),
    transparent 65%
  );
  animation: chain-glow-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes chain-glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2vw, 3vh, 0) scale(1.08);
  }
}

.chain-hero__inner {
  display: grid;
  place-items: start;
}

.chain-hero__content {
  max-width: 820px;
}

.chain-hero__content .display-xl {
  margin-top: 1.25rem;
  line-height: 1.03;
}

.chain-hero__sub {
  max-width: 56ch;
  margin-top: 1.25rem;
}

.chain-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 2rem;
}

.chain-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.chain-hero__trust svg {
  color: var(--bronze);
  flex-shrink: 0;
}

.chain-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

/* ── Disclosure Bar ─────────────────────────────────────────── */
.chain-disclosure-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
  padding: 0.9rem 0;
}

.chain-disclosure {
  margin: 0;
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── Comparison Strip ───────────────────────────────────────── */
.chain-compare {
  overflow: hidden;
  margin-bottom: 3rem;
}

.chain-compare__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-color: rgba(201, 169, 110, 0.3) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

.chain-compare__item {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 240px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    linear-gradient(145deg, rgba(18, 15, 11, 0.9), rgba(7, 6, 4, 0.95)),
    rgba(10, 9, 7, 0.85);
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: grid;
  gap: 0.35rem;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out);
}

.chain-compare__item:hover,
.chain-compare__item:focus-visible {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-2px);
  outline: none;
}

.chain-compare__pick-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
}

.chain-compare__pick-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.chain-compare__pick-rating {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bronze-light);
}

.chain-compare__pick-reason {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: none;
}

/* ── Filter Bar ─────────────────────────────────────────────── */
.chain-filter-wrap {
  position: sticky;
  top: 72px; /* nav height */
  z-index: 800;
  background: rgba(7, 6, 4, 0.95);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.chain-filter {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.75rem var(--gutter);
}

.chain-filter__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.chain-filter__group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.chain-filter__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.chain-filter__btn {
  border: 1px solid rgba(201, 169, 110, 0.18);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}

.chain-filter__btn.is-active,
.chain-filter__btn:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.08);
  color: var(--bronze-light);
}

.chain-filter__chip {
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}

.chain-filter__chip.is-active,
.chain-filter__chip:hover {
  border-color: rgba(201, 169, 110, 0.38);
  background: rgba(201, 169, 110, 0.07);
  color: var(--bronze);
}

.chain-filter__select {
  background: rgba(7, 6, 4, 0.8);
  border: 1px solid rgba(201, 169, 110, 0.18);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a96e' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.4rem;
}

/* ── Chain Page Layout ──────────────────────────────────────── */
.chain-page {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}

.chain-catalog {
  display: grid;
  gap: clamp(3.5rem, 7vw, 5.5rem);
}

.chain-empty,
.chain-error {
  padding: 3rem;
  text-align: center;
  border: 1px dashed rgba(201, 169, 110, 0.22);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── Section ────────────────────────────────────────────────── */
.chain-section__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.chain-section__head h2 {
  margin: 0.5rem 0 0.6rem;
}

.chain-section__head p {
  max-width: 60ch;
  font-size: 0.9rem;
}

/* ── Product Grid ───────────────────────────────────────────── */
.chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

/* ── Gear Card (redesigned) ─────────────────────────────────── */
.gear-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background:
    linear-gradient(160deg, rgba(18, 15, 11, 0.88), rgba(7, 6, 4, 0.92)),
    rgba(10, 9, 7, 0.85);
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  position: relative;
}

.gear-card:hover {
  border-color: rgba(201, 169, 110, 0.38);
  transform: translateY(-3px);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 110, 0.12);
}

.gear-card--featured {
  border-color: rgba(201, 169, 110, 0.28);
}

.gear-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    rgba(226, 193, 155, 0.5),
    transparent
  );
}

.gear-card.is-highlighted {
  border-color: rgba(201, 169, 110, 0.65);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.15);
}

.gear-card.is-filtered-out {
  opacity: 0.32;
  pointer-events: none;
}

/* Artwork area */
.gear-card__artwork {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #080706;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gear-card__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gear-card:hover .gear-card__artwork img {
  transform: scale(1.03);
}

.gear-card__artwork--blank {
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(201, 169, 110, 0.06),
      transparent 65%
    ),
    #080706;
}

/* Body */
.gear-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem 1.2rem;
  flex: 1;
}

/* Meta row: category badge + tier + region */
.gear-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.gear-card__cat-badge {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.06);
}

.gear-card__tier {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--text-muted);
}

.gear-card__tier--reference {
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--bronze-light);
  background: rgba(201, 169, 110, 0.08);
}

.gear-card__tier--premium {
  color: var(--bronze);
}

.gear-card__region {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: auto;
}

/* Brand row */
.gear-card__brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 24px;
}

.gear-card__brand-logo {
  display: block;
  width: auto;
  max-width: var(--logo-max-w, 80px);
  max-height: var(--logo-max-h, 20px);
  object-fit: contain;
  flex-shrink: 0;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.gear-card__brand {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Title and role */
.gear-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

.gear-card__role {
  margin: 0;
  max-width: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CM Rating */
.gear-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(201, 169, 110, 0.06);
  width: fit-content;
}

.gear-rating--reference {
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.12);
}

.gear-rating--premium {
  border-color: rgba(201, 169, 110, 0.32);
  background: rgba(201, 169, 110, 0.08);
}

.gear-rating__cm {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.gear-rating__score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bronze-light);
  line-height: 1;
}

.gear-rating__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Score bars */
.gear-card__scores {
  display: grid;
  gap: 0.42rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding: 0.65rem 0;
}

.gear-score {
  display: grid;
  grid-template-columns: 72px 1fr 24px;
  align-items: center;
  gap: 0.55rem;
}

.gear-score__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.gear-score__track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.gear-score__fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.5),
    rgba(226, 193, 155, 0.9)
  );
  transition: width 0.8s var(--ease-out);
}

.gear-score__val {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--bronze-dim);
  text-align: right;
}

/* Info: best-for and caveat */
.gear-card__info {
  display: grid;
  gap: 0.45rem;
}

.gear-card__best,
.gear-card__caveat {
  margin: 0;
  max-width: none;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.gear-card__best strong,
.gear-card__caveat strong {
  color: var(--bronze-light);
  font-weight: 600;
}

.gear-card__caveat {
  color: var(--text-muted);
}

/* Actions */
.gear-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.25rem;
}

.gear-card__view {
  font-size: 0.66rem;
  padding: 0.52rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.gear-card__pending {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.7rem;
}

.gear-card__disclosure {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: auto;
}

/* ── Chain Final CTA (gear page bottom section) ─────────────── */
.chain-final-cta {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.chain-final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.chain-final-cta__inner .lead {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.chain-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .chain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .chain-hero__content .display-xl {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .chain-filter {
    gap: 0.6rem;
    padding: 0.6rem var(--gutter);
  }

  .chain-filter__right {
    margin-left: 0;
    width: 100%;
  }

  .chain-grid {
    grid-template-columns: 1fr;
  }

  .chain-compare__item {
    min-width: 160px;
    max-width: 200px;
  }

  .gear-score {
    grid-template-columns: 60px 1fr 20px;
  }

  .gear-card__body {
    padding: 0.9rem 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .chain-filter__btn {
    font-size: 0.62rem;
    padding: 0.38rem 0.6rem;
  }

  .chain-filter__chip {
    font-size: 0.56rem;
    padding: 0.28rem 0.5rem;
  }

  .chain-filter__right {
    gap: 0.4rem;
  }
}

/* ── HDR slider: smooth mode label transition ───────────────── */
.split-view-label {
  transition: opacity 0.4s ease;
}

/* ============================================================
   PLAYBACK CHAIN PREVIEW MODULE (recommendations.html)
   Replaces the old empty text-only CTA with a cinematic
   two-column visual: signal-chain diagram + stacked layers.
   ============================================================ */
.chain-preview {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.chain-preview__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(201, 169, 110, 0.08),
      transparent 45%
    ),
    linear-gradient(160deg, rgba(18, 15, 11, 0.85), rgba(7, 6, 4, 0.92)),
    rgba(10, 9, 7, 0.85);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.chain-preview__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    rgba(226, 193, 155, 0.4),
    transparent
  );
}

.chain-preview__visual {
  position: relative;
}

.chain-preview__svg {
  width: 100%;
  height: auto;
  display: block;
}

.chain-preview__content .section-label {
  margin-bottom: 1.1rem;
}

.chain-preview__content h2 {
  margin-bottom: 0.9rem;
  max-width: 18ch;
}

.chain-preview__lead {
  max-width: 48ch;
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.chain-preview__layers {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: chain-layer;
}

.chain-preview__layer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: rgba(0, 0, 0, 0.28);
  position: relative;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-out);
}

.chain-preview__layer:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -0.6rem;
  width: 1px;
  height: 0.6rem;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.5), transparent);
}

.chain-preview__layer:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.06);
  transform: translateX(3px);
}

.chain-preview__layer-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bronze);
  background: var(--bg-warm);
}

.chain-preview__layer-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.chain-preview__layer-body strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.chain-preview__layer-body em {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.chain-preview__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .chain-preview__card {
    grid-template-columns: 1fr;
  }

  .chain-preview__visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================================
   GEAR PAGE — SIGNAL CHAIN FLOW DIAGRAM (hero band)
   Display → Audio Core → Playback → Server → Network → HDMI
   ============================================================ */
.chain-flow {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.chain-flow__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.chain-flow__head h2 {
  margin-top: 0.5rem;
}

.chain-flow__track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.chain-flow__track::-webkit-scrollbar {
  display: none;
}

.chain-flow__node {
  position: relative;
  flex: 1 1 0;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.1rem 0.85rem;
}

/* connector line between nodes */
.chain-flow__node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.45rem;
  right: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0.45),
    rgba(201, 169, 110, 0.15)
  );
  z-index: 0;
}

/* animated pulse dot riding the connector */
.chain-flow__node:not(:last-child)::before {
  content: '';
  position: absolute;
  top: calc(2.45rem - 2px);
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze-light);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
  z-index: 1;
  animation: chain-flow-pulse 3.5s linear infinite;
}

.chain-flow__node:nth-child(2)::before {
  animation-delay: 0.6s;
}
.chain-flow__node:nth-child(3)::before {
  animation-delay: 1.2s;
}
.chain-flow__node:nth-child(4)::before {
  animation-delay: 1.8s;
}
.chain-flow__node:nth-child(5)::before {
  animation-delay: 2.4s;
}

@keyframes chain-flow-pulse {
  0% {
    left: 50%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

.chain-flow__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 50%;
  color: var(--bronze);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(13, 11, 8, 1);
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.3s var(--ease-out);
}

.chain-flow__node:hover .chain-flow__icon {
  border-color: var(--bronze);
  color: var(--bronze-light);
  transform: translateY(-2px);
}

.chain-flow__node strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.chain-flow__node em {
  font-style: normal;
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .chain-flow__node::before {
    animation: none;
    opacity: 0.7;
    left: 50%;
  }
}

@media (max-width: 760px) {
  .chain-flow__track {
    justify-content: flex-start;
  }
  .chain-flow__node {
    min-width: 124px;
  }
}

/* ============================================================
   GEAR PAGE v2 — PREMIUM EDITORIAL GUIDE
   Star ratings, featured/alternative hierarchy, collapsible
   "Why this pick", best-chains, software ecosystem map.
   ============================================================ */

/* ── Clickable signal-path nodes ────────────────────────────── */
.chain-flow__node[data-flow-target] {
  cursor: pointer;
}
.chain-flow__node[data-flow-target]:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ── Star rating (Cinema Machina stars) ─────────────────────── */
.gear-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.85rem;
  line-height: 1;
}

.gear-star {
  color: rgba(201, 169, 110, 0.22);
  position: relative;
}

.gear-star.is-full {
  color: var(--bronze);
}

.gear-star.is-half {
  background: linear-gradient(
    90deg,
    var(--bronze) 50%,
    rgba(201, 169, 110, 0.22) 50%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gear-stars__num {
  margin-left: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bronze-light);
  -webkit-text-fill-color: var(--bronze-light);
}

/* ── CM score chip ──────────────────────────────────────────── */
.gear-cm {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(201, 169, 110, 0.22);
  color: var(--bronze);
  background: rgba(201, 169, 110, 0.06);
  white-space: nowrap;
}

.gear-cm--reference {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.13);
  color: var(--bronze-light);
}

.gear-cm--premium {
  border-color: rgba(201, 169, 110, 0.34);
  background: rgba(201, 169, 110, 0.09);
}

/* ── Section banner + advice ────────────────────────────────── */
.chain-section {
  scroll-margin-top: 140px;
}

.chain-section__banner {
  position: relative;
  margin-bottom: 1.75rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 2px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(201, 169, 110, 0.1),
      transparent 50%
    ),
    linear-gradient(120deg, rgba(18, 15, 11, 0.7), rgba(7, 6, 4, 0.55));
}

.chain-section__banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), rgba(201, 169, 110, 0.1));
}

.chain-section__head h2 {
  margin: 0.4rem 0 0.5rem;
}

.chain-section__head p {
  margin: 0;
  max-width: 56ch;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.chain-section__advice {
  display: flex;
  gap: 0.7rem;
  max-width: none;
  margin-bottom: 1.75rem;
  padding: 0.95rem 1.15rem;
  border-left: 2px solid var(--bronze);
  background: rgba(201, 169, 110, 0.05);
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── Featured product card (large, horizontal) ──────────────── */
.gear-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(201, 169, 110, 0.08),
      transparent 42%
    ),
    linear-gradient(160deg, rgba(18, 15, 11, 0.9), rgba(7, 6, 4, 0.94));
  position: relative;
  overflow: hidden;
}

.gear-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    rgba(226, 193, 155, 0.5),
    transparent
  );
}

.gear-feature__flag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.1);
}

.gear-feature__art {
  align-self: stretch;
  min-height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 2px;
  overflow: hidden;
  background: #080706;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gear-feature__art.is-blank {
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(201, 169, 110, 0.06),
      transparent 65%
    ),
    #080706;
}

.gear-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gear-feature__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gear-feature__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 20px;
}

.gear-feature__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
}

.gear-feature__ratings {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.gear-feature__summary {
  margin: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.gear-feature__facts {
  display: grid;
  gap: 0;
  margin: 0.25rem 0 0;
}

.gear-feature__facts div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.gear-feature__facts dt {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.gear-feature__facts dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ── Alternatives ───────────────────────────────────────────── */
.chain-section__alts {
  margin-top: 0.5rem;
}

.chain-section__alts-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.gear-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gear-alt {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: linear-gradient(
    160deg,
    rgba(15, 13, 9, 0.7),
    rgba(7, 6, 4, 0.85)
  );
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out);
}

.gear-alt:hover {
  border-color: rgba(201, 169, 110, 0.34);
  transform: translateY(-2px);
}

.gear-alt__art {
  align-self: start;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 2px;
  overflow: hidden;
  background: #080706;
}

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

.gear-alt__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.gear-alt__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.gear-alt__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

.gear-alt__ratings {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gear-alt__best {
  margin: 0;
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.gear-alt__best strong {
  color: var(--bronze-light);
  font-weight: 600;
}

.gear-alt__caveat {
  margin: 0;
  max-width: none;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.gear-alt__caveat strong {
  color: rgba(201, 169, 110, 0.78);
  font-weight: 600;
}

.gear-alt__formats {
  margin: 0;
  max-width: none;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ── "Why this pick" collapsible ────────────────────────────── */
.gear-why {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.gear-why__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: color 0.2s;
}

.gear-why__summary::-webkit-details-marker {
  display: none;
}

.gear-why__summary:hover {
  color: var(--bronze-light);
}

.gear-why__summary svg {
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.gear-why[open] .gear-why__summary svg {
  transform: rotate(180deg);
}

.gear-why__body {
  padding: 0.4rem 0 0.85rem;
  display: grid;
  gap: 0.85rem;
}

.gear-why__text,
.gear-why__setup {
  margin: 0;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.gear-why__setup strong {
  color: var(--bronze-light);
  font-weight: 600;
}

/* ── Best Complete Chains ───────────────────────────────────── */
.best-chains {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}

.best-chains__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.best-chains__head .section-label {
  justify-content: center;
}

.best-chains__head h2 {
  margin: 0.5rem 0 0.75rem;
}

.best-chains__head p {
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.best-chains-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.best-chain {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.08),
      transparent 55%
    ),
    rgba(10, 9, 7, 0.6);
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.best-chain:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.best-chain__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.best-chain__tagline {
  margin: 0;
  max-width: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
}

.best-chain__steps {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.best-chain__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 0.85rem;
  position: relative;
}

.best-chain__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
}

.best-chain__arrow {
  display: none;
}

.best-chain__note {
  margin: auto 0 0;
  max-width: none;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Software Stack (ecosystem map) ─────────────────────────── */
.chain-section--software .software-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.software-stack__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.14);
  background: rgba(10, 9, 7, 0.55);
}

.software-stack__col-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.software-stack__col-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

.software-stack__col-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.software-stack__apps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.software-app {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(0, 0, 0, 0.25);
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out);
}

.software-app:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateX(2px);
}

.software-app__top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.software-app__logo {
  display: block;
  width: auto;
  max-width: 60px;
  max-height: 16px;
  object-fit: contain;
  opacity: var(--logo-opacity, var(--logo-neutral-opacity));
  filter: var(--logo-filter, var(--logo-neutral-filter));
}

.software-app__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

.software-app__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: auto;
}

.software-app__summary {
  margin: 0;
  max-width: none;
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.software-app__link {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.software-app__link:hover {
  color: var(--text-primary);
  border-color: var(--bronze);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .best-chains-grid,
  .chain-section--software .software-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .gear-feature {
    grid-template-columns: 1fr;
  }

  .gear-feature__art {
    min-height: 160px;
    aspect-ratio: 16 / 7;
  }

  .gear-alt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .best-chains-grid,
  .chain-section--software .software-stack {
    grid-template-columns: 1fr;
  }

  .gear-alt {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .gear-feature__facts div {
    grid-template-columns: 76px 1fr;
  }
}

/* ============================================================
   LEGACY BRIDGE PAGE (recommendations.html)
   Two premium choices: Library Concierge (design) / Recommendations (buy).
   ============================================================ */
.bridge {
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.08),
      transparent 55%
    ),
    var(--bg);
  min-height: 70vh;
}

.bridge__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.bridge__head .section-label {
  justify-content: center;
}

.bridge__head h1 {
  margin: 0.5rem 0 0.9rem;
}

.bridge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 880px;
  margin: 0 auto;
}

.bridge__card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(201, 169, 110, 0.08),
      transparent 45%
    ),
    linear-gradient(160deg, rgba(18, 15, 11, 0.85), rgba(7, 6, 4, 0.92));
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.bridge__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bronze),
    rgba(226, 193, 155, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.bridge__card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.bridge__card:hover::before {
  opacity: 1;
}

.bridge__kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.bridge__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text-primary);
}

.bridge__copy {
  margin: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.bridge__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.bridge__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.bridge__card:hover .bridge__cta svg {
  transform: translateX(4px);
}

.bridge__foot {
  text-align: center;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bridge__foot a {
  color: var(--bronze-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.bridge__foot a:hover {
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .bridge__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PREMIUM AMBIENT SYSTEM
   Reusable, restrained, GPU-light atmosphere utilities. Opt-in via class,
   or applied directly to a few flat sections below. All reduced-motion safe;
   none of these affect layout or text legibility.
   ═══════════════════════════════════════════════════════════════════════ */

/* Warm corner light-leaks behind a section's content */
.cm-light-leak {
  position: relative;
  isolation: isolate;
}
.cm-light-leak::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      42% 60% at 10% -5%,
      rgba(201, 169, 110, 0.08),
      transparent 70%
    ),
    radial-gradient(
      40% 55% at 92% 105%,
      rgba(176, 141, 87, 0.06),
      transparent 72%
    );
}

/* Soft champagne halo behind a key heading */
.cm-heading-glow {
  position: relative;
}
.cm-heading-glow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(640px, 92%);
  height: 210px;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    58% 58% at 50% 50%,
    rgba(201, 169, 110, 0.1),
    transparent 70%
  );
}

/* Restrained hover depth for premium panels/cards */
.cm-interactive-lift {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease;
}
.cm-interactive-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

/* ── Applied atmosphere (no markup changes needed) ───────────────────── */

/* Fill the large closing CTA's negative space with cinematic warmth */
.cta-full::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    50% 70% at 50% 18%,
    rgba(201, 169, 110, 0.07),
    transparent 68%
  );
}
.cta-full > * {
  position: relative;
  z-index: 1;
}

/* Featured recommendation cards gain quiet hover depth */
.gear-feature {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease;
}
.gear-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.42);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .cm-interactive-lift,
  .gear-feature {
    transition: none;
  }
  .cm-interactive-lift:hover,
  .gear-feature:hover {
    transform: none;
  }
}

/* ============================================================
   INTERACTIVE DESIGN SYSTEM PASS — v5.4
   Ecosystem chips · Chain node state · Form focus · Service CTAs
   Identity grid trace · Calibration graphic elements
   ============================================================ */

/* ── Ecosystem strip: role chip on hover/focus-within ────────── */
/* Each .ecosystem-strip__item gains data-role="Playback" etc.
   The chip appears via ::after — pure CSS, no JS, no layout shift */
.ecosystem-strip__item[data-role] {
  position: relative;
}

.ecosystem-strip__item[data-role]::after {
  content: attr(data-role);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  background: rgba(10, 9, 7, 0.92);
  border: 1px solid rgba(201, 169, 110, 0.28);
  padding: 0.22rem 0.55rem;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 20;
}

.ecosystem-strip__item[data-role]:hover::after,
.ecosystem-strip__item[data-role]:focus-within::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-strip__item[data-role]::after {
    transition: none;
  }
}

/* ── Chain flow node: active + clicked scroll state ─────────── */
.chain-flow__node[data-flow-target].is-active .chain-flow__icon {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
  background: rgba(201, 169, 110, 0.1);
  box-shadow:
    0 0 0 4px rgba(13, 11, 8, 1),
    0 0 18px rgba(201, 169, 110, 0.25);
}

.chain-flow__node[data-flow-target].is-active strong {
  color: var(--bronze-light);
}

.chain-flow__node[data-flow-target] {
  transition: opacity 0.2s ease;
}

.chain-flow__node[data-flow-target]:hover {
  opacity: 1;
}

/* ── Service card CTA: contextual link weight ────────────────── */
.service-card__link {
  transition:
    color 0.22s ease,
    letter-spacing 0.22s ease,
    gap 0.22s ease;
}

.service-card:hover .service-card__link {
  color: var(--bronze-light);
  letter-spacing: 0.01em;
  gap: 0.65rem;
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
  transition: transform 0.22s ease;
}

/* ── Signal Path Section ─────────────────────────────────────── */
.signal-path-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(201, 169, 110, 0.08),
      transparent 34rem
    ),
    linear-gradient(180deg, rgba(4, 3, 2, 0), rgba(4, 3, 2, 0.48));
}

.signal-path-container {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  align-items: stretch;
  gap: clamp(0.55rem, 1vw, 0.85rem);
  margin-top: clamp(1.8rem, 4vw, 2.7rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(201, 169, 110, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 14, 10, 0.86), rgba(4, 3, 2, 0.92)),
    rgba(8, 6, 4, 0.86);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.signal-path-container::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: clamp(2rem, 5vw, 4rem);
  right: clamp(2rem, 5vw, 4rem);
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.18) 10%,
    rgba(201, 169, 110, 0.46) 50%,
    rgba(201, 169, 110, 0.18) 90%,
    transparent
  );
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.12);
}

.signal-path-container::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(201, 169, 110, 0.1),
      transparent 18rem
    ),
    radial-gradient(
      circle at 82% 76%,
      rgba(113, 83, 38, 0.14),
      transparent 20rem
    );
  opacity: 0.82;
}

.signal-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 0.95rem;
  min-height: 188px;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 22px;
  padding: clamp(1rem, 1.8vw, 1.28rem);
  overflow: hidden;
  color: var(--text-primary);
  text-align: left;
  text-decoration: none;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.11),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(20, 16, 10, 0.88), rgba(5, 4, 3, 0.92));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    background 0.28s var(--ease-out);
}

.signal-node,
.signal-node:visited,
.signal-node:hover,
.signal-node:focus-visible {
  color: var(--text-primary);
  text-decoration: none;
}

.signal-node::before {
  content: attr(data-step);
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  color: rgba(201, 169, 110, 0.54);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.signal-node::after {
  content: '';
  position: absolute;
  inset: auto 1rem 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.72),
    transparent
  );
  opacity: 0;
  transform: scaleX(0.36);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.signal-node:hover,
.signal-node:focus-visible {
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-2px);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(201, 169, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.signal-node:hover::after,
.signal-node:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.signal-node:focus-visible {
  outline: 2px solid rgba(201, 169, 110, 0.64);
  outline-offset: 4px;
}

.signal-node__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 16px;
  color: rgba(201, 169, 110, 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.18), transparent),
    rgba(201, 169, 110, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    background 0.28s var(--ease-out);
}

.signal-node:hover .signal-node__icon,
.signal-node:focus-visible .signal-node__icon {
  border-color: rgba(201, 169, 110, 0.5);
  color: var(--bronze-light);
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.3), transparent),
    rgba(201, 169, 110, 0.1);
}

.signal-node__content {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.signal-node h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  font-weight: 520;
  line-height: 1.08;
}

.signal-node .signal-node__sublabel {
  display: block;
  max-width: 18ch;
  margin: 0;
  color: rgba(205, 184, 145, 0.72);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  line-height: 1.42;
  text-transform: none;
  letter-spacing: 0;
}

.signal-node:hover .signal-node__sublabel,
.signal-node:focus-visible .signal-node__sublabel {
  color: var(--bronze-light);
}

.signal-node--final {
  border-color: rgba(201, 169, 110, 0.34);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.17),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(28, 21, 12, 0.92), rgba(7, 5, 3, 0.94));
}

.signal-node--final h3 {
  color: var(--bronze-light);
}

.signal-connector {
  display: none;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .signal-path-container:hover::before {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(201, 169, 110, 0.2) 10%,
      rgba(245, 210, 145, 0.72) 50%,
      rgba(201, 169, 110, 0.2) 90%,
      transparent
    );
    animation: signal-flow 2.6s linear infinite;
    background-size: 220% 100%;
  }
}

@keyframes signal-flow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes signal-flow-mobile {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 -100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-path-container:hover::before {
    animation: none;
  }
}

@media (max-width: 900px) {
  .signal-path-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .signal-path-container::before {
    left: 50%;
    right: auto;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(201, 169, 110, 0.34) 12%,
      rgba(201, 169, 110, 0.44) 50%,
      rgba(201, 169, 110, 0.34) 88%,
      transparent
    );
  }

  .signal-node {
    min-height: 168px;
  }
}

@media (max-width: 640px) {
  .signal-path-section {
    padding-block: clamp(2.4rem, 10vw, 3.5rem);
  }

  .signal-path-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.82rem;
    border-radius: 20px;
  }

  .signal-path-container::before {
    left: 1.42rem;
  }

  .signal-node {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    min-height: auto;
    padding: 1rem 1rem 1rem 3.2rem;
    border-radius: 18px;
  }

  .signal-node::before {
    left: 0.95rem;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .signal-node::after {
    inset: 0.8rem auto 0.8rem 2.4rem;
    width: 2px;
    height: auto;
    transform: scaleY(0.36);
  }

  .signal-node:hover::after,
  .signal-node:focus-visible::after {
    transform: scaleY(1);
  }

  .signal-node__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .signal-node .signal-node__sublabel {
    max-width: none;
  }
}

/* ── Enhanced form focus states — premium glow ───────────────── */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: rgba(201, 169, 110, 0.75) !important;
  box-shadow:
    0 0 0 3px rgba(201, 169, 110, 0.12),
    0 0 16px rgba(201, 169, 110, 0.08),
    inset 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  background: rgba(18, 15, 11, 0.9) !important;
}

/* Film request form — vault variant enhanced focus */
.film-search-box--vault input:focus-visible {
  border-color: rgba(201, 169, 110, 0.75) !important;
  box-shadow:
    0 0 0 3px rgba(201, 169, 110, 0.12),
    0 0 20px rgba(201, 169, 110, 0.1) !important;
}

/* ── About Positioning Grid ──────────────────────────────────── */
.proof-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .proof-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.proof-card {
  background: var(--surface-light);
  border: 1px solid var(--border-color);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.proof-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: var(--surface-hover);
}

.proof-card span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--bronze);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.8;
}

.proof-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.proof-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── About Optimization Grid ─────────────────────────────────── */
.optimization-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .optimization-link-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.optimization-link {
  display: flex;
  flex-direction: column;
  background: var(--surface-light);
  border: 1px solid var(--border-color);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.optimization-link::after {
  content: '→';
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: var(--bronze);
  font-family: var(--font-mono);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.optimization-link:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.optimization-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.optimization-link span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.optimization-link h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
  padding-right: 2rem;
}

.optimization-link p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Calibration graphic micro-element ───────────────────────── */
/* Corner registration marks on premium surface boxes.
   Applied via .u-surface-box--calibrated class.
   Each corner: two thin perpendicular lines — no image needed. */
.u-surface-box--calibrated {
  position: relative;
}

.u-surface-box--calibrated::before,
.u-surface-box--calibrated::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.u-surface-box--calibrated::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--bronze);
  border-left: 1px solid var(--bronze);
}

.u-surface-box--calibrated::after {
  bottom: 8px;
  right: 8px;
  border-bottom: 1px solid var(--bronze);
  border-right: 1px solid var(--bronze);
}

.u-surface-box--calibrated:hover::before,
.u-surface-box--calibrated:hover::after {
  opacity: 0.65;
}

/* ── Section divider: thin animated signal trace ─────────────── */
/* Applied via .signal-divider class on <hr> or <div> elements.
   Creates a horizontally animated dashed line with a glowing dot. */
.signal-divider {
  position: relative;
  display: block;
  height: 1px;
  background: transparent;
  border: none;
  margin: 0;
  overflow: visible;
}

.signal-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.25) 20%,
    rgba(201, 169, 110, 0.5) 50%,
    rgba(201, 169, 110, 0.25) 80%,
    transparent 100%
  );
}

.signal-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze-light);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
  animation: signal-dot-travel 4s ease-in-out infinite;
}

@keyframes signal-dot-travel {
  0% {
    left: 5%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 95%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-divider::after {
    animation: none;
    left: 50%;
    opacity: 0.5;
  }
}

/* ── Comparison column: "See the chain" link polish ──────────── */
.comparison-chain-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  text-decoration: none;
  margin-top: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    gap 0.2s ease;
}

.comparison-chain-link:hover {
  color: var(--bronze-light);
  border-color: rgba(201, 169, 110, 0.55);
  gap: 0.55rem;
}

.comparison-chain-link svg {
  transition: transform 0.2s ease;
}

.comparison-chain-link:hover svg {
  transform: translateX(3px);
}

/* ── Process step hover (about.html) ─────────────────────────── */
.process-step {
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease-out);
}

.process-step:hover {
  border-color: rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.04);
  transform: translateX(4px);
}

.process-step:hover .process-step__num {
  color: var(--bronze-light);
  border-color: rgba(201, 169, 110, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .process-step {
    transition: none;
  }
  .process-step:hover {
    transform: none;
  }
  .identity-col:first-child li {
    transition: none;
  }
  .service-card__link {
    transition: none;
  }
}

/* ═══════════ HDR interpretive chips (Library Concierge) ═══════════
   Four read-outs that update with the selected grade so the comparison
   reads as a grading suite. Describes format behaviour, not measurements. */
.hdr-detail-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.hdr-detail-chip {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(226, 193, 155, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.015);
}
.hdr-detail-chip__k {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hdr-detail-chip__v {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--text-primary);
  transition: opacity 0.25s ease;
}
@media (max-width: 680px) {
  .hdr-detail-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hdr-detail-chip__v {
    transition: none;
  }
}

/* ═══════════ Insight Mockups ═══════════ */
.mockup-panel {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
}
.mockup-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-header-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mockup-header-dots span:nth-child(1) {
  background: #ff5f56;
}
.mockup-header-dots span:nth-child(2) {
  background: #ffbd2e;
}
.mockup-header-dots span:nth-child(3) {
  background: #27c93f;
}
.mockup-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 1rem;
  font-family: var(--font-body);
}
.mockup-body {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.mockup-caption {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

/* Specific: Server Interface Mockup */
.mockup-server-ui {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.mockup-poster-placeholder {
  aspect-ratio: 2/3;
  background: linear-gradient(
    135deg,
    rgba(226, 193, 155, 0.1),
    rgba(226, 193, 155, 0.02)
  );
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--bronze);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem;
}
.mockup-server-details h4 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  line-height: 1.2;
}
.mockup-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.mockup-badge {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.7rem;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.02);
}
.mockup-info-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem 1rem;
  font-size: 0.9rem;
}
.mockup-info-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mockup-info-val {
  color: var(--text-primary);
}

/* Transcode vs Direct Play Comparison */
.mockup-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mockup-stream-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
}
.mockup-stream-card.warning {
  border-color: rgba(255, 95, 86, 0.4);
}
.mockup-stream-card.success {
  border-color: rgba(39, 201, 63, 0.4);
}
.mockup-stream-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.mockup-stream-card.warning .mockup-stream-header {
  color: #ff5f56;
}
.mockup-stream-card.success .mockup-stream-header {
  color: #27c93f;
}

.mockup-stream-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.mockup-stream-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.mockup-stream-row .label {
  color: var(--text-secondary);
}
.mockup-stream-row .val {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .mockup-server-ui {
    grid-template-columns: 1fr;
  }
  .mockup-poster-placeholder {
    display: none;
  }
  .mockup-comparison {
    grid-template-columns: 1fr;
  }
}

/* ── INSIGHT PAGES ────────────────────────────────────────── */
.insight-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: linear-gradient(to bottom, #000, var(--bg-warm));
}
.insight-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.05;
}
.insight-hero .lead {
  max-width: 50ch;
  margin: 1.25rem auto 0;
  color: var(--text-secondary);
}

.cm-insight-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cm-insight-header--spaced {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.cm-audit-note {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.cm-cta-panel {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.1),
      transparent 56%
    ),
    linear-gradient(145deg, rgba(20, 17, 12, 0.7), rgba(7, 6, 5, 0.86));
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.cm-cta-panel__copy {
  max-width: 46ch;
  margin: 0.9rem auto 2rem;
  color: var(--text-secondary);
}

.cm-signal-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(18, 15, 10, 0.82), rgba(6, 5, 4, 0.92)),
    var(--bg-card, var(--surface));
}

.cm-signal-map__metric {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.cm-signal-map__label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cm-signal-map__value {
  color: var(--accent, var(--bronze));
  font-family: var(--font-mono, var(--font-body));
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.cm-signal-map__note {
  color: var(--text-tertiary, var(--text-secondary));
  font-size: 0.85rem;
}

.cm-faq-stack {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.cm-faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.cm-faq-item h4 {
  margin-bottom: 0.5rem;
}

.cm-faq-item__copy {
  color: var(--text-secondary);
}

.btn--primary {
  background: var(--bronze);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--bronze-light);
  color: var(--bg);
}

.insight-module {
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.insight-module--dark {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.insight-card__tags {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.diagnostic-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  position: relative;
}
.diagnostic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.diagnostic-card--error::before {
  background: rgba(255, 255, 255, 0.2);
}
.diagnostic-card--success::before {
  background: var(--bronze);
}
.diagnostic-kicker {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}
.diagnostic-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.diagnostic-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.chain-diagram {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
}
.chain-step {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.chain-step:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.chain-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bronze);
  font-weight: 600;
}
.chain-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}
.chain-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .chain-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ── Unified premium insight system ─────────────────────────── */
.editorial-insight {
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(201, 169, 110, 0.055),
      transparent 28rem
    ),
    var(--bg);
}

.editorial-insight
  a:not(.btn):not(.nav__logo):not(.nav__cta):not(.footer__contact-link),
.editorial-insight
  a:not(.btn):not(.nav__logo):not(.nav__cta):not(
    .footer__contact-link
  ):visited {
  color: var(--bronze-light);
  text-decoration-color: rgba(201, 169, 110, 0.32);
  text-underline-offset: 0.22em;
}

.editorial-insight
  a:not(.btn):not(.nav__logo):not(.nav__cta):not(.footer__contact-link):hover,
.editorial-insight
  a:not(.btn):not(.nav__logo):not(.nav__cta):not(
    .footer__contact-link
  ):focus-visible {
  color: var(--bronze);
  text-decoration-color: rgba(201, 169, 110, 0.72);
}

.editorial-insight .insight-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 169, 110, 0.12),
      transparent 32rem
    ),
    linear-gradient(180deg, #030201 0%, #0b0805 100%);
}

.editorial-insight .insight-hero::after {
  content: '';
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.46),
    transparent
  );
}

.insight-hero--index .lead {
  max-width: 58ch;
}

.insight-section,
.insight-module {
  position: relative;
}

.insight-index,
.insights-index {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.insight-grid,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

.insight-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 280px;
  border: 1px solid rgba(201, 169, 110, 0.16);
  border-radius: 22px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  overflow: hidden;
  color: var(--text-primary);
  text-decoration: none;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(201, 169, 110, 0.12),
      transparent 15rem
    ),
    linear-gradient(180deg, rgba(18, 14, 9, 0.9), rgba(5, 4, 3, 0.94));
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.insight-card,
.insight-card:visited,
.insight-card:hover,
.insight-card:focus-visible {
  color: var(--text-primary);
  text-decoration: none;
}

.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    transparent 34%,
    rgba(201, 169, 110, 0.06)
  );
  opacity: 0.68;
}

.insight-card::after {
  content: '';
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.68),
    transparent
  );
  opacity: 0;
  transform: scaleX(0.34);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.insight-card:hover,
.insight-card:focus-visible {
  border-color: rgba(201, 169, 110, 0.46);
  transform: translateY(-2px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(201, 169, 110, 0.08);
}

.insight-card:hover::after,
.insight-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.insight-card:focus-visible {
  outline: 2px solid rgba(201, 169, 110, 0.62);
  outline-offset: 4px;
}

.insight-card--disabled {
  opacity: 0.76;
}

.insight-card__meta,
.insight-card__tags,
.insight-card__cta {
  color: rgba(205, 184, 145, 0.78);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card__title {
  margin: 0;
  max-width: 15ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 500;
  line-height: 1.05;
}

.insight-card__desc {
  margin: 0;
  color: rgba(237, 232, 219, 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.insight-card__cta {
  align-self: end;
  margin-top: auto;
  color: var(--bronze-light);
}

.insight-panel,
.cm-signal-map,
.chain-diagram,
.mockup-panel {
  border-radius: 24px;
  border-color: rgba(201, 169, 110, 0.16);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(201, 169, 110, 0.1),
      transparent 18rem
    ),
    linear-gradient(145deg, rgba(17, 13, 8, 0.88), rgba(5, 4, 3, 0.94));
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.insight-card,
.diagnostic-card,
.cm-cta-panel,
.chain-diagram,
.cm-signal-map,
.mockup-panel {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.diagnostic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.diagnostic-card {
  overflow: hidden;
  border-color: rgba(201, 169, 110, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(201, 169, 110, 0.105),
      transparent 16rem
    ),
    linear-gradient(180deg, rgba(19, 15, 10, 0.88), rgba(6, 5, 4, 0.92));
}

.diagnostic-card::before {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.58),
    transparent
  );
}

.chain-diagram {
  gap: 0;
}

.chain-step {
  border-bottom-color: rgba(201, 169, 110, 0.13);
  padding-block: 1.35rem;
}

.chain-label {
  color: rgba(205, 184, 145, 0.78);
}

.insight-cta,
.cm-cta-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  max-width: 920px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: clamp(22px, 2.2vw, 28px);
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(
      circle at 50% -16%,
      rgba(229, 191, 121, 0.2),
      rgba(201, 169, 110, 0.055) 31%,
      transparent 58%
    ),
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.055),
      transparent 27rem
    ),
    linear-gradient(
      145deg,
      rgba(24, 20, 15, 0.86) 0%,
      rgba(9, 8, 6, 0.95) 58%,
      rgba(3, 3, 2, 0.98) 100%
    );
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.028) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 42px rgba(201, 169, 110, 0.07);
  text-align: center;
}

.insight-cta::before,
.cm-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0 10%;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
        90deg,
        transparent,
        rgba(235, 202, 141, 0.5) 48%,
        transparent
      )
      top / 100% 1px no-repeat,
    radial-gradient(
      ellipse at 50% 0%,
      rgba(201, 169, 110, 0.18),
      transparent 48%
    );
  opacity: 0.78;
}

.insight-cta::after,
.cm-cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(
    ellipse at 50% 100%,
    transparent 25%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.insight-cta > *,
.cm-cta-panel > * {
  position: relative;
}

.insight-cta h3,
.cm-cta-panel h3 {
  margin-inline: auto;
  max-width: 22ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.insight-cta .cm-cta-panel__copy,
.cm-cta-panel__copy {
  max-width: 54ch;
  margin: clamp(0.9rem, 2vw, 1.15rem) auto clamp(1.45rem, 3vw, 2.1rem);
  color: rgba(218, 207, 188, 0.72);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.72;
}

.insight-cta .btn--primary,
.cm-cta-panel .btn--primary {
  min-height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.72);
  padding: 0.9rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.18), rgba(120, 84, 37, 0.16)),
    rgba(10, 8, 5, 0.72);
  color: rgba(255, 244, 220, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1;
  box-shadow:
    0 13px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.insight-cta .btn--primary:visited,
.cm-cta-panel .btn--primary:visited {
  color: rgba(255, 244, 220, 0.92);
}

.insight-cta .btn--primary:hover,
.cm-cta-panel .btn--primary:hover {
  border-color: rgba(235, 202, 141, 0.9);
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.27), rgba(120, 84, 37, 0.2)),
    rgba(13, 10, 6, 0.82);
  color: #fff7e8;
  box-shadow:
    0 15px 36px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(201, 169, 110, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.insight-cta .btn--primary:focus-visible,
.cm-cta-panel .btn--primary:focus-visible {
  outline: 2px solid rgba(235, 202, 141, 0.72);
  outline-offset: 4px;
}

.request-shell {
  --request-shell-accent: rgba(201, 169, 110, 0.24);
}

.release-briefing {
  border-radius: 22px;
}

@media (max-width: 1080px) {
  .insight-grid,
  .insights-grid,
  .diagnostic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .editorial-insight .insight-hero {
    padding-top: clamp(5.5rem, 18vw, 7rem);
  }

  .insight-grid,
  .insights-grid,
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: auto;
  }

  .chain-step {
    padding-block: 1rem;
  }

  .insight-cta,
  .cm-cta-panel {
    border-radius: 22px;
    padding: clamp(2rem, 9vw, 2.6rem) clamp(1.25rem, 6vw, 1.75rem);
  }
}
