/* ==========================================================================
   Now We Know TV! v1 homepage
   Custom CSS, no framework. Design tokens first, then base, then components
   in page order. Breakpoints: 640px, 900px, 1160px.
   ========================================================================== */

:root {
  --red: #ef2b2d;          /* brand red: large text / graphics on white    */
  --red-dark: #d81f21;     /* hover                                        */
  --red-text: #c11e20;     /* red used as small text on white (AA 4.5:1)   */
  --red-deep: #a81416;     /* red band bottom gradient                     */
  --ink: #0b0b0d;          /* near-black shell                             */
  --panel: #121316;        /* dark card                                    */
  --paper: #ffffff;
  --paper-2: #f6f7f9;      /* light section alt                            */
  --line: #e5e7eb;
  --line-dark: rgba(255, 255, 255, 0.14);
  --text: #0f172a;
  --text-2: #475569;       /* secondary on white (AA)                      */
  --text-3: #64748b;       /* meta on white (AA for large/bold only)       */
  --on-dark: #ffffff;
  --on-dark-2: rgba(255, 255, 255, 0.82);
  --on-dark-3: rgba(255, 255, 255, 0.62);

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.1);

  --container: 74rem;
  --gutter: 1.25rem;
}

/* Base ------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
p { margin: 0; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 640px) { .container { padding-inline: 2rem; } }

.section { padding-block: 4rem; }
@media (min-width: 900px) { .section { padding-block: 5.5rem; } }

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-text);
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
}

.lede { margin-top: 1.25rem; font-size: 1.125rem; color: var(--text-2); max-width: 44rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-soft); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost-dark { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.14); }
.btn-white { background: #fff; color: var(--red-text); }
.btn-white:hover { background: #f1f5f9; }
.btn-ghost-light { border-color: #cbd5e1; color: var(--text); background: #fff; }
.btn-ghost-light:hover { background: var(--paper-2); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.link-arrow:hover { color: var(--red-text); }

/* Top bar ------------------------------------------------------------------ */

.topbar { background: #000; color: #fff; font-size: 0.9rem; border-bottom: 1px solid var(--line-dark); }
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 0.7rem;
}
.topbar-left { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; }
.onair {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.onair-dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--red); }
.topbar p { color: var(--on-dark-2); }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; font-weight: 600; text-underline-offset: 4px; }

/* Header ------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.9rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand img { width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--line); }
.brand-name { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1.15; }
.brand-name em { font-style: italic; color: var(--red-text); }
.brand-tag { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }

.primary-nav { display: none; align-items: center; gap: 1.9rem; }
.nav-link { font-weight: 600; color: var(--text); text-decoration: none; }
.nav-link:hover { color: var(--red-text); }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.mobile-nav { display: none; border-top: 1px solid var(--line); padding-block: 1rem; }
.mobile-nav.open { display: block; }
.mobile-nav nav { display: grid; gap: 0.25rem; }
.mobile-nav a { padding: 0.7rem 0.5rem; border-radius: 0.6rem; font-weight: 600; text-decoration: none; }
.mobile-nav a:hover { background: var(--paper-2); }
.mobile-nav .btn { margin-top: 0.6rem; }

@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero --------------------------------------------------------------------- */

.hero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.92) 0%, rgba(5, 5, 8, 0.72) 44%, rgba(5, 5, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.85) 0%, rgba(5, 5, 8, 0.15) 45%);
}
.hero-inner { padding-block: 5rem 4rem; max-width: 46rem; }
@media (min-width: 900px) { .hero-inner { padding-block: 7.5rem 6rem; } }

.hero-badge {
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
}
.hero-rule { margin-top: 1.5rem; width: 4rem; height: 0.4rem; border-radius: 999px; background: var(--red); }
.hero-sub { margin-top: 1.75rem; font-size: 1.15rem; color: var(--on-dark-2); max-width: 34rem; }
.hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-facts {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.75rem;
}
@media (min-width: 640px) { .hero-facts { grid-template-columns: repeat(3, 1fr); } }
.hero-facts .fact-label { display: block; font-size: 0.85rem; color: var(--on-dark-3); }
.hero-facts .fact-value { font-weight: 700; }
.hero-facts li { display: flex; align-items: flex-start; gap: 0.85rem; }
.fact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.fact-icon svg { width: 1.15rem; height: 1.15rem; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Why the show matters / promo video --------------------------------------- */

.split { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 6fr 5fr; gap: 4rem; } .split.flip > :first-child { order: 2; } }

.video-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  background: #000;
}
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* Stats strip ---------------------------------------------------------------- */

.stats { background: var(--ink); color: #fff; }
.stats-grid { display: grid; gap: 2rem 1.5rem; padding-block: 3rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 900; }
.stat-value .accent { color: var(--red); }
.stat-label { margin-top: 0.35rem; color: var(--on-dark-3); font-size: 0.95rem; }

/* Featured stories ----------------------------------------------------------- */

.feature-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .feature-grid { grid-template-columns: 6fr 2fr 2fr 2fr; } }

.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 21rem;
  background: var(--panel);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.media-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.media-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(4, 4, 8, 0.88) 0%, rgba(4, 4, 8, 0.35) 55%, rgba(4, 4, 8, 0.08) 100%);
}
.media-card {
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.35s ease;
  will-change: transform;
}
.media-card img { transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.35s ease; }
.media-card:hover,
.media-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  z-index: 2;
}
.media-card:hover img,
.media-card:focus-within img { transform: scale(1.06); filter: brightness(1.08); }

.media-card-body { padding: 1.75rem; color: #fff; }
.media-card .chip {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.media-card h3 { margin-top: 0.9rem; font-size: 1.5rem; font-weight: 900; }
.media-card.lg h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.media-card p { margin-top: 0.5rem; color: var(--on-dark-2); max-width: 34rem; }
.media-card .cover-link { position: absolute; inset: 0; border-radius: inherit; }
.play-badge {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
  pointer-events: none;
}
.play-badge::before { content: ""; border-style: solid; border-width: 0.55rem 0 0.55rem 0.95rem; border-color: transparent transparent transparent var(--red); margin-left: 0.2rem; }
.media-card:hover .play-badge,
.media-card:focus-within .play-badge { transform: translate(-50%, -50%) scale(1.12); }

/* Accordion feature row (v1 behavior): hovered card expands, siblings collapse */

@media (min-width: 900px) {
  .feature-acc { display: flex; gap: 1.5rem; height: 27rem; margin-top: 3rem; }
  .feature-acc .media-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 0;
    transition: flex 0.55s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.35s ease;
    will-change: flex;
  }
  .feature-acc .media-card:hover,
  .feature-acc .media-card:focus-within { transform: none; }
  .feature-acc .media-card.lg { flex: 2.7 1 0; }
  .feature-acc:has(.media-card:hover) .media-card,
  .feature-acc:has(.media-card:focus-within) .media-card { flex: 1 1 0; }
  .feature-acc .media-card:hover,
  .feature-acc .media-card:focus-within { flex: 2.7 1 0 !important; box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28); }
  .feature-acc .media-card p,
  .feature-acc .media-card .chip { transition: opacity 0.35s ease 0.12s; }
  .feature-acc:has(.media-card:hover) .media-card:not(:hover) p,
  .feature-acc:has(.media-card:hover) .media-card:not(:hover) .chip,
  .feature-acc:has(.media-card:focus-within) .media-card:not(:focus-within) p { opacity: 0; }
  .feature-acc .media-card h3 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .feature-acc .media-card:hover h3,
  .feature-acc .media-card:focus-within h3,
  .feature-acc:not(:has(.media-card:hover)):not(:has(.media-card:focus-within)) .media-card.lg h3 { white-space: normal; }
}
@media (max-width: 899.98px) {
  .feature-acc { display: grid; gap: 1.5rem; margin-top: 3rem; }
}

/* Full-bleed banner section (image background + scrim) --------------------------- */

.banner-section { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; z-index: -2; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.banner-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.9) 0%, rgba(5, 5, 8, 0.68) 55%, rgba(5, 5, 8, 0.42) 100%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.65) 0%, rgba(5, 5, 8, 0.25) 40%);
}
.banner-section .section-title { color: #fff; }
.banner-section .lede { color: var(--on-dark-2); }
.banner-section .eyebrow { color: #ff8a8b; }

/* Case-study filters ---------------------------------------------------------------- */

.filter-row { margin: 2.5rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid #d6dae1;
  border-radius: var(--radius-md);
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.filter-btn:hover { border-color: var(--red); color: var(--red-text); transform: translateY(-2px); }
.filter-btn[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }
.filter-btn[aria-pressed="true"]:hover { color: #fff; background: var(--red-dark); }
.case.filtered-out { display: none; }
.filter-count { font-weight: 600; color: var(--text-3); margin-top: 1rem; }

/* Value tiles ----------------------------------------------------------------- */

.tile-row { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .tile-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1160px) { .tile-row { grid-template-columns: repeat(4, 1fr); } }
.tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.tile h3 { font-size: 1.05rem; font-weight: 800; }
.tile p { margin-top: 0.45rem; color: var(--text-2); font-size: 0.95rem; }
.tile.dark { background: var(--ink); border-color: var(--ink); color: #fff; position: relative; }
.tile.dark p { color: var(--on-dark-2); }
.tile.dark .cover-link { position: absolute; inset: 0; border-radius: inherit; }
.tile.dark .go { margin-top: 1rem; display: inline-flex; gap: 0.5rem; font-weight: 700; color: #fff; }

/* Topic pills ------------------------------------------------------------------ */

.pill-row { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; padding: 0; list-style: none; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border: 1px solid #d6dae1;
  border-radius: var(--radius-md);
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pill:hover { border-color: var(--red); color: var(--red-text); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.pill-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border: 1px solid #d6dae1;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pill-more:hover { border-color: var(--red); color: var(--red-text); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* Participants grid --------------------------------------------------------------- */

.participant-grid { margin-top: 3rem; display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .participant-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1160px) { .participant-grid { grid-template-columns: repeat(4, 1fr); } }

.participant {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}
.participant img { transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.participant:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.participant:hover img { transform: scale(1.05); }
.participant figure { margin: 0; }
.participant img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.participant figcaption { padding: 1rem 1.15rem 1.2rem; }
.participant .p-name { font-weight: 800; }
.participant .p-topic { display: block; margin-top: 0.15rem; font-size: 0.85rem; color: var(--text-2); }

/* How to watch ---------------------------------------------------------------------- */

.watch { background: var(--ink); color: #fff; }
.watch .eyebrow { color: #ff8a8b; }
.watch .section-title { color: #fff; }
.watch .lede { color: var(--on-dark-2); }
.watch-img { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-card); }
.watch-list { margin: 2rem 0 0; padding: 0; list-style: none; display: grid; gap: 1.1rem; }
.watch-list li { display: flex; gap: 1rem; align-items: flex-start; }
.watch-list .k { font-weight: 800; min-width: 8.5rem; }
.watch-list .v { color: var(--on-dark-2); }
.badge-row { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.badge-row .badge-chip {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.badge-row img { width: 15rem; max-width: 60vw; }

/* Host ------------------------------------------------------------------------------- */

.host-figure {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #17181c 0%, #2a2c33 100%);
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.host-figure img { width: min(20rem, 80%); height: auto; }

/* Real-photo panel (host sections, get-to-know) */
.photo-panel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.photo-panel img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 20%; display: block; }

/* Dark host section --------------------------------------------------------------------- */

.host-dark { background: var(--ink); color: #fff; }
.host-dark .section-title { color: #fff; }
.host-dark .lede { color: var(--on-dark-2); }
.host-dark .eyebrow { color: #ff8a8b; }

/* Section head row (title left, link right) ----------------------------------------------- */

.section-head { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 900px) { .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem; } }
.section-head .head-copy { max-width: 46rem; }

/* Stories ------------------------------------------------------------------------------ */

.story-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .story-grid { grid-template-columns: repeat(3, 1fr); } }
.story-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}
.story-card:hover,
.story-card:focus-within { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.story-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.story-card:hover img,
.story-card:focus-within img { transform: scale(1.05); }
.story-body { padding: 1.5rem; }
.story-meta { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.story-meta .cat { color: var(--red-text); }
.story-meta .time { color: var(--text-3); }
.story-card h3 { margin-top: 0.9rem; font-size: 1.35rem; font-weight: 900; }
.story-card p { margin-top: 0.6rem; color: var(--text-2); }
.story-card .cover-link { position: absolute; inset: 0; border-radius: inherit; }
.story-card:hover h3 { color: var(--red-text); }

/* Nominate band ------------------------------------------------------------------------- */

.nominate-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.nominate-inner { display: grid; gap: 2.5rem; padding: 2.5rem 1.75rem; }
@media (min-width: 900px) { .nominate-inner { grid-template-columns: 5fr 7fr; padding: 3.25rem 3rem; } }
.nominate-band h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 900; }
.nominate-band .sub { margin-top: 1rem; color: rgba(255, 255, 255, 0.9); max-width: 26rem; }
.steps { margin: 0 0 2rem; padding: 0; list-style: none; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; }
.steps .n { display: block; font-size: 1.6rem; font-weight: 900; }
.steps .t { display: block; margin-top: 0.2rem; font-weight: 800; }
.steps .d { display: block; margin-top: 0.3rem; color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; }

.lead-form { display: grid; gap: 1rem; }
@media (min-width: 640px) { .lead-form { grid-template-columns: 1fr 1fr; } .lead-form .full { grid-column: 1 / -1; } }
.lead-form label { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; font-weight: 700; }
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255, 255, 255, 0.6); }
.lead-form input:focus-visible,
.lead-form textarea:focus-visible { outline-color: #fff; background: rgba(255, 255, 255, 0.18); }
.lead-form .consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: rgba(255, 255, 255, 0.9); }
.lead-form .consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; }
.lead-form .consent a { color: #fff; }
.form-status { min-height: 1.4rem; font-weight: 600; }

/* Featured participants row ---------------------------------------------------------------- */

.logo-row { margin: 2.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .logo-row { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1160px) { .logo-row { grid-template-columns: repeat(8, 1fr); } }
.logo-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-2);
}

/* Click-to-load YouTube embed (no third-party requests until the user opts in) ------------------- */

.video-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-embed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .yt-load {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: linear-gradient(0deg, rgba(4, 4, 8, 0.72), rgba(4, 4, 8, 0.25));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.video-embed .yt-load .play-badge { position: static; transform: none; pointer-events: none; }
.video-embed .yt-load:hover .play-badge { transform: scale(1.1); }
.video-embed .yt-note { font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.75); max-width: 26rem; padding-inline: 1rem; text-align: center; }

/* Logo marquee (featured organizations feed) ---------------------------------------------------- */

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  /* starts at -50% and animates to 0, so the logos drift left to right */
  animation: marquee-scroll 70s linear infinite;
}
.logo-marquee:hover .marquee-track,
.logo-marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  /* still one single ticker row: no animation, swipe/scroll manually instead */
  .marquee-track { animation: none; }
  .logo-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; mask-image: none; -webkit-mask-image: none; }
  .marquee-track > span[aria-hidden="true"] { display: none !important; }
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  min-height: 7rem;
  padding: 1.4rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-2);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.marquee-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: #cbd5e1; color: var(--red-text); }
.marquee-item img {
  max-height: 4rem;
  width: auto;
  max-width: 11rem;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.marquee-item:hover img { filter: none; opacity: 1; }
.marquee-item img.invert { filter: invert(1) grayscale(1); }
.marquee-item:hover img.invert { filter: invert(1); }

/* Exit-intent modal ------------------------------------------------------------------------------- */

.exit-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 8, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.exit-modal {
  position: relative;
  width: min(30rem, 100%);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  padding: 2.5rem 2.25rem 2.25rem;
  text-align: center;
}
.exit-modal .onair { color: var(--red-text); justify-content: center; display: inline-flex; }
.exit-modal h2 { font-size: 1.7rem; font-weight: 900; margin-top: 0.9rem; }
.exit-modal p { margin-top: 0.8rem; color: var(--text-2); }
.exit-modal form { margin-top: 1.5rem; display: grid; gap: 0.8rem; text-align: left; }
.exit-modal label { font-size: 0.9rem; font-weight: 700; }
.exit-modal input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid #cbd5e1;
  font: inherit;
}
.exit-modal .exit-consent { font-size: 0.8rem; color: var(--text-3); }
.exit-modal .exit-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.exit-modal .exit-close:hover { background: var(--paper-2); }

/* Trivia ------------------------------------------------------------------------------------------- */

.trivia-shell { max-width: 46rem; margin-inline: auto; }
.trivia-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 2.25rem 2rem;
}
.trivia-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 800; font-size: 0.95rem; color: var(--text-2); }
.trivia-meta .score { color: var(--red-text); }
.trivia-timer { margin-top: 1.1rem; height: 0.6rem; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.trivia-timer-bar { height: 100%; width: 100%; border-radius: inherit; background: var(--red); transition: width 0.2s linear; }
.trivia-timer-bar.warn { background: #b45309; }
.trivia-q { margin-top: 1.6rem; font-size: 1.35rem; font-weight: 900; line-height: 1.3; }
.trivia-opts { margin: 1.6rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.8rem; }
.trivia-opt {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
.trivia-opt:hover:not(:disabled) { border-color: var(--red); transform: translateY(-2px); }
.trivia-opt:disabled { cursor: default; }
.trivia-opt .opt-key {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}
.trivia-opt.correct { border-color: #15803d; background: #f0fdf4; }
.trivia-opt.correct .opt-key { background: #15803d; color: #fff; }
.trivia-opt.wrong { border-color: var(--red); background: #fef2f2; }
.trivia-opt.wrong .opt-key { background: var(--red); color: #fff; }
.trivia-feedback { margin-top: 1.2rem; min-height: 3.4rem; font-weight: 600; color: var(--text-2); }
.trivia-actions { margin-top: 1rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.trivia-progress { display: flex; gap: 0.35rem; margin-top: 1.6rem; }
.trivia-progress span { flex: 1; height: 0.4rem; border-radius: 999px; background: var(--line); }
.trivia-progress span.done { background: var(--red); }
.trivia-final { text-align: center; }
.trivia-final .big-score { font-size: 3.2rem; font-weight: 900; color: var(--red-text); margin-top: 1rem; }

/* Footer v2: big social icons + centered producer block --------------------------------------------- */

.social-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.social-btn-lg:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.social-btn-lg svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }

.produced-by-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line-dark);
}
.produced-by-hero .pb-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.produced-by-hero a.pb-logo { display: inline-block; border-radius: var(--radius-sm); }
.produced-by-hero img { height: 5rem; width: auto; transition: transform 0.25s ease; }
.produced-by-hero a.pb-logo:hover img { transform: scale(1.05); }

/* FAQ ------------------------------------------------------------------------------------------ */

.faq-list { margin-top: 2.5rem; display: grid; gap: 1rem; max-width: 52rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--red-text); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 1.5rem 1.4rem; color: var(--text-2); max-width: 46rem; }

/* Footer ------------------------------------------------------------------------------------------ */

.site-footer { background: #000; color: #fff; }
.footer-main { display: grid; gap: 2rem; padding-block: 3rem; }
@media (min-width: 900px) { .footer-main { grid-template-columns: 4fr 5fr 3fr; gap: 2.5rem; } }
.footer-brand p { margin-top: 1.25rem; color: var(--on-dark-2); max-width: 22rem; }
.footer-cols { display: grid; gap: 1.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-h { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-3); }
.footer-cols ul { margin: 1.1rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.7rem; }
.footer-link { color: var(--on-dark-2); text-decoration: none; }
.footer-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.newsletter-form { margin-top: 1.25rem; display: grid; gap: 0.8rem; }
.newsletter-form label { font-size: 0.9rem; font-weight: 700; }
.newsletter-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-consent { font-size: 0.8rem; color: var(--on-dark-3); }
.newsletter-consent a { color: var(--on-dark-2); }

.footer-legal { border-top: 1px solid var(--line-dark); }
.footer-legal-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 2rem;
  text-align: center;
}
@media (min-width: 900px) { .footer-legal-inner { flex-direction: row; text-align: left; } }
.produced-by { display: flex; align-items: center; gap: 1rem; color: var(--on-dark-2); font-weight: 600; }
.produced-by .wbc {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  color: #fff;
}
.produced-by .wbc span { font-weight: 500; color: var(--on-dark-3); }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.9rem; color: var(--on-dark-3); }

/* Brand logo image ----------------------------------------------------------- */

.brand-logo { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo img { height: 3.1rem; width: auto; }
@media (min-width: 900px) { .brand-logo img { height: 3.5rem; } }

/* Hero background video -------------------------------------------------------- */

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}
@media (min-width: 900px) { .hero-controls { right: 2rem; bottom: 2rem; } }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0.5rem 0.9rem;
  gap: 0.45rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 10, 14, 0.72);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.icon-btn:hover { transform: translateY(-2px); }
.icon-btn:hover { background: rgba(10, 10, 14, 0.92); border-color: #fff; }

/* Sub-page hero ------------------------------------------------------------------ */

.page-hero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero .hero-bg img { object-position: center 35%; }
.page-hero-inner { position: relative; z-index: 2; padding-block: 4rem 3.5rem; max-width: 46rem; }
@media (min-width: 900px) { .page-hero-inner { padding-block: 5.5rem 4.5rem; } }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 900; }
.page-hero .hero-sub { margin-top: 1.25rem; }
.breadcrumbs { margin: 0 0 1.25rem; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: var(--on-dark-3); }
.breadcrumbs a { color: var(--on-dark-2); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--on-dark-3); }

/* Case studies ---------------------------------------------------------------------- */

.case-list { display: grid; gap: 2.5rem; margin-top: 3rem; }
.case {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 6rem;
}
@media (min-width: 900px) {
  .case { grid-template-columns: 5fr 7fr; }
  .case:nth-child(even) .case-media { order: 2; }
}
.case-media { position: relative; min-height: 16rem; }
.case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 2rem 1.75rem; }
@media (min-width: 900px) { .case-body { padding: 2.5rem 2.5rem; } }
.case-kicker { display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; align-items: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.case-kicker .topic { color: var(--red-text); }
.case-kicker .place { color: var(--text-3); }
.case h3 { margin-top: 0.9rem; font-size: 1.6rem; font-weight: 900; }
.case-body p { margin-top: 0.9rem; color: var(--text-2); }
.case-facts { margin: 1.4rem 0 0; padding: 1.1rem 1.3rem; border-left: 4px solid var(--red); background: var(--paper-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text); font-size: 0.95rem; }
.case-facts strong { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red-text); margin-bottom: 0.3rem; }

/* Jump grid (roster) -------------------------------------------------------------------- */

.jump-grid { margin: 2.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .jump-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1160px) { .jump-grid { grid-template-columns: repeat(4, 1fr); } }
.jump-grid a {
  display: block;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.jump-grid a:hover { border-color: var(--red); color: var(--red-text); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* Logo wall -------------------------------------------------------------------------------- */

.logo-wall { margin: 2.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); align-items: stretch; }
@media (min-width: 640px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1160px) { .logo-wall { grid-template-columns: repeat(7, 1fr); } }
.logo-wall li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  min-height: 5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.logo-wall li:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: #cbd5e1; }
.logo-wall img {
  max-height: 2.6rem;
  width: auto;
  max-width: 100%;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.15s ease, opacity 0.15s ease;
}
.logo-wall li:hover img { filter: none; opacity: 1; }
.logo-wall img.invert { filter: invert(1) grayscale(1); }
.logo-wall li:hover img.invert { filter: invert(1); }

/* People (about page) ------------------------------------------------------------------------ */

.person-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .person-grid { grid-template-columns: repeat(2, 1fr); } }
.person-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); }
.person-card .person-photo { background: linear-gradient(160deg, #17181c 0%, #2a2c33 100%); display: flex; justify-content: center; align-items: flex-end; min-height: 18rem; }
.person-card .person-photo img { width: min(16rem, 70%); }
.person-card .person-photo.photo-full { min-height: 0; display: block; }
.person-card .person-photo.photo-full img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 20%; }
.person-body { padding: 1.75rem; }
.person-body .role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-text); }
.person-body h3 { margin-top: 0.5rem; font-size: 1.6rem; font-weight: 900; }
.person-body p { margin-top: 0.8rem; color: var(--text-2); }

/* Press kit ------------------------------------------------------------------------------------ */

.asset-grid { margin-top: 2.5rem; display: grid; gap: 1.25rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .asset-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1160px) { .asset-grid { grid-template-columns: repeat(3, 1fr); } }
.asset-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}
.asset-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.asset-card .asset-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper-2);
  min-height: 8rem;
  padding: 1rem;
  margin-bottom: 1.1rem;
}
.asset-card .asset-preview.dark { background: var(--ink); }
.asset-card .asset-preview img { max-height: 6rem; width: auto; max-width: 100%; }
.asset-card h3 { font-size: 1.1rem; font-weight: 800; }
.asset-card p { margin-top: 0.4rem; color: var(--text-2); font-size: 0.95rem; flex: 1; }
.asset-card .btn { margin-top: 1.1rem; align-self: flex-start; }

.fact-table { margin-top: 2rem; width: 100%; border-collapse: collapse; max-width: 46rem; }
.fact-table th, .fact-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.fact-table th { width: 34%; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); font-weight: 700; }
.fact-table td { color: var(--text); }

/* Legal prose ------------------------------------------------------------------------------------ */

.prose { max-width: 46rem; }
.prose h2 { font-size: 1.45rem; font-weight: 900; margin-top: 2.75rem; }
.prose h3 { font-size: 1.1rem; font-weight: 800; margin-top: 1.9rem; }
.prose p, .prose li { margin-top: 1rem; color: var(--text-2); line-height: 1.75; }
.prose ul { padding-left: 1.4rem; }
.prose strong { color: var(--text); }
.prose .updated { font-size: 0.9rem; color: var(--text-3); }

/* Scroll reveal ---------------------------------------------------------------------------------------
   Elements get .reveal via JS (skipped entirely when the user prefers reduced
   motion), then .in when they enter the viewport. */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Floating TV chatbot (demo) -------------------------------------------------------------------------- */

.tvbot-wrap { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }

.tvbot-toggle {
  position: relative;
  width: 4.6rem;
  height: 4.9rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.tvbot-toggle:hover { transform: translateY(-4px) rotate(-3deg); }
.tvbot-body {
  position: absolute;
  left: 0; right: 0; top: 0.9rem;
  height: 3.1rem;
  background: var(--red);
  border: 3px solid #0b0b0d;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tvbot-screen {
  width: 2.7rem; height: 1.9rem;
  background: #0b0b0d;
  border-radius: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  padding-top: 0.25rem;
}
.tvbot-eyes { display: flex; gap: 0.5rem; }
.tvbot-eyes span { width: 0.32rem; height: 0.32rem; border-radius: 50%; background: #fff; transform-origin: center; }
.tvbot-eyes span.blink { animation: tvbot-blink 0.22s ease; }
@keyframes tvbot-blink { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.08); } }
.tvbot-smile { width: 0.9rem; height: 0.45rem; border: 2px solid #fff; border-top: 0; border-radius: 0 0 1rem 1rem; }
.tvbot-antenna { position: absolute; top: -0.1rem; left: 50%; width: 2px; height: 1rem; background: #0b0b0d; transform-origin: bottom; transition: background-color 0.3s ease; }
/* On dark backgrounds the antennas and feet flip to white (JS toggles .light) */
.tvbot-antenna.light { background: #fff; }
.tvbot-antenna.light::after { background: #fff; }
.tvbot-legs span { transition: background-color 0.3s ease; }
.tvbot-legs span.light { background: #fff; }
.tvbot-legs span.light::after { background: #fff; }
.tvbot-antenna.a1 { transform: translateX(-50%) rotate(-28deg); animation: tvbot-antenna1 3.2s ease-in-out infinite; }
.tvbot-antenna.a2 { transform: translateX(-50%) rotate(24deg); animation: tvbot-antenna2 3.7s ease-in-out infinite; }
@keyframes tvbot-antenna1 {
  0%, 100% { transform: translateX(-50%) rotate(-28deg); }
  50% { transform: translateX(-50%) rotate(-20deg); }
}
@keyframes tvbot-antenna2 {
  0%, 100% { transform: translateX(-50%) rotate(24deg); }
  50% { transform: translateX(-50%) rotate(17deg); }
}
/* Telly does an occasional clockwise 360 flip (JS toggles .flip at random) */
.tvbot-toggle.flip { animation: tvbot-flip 0.9s cubic-bezier(0.5, 0, 0.3, 1); }
@keyframes tvbot-flip {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tvbot-antenna.a1, .tvbot-antenna.a2 { animation: none; }
  .tvbot-toggle.flip { animation: none; }
  .tvbot-eyes span.blink { animation: none; }
}
.tvbot-antenna::after { content: ""; position: absolute; top: -0.24rem; left: -0.17rem; width: 0.38rem; height: 0.38rem; border-radius: 50%; background: #0b0b0d; transition: background-color 0.3s ease; }
.tvbot-legs { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; gap: 1.1rem; }
.tvbot-legs span { width: 3px; height: 0.9rem; background: #0b0b0d; border-radius: 2px; }
.tvbot-legs span::after { content: ""; position: absolute; margin-top: 0.75rem; margin-left: -0.22rem; width: 0.62rem; height: 0.2rem; border-radius: 2px; background: #0b0b0d; display: block; transition: background-color 0.3s ease; }
@media (prefers-reduced-motion: reduce) { .tvbot-eyes span { animation: none; } }

.tvbot-panel {
  width: min(21.5rem, calc(100vw - 2.5rem));
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tvbot-panel[hidden] { display: none; }
.tvbot-head { background: var(--ink); color: #fff; padding: 0.9rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.tvbot-head .t { font-weight: 900; }
.tvbot-head .demo-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-3); display: block; }
.tvbot-head button { border: 0; background: rgba(255, 255, 255, 0.12); color: #fff; border-radius: 0.5rem; padding: 0.35rem 0.7rem; font: inherit; font-size: 0.78rem; font-weight: 700; cursor: pointer; }
.tvbot-head button:hover { background: rgba(255, 255, 255, 0.25); }
.tvbot-msgs { padding: 1rem; display: grid; gap: 0.6rem; max-height: 17rem; overflow-y: auto; background: var(--paper-2); }
.tvbot-msg { max-width: 85%; padding: 0.6rem 0.85rem; border-radius: 0.9rem; font-size: 0.92rem; line-height: 1.45; }
.tvbot-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 0.25rem; justify-self: start; }
.tvbot-msg.user { background: var(--red); color: #fff; border-bottom-right-radius: 0.25rem; justify-self: end; }
.tvbot-msg a { color: var(--red-text); font-weight: 700; }
.tvbot-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0 1rem 0.9rem; background: var(--paper-2); }
.tvbot-chip { border: 1px solid #d6dae1; background: #fff; border-radius: 999px; padding: 0.4rem 0.8rem; font: inherit; font-size: 0.8rem; font-weight: 600; cursor: pointer; }
.tvbot-chip:hover { border-color: var(--red); color: var(--red-text); }
.tvbot-input { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid var(--line); background: #fff; }
.tvbot-input input { flex: 1; min-width: 0; padding: 0.6rem 0.8rem; border: 1px solid #cbd5e1; border-radius: 0.7rem; font: inherit; font-size: 0.92rem; }
.tvbot-input button { border: 0; background: var(--red); color: #fff; border-radius: 0.7rem; padding: 0.6rem 1rem; font: inherit; font-weight: 700; cursor: pointer; }
.tvbot-input button:hover { background: var(--red-dark); }

/* Active nav ---------------------------------------------------------------------------------------- */

.nav-link[aria-current="page"] { color: var(--red-text); }
.mobile-nav a[aria-current="page"] { color: var(--red-text); }

