/* Imana TV Productions LTD — standalone marketing site
   Isolated from ArtistAscend. Do not import into UNDERTHEHOOD. */

:root {
  --navy: #070b12;
  --navy-2: #0c121c;
  --navy-3: #121a28;
  --ink: #e8e4d9;
  --slate: #a8b0bf;
  --slate-dim: #6d7688;
  --gold: #c9a54a;
  --gold-bright: #e4c56a;
  --gold-soft: rgba(201, 165, 74, 0.14);
  --gold-line: rgba(201, 165, 74, 0.35);
  /* Logo blue — sapphire lift from Imana midnight navy (#000519) */
  --brand-blue: #1a56c4;
  --brand-blue-bright: #3d7fe0;
  --brand-blue-deep: #0c2f6e;
  --rec: #e11d2e;
  --live: #e11d2e;
  --frame: rgba(232, 228, 217, 0.08);
  --ok: #3d9a6a;
  --font-display: "Syne", "Manrope", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: min(1180px, calc(100% - 40px));
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% 8%, rgba(201, 165, 74, 0.1), transparent 55%),
    radial-gradient(700px 480px at 8% 30%, rgba(40, 70, 120, 0.22), transparent 52%),
    radial-gradient(600px 380px at 50% 100%, rgba(26, 86, 196, 0.08), transparent 55%),
    linear-gradient(180deg, #070b12 0%, #0a101a 45%, #070b12 100%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}
em, .serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.tc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.tc .dot,
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue-bright);
  box-shadow: 0 0 0 0 rgba(61, 127, 224, 0.55);
  animation: pulse-blue 1.6s infinite;
}

/* LIVE / ON AIR / REC — broadcast red only */
.live-dot,
.rec .dot,
.dot.live-dot {
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.55);
  animation: pulse-live 1.4s infinite;
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(61, 127, 224, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(61, 127, 224, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 127, 224, 0); }
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(225, 29, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0); }
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid var(--gold-line);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.brand-word span { color: var(--ink); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.2s var(--ease);
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] { color: var(--ink); }

.main-nav .nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

/* —— Buttons — glassy gold pills (broadcast, not fashion) —— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), filter 0.28s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid {
  color: #0a0d12;
  border-color: rgba(255, 236, 170, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(105deg,
      #8a6a28 0%,
      #c9a54a 18%,
      #fff1b0 38%,
      #e4c56a 52%,
      #a67c2d 72%,
      #f0d78a 88%,
      #c9a54a 100%);
  background-size: 100% 100%, 220% 100%;
  box-shadow:
    0 0 0 1px rgba(255, 220, 140, 0.25) inset,
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(80, 50, 10, 0.35) inset,
    0 10px 28px rgba(201, 165, 74, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.35);
  animation: gold-sheen 5.5s ease-in-out infinite;
}

.btn-solid:hover {
  filter: brightness(1.1) saturate(1.1);
  box-shadow:
    0 0 0 1px rgba(255, 230, 160, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 36px rgba(201, 165, 74, 0.4),
    0 0 24px rgba(228, 197, 106, 0.25);
  animation-duration: 2.8s;
}

.btn-ghost {
  color: var(--gold-bright);
  border-color: rgba(201, 165, 74, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 50%),
    rgba(18, 26, 40, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(201, 165, 74, 0.12) inset,
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.btn-ghost:hover {
  border-color: rgba(228, 197, 106, 0.75);
  color: #fff6d4;
  box-shadow:
    0 0 0 1px rgba(228, 197, 106, 0.2) inset,
    0 0 20px rgba(201, 165, 74, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

@keyframes gold-sheen {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* —— Corner frame (broadcast viewfinder) —— */
.frame {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(18, 26, 40, 0.72), rgba(12, 18, 28, 0.55)) padding-box,
    linear-gradient(135deg, rgba(240, 215, 138, 0.55), rgba(201, 165, 74, 0.2) 40%, rgba(138, 106, 40, 0.45) 70%, rgba(228, 197, 106, 0.35)) border-box;
  box-shadow:
    0 0 0 1px rgba(201, 165, 74, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold-bright);
  border-style: solid;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(201, 165, 74, 0.35));
  z-index: 2;
}

.frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 11, 18, 0.92) 38%, rgba(7, 11, 18, 0.55) 70%, rgba(7, 11, 18, 0.75)),
    radial-gradient(ellipse at 80% 40%, rgba(201, 165, 74, 0.12), transparent 45%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 14ch;
  letter-spacing: -0.035em;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
  letter-spacing: 0;
}

.hero .lead {
  color: var(--slate);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 42ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Monitors share the industrial deck language with episode cards */
.monitor,
.broadcast-deck {
  position: relative;
  width: 100%;
}

.monitor > .ep-deck,
.broadcast-deck > .ep-deck,
.monitor.ep-deck {
  width: 100%;
}

/* Legacy hooks — map old monitor markup through deck styles when present */
.monitor-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.monitor-hud {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  pointer-events: none;
}

.monitor-hud .rec,
.ep-hud .rec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(7, 11, 18, 0.78);
  border: 1px solid rgba(201, 165, 74, 0.4);
}

.monitor-hud > span:not(.rec) {
  padding: 5px 9px;
  color: var(--gold-bright);
  background: rgba(7, 11, 18, 0.78);
  border: 1px solid rgba(61, 127, 224, 0.35);
}

/* —— Sections —— */
section { padding: 88px 0; }

.section-alt {
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.9), rgba(7, 11, 18, 0.4));
  border-block: 1px solid rgba(201, 165, 74, 0.08);
}

.section-head { margin-bottom: 44px; max-width: 62ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 14px 0 14px;
}
.section-head p { color: var(--slate); font-size: 16px; }

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(201, 165, 74, 0.1);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 16px;
  max-width: 16ch;
}

.page-hero p {
  color: var(--slate);
  max-width: 54ch;
  font-size: 17px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* —— Stats —— */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.stat {
  padding: 22px 20px;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.stat span {
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Episode cards — industrial broadcast deck —— */
.ep-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.ep-card:hover { transform: translateY(-4px); }
.ep-card:focus-visible {
  outline: 2px solid rgba(228, 197, 106, 0.7);
  outline-offset: 4px;
}

.ep-deck {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, #141b28 0%, #0a1018 100%);
  border: 1px solid rgba(201, 165, 74, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.65) inset,
    0 0 0 3px rgba(18, 24, 36, 0.95),
    0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.ep-bezel {
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(201, 165, 74, 0.14), transparent 40%),
    linear-gradient(135deg, #1a2233, #0c121c);
  border-bottom: 1px solid rgba(201, 165, 74, 0.22);
}

.ep-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 165, 74, 0.35),
    0 0 0 2px #05080e;
}

.ep-screen img,
.ep-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.35s;
}

.ep-card:hover .ep-screen img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04);
}

.ep-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.35)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    );
}

.ep-corners {
  position: absolute;
  inset: 8px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(228, 197, 106, 0.22);
}

.ep-corners::before,
.ep-corners::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold-bright);
  border-style: solid;
}

.ep-corners::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.ep-corners::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* Legacy selector — map old thumbs to new screen behavior */
.ep-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.ep-thumb .tc {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  padding: 5px 9px;
  background: rgba(7, 11, 18, 0.72);
  border: 1px solid rgba(201, 165, 74, 0.35);
}

/* Play — locked to screen center, broadcast-grade */
.ep-play,
.ep-screen .monitor-play,
.ep-thumb .monitor-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 68px;
  height: 68px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 236, 170, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, transparent 45%),
    linear-gradient(145deg, #c9a54a 0%, #8a6a28 55%, #e4c56a 100%);
  color: #0a0d12;
  font-size: 0;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(201, 165, 74, 0.35);
  transition: transform 0.28s var(--ease), box-shadow 0.28s, filter 0.28s;
}

.ep-play::before,
.ep-screen .monitor-play::before,
.ep-thumb .monitor-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #0a0d12;
}

.ep-card:hover .ep-play,
.ep-card:hover .monitor-play,
.ep-screen:hover .monitor-play,
.ep-thumb:hover .monitor-play {
  transform: translate(-50%, -50%) scale(1.08);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(228, 197, 106, 0.5);
}

.ep-hud {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Clear the frame once playback starts — labels sit on top of the picture otherwise */
.ep-screen.is-playing .ep-hud,
.ep-screen.is-playing .ep-play,
.ep-screen.is-playing .monitor-play {
  opacity: 0;
  visibility: hidden;
}

.ep-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(7, 11, 18, 0.78);
  border: 1px solid rgba(201, 165, 74, 0.4);
  backdrop-filter: blur(6px);
}

.ep-timecode {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 5px 9px;
  background: rgba(7, 11, 18, 0.78);
  border: 1px solid rgba(61, 127, 224, 0.35);
}

.ep-body {
  padding: 16px 16px 18px;
  border-top: 1px solid rgba(201, 165, 74, 0.14);
  background: rgba(7, 11, 18, 0.55);
}

.ep-body .kicker {
  margin-bottom: 6px;
  color: var(--brand-blue-bright);
}

.ep-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.25;
}

.ep-body p {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

/* —— Quotes —— */
.quote-block {
  padding: 32px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(18, 26, 40, 0.55);
}

.quote-block .quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 450;
  line-height: 1.45;
  margin-bottom: 18px;
}

.quote-block .who {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--slate-dim);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(201, 165, 74, 0.12), transparent 70%),
    var(--navy-2);
  border-block: 1px solid var(--gold-line);
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}

/* —— Services / packages —— */
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 30px;
  background:
    linear-gradient(165deg, rgba(26, 86, 196, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--navy-2);
  border: 1px solid rgba(201, 165, 74, 0.22);
  border-radius: 4px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.package::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.7;
}

.package:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 197, 106, 0.55);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 165, 74, 0.12) inset,
    0 0 28px rgba(26, 86, 196, 0.12);
}

.package .kicker {
  color: var(--brand-blue-bright);
}

.package-featured {
  border-color: rgba(228, 197, 106, 0.45);
  box-shadow:
    0 0 0 1px rgba(201, 165, 74, 0.12) inset,
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(201, 165, 74, 0.1);
}

.package .price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(115deg, #8a6a28 0%, #fff1b0 35%, #e4c56a 55%, #c9a54a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  margin: 12px 0 16px;
  text-shadow: 0 0 40px rgba(228, 197, 106, 0.25);
}

.package .price small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate-dim);
  font-weight: 500;
}

.package h3 { font-size: 22px; }
.package > p { color: var(--slate); font-size: 14px; margin-bottom: 18px; flex: 1; }

.checklist { margin: 0 0 24px; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--slate);
  border-bottom: 1px solid rgba(232, 228, 217, 0.06);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.package .btn { width: 100%; margin-top: auto; }

.service-block { margin-bottom: 72px; }
.service-block > .section-head { margin-bottom: 28px; }

/* —— Forms —— */
.form-panel {
  padding: 36px 32px;
  background: var(--navy-2);
  border: 1px solid var(--gold-line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  background: var(--navy);
  border: 1px solid rgba(201, 165, 74, 0.22);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus { border-color: var(--gold); }

textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 13px;
  color: var(--slate-dim);
  margin-top: 14px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--ok);
  background: rgba(61, 154, 106, 0.12);
  color: #b8e4cb;
  font-size: 14px;
}

.form-status.is-visible { display: block; }
.form-status.is-error {
  border-color: var(--brand-blue-bright);
  background: rgba(26, 86, 196, 0.14);
  color: #f2b4b4;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* —— Process steps —— */
.steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  counter-reset: step;
}

.step {
  padding: 18px 14px;
  border: 1px solid rgba(201, 165, 74, 0.14);
  background: rgba(18, 26, 40, 0.5);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* —— Media kit —— */
.asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.asset-card {
  padding: 28px 24px;
  border: 1px solid rgba(201, 165, 74, 0.14);
  background: var(--navy-2);
}

.asset-card h4 { margin-bottom: 10px; font-size: 18px; }
.asset-card p { color: var(--slate); font-size: 14px; margin-bottom: 18px; }

/* —— Contact details —— */
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(232, 228, 217, 0.08);
  color: var(--slate);
}

.contact-list strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-list a:hover { color: var(--gold-bright); }

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* —— Partner / about prose —— */
.prose h3 {
  font-size: 24px;
  margin: 36px 0 12px;
}

.prose p {
  color: var(--slate);
  margin-bottom: 16px;
}

.prose ul {
  margin: 0 0 20px;
}

.prose ul li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--slate);
}

.prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pill-note {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dim);
  border: 1px dashed rgba(201, 165, 74, 0.3);
}

/* —— Footer —— */
.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--gold-line);
  background: #05080e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--slate-dim);
  font-size: 14px;
  margin-top: 16px;
  max-width: 36ch;
}

.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.site-footer a {
  display: block;
  color: var(--slate);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--gold-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 228, 217, 0.08);
  font-size: 12px;
  color: var(--slate-dim);
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

.nav-cta-short { display: none; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  /* Keep header clean: brand + menu only. CTA lives in the drawer. */
  .main-nav {
    display: none;
  }

  .nav-toggle { display: inline-grid; place-items: center; flex-shrink: 0; }

  .site-header .wrap {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-word {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav.is-open {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(7, 11, 18, 0.97);
    border-bottom: 1px solid var(--gold-line);
    z-index: 120;
  }

  .main-nav.is-open > a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(232, 228, 217, 0.06);
  }

  .main-nav.is-open .nav-cta {
    display: inline-flex;
    align-self: center;
    margin: 18px auto 6px;
    width: auto;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0a0d12 !important;
    border: 1px solid #f3dfa0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0d78a 0%, #c9a54a 55%, #a8842f 100%) !important;
    text-shadow: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35) inset,
      0 6px 16px rgba(0, 0, 0, 0.4);
    animation: none !important;
    filter: none;
  }

  .main-nav.is-open .nav-cta:hover {
    filter: brightness(1.05);
    color: #0a0d12 !important;
  }

  .main-nav.is-open .nav-cta-full { display: inline; }
  .main-nav.is-open .nav-cta-short { display: none; }

  .hero .wrap,
  .two-col,
  .grid-3,
  .grid-4,
  .grid-2,
  .asset-row,
  .footer-grid,
  .split-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: 1fr 1fr; }

  .person-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .bcast-tile {
    min-height: 100px;
    padding: 14px 10px 12px;
  }

  .bcast-tile b {
    font-size: clamp(17px, 5vw, 26px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .bcast-tile span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .ep-play,
  .ep-screen .monitor-play,
  .ep-thumb .monitor-play {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 24px); --header-h: 60px; }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }

  .btn {
    padding: 11px 18px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 40px;
    overflow: hidden;
  }

  .hero .wrap { gap: 28px; }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    max-width: 100%;
  }

  .hero-eyebrow .tc,
  .hero .tc {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 38px);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: -0.03em;
  }

  .hero .lead {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-ctas .btn { width: 100%; }

  .brand-word { font-size: 14px; letter-spacing: 0.04em; }
  .brand img { height: 32px; }
  .brand { gap: 8px; }

  .nav-toggle {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  section { padding: 52px 0; }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
    max-width: 100%;
  }

  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-panel { padding: 20px 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .ep-bezel { padding: 6px; }
  .ep-body { padding: 14px 12px 16px; }
  .ep-body h4 { font-size: 15px; }
  .ep-badge,
  .ep-timecode {
    font-size: 9px;
    padding: 4px 7px;
  }

  .ep-hud {
    left: 8px;
    right: 8px;
    top: 8px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .showtime-word {
    font-size: clamp(18px, 6vw, 26px);
    letter-spacing: 0.16em;
  }

  .showtime-banner { padding: 12px 12px 10px; }

  .cinematic-grid .person-card .meta { padding: 12px 10px; }
  .cinematic-grid .person-card .meta strong { font-size: 13px; }

  .studio-copilot {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .studio-copilot-fab {
    padding: 10px 14px;
    font-size: 11px;
  }

  .studio-copilot-fab .pa-label-full { display: none; }
  .studio-copilot-fab .pa-label-short { display: inline; }

  .studio-copilot-panel {
    width: min(100vw - 24px, 360px);
    bottom: 52px;
    max-height: min(70vh, 480px);
  }

  .imana-player-scrim {
    padding: 12px;
    align-items: center;
    place-items: center;
  }

  .imana-player {
    width: 100%;
    max-width: 100%;
    max-height: min(92vh, 720px);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
  }

  .imana-player-stage {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-height: min(56vh, 420px);
    flex: 0 0 auto;
  }

  .package .price {
    font-size: clamp(26px, 8vw, 34px);
  }
}

/* —— People / logos / awards —— */
.person-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.person-card {
  background: var(--navy-2);
  border: 1px solid rgba(201, 165, 74, 0.12);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.person-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  background: #0a1018;
}

.person-card .meta {
  padding: 14px 14px 16px;
}

.person-card .meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 550;
  margin-bottom: 4px;
}

.person-card .meta span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dim);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}

.logo-cell {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px 12px;
  background: transparent;
  border: 0;
}

.logo-cell img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.award-frame {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.award-frame img {
  width: 100%;
  background: #fff;
}

.award-elite {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(228, 197, 106, 0.16), transparent 55%),
    linear-gradient(160deg, #161d2c, #0a1018 60%);
  border: 1px solid rgba(201, 165, 74, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 236, 170, 0.12) inset,
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(201, 165, 74, 0.12);
}

.award-elite::before,
.award-elite::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(201, 165, 74, 0.22);
}

.award-elite::after {
  inset: 12px;
  border-color: rgba(61, 127, 224, 0.18);
}

.award-elite-ring {
  position: relative;
  padding: 10px;
  background:
    linear-gradient(180deg, #fffef8, #f4efe3);
  box-shadow:
    0 0 0 3px #0a0d12,
    0 0 0 5px rgba(201, 165, 74, 0.55),
    0 0 0 8px #0a0d12,
    0 12px 28px rgba(0, 0, 0, 0.35);
}

.award-elite-ring img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  margin-inline: auto;
  border: 0;
  object-fit: contain;
  image-orientation: none;
  transform: none;
}

.award-elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* —— Founder portrait (circular ring + red CEO badge) —— */
.founder-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  justify-items: start;
}

.founder-portrait {
  position: relative;
  width: min(240px, 62vw);
  margin-inline: auto;
  flex-shrink: 0;
}

.founder-ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  background:
    conic-gradient(from 210deg,
      #6e5218,
      #f3e2a1,
      #c9a54a,
      #fff6c8,
      #a67c2d,
      #e8c96a,
      #6e5218);
  box-shadow:
    0 0 0 1px rgba(255, 230, 160, 0.35),
    0 0 28px rgba(201, 165, 74, 0.35),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

.founder-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(7, 11, 18, 0.55);
  pointer-events: none;
  z-index: 1;
}

.founder-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: var(--navy-2);
}

.founder-badge {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.founder-badge svg {
  width: 36px;
  height: 36px;
  fill: #f0d78a;
  background:
    linear-gradient(160deg, #3d7fe0 0%, #1a56c4 55%, #0c2f6e 100%);
  border-radius: 50%;
  padding: 7px;
  border: 2px solid #e4c56a;
  box-shadow:
    0 0 0 2px rgba(26, 86, 196, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.founder-badge span {
  margin-top: -4px;
  padding: 3px 12px 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1208;
  background: linear-gradient(180deg, #f0d78a, #c9a54a 55%, #8a6a28);
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 160, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.founder-copy { max-width: 52ch; }

.founder-role {
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: -6px 0 14px;
}

@media (max-width: 720px) {
  .founder-block {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .founder-copy { text-align: center; }
  .founder-copy .btn-row,
  .founder-copy p:last-child { display: flex; justify-content: center; }
}

.team-bleed {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .person-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .award-frame { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* —— Mind Over Matter community —— */
.community-band {
  padding: 88px 0;
  border-top: 1px solid rgba(201, 165, 74, 0.12);
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(201, 165, 74, 0.1), transparent 65%),
    var(--navy-2);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.community-form { max-width: 480px; margin-left: auto; }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  margin: 0;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

@media (max-width: 1024px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-form { margin-left: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* —— First-visit Studio Guide (glass, brand colours) —— */
.studio-scrim {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 11, 18, 0.72);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.studio-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.studio-welcome {
  width: min(440px, 100%);
  padding: 32px 28px 28px;
  border-radius: 16px;
  border: 1px solid rgba(201, 165, 74, 0.35);
  background: linear-gradient(160deg, rgba(18, 26, 40, 0.88), rgba(7, 11, 18, 0.78));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(228, 197, 106, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.4s var(--ease);
}

.studio-scrim.is-open .studio-welcome {
  transform: none;
}

.studio-welcome .tc { margin-bottom: 14px; }

.studio-welcome h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 12px;
}

.studio-welcome p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 14px;
}

.studio-welcome .btn-row {
  margin-top: 22px;
  justify-content: flex-start;
}

.studio-tip {
  position: absolute;
  z-index: 40;
  max-width: 280px;
  padding: 14px 16px 12px;
  border-radius: 14px;
  border: 1px solid rgba(201, 165, 74, 0.4);
  background: linear-gradient(155deg, rgba(18, 26, 40, 0.92), rgba(12, 18, 28, 0.82));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(228, 197, 106, 0.1);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.studio-tip.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.studio-tip strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.studio-tip button {
  margin-top: 10px;
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.studio-tip-host {
  position: relative;
}

.studio-reopen {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 74, 0.4);
  background: rgba(12, 18, 28, 0.85);
  backdrop-filter: blur(12px);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.studio-reopen:hover {
  border-color: var(--gold);
  background: rgba(201, 165, 74, 0.12);
}

@media (max-width: 640px) {
  .studio-tip {
    position: fixed;
    left: 16px !important;
    right: 16px;
    bottom: 72px;
    top: auto !important;
    max-width: none;
  }
}

/* —— Community chat —— */
.chat-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 560px;
}
.chat-topics { padding: 20px 16px; display: flex; flex-direction: column; gap: 8px; }
.chat-topic-btn {
  text-align: left; border: 1px solid rgba(201, 165, 74, 0.16);
  background: rgba(7, 11, 18, 0.45); color: var(--ink);
  border-radius: 14px; padding: 12px 14px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.chat-topic-btn strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; }
.chat-topic-btn span { display: block; font-size: 12px; color: var(--slate-dim); line-height: 1.4; }
.chat-topic-btn .chat-pin {
  display: inline-block; margin-top: 8px; font-style: normal; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue-bright);
}
.chat-topic-btn.is-active, .chat-topic-btn:hover {
  border-color: rgba(61, 127, 224, 0.55); background: rgba(26, 86, 196, 0.12);
}
.chat-panel { display: flex; flex-direction: column; min-height: 560px; overflow: hidden; }
.chat-panel-head { padding: 22px 22px 14px; border-bottom: 1px solid rgba(201, 165, 74, 0.14); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column;
  gap: 12px; max-height: 420px;
}
.chat-msg {
  border: 1px solid rgba(201, 165, 74, 0.12); background: rgba(7, 11, 18, 0.4);
  border-radius: 14px; padding: 12px 14px;
}
.chat-msg.is-admin { border-color: rgba(61, 127, 224, 0.4); background: rgba(26, 86, 196, 0.12); }
.chat-msg header { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; color: var(--slate-dim); }
.chat-msg header strong { color: var(--gold-bright); font-size: 13px; }
.chat-admin-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue-bright); border: 1px solid rgba(61, 127, 224, 0.45);
  border-radius: 999px; padding: 2px 8px;
}
.chat-msg p { color: var(--ink); font-size: 14px; line-height: 1.55; white-space: pre-wrap; }
.chat-compose { padding: 16px 22px 22px; border-top: 1px solid rgba(201, 165, 74, 0.14); background: rgba(12, 18, 28, 0.55); }
.chat-compose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.chat-compose input, .chat-compose textarea {
  width: 100%; border-radius: 12px; border: 1px solid rgba(201, 165, 74, 0.28);
  background: rgba(7, 11, 18, 0.65); color: var(--ink); padding: 11px 12px;
}
.chat-compose input:focus, .chat-compose textarea:focus {
  outline: none; border-color: var(--brand-blue-bright); box-shadow: 0 0 0 3px rgba(26, 86, 196, 0.2);
}
.chat-empty, .chat-loading, .chat-status { color: var(--slate-dim); font-size: 13px; }
@media (max-width: 900px) {
  .chat-layout { grid-template-columns: 1fr; }
  .chat-compose-grid { grid-template-columns: 1fr; }
}

/* —— Broadcast tiles (TV / HD / Brand / Partners) —— */
.broadcast-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bcast-tile {
  position: relative;
  min-height: 132px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 74, 0.28);
  background:
    linear-gradient(145deg, rgba(26, 86, 196, 0.18), transparent 50%),
    linear-gradient(180deg, #141c2c, #0a1018);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.bcast-tile b {
  font-family: var(--font-display);
  font-size: clamp(18px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  background: linear-gradient(120deg, #fff1b0, #c9a54a 45%, #8a6a28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bcast-tile span {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.8vw, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.35;
  max-width: 100%;
}

.bcast-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(228, 197, 106, 0.35), transparent 68%);
  pointer-events: none;
  animation: bcast-sweep 6s ease-in-out infinite;
}

.bcast-tile:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(228, 197, 106, 0.65);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(26, 86, 196, 0.2);
}

@keyframes bcast-sweep {
  0%, 100% { transform: translate(0, 0); opacity: 0.55; }
  50% { transform: translate(-24px, 18px); opacity: 1; }
}

/* —— Showreel / monitor media fill —— */
.showreel-video,
.ep-screen video,
.ep-screen iframe,
.monitor-inner video,
.monitor-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  background: #000;
}

.about-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.about-still-brand {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.2), rgba(7, 11, 18, 0.55));
  z-index: 3;
  pointer-events: none;
}

.about-still-brand img {
  width: min(148px, 38%);
  height: auto;
  border-radius: 4px;
  box-shadow:
    0 0 0 2px rgba(201, 165, 74, 0.55),
    0 0 0 5px rgba(7, 11, 18, 0.85),
    0 14px 36px rgba(0, 0, 0, 0.55);
}

/* Logo chip — inside the screen, top-right, never clipped */
.about-brand-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  bottom: auto;
  z-index: 6;
  width: clamp(64px, 22vw, 96px);
  max-width: calc(100% - 24px);
  margin: 0;
  padding: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.about-brand-chip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow:
    0 0 0 2px rgba(201, 165, 74, 0.55),
    0 0 0 4px rgba(7, 11, 18, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.55);
}

.ep-hud--split {
  top: auto;
  bottom: 10px;
  left: 10px;
  right: 10px;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .about-brand-chip {
    top: 10px;
    right: 10px;
    width: clamp(56px, 20vw, 76px);
  }
}

/* Team / BTS stills — same deck bezel */
.media-deck {
  display: block;
}

.media-deck .ep-screen {
  aspect-ratio: 16 / 9;
}

.media-deck .ep-screen img.team-bleed,
.media-deck .team-bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  aspect-ratio: auto;
  object-fit: cover;
}

/* —— Cinematic guest grid —— */
.cinematic-grid .person-card {
  position: relative;
  border-radius: 2px;
  border-color: rgba(201, 165, 74, 0.2);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
}

.cinematic-grid .person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 11, 18, 0.85) 100%),
    linear-gradient(90deg, rgba(201, 165, 74, 0.15), transparent 30%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.35s;
}

.cinematic-grid .person-card .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 16px;
}

.cinematic-grid .person-card .meta strong {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.cinematic-grid .person-card img {
  transition: transform 0.7s var(--ease), filter 0.45s;
  filter: saturate(0.92) contrast(1.05);
}

.cinematic-grid .person-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(228, 197, 106, 0.55);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 165, 74, 0.25);
}

.cinematic-grid .person-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.cinematic-grid .person-card:hover::after { opacity: 0.55; }

/* Partner logos use css/StickerPeel.css + js/sticker-peel.js (React Bits port) */

/* —— SHOW TIME stage —— */
.showtime-stage.ep-deck {
  overflow: hidden;
}

.showtime-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(201, 165, 74, 0.28);
  background:
    radial-gradient(70% 120% at 50% 100%, rgba(228, 197, 106, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(26, 86, 196, 0.12), transparent 80%),
    #0a1018;
}

.showtime-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: showtime-ken 18s ease-in-out infinite alternate;
}

.showtime-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4.2vw, 36px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(115deg, #8a6a28, #fff6d0 32%, #e4c56a 50%, #c9a54a 70%, #fff1b0);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 0 10px rgba(228, 197, 106, 0.65))
    drop-shadow(0 0 28px rgba(201, 165, 74, 0.45));
  animation: gold-sheen 3.6s ease-in-out infinite, showtime-pulse 2.4s ease-in-out infinite;
}

@keyframes showtime-ken {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, 0.6%); }
}

@keyframes showtime-pulse {
  0%, 100% { letter-spacing: 0.2em; opacity: 0.9; filter: drop-shadow(0 0 10px rgba(228, 197, 106, 0.55)); }
  50% { letter-spacing: 0.28em; opacity: 1; filter: drop-shadow(0 0 22px rgba(255, 241, 176, 0.85)); }
}

/* —— Community topic dopamine —— */
.chat-topics-live .chat-topic-btn {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(26, 86, 196, 0.12), transparent 50%),
    rgba(7, 11, 18, 0.55);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.chat-topics-live .chat-topic-btn::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(228, 197, 106, 0.25), transparent 70%);
  transition: transform 0.45s;
}

.chat-topics-live .chat-topic-btn:hover,
.chat-topics-live .chat-topic-btn.is-active {
  transform: translateX(4px) scale(1.02);
  border-color: rgba(228, 197, 106, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 20px rgba(26, 86, 196, 0.18);
}

.chat-topics-live .chat-topic-btn:hover::after,
.chat-topics-live .chat-topic-btn.is-active::after {
  transform: translate(-20px, -12px);
}

/* —— Personal assistant (public toolbar) —— */
.studio-copilot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  font-family: var(--font-body);
}

.studio-copilot-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 165, 74, 0.45);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  color: #0a0d12;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 45%),
    linear-gradient(105deg, #8a6a28, #fff1b0 40%, #c9a54a 70%, #e4c56a);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(201, 165, 74, 0.25);
}

.studio-copilot-fab .pa-label-short { display: none; }

.studio-copilot-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(380px, calc(100vw - 28px));
  max-height: min(520px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(201, 165, 74, 0.35);
  background: rgba(10, 14, 22, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.studio-copilot-panel[hidden] { display: none !important; }

.studio-copilot-panel header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(201, 165, 74, 0.18);
  align-items: center;
}

.studio-copilot-panel header strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.studio-copilot-panel header span {
  grid-column: 1;
  font-size: 11px;
  color: var(--slate-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.studio-copilot-close {
  grid-row: 1 / span 2;
  grid-column: 2;
  border: 0;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  font-size: 16px;
}

.studio-copilot-log {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  max-height: 280px;
}

.studio-copilot-msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.studio-copilot-msg.is-bot {
  align-self: flex-start;
  background: rgba(26, 86, 196, 0.16);
  border: 1px solid rgba(61, 127, 224, 0.35);
}

.studio-copilot-msg.is-user {
  align-self: flex-end;
  background: rgba(201, 165, 74, 0.14);
  border: 1px solid rgba(201, 165, 74, 0.35);
}

.studio-copilot-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(201, 165, 74, 0.16);
}

.studio-copilot-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 74, 0.28);
  background: rgba(7, 11, 18, 0.7);
  padding: 10px 14px;
}

.studio-copilot-form .btn { padding: 10px 16px; }

.studio-copilot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 14px;
}

.studio-copilot-chips button {
  border-radius: 999px;
  border: 1px solid rgba(61, 127, 224, 0.4);
  background: rgba(26, 86, 196, 0.12);
  color: var(--ink);
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
}

.studio-copilot-chips button:hover {
  border-color: rgba(228, 197, 106, 0.55);
}

.studio-reopen { display: none !important; }

.watch-tile {
  display: block;
  text-align: center;
  padding: 28px 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.watch-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 197, 106, 0.55);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.imana-player-scrim {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.22s;
}
.imana-player-scrim.is-open { opacity: 1; }
.imana-player {
  width: min(960px, 100%);
  background: #0a1018;
  border: 1px solid rgba(201, 165, 74, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.imana-player header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201, 165, 74, 0.2);
  font-family: var(--font-display);
}
.imana-player header strong {
  font-size: 14px;
  line-height: 1.35;
  min-width: 0;
}
.imana-player header button {
  border: 0;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
}
.imana-player-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.imana-player-stage iframe,
.imana-player-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: #000;
  object-fit: contain;
  object-position: center center;
}

@media (prefers-reduced-motion: reduce) {
  .bcast-glow,
  .showtime-img,
  .showtime-word,
  .btn-solid,
  .live-dot,
  .dot { animation: none !important; }
  .cinematic-grid .person-card:hover img { transform: none; }
}
