/* ============================================================
   JourneyWell — Site Stylesheet
   Restyled to match JourneyWell Onboarding Style Guide:
   - Lime #CFF42A / Black / Paper cream
   - Helvetica Now Display 900 caps for display
   - Apple Garamond italic for editorial moments
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --black:        #000000;
  --ink:          #0a0a0a;
  --paper:        #f6f5f2;
  --paper-2:      #ffffff;
  --lime:         #CFF42A;
  --lime-dim:     rgba(207, 244, 42, 0.15);
  --lime-glow:    rgba(207, 244, 42, 0.35);
  --pink:         #ff2d8a;
  --purple:       #7c3aed;
  --blue:         #1f6bff;
  --cyan:         #14d3ff;
  --error:        #d61f4a;

  /* Lines */
  --line:         rgba(255, 255, 255, 0.10);
  --line-strong:  rgba(255, 255, 255, 0.22);
  --line-dk:      rgba(0, 0, 0, 0.10);
  --line-dk-strong: rgba(0, 0, 0, 0.22);

  /* Compatibility (chrome.js + existing HTML reference these) */
  --gold:         var(--lime);
  --gold-bright:  #CFF42A;
  --gold-dim:     var(--lime-dim);
  --gold-glow:    var(--lime-glow);
  --bg-primary:   var(--black);
  --bg-secondary: var(--ink);
  --bg-card:      rgba(255, 255, 255, 0.04);
  --bg-hover:     rgba(255, 255, 255, 0.08);
  --bg-input:     #ffffff;
  --bg-cream:     var(--paper);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-tertiary:  rgba(255, 255, 255, 0.55);
  --text-on-cream: #0a0a0a;
  --text-on-cream-muted: #4a4a4a;
  --border:        var(--line-strong);
  --border-subtle: var(--line);
  --border-on-cream: var(--line-dk);
  --green:         var(--lime);
  --red:           var(--error);

  /* Typography */
  --display-font: 'Helvetica Now Display', 'Helvetica Neue', 'Inter', Helvetica, Arial, sans-serif;
  --serif-font:   'Apple Garamond', 'ITC Garamond', Garamond, 'Hoefler Text', 'Times New Roman', serif;
  --mono-font:    ui-monospace, SFMono-Regular, 'JetBrains Mono', monospace;

  --radius-sm:    10px;
  --radius-md:    14px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --radius-xxl:   32px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--black);
  color: #fff;
}
body {
  font-family: var(--display-font);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Display headlines: 900 black, ALL CAPS, tight tracking */
.display,
.hero h1, .hero-tight h1,
.page-hero h1, .work-hero h1,
.section-title,
.final-cta h2 {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

/* Italic <em> in display headlines = lime + Apple Garamond (the editorial accent voice).
   NOTE: inline style="font-style:normal" overrides will keep their treatment; this hits all others. */
.hero h1 em, .hero-tight h1 em,
.page-hero h1 em, .work-hero h1 em,
.section-title em,
.final-cta h2 em {
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: -0.01em;
  text-transform: none;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 20px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: relative;
}
.logo {
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  text-decoration: none;
}
.logo .logo-mark {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.logo .logo-text { line-height: 1; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--display-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease-out;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--lime); }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; background: var(--lime);
  margin-top: 6px; border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .signin {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
}
.nav-cta .signin:hover { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-large {
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.btn-gold {
  background: var(--lime);
  color: #000;
  box-shadow: 0 8px 30px rgba(207, 244, 42, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(207, 244, 42, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
/* On cream sections — invert: black fill, lime text */
.btn-on-cream {
  background: #000;
  color: var(--lime);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.btn-on-cream:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.section-cream .btn-ghost {
  background: transparent;
  color: #000;
  border-color: var(--line-dk-strong);
}
.section-cream .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: #000;
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px 0 80px;
  position: relative;
  background:
    radial-gradient(1100px 500px at 78% 22%, rgba(31, 107, 255, 0.32) 0%, transparent 60%),
    radial-gradient(900px 600px at 18% 78%, rgba(124, 58, 237, 0.32) 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 100%, rgba(255, 45, 138, 0.20) 0%, transparent 60%),
    #000;
  border-bottom: 8px solid var(--lime);
}
.hero-tight { padding: 100px 0 60px; }
.hero h1 {
  font-size: clamp(54px, 9vw, 120px);
  margin-bottom: 28px;
  max-width: 14ch;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 800ms ease-out 100ms forwards;
}
.hero p.sub {
  font-family: var(--display-font);
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 40px;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 800ms ease-out 250ms forwards;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 800ms ease-out 400ms forwards;
}

/* Eyebrow pill — lime fill on dark, black fill on cream */
.hero-eyebrow,
.section-eyebrow,
.dark-card-eyebrow,
.drawer-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: #000;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-cream .section-eyebrow,
.section-cream .hero-eyebrow {
  background: #000; color: var(--lime);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Logo strip ---------- */
.logo-strip {
  margin-top: 96px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-strip-inner {
  display: flex; align-items: center; gap: 56px;
  justify-content: space-between; flex-wrap: wrap;
}
.logo-strip-label {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.5);
}
.brand-mark {
  height: 28px; width: 110px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

/* ---------- Section ---------- */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-cream {
  background: var(--paper);
  color: var(--text-on-cream);
}
.section-cream .section-title { color: var(--text-on-cream); }
.section-cream .section-lead { color: var(--text-on-cream-muted); }
.section-cream .display em,
.section-cream .section-title em,
.section-cream h1 em, .section-cream h2 em {
  color: #000;  /* on cream, italic em becomes black serif (per style guide mission pattern) */
}

.section-title {
  font-size: clamp(46px, 8vw, 100px);
  margin-bottom: 56px;
  max-width: 22ch;
  color: #fff;
}
.section-title.short-margin { margin-bottom: 32px; }
.section-lead {
  font-family: var(--display-font);
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 48px;
  margin-top: -32px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ---------- Pillar grid (3-card on cream) ---------- */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: #fff;
  border: 1px solid var(--line-dk);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.pillar-num {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; color: #000;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--lime);
  align-self: flex-start;
}
.pillar-title {
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #000;
}
.pillar-desc {
  font-size: 15px;
  color: var(--text-on-cream-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
}
.pillar-link {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  color: #000; transition: gap 200ms ease-out;
}
.pillar-link:hover { gap: 14px; }
.pillar-link::after { content: '→'; }

/* ---------- Dark card grid ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 540px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
.dark-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.dark-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.dark-card-eyebrow {
  margin-bottom: 20px;
}
.dark-card-title {
  font-family: var(--display-font);
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.dark-card-desc {
  font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.5;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
.stat-num {
  font-family: var(--display-font);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}
.stat-num .gold { color: var(--lime); }
.stat-label {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}

/* ---------- Comparison table (cream section) ---------- */
.compare-table {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-dk);
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-dk);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head .compare-cell {
  font-family: var(--display-font);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 24px 20px;
  color: #000;
}
.compare-cell {
  padding: 18px 20px; font-size: 14px;
  display: flex; align-items: center;
}
.compare-cell.row-label {
  font-family: var(--display-font);
  color: #000; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.compare-cell.center { justify-content: center; }
.compare-col-jw {
  background: rgba(207, 244, 42, 0.10);
}
.compare-col-jw.head {
  background: #000; color: var(--lime); font-weight: 900;
}
.compare-col-jw.head .compare-badge {
  margin-left: 8px;
  font-family: var(--display-font);
  font-size: 9px; padding: 4px 8px; border-radius: 999px;
  background: var(--lime); color: #000; letter-spacing: 0.12em; font-weight: 800;
}
.check {
  color: #000; font-size: 18px; font-weight: 900;
  background: var(--lime);
  width: 26px; height: 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.check.gold { background: var(--lime); color: #000; }
.x { color: #c8c8c8; font-size: 18px; }
.partial {
  font-family: var(--display-font);
  color: #6e6e6e; font-size: 11px; font-style: normal; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .compare-cell { padding: 12px 8px; font-size: 12px; }
}

/* ---------- Work strip / show cards ---------- */
.work-strip-wrap {
  margin: 0 -32px;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.work-strip-wrap::-webkit-scrollbar { display: none; }
.work-strip {
  display: flex; gap: 16px; padding-bottom: 8px;
}
.show-card {
  flex: 0 0 240px;
  /* Flex items default to `min-width: auto` (= min-content), which lets a
     long unbreakable title (e.g. RIVERSIDE_PREGNANCY_DIET_…) override the
     flex-basis and stretch the card wider than its peers. `min-width: 0`
     locks every tile to its declared basis so the row stays uniform. */
  min-width: 0;
  transition: transform 200ms ease;
  cursor: pointer;
}
/* Long underscore/dash filenames need a hard break point or they push the
   card width regardless of min-width. `overflow-wrap: anywhere` lets them
   wrap mid-token instead of forcing horizontal growth. */
.show-card .show-title { overflow-wrap: anywhere; }
.show-card:hover { transform: translateY(-6px); }
.show-cover {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
}
.show-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 30%, rgba(31, 107, 255, 0.55) 0%, rgba(124, 58, 237, 0.35) 35%, transparent 70%);
}
.show-cover.alt-1 { background: #0a0a0a; }
.show-cover.alt-2 { background: #0a0a0a; }
.show-cover.alt-3 { background: #0a0a0a; }
.show-cover.alt-4 { background: #0a0a0a; }
.show-cover.alt-5 { background: #0a0a0a; }
.show-cover.alt-6 { background: #0a0a0a; }
.show-cover.alt-1::after { background: radial-gradient(70% 60% at 50% 30%, rgba(255, 45, 138, 0.55) 0%, rgba(124, 58, 237, 0.35) 35%, transparent 70%); }
.show-cover.alt-2::after { background: radial-gradient(70% 60% at 50% 30%, rgba(207, 244, 42, 0.45) 0%, rgba(31, 107, 255, 0.25) 35%, transparent 70%); }
.show-cover.alt-3::after { background: radial-gradient(70% 60% at 50% 30%, rgba(255, 45, 138, 0.45) 0%, transparent 70%); }
.show-cover.alt-4::after { background: radial-gradient(70% 60% at 50% 30%, rgba(20, 211, 255, 0.45) 0%, rgba(31, 107, 255, 0.30) 35%, transparent 70%); }
.show-cover.alt-5::after { background: radial-gradient(70% 60% at 50% 30%, rgba(124, 58, 237, 0.55) 0%, rgba(255, 45, 138, 0.30) 35%, transparent 70%); }
.show-title {
  font-family: var(--display-font);
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.02em; line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}
.show-meta {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Work grid — full /work page */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.work-grid .show-card { flex: none; }

/* ---------- Testimonial ---------- */
.testimonial-quote-mark {
  font-family: var(--serif-font);
  font-style: italic;
  font-size: 120px; line-height: 1;
  color: var(--lime);
  font-weight: 400;
  margin-bottom: 12px;
  display: block;
}
.testimonial-quote {
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin-bottom: 40px;
  color: #fff;
}
.testimonial-attr {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex; align-items: center; gap: 16px;
}
.attr-avatar {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--lime);
  border: 0;
  box-shadow: 0 6px 24px rgba(207, 244, 42, 0.35);
}
.attr-name {
  font-family: var(--display-font);
  color: #fff; font-weight: 900; font-size: 14px;
  letter-spacing: 0.04em;
}
.attr-role {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 11px;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff;
  border: 1px solid var(--line-dk);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  gap: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.price-card.featured {
  background: #000;
  color: #fff;
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px; background: var(--lime);
}
.price-card.featured .price-name { color: var(--lime); }
.price-card.featured .price-num { color: #fff; }
.price-card.featured .price-desc { color: rgba(255, 255, 255, 0.78); }
.price-card.featured .price-period { color: rgba(255, 255, 255, 0.55); }
.price-card.featured .price-feature { color: rgba(255, 255, 255, 0.85); }
.price-card.featured .price-feature::before { color: var(--lime); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #000;
  font-family: var(--display-font);
  font-size: 10px; font-weight: 900; letter-spacing: 0.18em;
  padding: 6px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: #000;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
}
.price-num {
  font-family: var(--display-font);
  font-size: 60px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.92;
  color: #000;
}
.price-period {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-cream-muted);
}
.price-desc {
  font-size: 14px; color: var(--text-on-cream-muted);
  line-height: 1.6;
}
.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.price-feature {
  font-size: 14px; line-height: 1.5;
  display: flex; align-items: start; gap: 10px;
  color: #000;
}
.price-feature::before {
  content: '✓'; color: #000;
  background: var(--lime);
  width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
  margin-top: 1px;
}
.price-cta { margin-top: auto; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 140px 0;
  background:
    radial-gradient(700px 500px at 80% 0%, rgba(31, 107, 255, 0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(255, 45, 138, 0.18), transparent 60%),
    #000;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}
.final-cta h2 {
  font-size: clamp(50px, 8vw, 110px);
  letter-spacing: -0.04em; line-height: 0.92;
  margin-bottom: 20px;
  max-width: 16ch; margin-inline: auto;
  color: #fff;
}
.final-cta p {
  font-family: var(--display-font);
  font-size: 17px; color: rgba(255, 255, 255, 0.78);
  max-width: 50ch; margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.final-cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 48px;
  background: #000;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-meta {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-meta a { color: rgba(255, 255, 255, 0.55); }
.footer-meta a:hover { color: var(--lime); }

/* ---------- Floating button ---------- */
.float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: var(--lime); color: #000;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 12px; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 40px rgba(207, 244, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(207, 244, 42, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}
.float-btn::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: #000;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }

/* ---------- Drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 250ms ease-out;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: 50%; max-width: 640px;
  background: #000;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  display: flex; flex-direction: column;
  background-image:
    radial-gradient(700px 500px at 80% 0%, rgba(31, 107, 255, 0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(255, 45, 138, 0.18), transparent 60%);
  background-color: #000;
}
.drawer.open { transform: translateX(0); }
@media (max-width: 768px) { .drawer { width: 100%; max-width: 100%; } }
.drawer-header {
  padding: 24px 32px;
  border-bottom: 6px solid var(--lime);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-step-indicator {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime);
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 200ms ease;
}
.drawer-close:hover { background: rgba(255, 255, 255, 0.16); }
.drawer-body { padding: 40px 32px; flex: 1; overflow-y: auto; }
.drawer-progress {
  height: 3px; background: rgba(255, 255, 255, 0.12);
  border-radius: 999px; overflow: hidden; margin-bottom: 32px;
}
.drawer-progress-fill {
  height: 100%; width: 25%; background: var(--lime);
  border-radius: 999px; transition: width 300ms ease-out;
}
.drawer-eyebrow { margin-bottom: 16px; }
.drawer-eyebrow.gold { background: var(--lime); color: #000; }
.drawer-title {
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
}
.drawer-sub {
  font-family: var(--display-font);
  font-size: 15px; color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.drawer-options { display: flex; flex-direction: column; gap: 12px; }
.drawer-option {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; width: 100%;
}
.drawer-option:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.3);
}
.drawer-option.selected {
  background: var(--lime); border-color: var(--lime);
}
.drawer-option.selected .drawer-option-title,
.drawer-option.selected .drawer-option-desc,
.drawer-option.selected .drawer-option-arrow { color: #000; }
.drawer-option-text { display: flex; flex-direction: column; gap: 6px; }
.drawer-option-title {
  font-family: var(--display-font);
  font-size: 16px; font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.drawer-option-desc {
  font-family: var(--display-font);
  font-size: 13px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.drawer-option-arrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  transition: transform 150ms ease, color 150ms ease;
  flex-shrink: 0;
}
.drawer-option:hover .drawer-option-arrow { color: #fff; transform: translateX(2px); }
.drawer-form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.drawer-form-group label {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.drawer-form-group input,
.drawer-form-group textarea,
.drawer-form-group select {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #000;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.drawer-form-group input:focus,
.drawer-form-group textarea:focus,
.drawer-form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}
.drawer-form-group textarea { min-height: 110px; resize: vertical; }
.drawer-pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--display-font);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.drawer-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.drawer-pill.selected {
  background: var(--lime);
  border-color: var(--lime);
  color: #000;
}
/* Studio hour selector — two-line pill with hours + price */
.drawer-pill.studio-hour-pill {
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  min-width: 84px;
  align-items: center;
  text-align: center;
}
.drawer-pill.studio-hour-pill .hr {
  font-size: 14px; font-weight: 900; letter-spacing: 0.04em;
  line-height: 1;
}
.drawer-pill.studio-hour-pill .pr {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  opacity: 0.7;
  line-height: 1;
}
.drawer-pill.studio-hour-pill.selected .pr {
  opacity: 1;
}
.drawer-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.drawer-back {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex; align-items: center; gap: 8px;
}
.drawer-back:hover { color: #fff; }
.drawer-back[disabled] { opacity: 0.4; pointer-events: none; }
.drawer-step { display: none; }
.drawer-step.active { display: block; }

/* Full-page form mode — used on /get-started.html.
   Drawer takes the full viewport (no slide-in) and is centered. */
body.full-page-form { background: #000; }
body.full-page-form .nav,
body.full-page-form .footer,
body.full-page-form .float-btn { display: none; }
body.full-page-form .drawer-overlay { display: none; }
body.full-page-form .drawer {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  min-height: 100vh;
  transform: none;
  border-left: none;
  border-right: none;
}
body.full-page-form .full-page-mast {
  text-align: center;
  padding: 56px 24px 12px;
}
body.full-page-form .full-page-mast .logo {
  display: inline-flex;
  font-size: 22px;
}

/* Hamburger + mobile nav drawer */
.nav-hamburger { display: none; }
.mobile-nav { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .signin { display: none; }

  /* Tighten right-cluster so the hamburger has room without crowding the CTA. */
  .nav-cta { gap: 8px; }
  .nav-cta .btn-gold { padding: 10px 14px; font-size: 12px; }

  .nav-hamburger {
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 8px;
    cursor: pointer; padding: 0; gap: 5px;
  }
  .nav-hamburger .hamburger-bar {
    width: 18px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 220ms ease, opacity 160ms ease;
  }
  body.mobile-nav-open .nav-hamburger .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mobile-nav-open .nav-hamburger .hamburger-bar:nth-child(2) { opacity: 0; }
  body.mobile-nav-open .nav-hamburger .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    max-height: 0;
    transition: max-height 280ms cubic-bezier(.2,.7,.2,1);
  }
  body.mobile-nav-open .mobile-nav { max-height: calc(100vh - 72px); }
  .mobile-nav a {
    font-family: var(--display-font);
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav a.active { color: var(--lime); }

  /* Don't let the page scroll under the open menu. */
  body.mobile-nav-open { overflow: hidden; }
}

@media (max-width: 380px) {
  /* On really small phones, drop the Get Started text-button so the hamburger always fits. */
  .nav-cta .btn-gold { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .logo-strip-inner { gap: 24px; justify-content: flex-start; }
  .brand-mark { width: 80px; height: 22px; }
  .section, .section-tight { padding: 80px 0; }
  .final-cta { padding: 100px 0; }
  .float-btn { bottom: 16px; right: 16px; padding: 12px 18px; }
}

/* ---------- Utilities ---------- */
.gold { color: var(--lime); }
.muted { color: rgba(255, 255, 255, 0.7); }
.section-cream .muted { color: var(--text-on-cream-muted); }
.tiny-muted { color: rgba(255, 255, 255, 0.5); }
.center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.flex-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Page-specific blocks
   ============================================================ */

/* Process / step list (vertical) */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--line-dk);
  align-items: start;
}
.section-cream .process-item { border-bottom-color: var(--line-dk); }
.process-item:last-child { border-bottom: none; }
.process-item-num {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 900;
  color: #000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--lime);
  border-radius: 999px;
  align-self: start;
  display: inline-block;
  width: max-content;
}
.process-item-title {
  font-family: var(--display-font);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #000;
}
.process-item-desc {
  font-size: 15px; color: var(--text-on-cream-muted);
  line-height: 1.7; max-width: 60ch;
}

/* Authority — content multiplication grid */
.amplify-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
@media (max-width: 900px) { .amplify-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .amplify-grid { grid-template-columns: repeat(2, 1fr); } }
.amplify-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 150ms ease, border-color 150ms ease;
  min-height: 120px;
}
.amplify-item:hover {
  background: rgba(207, 244, 42, 0.08);
  border-color: var(--lime);
}
.amplify-num {
  font-family: var(--display-font);
  font-size: 36px; font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.03em; line-height: 0.92;
}
.amplify-label {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
}

/* Studio — gallery / spec grid */
.studio-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 12px;
  height: 480px;
}
@media (max-width: 768px) {
  .studio-gallery { grid-template-columns: 1fr; height: auto; }
  .studio-gallery > div { aspect-ratio: 16/10; }
}
.studio-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a center/cover no-repeat;
  position: relative;
}
.studio-tile.tall { grid-row: span 2; }
.studio-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 30%, rgba(31, 107, 255, 0.40) 0%, rgba(124, 58, 237, 0.25) 35%, transparent 70%);
}
.studio-tile.t-1 { background-image: url("img/studio/control-room.jpg"); }
.studio-tile.t-2 { background-image: url("img/studio/2-mic.jpg"); }
.studio-tile.t-3 { background-image: url("img/studio/solo-booth.jpg"); }
.studio-tile.t-4 { background-image: url("img/studio/multicam.jpg"); }
.studio-tile.t-5 { background-image: url("img/studio/lounge.jpg"); }
/* Tiles with photos: replace the colorful blob with a dark bottom-to-
   transparent overlay so the data-label text stays legible against the
   photo's lower edge. */
.studio-tile.t-1::before,
.studio-tile.t-2::before,
.studio-tile.t-3::before,
.studio-tile.t-4::before,
.studio-tile.t-5::before {
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.studio-tile::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--display-font);
  font-size: 11px; color: #fff; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 800;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 10px; border-radius: 999px;
}

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-cell {
  background: #000; padding: 28px 32px;
}
.spec-cell-label {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 12px;
}
.spec-cell-value {
  font-family: var(--display-font);
  font-size: 18px; font-weight: 900; letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}

/* FAQ */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.section-cream .faq-list { border-top-color: var(--line-dk); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.section-cream .faq-item { border-bottom-color: var(--line-dk); }
.faq-q {
  font-family: var(--display-font);
  font-size: 18px; font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: inherit;
}
.faq-q::after {
  content: '+';
  background: var(--lime); color: #000;
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  transition: transform 200ms ease-out;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-family: var(--display-font);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
  display: none;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}
.section-cream .faq-a { color: var(--text-on-cream-muted); }
.faq-item.open .faq-a { display: block; }

/* Page hero variants */
.page-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(900px 500px at 78% 22%, rgba(31, 107, 255, 0.28) 0%, transparent 60%),
    radial-gradient(800px 600px at 18% 88%, rgba(124, 58, 237, 0.28) 0%, transparent 60%),
    #000;
}
.page-hero h1 {
  font-size: clamp(46px, 8vw, 100px);
  margin-bottom: 28px;
  max-width: 18ch;
  color: #fff;
}
.page-hero p {
  font-family: var(--display-font);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* WORK PAGE — Spotify-style rows */
.row-section { padding: 40px 0; }
.row-section:first-of-type { padding-top: 32px; }
.row-header {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 20px; gap: 16px;
}
.row-title {
  font-family: var(--display-font);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900; letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.row-title:hover { color: var(--lime); }
.row-title .row-arrow {
  font-size: 20px; opacity: 0;
  transition: opacity 150ms ease-out;
}
.row-title:hover .row-arrow { opacity: 1; }
.row-meta,
.row-link {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}
.row-link:hover { color: var(--lime); }

/* Play overlay */
.show-card.playable .show-cover { cursor: pointer; }
.show-card.playable .show-cover .play-overlay {
  position: absolute; bottom: 12px; right: 12px;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--lime); color: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px) scale(0.92);
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0 8px 24px rgba(207, 244, 42, 0.35);
  font-size: 18px; font-weight: 900;
  z-index: 2;
}
.show-card.playable:hover .show-cover .play-overlay {
  opacity: 1; transform: translateY(0) scale(1);
}
.show-card.playable .show-cover { background-color: #0a0a0a; }
.show-card .show-cover img,
.show-card .show-cover video.card-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; position: absolute; inset: 0;
  background: #0a0a0a;
}
.show-card .show-cover video.card-video { z-index: 1; }
.show-card .show-cover .play-overlay { z-index: 3; }

/* WORK page hero */
.work-hero {
  padding: 110px 0 60px;
  background:
    radial-gradient(1100px 500px at 78% 22%, rgba(31, 107, 255, 0.32) 0%, transparent 60%),
    radial-gradient(900px 600px at 18% 78%, rgba(124, 58, 237, 0.32) 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 100%, rgba(255, 45, 138, 0.20) 0%, transparent 60%),
    #000;
  border-bottom: 8px solid var(--lime);
}
.work-hero h1 {
  font-size: clamp(54px, 9vw, 120px);
  margin-bottom: 24px;
  color: #fff;
}
.work-hero p {
  font-family: var(--display-font);
  font-size: 18px; color: rgba(255, 255, 255, 0.78);
  max-width: 60ch; line-height: 1.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.work-hero-stats {
  display: flex; gap: 32px; margin-top: 36px;
  flex-wrap: wrap;
}
.work-hero-stat {
  display: flex; align-items: baseline; gap: 8px;
}
.work-hero-stat strong {
  font-family: var(--display-font);
  font-size: 28px; font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.work-hero-stat span {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55);
}

/* DETAIL MODAL */
.detail-modal-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transition: opacity 250ms ease-out;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.detail-modal-overlay.open { opacity: 1; pointer-events: auto; }
.detail-modal {
  background: #0a0a0c;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  max-width: 1100px; width: 100%;
  max-height: 92vh; overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  display: grid; grid-template-columns: 1.5fr 1fr;
}
.detail-modal-overlay.open .detail-modal { transform: translateY(0) scale(1); }
@media (max-width: 900px) {
  .detail-modal { grid-template-columns: 1fr; max-height: 96vh; overflow-y: auto; }
}
.detail-player {
  background: #000; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.detail-player video {
  width: 100%; height: 100%; object-fit: contain;
  background: #000;
}
.detail-player .player-poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.detail-player .player-poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.detail-player .player-play {
  position: relative; z-index: 2;
  width: 80px; height: 80px; border-radius: 999px;
  background: var(--lime); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; cursor: pointer;
  font-weight: 900;
  transition: transform 200ms ease-out;
  box-shadow: 0 12px 40px rgba(207, 244, 42, 0.35);
}
.detail-player .player-play:hover { transform: scale(1.06); }
.detail-info {
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.detail-info-eyebrow {
  display: inline-flex; align-self: flex-start;
  background: var(--lime); color: #000;
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.detail-info-title {
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
  color: #fff;
}
.detail-info-meta {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.detail-info-meta span::after {
  content: '·'; margin-left: 12px; color: rgba(255, 255, 255, 0.35);
}
.detail-info-meta span:last-child::after { content: ''; }
.detail-info-desc {
  font-family: var(--display-font);
  font-size: 14px; color: rgba(255, 255, 255, 0.78); line-height: 1.7;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.detail-info-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.detail-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-family: var(--display-font);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.detail-close {
  position: absolute; top: 20px; right: 20px; z-index: 90;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.7); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  transition: background 150ms ease;
}
.detail-close:hover { background: #000; border-color: var(--lime); }

/* Work filter pills */
.work-filter-bar {
  position: sticky; top: 72px; z-index: 30;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.work-filter-pills {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.work-filter-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.work-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.work-filter-pill.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

/* Brand chip */
.brand-chip {
  background: var(--lime); color: #000;
  font-family: var(--display-font);
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}

/* About — team grid */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { display: flex; flex-direction: column; gap: 16px; }
.team-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: #0a0a0a;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 30%, rgba(31, 107, 255, 0.40) 0%, rgba(124, 58, 237, 0.25) 35%, transparent 70%);
}
.team-photo.alt-1::after { background: radial-gradient(70% 60% at 50% 30%, rgba(255, 45, 138, 0.45) 0%, rgba(124, 58, 237, 0.30) 35%, transparent 70%); }
.team-photo.alt-2::after { background: radial-gradient(70% 60% at 50% 30%, rgba(207, 244, 42, 0.30) 0%, rgba(31, 107, 255, 0.20) 35%, transparent 70%); }
.team-photo.alt-3::after { background: radial-gradient(70% 60% at 50% 30%, rgba(20, 211, 255, 0.40) 0%, rgba(31, 107, 255, 0.25) 35%, transparent 70%); }
.team-name {
  font-family: var(--display-font);
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.team-role {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.team-bio {
  font-size: 14px; color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* ============================================================
   JW PROMO — In-house ad / CTA component system
   ------------------------------------------------------------
   Three variants:
     .jw-promo-card      → fits in card grids, native to feed
     .jw-promo-band      → full-width interstitial slab
     .jw-promo-inprose   → inline lime-rule break inside articles
   Each is keyboard accessible (button or <a>) and opens the
   chrome.js drawer via [data-open-drawer-with="<path>"].
   ============================================================ */

/* Shared microbrand label that marks every promo as JW's own */
.jw-promo-brandtag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display-font);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.jw-promo-brandtag::before {
  content: ''; width: 6px; height: 6px; border-radius: 1px;
  background: var(--lime);
  display: inline-block;
}

/* ---------- 1. PROMO CARD (in-feed) ---------- */
.jw-promo-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(207, 244, 42, 0.08) 0%, rgba(255, 255, 255, 0.04) 60%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}
.jw-promo-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(207, 244, 42, 0.12);
}
.jw-promo-card-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.jw-promo-card-title {
  font-family: var(--display-font);
  font-size: 24px; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.jw-promo-card-title em {
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  text-transform: none;
  letter-spacing: -0.01em;
}
.jw-promo-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.jw-promo-card-cta {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 200ms ease;
  align-self: flex-start;
}
.jw-promo-card:hover .jw-promo-card-cta { gap: 14px; }
.jw-promo-card-cta::after { content: '→'; }

/* Cream variant — for cream sections */
.section-cream .jw-promo-card,
.jw-promo-card.cream {
  background: #fff;
  border-color: var(--line-dk);
}
.section-cream .jw-promo-card:hover,
.jw-promo-card.cream:hover {
  border-color: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.section-cream .jw-promo-card-eyebrow,
.jw-promo-card.cream .jw-promo-card-eyebrow { color: #000; }
.section-cream .jw-promo-card-title,
.jw-promo-card.cream .jw-promo-card-title { color: #000; }
.section-cream .jw-promo-card-title em,
.jw-promo-card.cream .jw-promo-card-title em { color: #000; }
.section-cream .jw-promo-card-desc,
.jw-promo-card.cream .jw-promo-card-desc { color: var(--text-on-cream-muted); }
.section-cream .jw-promo-card-cta,
.jw-promo-card.cream .jw-promo-card-cta { color: #000; }

/* ---------- 2. PROMO BAND (full-width interstitial) ---------- */
.jw-promo-band {
  padding: 72px 0;
  position: relative;
}
.jw-promo-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .jw-promo-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .jw-promo-band { padding: 56px 0; }
}
.jw-promo-band-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.jw-promo-band-title {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.jw-promo-band-title em {
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}
.jw-promo-band-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
}
.jw-promo-band-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: flex-end;
}
@media (max-width: 900px) {
  .jw-promo-band-ctas { justify-content: flex-start; }
}

/* Lime variant: high-impact, makes the page jump */
.jw-promo-band.lime {
  background: var(--lime);
  color: #000;
}
.jw-promo-band.lime .jw-promo-band-eyebrow {
  background: #000; color: var(--lime);
  padding: 7px 14px; border-radius: 999px;
}
.jw-promo-band.lime .jw-promo-band-title { color: #000; }
.jw-promo-band.lime .jw-promo-band-title em { color: #000; font-style: italic; }
.jw-promo-band.lime .jw-promo-band-desc { color: rgba(0, 0, 0, 0.78); }

/* Dark variant: blends into dark sections, lime accents */
.jw-promo-band.dark {
  background:
    radial-gradient(900px 400px at 80% 20%, rgba(207, 244, 42, 0.10) 0%, transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(31, 107, 255, 0.12) 0%, transparent 60%),
    #0a0a0a;
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.jw-promo-band.dark .jw-promo-band-eyebrow {
  background: var(--lime); color: #000;
  padding: 7px 14px; border-radius: 999px;
}
.jw-promo-band.dark .jw-promo-band-title { color: #fff; }
.jw-promo-band.dark .jw-promo-band-title em { color: var(--lime); }
.jw-promo-band.dark .jw-promo-band-desc { color: rgba(255, 255, 255, 0.78); }

/* Cream variant: warm, on-brand pause */
.jw-promo-band.cream {
  background: var(--paper);
  color: var(--text-on-cream);
}
.jw-promo-band.cream .jw-promo-band-eyebrow {
  background: #000; color: var(--lime);
  padding: 7px 14px; border-radius: 999px;
}
.jw-promo-band.cream .jw-promo-band-title { color: #000; }
.jw-promo-band.cream .jw-promo-band-title em { color: #000; }
.jw-promo-band.cream .jw-promo-band-desc { color: var(--text-on-cream-muted); }

/* Buttons inside lime bands invert: black with lime hover ring */
.jw-promo-band.lime .btn-gold {
  background: #000;
  color: var(--lime);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.jw-promo-band.lime .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.jw-promo-band.lime .btn-ghost {
  background: transparent; color: #000;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.jw-promo-band.lime .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #000;
}

/* ---------- 3. PROMO IN-PROSE (inline within articles) ---------- */
.jw-promo-inprose {
  display: block;
  margin: 36px 0;
  padding: 22px 24px 22px 26px;
  background: rgba(207, 244, 42, 0.05);
  border: 1px solid rgba(207, 244, 42, 0.18);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius-md);
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.jw-promo-inprose:hover {
  background: rgba(207, 244, 42, 0.08);
  border-color: rgba(207, 244, 42, 0.36);
  transform: translateX(2px);
}
.jw-promo-inprose-eyebrow {
  font-family: var(--display-font);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.jw-promo-inprose-title {
  font-family: var(--display-font);
  font-size: 17px; font-weight: 900;
  letter-spacing: -0.01em; line-height: 1.25;
  text-transform: none;
  color: #fff;
  margin-bottom: 6px;
}
.jw-promo-inprose-title em {
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: -0.005em;
}
.jw-promo-inprose-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 10px;
}
.jw-promo-inprose-cta {
  font-family: var(--display-font);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 200ms ease;
}
.jw-promo-inprose:hover .jw-promo-inprose-cta { gap: 14px; }
.jw-promo-inprose-cta::after { content: '→'; }

/* ---------- BLOG POST RAIL — extra promo card variant ---------- */
.blog-post-rail-card.lime {
  background: var(--lime);
  border-color: var(--lime);
}
.blog-post-rail-card.lime .blog-post-rail-eyebrow { color: #000; }
.blog-post-rail-card.lime .blog-post-rail-title { color: #000; }
.blog-post-rail-card.lime .blog-post-rail-desc { color: rgba(0, 0, 0, 0.78); }
.blog-post-rail-card.lime .blog-post-rail-cta {
  background: #000; color: var(--lime); border-color: #000;
}

/* ============================================================
   WORK PAGE — CHANNEL LAYOUT
   Full redesign: feels like a YouTube/Spotify channel rather
   than a website. Channel header, pinned hero piece, sticky
   tabs, multiple content rows (Featured / Episodes / Shorts /
   Shows / Behind the scenes), inline "about this channel"
   strip, persistent mini-player.
   ============================================================ */

/* CHANNEL HEADER (banner) */
.channel-header {
  position: relative;
  padding: 80px 0 0;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(207, 244, 42, 0.10) 0%, transparent 60%),
    radial-gradient(800px 600px at 12% 80%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
    radial-gradient(700px 600px at 95% 100%, rgba(255, 45, 138, 0.16) 0%, transparent 60%),
    #050505;
}
.channel-banner {
  position: relative;
  padding: 40px 0 48px;
}
.channel-identity {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.channel-avatar {
  width: 120px; height: 120px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--lime) 0%, #CFF42A 100%);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font);
  font-weight: 900; font-size: 44px;
  letter-spacing: -0.04em;
  flex: none;
  box-shadow: 0 16px 48px rgba(207, 244, 42, 0.30), inset 0 0 0 4px rgba(0,0,0,0.05);
}
.channel-meta { display: flex; flex-direction: column; gap: 10px; min-width: 0; flex: 1; }
.channel-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}
.channel-name {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
}
.channel-name em {
  font-family: var(--serif-font);
  font-style: italic; font-weight: 400;
  color: var(--lime);
  text-transform: none;
}
.channel-tagline {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  letter-spacing: 0;
  text-transform: none;
}
.channel-stats {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-family: var(--display-font);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.channel-stats strong { color: #fff; font-weight: 900; margin-right: 6px; }
.channel-stats .dot {
  width: 4px; height: 4px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.30);
}
.channel-ctas { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .channel-header { padding-top: 48px; }
  .channel-avatar { width: 88px; height: 88px; font-size: 32px; }
  .channel-banner { padding: 24px 0 36px; }
}

/* HERO PIECE (pinned video) */
.hero-piece-section {
  padding: 8px 0 40px;
  background: #050505;
  border-bottom: 1px solid var(--line);
}
.hero-piece-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .hero-piece-grid { grid-template-columns: 1fr; }
}
.hero-piece-player {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--line);
  cursor: pointer;
}
.hero-piece-player video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-piece-player::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.hero-piece-overlay {
  position: absolute;
  left: 20px; top: 20px;
  display: flex; gap: 8px; z-index: 2;
}
.hero-piece-badge {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #000;
  background: var(--lime);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(207, 244, 42, 0.30);
}
.hero-piece-play-cta {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--lime); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  box-shadow: 0 12px 32px rgba(207, 244, 42, 0.40);
  z-index: 2;
}
.hero-piece-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 16px 8px;
}
.hero-piece-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.hero-piece-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.hero-piece-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  max-width: 48ch;
}
.hero-piece-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.hero-piece-meta > span {
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-piece-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* STICKY CHANNEL TABS */
.channel-tabs {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.channel-tabs-inner {
  display: flex; gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.channel-tabs-inner::-webkit-scrollbar { display: none; }
.channel-tab {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}
.channel-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.channel-tab.active {
  background: var(--lime);
  color: #000;
}

/* CHANNEL SECTIONS (rows) */
.channel-section {
  padding: 44px 0 12px;
  scroll-margin-top: 132px;
}
.channel-section + .channel-section { padding-top: 28px; }
.channel-section .row-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.channel-section .row-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

/* Episode strip — wider 16:9 cards (long-form) */
.work-strip.episode-strip .show-card { flex: 0 0 320px; }
.work-strip.episode-strip .show-cover { aspect-ratio: 16/9; }

/* Shorts strip — vertical 9:16 cards */
.work-strip.shorts-strip .show-card { flex: 0 0 200px; }
.work-strip.shorts-strip .show-cover { aspect-ratio: 9/16; }

/* SHOW ROWS — each brand renders like every other channel row (title + strip)
   so the alignment matches Featured / Episodes / Shorts / BTS. */
.show-rows { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.show-row { /* outer wrapper — inner .container takes care of width */
  padding: 0;
}
/* Small brand avatar that sits next to the row title */
.row-show-head {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.row-show-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--lime) 0%, #CFF42A 100%);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font);
  font-weight: 900; font-size: 14px;
  letter-spacing: -0.02em;
  flex: none;
  box-shadow: 0 4px 12px rgba(207, 244, 42, 0.20);
}

/* ABOUT THIS CHANNEL inline strip */
.channel-about {
  margin: 64px 0;
  padding: 0;
}
.channel-about-inner {
  background: linear-gradient(135deg, #0d0d0d 0%, #050505 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 900px) {
  .channel-about-inner { grid-template-columns: 1fr; padding: 24px; }
}
.channel-about-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.channel-about h3 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.channel-about p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  text-transform: none;
}
.channel-about-ctas { display: grid; gap: 8px; }
.about-cta {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.about-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--lime);
  transform: translateX(4px);
}
.about-cta strong {
  font-family: var(--display-font);
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}
.about-cta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  text-transform: none;
}

/* SUBSCRIBE / final CTA band */
.channel-subscribe {
  padding: 64px 0 96px;
  border-top: 1px solid var(--line);
  background: #050505;
}
.subscribe-card {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  background: var(--lime);
  color: #000;
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 800px) {
  .subscribe-card { grid-template-columns: 1fr; padding: 28px; }
}
.subscribe-eyebrow {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
  opacity: 0.7;
}
.subscribe-card h2 {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
}
.subscribe-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.74);
  letter-spacing: 0;
  text-transform: none;
  max-width: 56ch;
}
.subscribe-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe-card .btn-gold {
  background: #000; color: var(--lime);
  border: 1px solid #000;
}
.subscribe-card .btn-gold:hover { background: #1a1a1a; }
.subscribe-card .btn-ghost {
  background: transparent; color: #000;
  border: 1px solid #000;
}
.subscribe-card .btn-ghost:hover { background: rgba(0,0,0,0.06); }

/* MINI PLAYER (docked bottom-right) */
.mini-player {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 380px;
  z-index: 90;
  background: #0a0a0c;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(207, 244, 42, 0.15);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1), opacity 240ms ease-out;
}
.mini-player.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.mini-player[hidden] { display: none; }
.mini-player-video {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.mini-player-video video {
  width: 100%; height: 100%; object-fit: contain;
  background: #000;
}
.mini-player-info {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}
.mini-player-title {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-player-meta {
  font-family: var(--display-font);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.mini-player-close,
.mini-player-expand {
  position: absolute;
  top: 6px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 150ms ease;
}
.mini-player-close { right: 6px; }
.mini-player-expand { right: 40px; }
.mini-player-close:hover,
.mini-player-expand:hover { background: rgba(0,0,0,0.85); }
@media (max-width: 600px) {
  .mini-player { right: 8px; bottom: 8px; width: calc(100vw - 16px); max-width: 320px; }
}

/* ============================================================
   REELS FEED — full-immersive TikTok/IG-style vertical player.
   Mobile = full-bleed; desktop = centered 9:16 frame on dimmed bg.
   ============================================================ */

.reels-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  background: #000;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease-out;
  display: flex; align-items: center; justify-content: center;
}
.reels-overlay.open { opacity: 1; pointer-events: auto; }
.reels-overlay[hidden] { display: none; }

/* Stage wraps the frame so long-form can append meta below it. */
.reels-stage { display: flex; flex-direction: column; align-items: center; }
/* Default (shorts) mode — long-form-only elements are hidden. */
.lf-meta, .lf-upnext { display: none; }

/* LONG-FORM mode — YouTube-style watch page (big player + meta below + sidebar). */
.reels-overlay.long-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  justify-content: stretch;
  padding: 24px 24px 24px 48px;
  gap: 24px;
  overflow-y: auto;
}
.reels-overlay.long-form .reels-backdrop {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.reels-overlay.long-form .reels-stage {
  align-items: stretch;
  width: 100%;
}
.reels-overlay.long-form .reels-frame.is-horizontal {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16/9;
  margin: 0;
}
.reels-overlay.long-form .reels-frame.is-vertical {
  width: min(420px, 100%);
  margin: 0 auto;
}
/* Hide the floating chrome inside slides — meta goes below the frame instead. */
.reels-overlay.long-form .reels-actions,
.reels-overlay.long-form .reels-info {
  display: none;
}
/* Nav arrows aren't needed in long-form (Up next list handles navigation). */
.reels-overlay.long-form .reels-nav-up,
.reels-overlay.long-form .reels-nav-down { display: none; }

/* META PANEL (below the player) */
.reels-overlay.long-form .lf-meta {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  color: #fff;
}
.lf-meta-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
}
.lf-meta-row {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.lf-meta-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--lime), #CFF42A);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font);
  font-weight: 900; font-size: 14px;
  letter-spacing: -0.02em;
  flex: none;
}
.lf-meta-channel { display: flex; flex-direction: column; min-width: 0; flex: 1 0 auto; }
.lf-meta-handle {
  font-family: var(--display-font);
  font-size: 15px; font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.lf-meta-channel-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.1;
}
.lf-meta-subscribe {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
  padding: 9px 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background 150ms ease;
}
.lf-meta-subscribe:hover { background: rgba(255,255,255,0.85); }
.lf-meta-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
.lf-meta-btn {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.lf-meta-btn:hover { background: rgba(255,255,255,0.18); }
.lf-meta-btn.active { background: var(--lime); color: #000; }
.lf-meta-btn.cta {
  background: var(--lime); color: #000;
  font-weight: 800;
}
.lf-meta-btn.cta:hover { background: #CFF42A; }
.lf-meta-stats {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.lf-meta-desc {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  max-width: 80ch;
}

/* UP NEXT SIDEBAR */
.reels-overlay.long-form .lf-upnext {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 0;
  min-height: 0;
}
.lf-upnext-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}
.lf-upnext-list {
  display: flex; flex-direction: column; gap: 10px;
}
.upnext-card {
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  text-align: left;
  border-radius: var(--radius-md);
  transition: background 150ms ease;
}
.upnext-card:hover { background: rgba(255,255,255,0.05); }
.upnext-card.active { background: rgba(207, 244, 42, 0.10); border: 1px solid rgba(207, 244, 42,0.30); }
.upnext-thumb {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
}
.upnext-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.upnext-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 4px 0; }
.upnext-title {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.upnext-meta {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Mobile fallback for long-form — stack everything */
@media (max-width: 900px) {
  .reels-overlay.long-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

/* Desktop: dimmed surround + centered frame.
   We use a backdrop with a subtle blur of the current slide's thumbnail. */
.reels-backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 50%, rgba(207, 244, 42, 0.06) 0%, transparent 60%),
    #000;
  z-index: 0;
}
.reels-frame {
  position: relative;
  z-index: 1;
  /* Default — vertical 9:16 (shorts) */
  width: min(420px, calc(100vh * 9 / 16 - 40px));
  height: min(820px, calc(100vh - 32px));
  aspect-ratio: 9/16;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(207, 244, 42, 0.12);
}
/* Horizontal 16:9 — episodes / landscape content */
.reels-frame.is-horizontal {
  aspect-ratio: 16/9;
  width: min(1100px, calc(100vw - 48px));
  height: min(620px, calc((100vw - 48px) * 9 / 16), calc(100vh - 48px));
}
/* Square 1:1 — square crops */
.reels-frame.is-square {
  aspect-ratio: 1/1;
  width: min(720px, calc(100vw - 48px), calc(100vh - 48px));
  height: min(720px, calc(100vw - 48px), calc(100vh - 48px));
}
@media (max-width: 768px) {
  .reels-frame,
  .reels-frame.is-horizontal,
  .reels-frame.is-square {
    width: 100vw;
    height: 100vh;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}

/* Native fullscreen — YouTube-style. The frame fills the viewport and the
   overlay chrome (action rail, info bar, top controls, progress) stays on top. */
.reels-frame:fullscreen,
.reels-frame:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  aspect-ratio: auto !important;
}
/* In fullscreen the action rail can sit further from the edge */
.reels-frame:fullscreen .reels-actions,
.reels-frame:-webkit-full-screen .reels-actions {
  right: 24px; bottom: 140px;
}
.reels-frame:fullscreen .reels-info,
.reels-frame:-webkit-full-screen .reels-info {
  left: 32px; bottom: 36px; right: 100px;
}
.reels-frame:fullscreen .reels-top-controls,
.reels-frame:-webkit-full-screen .reels-top-controls {
  left: 24px; right: 24px; top: 24px;
}

/* Vertical snap track */
.reels-track {
  width: 100%; height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-track::-webkit-scrollbar { display: none; }

/* Each slide */
.reels-slide {
  position: relative;
  width: 100%; height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
  overflow: hidden;
}
.reels-slide video,
.reels-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

/* Dark gradient overlays so caption + actions are legible */
.reels-slide::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.reels-slide::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.72) 100%);
  z-index: 1; pointer-events: none;
}

/* TOP PLAYBACK CONTROLS (inside frame, top-left + top-right) */
.reels-top-controls {
  position: absolute;
  left: 14px; right: 14px; top: 14px;
  z-index: 4;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.reels-top-controls > * { pointer-events: auto; }
.reels-top-left,
.reels-top-right { display: flex; gap: 6px; }
.reels-top-btn {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: background 150ms ease;
}
.reels-top-btn:hover { background: rgba(0,0,0,0.78); }

/* RIGHT-SIDE ACTION RAIL — YouTube Shorts style.
   Each chunk = circular icon (48px) + label below. */
.reels-actions {
  position: absolute;
  right: 8px;
  bottom: 100px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 18px;
  align-items: center;
}
.reels-action {
  background: transparent; border: none; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff;
  font-family: var(--display-font);
}
.reels-action-icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background 150ms ease, transform 150ms ease, color 150ms ease;
}
.reels-action:hover .reels-action-icon { background: rgba(0,0,0,0.85); transform: scale(1.06); }
.reels-action.active .reels-action-icon { background: var(--lime); color: #000; border-color: var(--lime); }
.reels-action-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
/* Highlight the "Book" CTA in lime — primary conversion action */
.reels-action.cta .reels-action-icon { background: var(--lime); color: #000; border-color: var(--lime); }
.reels-action.cta .reels-action-label { color: var(--lime); }
.reels-action.cta:hover .reels-action-icon { background: #CFF42A; transform: scale(1.08); }

/* BOTTOM CHANNEL INFO — @handle + Subscribe + caption (YouTube Shorts style) */
.reels-info {
  position: absolute;
  left: 14px; right: 76px;
  bottom: 22px;
  z-index: 3;
  color: #fff;
}
.reels-info-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.reels-info-avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--lime); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display-font);
  font-weight: 900; font-size: 12px;
  letter-spacing: -0.02em;
  flex: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.reels-info-handle {
  font-family: var(--display-font);
  font-size: 14px; font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.reels-info-subscribe {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #000;
  border: none;
  cursor: pointer;
  transition: background 150ms ease;
}
.reels-info-subscribe:hover { background: #fff; }
.reels-info-caption {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Scrubbable progress bar — 16px hit area, 3px visible track that
   grows to 5px on hover for affordance. Pointer events on the parent
   so clicks/drags anywhere in the hit area seek the video. */
.reels-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 16px;
  background: transparent;
  z-index: 4;
  cursor: pointer;
  touch-action: none;
}
.reels-progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  transition: height 150ms ease, bottom 150ms ease;
  pointer-events: none;
}
.reels-progress:hover::before {
  height: 5px;
  bottom: 5px;
}
.reels-progress-fill {
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 3px;
  width: 0%;
  background: var(--lime);
  border-radius: 2px;
  transition: width 120ms linear, height 150ms ease, bottom 150ms ease;
  pointer-events: none;
}
.reels-progress:hover .reels-progress-fill {
  height: 5px;
  bottom: 5px;
}

/* OUTSIDE-FRAME DOWN-ARROW NAV (desktop only, between frame and right edge) */
.reels-nav-down,
.reels-nav-up {
  position: fixed;
  z-index: 110;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.reels-nav-down:hover,
.reels-nav-up:hover { background: rgba(255,255,255,0.20); transform: scale(1.06); }
.reels-nav-down[disabled],
.reels-nav-up[disabled] { opacity: 0.35; pointer-events: none; }
.reels-nav-down { right: max(24px, calc(50% - 320px)); bottom: calc(50% - 60px); }
.reels-nav-up   { right: max(24px, calc(50% - 320px)); top:    calc(50% - 60px); }
/* Horizontal (16:9) frame is ~1100px wide, so the vertical-mode 50%-320px math drops the
   arrows on top of the video. Re-anchor them to the bottom-right corner of the viewport —
   sits in the gap below the frame on tall viewports, and below the action rail otherwise. */
.reels-overlay:has(.reels-frame.is-horizontal) .reels-nav-up,
.reels-overlay:has(.reels-frame.is-horizontal) .reels-nav-down {
  top: auto;
  bottom: 24px;
}
.reels-overlay:has(.reels-frame.is-horizontal) .reels-nav-down { right: 24px; }
.reels-overlay:has(.reels-frame.is-horizontal) .reels-nav-up   { right: 80px; }
@media (max-width: 768px) {
  .reels-nav-down, .reels-nav-up { display: none; }
}

/* Tap-anywhere play-overlay (when paused). Hidden by default. */
.reels-paused-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}
.reels-paused-overlay.show { opacity: 1; }
.reels-paused-overlay > div {
  width: 76px; height: 76px; border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
}

/* PROMO INTERSTITIAL slide */
.reels-slide.is-promo {
  background: #050505;
}
.reels-slide.is-promo::before,
.reels-slide.is-promo::after { display: none; }
.reels-promo {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: space-between;
  padding: 32px 24px 32px;
  z-index: 2;
  text-align: left;
  color: #000;
}
.reels-slide.is-promo.theme-studio    { background: linear-gradient(165deg, var(--lime) 0%, #CFF42A 100%); }
.reels-slide.is-promo.theme-podcast   { background: linear-gradient(165deg, #1a1a1a 0%, #0a0a0a 100%); color: #fff; }
.reels-slide.is-promo.theme-authority { background: linear-gradient(165deg, #ff2d8a 0%, #7c3aed 100%); color: #fff; }
.reels-slide.is-promo.theme-podcast .reels-promo,
.reels-slide.is-promo.theme-authority .reels-promo { color: #fff; }
.reels-promo-sponsored {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.reels-promo-headline {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(34px, 7vw, 48px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}
.reels-promo-headline em {
  font-family: var(--serif-font);
  font-style: italic; font-weight: 400;
  text-transform: none;
}
.reels-slide.is-promo.theme-studio .reels-promo-headline em { color: #000; }
.reels-slide.is-promo.theme-podcast .reels-promo-headline em,
.reels-slide.is-promo.theme-authority .reels-promo-headline em { color: var(--lime); }
.reels-promo-sub {
  font-size: 15px; line-height: 1.45;
  opacity: 0.85;
  letter-spacing: 0;
  text-transform: none;
  max-width: 30ch;
}
.reels-promo-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--display-font);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: gap 150ms ease, transform 150ms ease;
}
.reels-promo-cta:hover { gap: 14px; transform: scale(1.03); }
.reels-slide.is-promo.theme-studio    .reels-promo-cta { background: #000; color: var(--lime); }
.reels-slide.is-promo.theme-podcast   .reels-promo-cta { background: var(--lime); color: #000; }
.reels-slide.is-promo.theme-authority .reels-promo-cta { background: var(--lime); color: #000; }

/* Close button (top-right, outside frame on desktop / inside on mobile) */
.reels-close {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 110;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 150ms ease;
}
.reels-close:hover { background: rgba(0,0,0,0.85); }

/* Up/Down hints (desktop only) */
.reels-hint {
  position: fixed;
  z-index: 110;
  font-family: var(--display-font);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  pointer-events: none;
}
.reels-hint.up { top: 24px; left: 50%; transform: translateX(-50%); }
.reels-hint.down { bottom: 24px; left: 50%; transform: translateX(-50%); }
@media (max-width: 768px) { .reels-hint { display: none; } }

/* Row-header pill for "Watch shorts" */
.row-action-pill {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  background: var(--lime);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: gap 150ms ease, transform 150ms ease;
}
.row-action-pill:hover { gap: 10px; transform: translateY(-1px); }

/* ============================================================
   MEGA-MENU (Vimeo-style nav dropdowns)
   Top-level .nav-item-mega contains the link + a .megapanel that
   slides down on hover. Mobile keeps the existing flat .mobile-nav.
   ============================================================ */
/* .nav-links a already styles font/color/active in the base block above.
   The only thing we need here is to make the link a flex row so the chevron
   icon can sit next to the text. */
/* Megapanels position relative to .nav-inner (set above) so they can span
   the full nav row width, not just the middle .nav-links cluster. */
.nav-item-mega { position: static; }
.nav-links .nav-link-mega { display: inline-flex; align-items: center; gap: 6px; }
.nav-chevron {
  display: inline-flex; align-items: center;
  transition: transform 200ms ease;
  opacity: 0.7;
}
.nav-item-mega.is-open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Panel */
.megapanel {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 1px);
  z-index: 60;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 180ms cubic-bezier(.22, .61, .36, 1),
    transform 180ms cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 180ms;
}
.nav-item-mega.is-open .megapanel {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateY(0);
  transition:
    opacity 180ms cubic-bezier(.22, .61, .36, 1),
    transform 180ms cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 0s;
}
.megapanel-inner {
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  overflow: hidden;
}
.megapanel-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 24px 28px;
}
.megapanel-cols .megapanel-col:only-child { grid-column: 1 / -1; }
.megapanel-col-heading {
  font-family: var(--display-font);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.megapanel-col-links {
  display: flex; flex-direction: column; gap: 4px;
}

/* Individual link row */
.megapanel-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 150ms ease;
}
.megapanel-link:hover { background: rgba(255, 255, 255, 0.06); }
.megapanel-link-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.megapanel-link-text {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.megapanel-link-title {
  font-family: var(--display-font);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: none;
}
.megapanel-link-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Featured tile on the right — media frame above, copy + CTA below.
   The media frame uses fixed aspect-ratio + object-fit:cover so any photo
   or video is contained inside the frame and can never crop awkwardly. */
.megapanel-featured {
  padding: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(207, 244, 42, 0.06));
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.megapanel-featured-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.megapanel-featured-media img,
.megapanel-featured-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.megapanel-featured-media video {
  opacity: 0;
  transition: opacity 220ms ease;
}
.megapanel-featured-media.has-video video { opacity: 1; }
.megapanel-featured-media.has-video img { opacity: 0; transition: opacity 220ms ease; }
.megapanel-featured-eyebrow {
  font-family: var(--display-font);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--lime);
}
.megapanel-featured-title {
  font-family: var(--display-font);
  font-size: 22px; font-weight: 900;
  line-height: 1.05; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.megapanel-featured-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.megapanel-featured-cta {
  font-family: var(--display-font);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  align-self: flex-start;
  margin-top: 6px;
  transition: gap 150ms ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.megapanel-featured-cta:hover { gap: 12px; }

/* Mega-menu is desktop-only; below the mobile breakpoint the chevron
   collapses to plain text and the panel never opens (hamburger takes over) */
@media (max-width: 900px) {
  .nav-chevron { display: none; }
  .megapanel { display: none; }
}

/* Narrower desktops: stack the featured tile below the columns */
@media (max-width: 1100px) {
  .megapanel-inner { grid-template-columns: 1fr; }
  .megapanel-featured { border-left: 0; border-top: 1px solid var(--line); }
}


/* ============================================================
   Image Section Slots — feat/image-slots 2026-06
   Replace .jw-img-slot with real <img> / <video> when ready.
   ============================================================ */


/* Filled image — covers the slot. Swap the <img src> to use real photos.
   object-position bias downward so the visible band shows more of the
   subjects' torsos/lower body and less ceiling/lights above their heads. */
.jw-slot-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 72%; display: block;
}
/* Per-slot crop overrides — when the global 72% bias cuts a subject's head. */
.jw-slot-img[src*="01-home-studio-band"] { object-position: 50% 58%; }
.jw-slot-img[src*="08-about-team"]       { object-position: 50% 40%; }
.jw-slot-img[src*="07c-studio-brand"]    { object-position: 50% 20%; }

/* Shared placeholder (fallback when no image present) */
.jw-img-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: #111;
  border: 2px dashed rgba(207, 244, 42, 0.28);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(207, 244, 42, 0.55);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.jw-img-slot::before {
  content: '';
  width: 36px; height: 36px;
  border: 2px solid rgba(207, 244, 42, 0.35);
  border-radius: 50%;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(207, 244, 42,0.55)' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* 1 — Full-bleed band */
.jw-band {
  width: 100%;
  height: clamp(220px, 28vw, 420px);
  position: relative; overflow: hidden;
}
.jw-band .jw-img-slot { border-left: none; border-right: none; border-radius: 0; }

/* 2 — Asymmetric editorial split */
.jw-split-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 380px;
}
.jw-split-wrap.flip { grid-template-columns: 2fr 3fr; }
.jw-split-img { position: relative; overflow: hidden; min-height: 320px; }
.jw-split-img .jw-img-slot { border-radius: 0; border-top: none; border-bottom: none; }
.jw-split-txt {
  padding: 64px 56px;
  background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.jw-split-txt .eyebrow { color: rgba(10,10,10,0.45); margin-bottom: 10px; }
.jw-split-txt h2 { color: var(--ink); font-size: clamp(26px, 3.2vw, 46px); line-height: 1.08; margin-bottom: 18px; }
.jw-split-txt p  { color: var(--text-on-cream-muted); font-size: 17px; line-height: 1.65; }

.jw-split-wrap.flip .jw-split-img { order: 2; }
.jw-split-wrap.flip .jw-split-txt { order: 1; background: var(--black); color: #fff; }
.jw-split-wrap.flip .jw-split-txt .eyebrow { color: rgba(255,255,255,0.4); }
.jw-split-wrap.flip .jw-split-txt h2 { color: #fff; }
.jw-split-wrap.flip .jw-split-txt p  { color: var(--text-secondary); }

/* 3 — 3-up editorial photo grid */
.jw-photo-grid { padding: 56px 0; background: var(--black); }
.jw-photo-grid.on-cream { background: var(--paper); }
.jw-photo-grid-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.45fr 1fr;
  gap: 10px; align-items: end;
}
.jw-photo-cell { display: flex; flex-direction: column; gap: 10px; }
.jw-photo-frame { width: 100%; height: 280px; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.jw-photo-frame.tall { height: 380px; }
.jw-photo-caption { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.35); padding: 0 4px; }
.jw-photo-grid.on-cream .jw-photo-caption { color: rgba(10,10,10,0.35); }
.jw-photo-grid.on-cream .jw-img-slot { background: #e0ddd6; border-color: rgba(10,10,10,0.18); color: rgba(10,10,10,0.38); }

/* 4 — Cinematic full-bleed with overlay text */
.jw-cinematic { width: 100%; height: clamp(340px, 40vw, 540px); position: relative; overflow: hidden; background: var(--black); }
.jw-cinematic .jw-img-slot { border-radius: 0; border-left: none; border-right: none; }
.jw-cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 56px 64px; pointer-events: none;
}
.jw-cinematic-lede { font-size: clamp(34px, 5.5vw, 80px); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.025em; text-transform: uppercase; max-width: 700px; }
.jw-cinematic-lede em { color: var(--lime); font-style: italic; font-family: var(--serif-font); text-transform: none; }

@media (max-width: 768px) {
  .jw-split-wrap, .jw-split-wrap.flip { grid-template-columns: 1fr; }
  .jw-split-img { min-height: 260px; }
  .jw-split-img .jw-img-slot { border: 2px dashed rgba(207, 244, 42,0.28); border-radius: 0; }
  .jw-split-wrap.flip .jw-split-txt { order: 2; }
  .jw-split-wrap.flip .jw-split-img { order: 1; }
  .jw-split-txt { padding: 40px 24px; }
  .jw-photo-grid-inner { grid-template-columns: 1fr; }
  .jw-photo-frame, .jw-photo-frame.tall { height: 260px; }
  .jw-cinematic-overlay { padding: 32px 24px; }
}
