/* ── SHARED TOKENS & RESETS ── */
/* ── BASE RESETS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg); color: var(--offwhite); line-height: 1.5; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.02em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border: 1px solid var(--offwhite); color: var(--offwhite);
  background: transparent; font-family: var(--font-body); font-size: 0.875rem;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  min-width: 44px; min-height: 44px;  /* WCAG touch target */
}
.btn:hover, .btn:focus-visible { background: var(--offwhite); color: var(--bg); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ── FORM INPUTS ── */
input, select, textarea {
  width: 100%; padding: 10px 12px; background: var(--surface-2); color: var(--offwhite);
  border: 1px solid var(--text-dim-3); border-radius: 4px; font-family: var(--font-body);
}
input:focus, select:focus, textarea:focus { border-color: var(--red); outline: none; }

/* ── CARD GRID ── */
.card-grid {
  display: grid; gap: 20px; padding: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ── STATUS BADGES (prepared for when PR #34 is merged) ── */
.status-badge {
  display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.status-pending  { background: #777; color: #fff; }
.status-applied  { background: #4a90d9; color: #fff; }
.status-shortlisted { background: #f5a623; color: #000; }
.status-confirmed { background: #2ecc71; color: #fff; }
.status-rejected { background: var(--red); color: #fff; }

/* ── UTILITY ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* Override any fixed 2-col grid in existing pages */
.talent-grid, .casting-grid, .card-container {
  display: grid;
  gap: 20px;
  padding: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
/* ── TOUCH TARGETS ── */
.btn-edit, .btn-delete, .status-select {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ── iOS ZOOM FIX ── */
input, select, textarea {
  font-size: 16px !important;
}

/* ── PROMINENT NAV CTA ── */
.nav-badge {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.14em !important;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav-badge:hover { opacity: 0.85; }

/* ── SECTION HEADING RED ACCENT ── */
.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-top: 8px;
}

/* ── FORM FOCUS GLOW ── */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236,63,65,0.12);
  outline: none;
}

/* ── PROJECT SUBHEADING CONTRAST ── */
.work-entry-sub { color: #A0A0A0; }

/* ── APPLY FORM SECTION HIERARCHY ── */
.apply-section-label {
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}
    /* ── TOKENS (dark theme – default) ── */
    :root {
      --bg: #000000;
      --black: #000000;
      --offwhite: #F2F0EB;
      --red: #EC3F41;
      --surface-1: #0d0d0d;
      --surface-2: #141414;
      --surface-3: #222222;
      --text-dim-1: #333333;
      --text-dim-2: #555555;
      --text-dim-3: #888888;
      --text-dim-4: #AAAAAA;
      --text-dim-5: #CCCCCC;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'Work Sans', sans-serif;
      --nav-h: 64px;
      --logo-filter: invert(1);
      --space-edge: 16px;
      --space-section: 64px;
      --space-card-gap: 12px;
      --space-card-pad: 20px;
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --transition-base: 0.22s cubic-bezier(0.25, 1, 0.5, 1);
      --border-subtle: rgba(255,255,255,0.12);
      --line-height-display: 0.94;
      --line-height-body: 1.55;
      --surface-elevated: #111111;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --content-max: 1600px;
      --input-border: rgba(242,240,235,0.2);
    }

    /* ── LIGHT THEME ── */
    html[data-theme="light"] {
      --bg: #ffffff;
      --black: #ffffff;
      --offwhite: #0D0D0D;
      --red: #CC3333;
      --surface-1: #f2f2f2;
      --surface-2: #e0e0e0;
      --surface-3: #cccccc;
      --text-dim-1: #999999;
      --text-dim-2: #777777;
      --text-dim-3: #555555;
      --text-dim-4: #333333;
      --text-dim-5: #111111;
      --logo-filter: none;
      --border-subtle: rgba(0,0,0,0.12);
      --surface-elevated: #f8f6f1;
      --input-border: rgba(0,0,0,0.2);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      background: var(--bg);
      color: var(--offwhite);
      font-family: var(--font-body);
      scroll-behavior: smooth;
      transition: background 0.3s, color 0.3s;
      overflow-x: hidden;
    }
    body { min-height: 100vh; overflow-x: hidden; }

    /* ── GLOBAL TYPOGRAPHY ── */
    h1, h2, .display-header, [class*="display-"] {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: var(--line-height-display);
    }
    p, li, label, .body-text {
      line-height: var(--line-height-body);
    }

    /* ── GLOBAL MOTION ── */
    a, button, .btn, .talent-card, .home-route, .nav-tab, input, textarea, select, .theme-pill span {
      transition: background-color var(--transition-base),
                  border-color var(--transition-base),
                  transform 0.18s cubic-bezier(0.25, 1, 0.5, 1),
                  opacity var(--transition-base);
    }
    button:active, .btn:active, .talent-card:active, .home-route:active {
      transform: scale(0.97);
    }

    /* ── TOUCH RESPONSIVENESS ── */
    button, .btn, .chip, .home-route, .talent-card, .nav-tab, .nav-badge,
    .campaign-pill, .filter-btn, .btn-action, .btn-note-save, .btn-compare,
    .upload-zone, .selection-clear, .btn-open-brief, .filter-chip {
      touch-action: manipulation;
    }

    /* ── NAV ── */
    .site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: calc(var(--nav-h) + var(--safe-top));
      padding-top: var(--safe-top);
      display: flex; align-items: center; justify-content: space-between;
      padding-left: var(--space-edge); padding-right: var(--space-edge);
      background: rgba(0,0,0,0.92);
      border-bottom: 1px solid var(--surface-3);
      backdrop-filter: blur(12px);
    }
    html[data-theme="light"] .site-nav {
      background: rgba(255,255,255,0.92);
    }

    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 28px;
      width: auto;
      filter: var(--logo-filter);
      transition: filter 0.3s;
    }

    .nav-tabs {
      display: flex; align-items: center; gap: 0;
    }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 4px; position: relative; width: 44px; height: 44px; align-items: center; justify-content: center; }
    .nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--text-dim-3); transition: all 0.3s ease; position: absolute; }
    .nav-hamburger span:nth-child(1) { transform: translateY(-6px); }
    .nav-hamburger span:nth-child(3) { transform: translateY(6px); }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }
    .nav-mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; height: 100dvh; overflow-y: auto; background: var(--bg); z-index: 999; flex-direction: column; justify-content: flex-start; gap: 1.5rem; padding: 40px var(--space-edge); box-sizing: border-box; }
    .nav-mobile.open { display: flex; }
    .nav-mobile-close { position: fixed; top: 16px; right: 20px; z-index: 1001; font-size: 28px; line-height: 1; background: none; border: none; color: var(--offwhite); cursor: pointer; padding: 4px 8px; }
    .nav-mobile .nav-tab, .nav-mobile .nav-badge {
      width: 100%; text-align: left; padding: 1rem 0; font-family: var(--font-display);
      font-size: 1.85rem; letter-spacing: 0.03em; text-transform: uppercase;
      color: var(--offwhite); background: none; border: none;
      border-bottom: 1px solid var(--border-subtle); cursor: pointer;
    }
    .nav-mobile .nav-badge { color: var(--red); border-bottom: 1px solid rgba(236,63,65,0.2); }
    .nav-mobile .theme-pill { margin: 12px 0 0 0; align-self: flex-start; }
    .nav-tab {
      padding: 0.5rem 1.1rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-dim-3);
      background: none; border: none; cursor: pointer;
      transition: color 0.15s; font-family: var(--font-body);
    }
    .nav-tab:hover { color: var(--offwhite); }
    .nav-tab.active { color: var(--offwhite); border-bottom: 2px solid var(--red); }
    .nav-badge {
      padding: 0.4rem 1rem;
      background: var(--red); color: #fff;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; border: none; cursor: pointer;
      font-family: var(--font-body);
      transition: opacity 0.15s;
    }
    .nav-badge:hover { opacity: 0.85; }

    /* ── Theme toggle pill ── */
    .theme-pill {
      display: inline-flex; align-items: center;
      background: var(--surface-2); border: 1px solid var(--surface-3);
      border-radius: 20px; padding: 2px; gap: 0;
      margin-left: 0.75rem; cursor: pointer; user-select: none;
    }
    .theme-pill span {
      padding: 4px 12px; font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-dim-3); border-radius: 18px;
      transition: background 0.2s, color 0.2s;
    }
    .theme-pill span.active {
      background: var(--red); color: #fff;
    }

    /* ── PAGES ── */
    .page { display: none; padding-top: var(--nav-h); min-height: 100svh; scroll-margin-top: calc(var(--nav-h) + 16px); }
    .page.active { display: block; }

    /* ── SHARED ── */
    .eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
    }
    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(4.5rem, 14vw, 10rem);
      line-height: 0.88; color: var(--offwhite);
      text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 2rem;
    }
    .display-xl em { font-style: normal; color: var(--red); }
    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(4rem, 10vw, 7.5rem);
      line-height: 0.9; color: var(--offwhite);
      text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 2rem;
    }
    .display-md {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 0.92; color: var(--offwhite);
      text-transform: uppercase; margin-bottom: 2rem;
    }
    .lead {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--text-dim-4); line-height: 1.75; max-width: 42ch; margin-bottom: 2.5rem;
    }
    .lead strong { color: var(--offwhite); font-weight: 500; }
    .body-text {
      font-size: 1rem; color: var(--text-dim-4); line-height: 1.8; max-width: 52ch;
    }
    .body-text strong { color: var(--offwhite); font-weight: 500; }
    .section-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem;
    }
    .divider { border: none; border-top: 1px solid var(--surface-3); margin: 0; }
    .btn {
      display: inline-block; text-decoration: none;
      font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.75rem 1.75rem; cursor: pointer; border: none;
      transition: opacity 0.15s, background 0.15s;
    }
    .btn-primary { background: var(--red); color: #fff; border: 2px solid var(--red); }
    .btn-primary:hover, .btn-primary:focus-visible { background: #c73234; border-color: #c73234; color: #fff; }
    .btn-primary:not(:focus-visible) { outline: none; }
    .btn-outline { background: transparent; color: var(--offwhite); border: 2px solid var(--offwhite); }
    .btn-outline:hover, .btn-outline:focus-visible { opacity: 0.85; }
    .btn-outline:not(:focus-visible) { outline: none; }
    .ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
    @media (max-width: 768px) {
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; text-align: center; padding: 16px; font-size: 0.9rem; border-radius: var(--radius-sm); }
    }
    footer {
      background: var(--black); border-top: 1px solid var(--surface-3);
      padding: 2rem; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
      transition: background 0.3s;
    }
    footer p { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim-1); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
    .footer-links a {
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--text-dim-2); text-decoration: none;
      transition: color 0.18s;
    }
    .footer-links a:hover { color: var(--red); }

    /* ── HOME PAGE ── */
    .home-hero {
      min-height: auto; /* remove full viewport height */
      display: grid; grid-template-rows: 1fr auto;
    }
.home-hero-body {
  padding: 5rem 2rem; /* match other heroes */
  justify-content: flex-start; /* not needed, but resets */
}
    .home-routes {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--surface-3);
      gap: var(--space-card-gap);
    }
    .home-route {
      display: flex; flex-direction: column; padding: var(--space-card-pad);
      background: var(--surface-elevated); border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm); cursor: pointer; text-align: left;
      font-family: var(--font-body); transition: background 0.2s, border-color 0.2s; position: relative;
    }
    .home-route:last-child { border-right: none; margin-bottom: 0; }
    .home-route:hover { background: var(--surface-2); border-color: var(--surface-3); }
    .home-route:hover .route-arrow { color: var(--red); transform: translate(3px, -3px); }
    .route-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim-3); margin-bottom: 1.25rem; }
    .route-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--offwhite); text-transform: uppercase; line-height: 0.95; margin-bottom: 1rem; flex: 1; }
    .route-desc { font-size: 0.82rem; color: var(--text-dim-4); line-height: 1.6; max-width: 32ch; margin-bottom: 1.5rem; }
    .route-arrow { width: 18px; height: 18px; color: var(--text-dim-3); transition: color 0.2s, transform 0.2s; align-self: flex-end; }

    /* ── STRATEGY PAGE ── */
    .p-hero { padding: 5rem 2rem; max-width: 900px; }
    .p-section { padding: 5rem 2rem; }
    .p-section-inner { max-width: 800px; }
    .proof-bar {
      padding: 2rem;
      border-top: 1px solid var(--surface-3);
      border-bottom: 1px solid var(--surface-3);
    }
    .proof-names {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-dim-1);
      white-space: nowrap; overflow: hidden;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @media (min-width: 768px) {
      .proof-names { animation: marquee 25s linear infinite; animation-delay: 0s; }
    }
    .proof-names span { color: var(--text-dim-1); margin: 0 0.6rem; }
    .work-list { margin-top: 2.5rem; }
    .work-entry { border-top: 1px solid var(--surface-3); }
    .work-entry-header {
      display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 1rem; padding: 1.5rem 0; cursor: pointer;
    }
    .work-entry-title {
      font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--offwhite); text-transform: uppercase; line-height: 1; margin-bottom: 0.3rem;
    }
    .work-entry-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim-2); }
    .work-toggle { font-size: 1.4rem; color: var(--text-dim-1); transition: color 0.2s, transform 0.25s; }
    .work-entry.open .work-toggle { transform: rotate(45deg); color: var(--red); }
    .work-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .work-entry.open .work-body { max-height: 2400px; padding-bottom: 2rem; }
    .work-entry:last-child { border-bottom: 1px solid var(--surface-3); }
    .embed-wrap { width: 100%; max-width: 100%; aspect-ratio: 9/16; }
    .embed-wrap iframe { width: 100% !important; min-width: auto !important; height: 100%; border: none; }
    .embed-cap { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-dim-3); line-height: 1.6; max-width: 42ch; }
    .filmstrip {
      display: flex; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.5rem;
      scroll-snap-type: x mandatory; margin-top: 1.5rem;
    }
    .filmstrip img {
      height: 150px; width: auto; flex-shrink: 0; cursor: pointer;
      object-fit: cover; scroll-snap-align: start;
      transition: opacity 0.2s;
    }
    .filmstrip img:hover { opacity: 0.9; }
    .ring-img { width: 100%; max-width: 500px; margin-top: 1rem; }
    .ring-img img { width: 100%; display: block; }
    .process-steps { margin-top: 2.5rem; }
    .process-step {
      display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem;
      padding: 1.5rem 0; border-top: 1px solid var(--surface-3);
    }
    .process-step:last-child { border-bottom: 1px solid var(--surface-3); }
    .step-num { font-family: var(--font-display); font-size: 2rem; color: var(--red); line-height: 1; }
    .step-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--offwhite); text-transform: uppercase; margin-bottom: 0.4rem; line-height: 1; }
    .step-desc { font-size: 0.88rem; color: var(--text-dim-4); line-height: 1.7; }
    .cta-section { padding: 6rem 2rem; border-top: 1px solid var(--surface-3); }
    .cta-h { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: 0.9; color: var(--offwhite); text-transform: uppercase; margin-bottom: 2rem; }

    /* ── TALENT PAGE ── */
    .roster-wrap { padding: 5rem 2rem 10rem; }
    .roster-header { max-width: 640px; margin-bottom: 3.5rem; }
    .roster-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; }
    .roster-h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem); line-height: 0.92; color: var(--offwhite); text-transform: uppercase; margin-bottom: 1rem; }
    .roster-sub { font-size: 0.85rem; color: var(--text-dim-3); line-height: 1.65; max-width: 48ch; }
    .descriptor-wrap { margin-bottom: 2.5rem; }
    .descriptor-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim-3); margin-bottom: 0.75rem; }
    .descriptor-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .chip { padding: 0.35rem 0.85rem; border: 1px solid var(--surface-3); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim-3); cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; user-select: none; background: transparent; font-family: var(--font-body); }
    .chip:hover { border-color: var(--offwhite); color: var(--offwhite); }
    .chip.active { border-color: var(--red); color: var(--offwhite); background: rgba(236,63,65,0.08); }
    .descriptor-note { margin-top: 0.9rem; font-size: 0.72rem; color: var(--text-dim-3); line-height: 1.55; }
    .descriptor-note a { color: var(--red); text-decoration: none; font-weight: 600; }
    .roster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-card-gap); background: transparent; }
    @keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
    .skeleton-card { aspect-ratio: 3/4; background: linear-gradient(90deg, var(--surface-1) 25%, var(--surface-2) 50%, var(--surface-1) 75%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: 14px; }
    .talent-card { position: relative; background: var(--surface-elevated); cursor: pointer; overflow: hidden; aspect-ratio: 3/4; transition: transform 0.2s, border-color 0.2s; border-radius: 14px; border: 2px solid transparent; }
    .talent-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); filter: grayscale(20%); }
    .talent-card:hover .talent-card-img, .talent-card.selected .talent-card-img { transform: scale(1.04); }
    .talent-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--surface-1); font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 4rem); color: var(--text-dim-3); text-transform: uppercase; }
    .talent-card-img--failed { display: none; }
    .talent-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 55%);
      opacity: 0; transition: opacity 0.25s;
      display: flex; align-items: flex-end; padding: 1rem;
      pointer-events: none;
    }
    .talent-card:hover .talent-card-overlay {
      pointer-events: auto;
    }
    .talent-card:hover .talent-card-overlay, .talent-card.selected .talent-card-overlay { opacity: 1; }
    .talent-card.selected { border-color: var(--red); }
    .talent-card.selected::after {
      content: ''; position: absolute; top: 10px; right: 10px;
      width: 26px; height: 26px; background: var(--red);
      border-radius: 50%; z-index: 3;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='3 8 7 12 13 4'/%3E%3C/svg%3E");
      background-size: 14px; background-position: center; background-repeat: no-repeat;
      opacity: 0; transform: scale(0.5); transition: opacity 0.2s, transform 0.22s cubic-bezier(0.16,1,0.3,1);
    }
    .talent-card.selected::after { opacity: 1; transform: scale(1); }
    .talent-card-name { font-family: var(--font-display); font-size: clamp(1.1rem, 3vw, 1.5rem); text-transform: uppercase; color: #fff; line-height: 0.95; margin-bottom: 0.25rem; }
    .talent-card-role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .talent-card-followers { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 0.2rem; }
    .talent-card-check {
      position: absolute; top: 0.7rem; right: 0.7rem;
      width: 26px; height: 26px; background: var(--red);
      display: flex; align-items: center; justify-content: center;
      opacity: 0.35; transform: scale(0.8);
      transition: opacity 0.18s, transform 0.22s;
      z-index: 2; cursor: pointer; pointer-events: none;
    }
    .talent-card.selected .talent-card-check { opacity: 1; transform: scale(1); }
    .talent-card-check svg { color: #fff; }
    .gallery-badge { position: absolute; top: 10px; left: 10px; width: 26px; height: 26px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; z-index: 3; pointer-events: none; font-weight: 700; }
    .compare-table { margin-top: 2.5rem; width: 100%; border-collapse: collapse; }
    .compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: left; font-size: 0.85rem; line-height: 1.5; }
    .compare-table thead th { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--surface-2); color: var(--text-dim-3); }
    .compare-table thead th:last-child { color: var(--red); }
    .compare-table tbody tr { border-bottom: 1px solid var(--surface-1); }
    .compare-table tbody td:first-child { color: var(--text-dim-3); }
    .compare-table tbody td:last-child { color: var(--text-dim-5); }
    .stats-row { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--surface-3); margin-top: 2.5rem; }
    .stat-box { padding: 1.75rem 1.5rem; border-right: 1px solid var(--surface-3); }
    .stat-box:last-child { border-right: none; }
    .stat-val { font-family: var(--font-display); font-size: 2.5rem; color: var(--red); line-height: 1; margin-bottom: 0.4rem; }
    .stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim-3); }
    .selection-bar {
      position: fixed; bottom: 0; left: 0; right: 0; background: var(--red);
      padding: 0.9rem 2rem calc(0.9rem + var(--safe-bottom)); display: flex; align-items: center;
      justify-content: space-between; gap: 1rem;
      transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
      z-index: 200; box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    }
    .selection-bar.visible { transform: translateY(0); }
    .selection-bar-left { display: flex; align-items: center; gap: 0.75rem; }
    .selection-count { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: #fff; }
    .selection-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
    .selection-clear { background: none; border: none; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); cursor: pointer; padding: 0; transition: color 0.15s; font-family: var(--font-body); }
    .selection-clear:hover { color: #fff; }
    .btn-open-brief { background: #fff; color: var(--red); border: none; padding: 0.65rem 1.5rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }

    /* ── BRIEF PANEL ── */
    .brief-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.28s; }
    .brief-overlay.open { opacity: 1; pointer-events: auto; }
    .brief-panel { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface-elevated); border-top: 2px solid var(--red); border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 88vh; overflow-y: auto; z-index: 301; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 -8px 30px rgba(0,0,0,0.5); }
    html[data-theme="light"] .brief-panel { background: var(--surface-1); }
    .brief-panel.open { transform: translateY(0); }
    .brief-panel-inner { padding: 2rem 2rem 4rem; max-width: 620px; margin: 0 auto; }
    .brief-panel-handle { width: 36px; height: 3px; background: var(--surface-3); margin: 0 auto 1.75rem; }
    .brief-panel-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
    .brief-panel-h { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--offwhite); line-height: 0.92; margin-bottom: 0.5rem; }
    .brief-panel-sub { font-size: 0.8rem; color: var(--text-dim-3); line-height: 1.6; margin-bottom: 2rem; }
    .brief-selected-wrap { margin-bottom: 2rem; }
    .brief-selected-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim-3); margin-bottom: 0.6rem; }
    .brief-selected-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .brief-talent-chip { display: flex; align-items: center; gap: 0.35rem; padding: 0.28rem 0.65rem; background: rgba(236,63,65,0.1); border: 1px solid rgba(236,63,65,0.3); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
    .campaign-pill { padding: 6px 14px; border: 1px solid var(--surface-3); background: transparent; color: var(--offwhite); font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border-radius: 20px; transition: all var(--transition-base); }
    .campaign-pill.active { background: var(--red); color: #fff; border-color: var(--red); }
    .brief-field-section { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim-3); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--surface-2); }
    .field { margin-bottom: 1.25rem; }
    .field label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim-3); margin-bottom: 0.4rem; }
    .field .req { color: var(--red); }
    .field input, .field select, .field textarea { width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid var(--input-border); font-family: var(--font-body); font-size: max(0.9rem, 16px); background: transparent; color: var(--offwhite); outline: none; transition: border-color var(--transition-base); border-radius: 0; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--red); }
    .field select option { background: var(--surface-2); color: var(--offwhite); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .budget-display { font-size: 0.85rem; font-weight: 700; color: var(--offwhite); margin-bottom: 0.6rem; }
    .budget-display span { color: var(--red); }
    .budget-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--surface-3); outline: none; border: none; padding: 0; }
    .budget-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--red); cursor: pointer; border: 2px solid #000; border-radius: 0; }
    .budget-labels { display: flex; justify-content: space-between; font-size: 0.62rem; color: var(--text-dim-3); margin-top: 0.3rem; }
    .brief-error { background: rgba(236,63,65,0.08); border: 1px solid rgba(236,63,65,0.3); color: var(--red); font-size: 0.78rem; padding: 0.75rem 1rem; margin-bottom: 1.25rem; display: none; }
    .brief-error.visible { display: block; }
    .brief-submit-btn { width: 100%; padding: 1rem; background: var(--red); color: #fff; border: none; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: opacity 0.15s; }
    .brief-submit-btn:hover { opacity: 0.88; }
    .brief-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }
    .brief-success { display: none; padding: 2rem; text-align: center; }
    .brief-success.visible { display: block; }
    .brief-success-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--offwhite); line-height: 0.92; margin-bottom: 0.75rem; }
    .brief-success-body { font-size: 0.82rem; color: var(--text-dim-3); line-height: 1.65; }
    .layer2-section { margin-top: 4rem; display: none; }
    .layer2-divider { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2.5rem; }
    .layer2-divider-line { flex: 1; height: 1px; background: var(--surface-3); }
    .layer2-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
    .layer2-heading { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem); text-transform: uppercase; color: var(--offwhite); line-height: 0.92; margin-bottom: 0.75rem; }
    .layer2-sub { font-size: 0.8rem; color: var(--text-dim-3); line-height: 1.6; max-width: 44ch; margin-bottom: 2rem; }

    /* ── APPLY PAGE ── */
    .apply-hero { padding: 5rem 2rem; max-width: 700px; }
    .apply-form-wrap { padding: 0 2rem 6rem; max-width: 660px; }
    .apply-section-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim-3); margin: 2.5rem 0 1.25rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--surface-2); }
    .apply-error { background: rgba(236,63,65,0.08); border: 1px solid rgba(236,63,65,0.3); color: var(--red); font-size: 0.78rem; padding: 0.75rem 1rem; margin-bottom: 1.25rem; display: none; }
    .apply-error.visible { display: block; }
    .apply-submit-btn { width: 100%; padding: 1rem; background: var(--red); color: #fff; border: none; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: opacity 0.15s; margin-top: 2rem; }
    .apply-submit-btn:hover { opacity: 0.88; }
    .apply-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }
    .apply-success { display: none; padding: 4rem 2rem; max-width: 560px; }
    .apply-success.visible { display: block; }
    .apply-success-h { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase; color: var(--offwhite); line-height: 0.92; margin-bottom: 1rem; }
    .apply-success-p { font-size: 0.88rem; color: var(--text-dim-3); line-height: 1.7; max-width: 42ch; }

    /* ── UPLOAD ZONE ── */
    .upload-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed var(--input-border); border-radius: var(--radius-sm); padding: 32px 16px; text-align: center; cursor: pointer; transition: border-color var(--transition-base), background var(--transition-base); }
    .upload-zone:hover, .upload-zone.has-file { border-color: var(--red); background: rgba(236,63,65,0.04); }
    .upload-zone.has-file { border-style: solid; }

    /* ── LIGHTBOX ── */
    #lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 500; align-items: center; justify-content: center; }
    #lightbox.active { display: flex; }

    /* ── GALLERY OVERLAY ── */
    .gallery-overlay { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; }
    .gallery-overlay-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
    .gallery-content { position: relative; width: 90vw; max-width: 800px; max-height: 90vh; overflow-y: auto; padding: 2rem; }
    .gallery-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
    .gallery-item { background: #111; overflow: hidden; }
    .gallery-item img, .gallery-item video { width: 100%; display: block; object-fit: cover; }
    .gallery-item .caption { padding: 0.5rem; font-size: 0.7rem; color: #888; text-align: center; }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .nav-tabs { display: none; }
      .nav-hamburger { display: flex; }
      .home-hero, .p-hero, .apply-hero, .page { min-height: auto; padding-top: 80px; padding-bottom: 64px; }
      .page { min-height: auto; }
      .home-routes { grid-template-columns: 1fr; }
      .home-route { border-right: none; border-bottom: none; }
      .home-route:last-child { margin-bottom: 0; }
      .home-hero-body, .p-hero, .apply-hero { padding: 0 var(--space-edge); }
      .p-section { padding: 3rem var(--space-edge); }
      .roster-wrap { padding: 3rem var(--space-edge) 8rem; }
      .apply-form-wrap { padding: 0 var(--space-edge) 4rem; }
      .cta-section { padding: 3.5rem var(--space-edge); }
      .ctas { flex-direction: column; }
      .ctas .btn { width: 100%; text-align: center; }
      .field-row { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; align-items: flex-start; padding: 1.5rem var(--space-edge); }
      .nav-mobile .nav-tab, .nav-mobile .nav-badge { padding: 1rem 0; }
    }
    @media (max-width: 480px) {
      .roster-grid { gap: 10px; grid-template-columns: repeat(2, 1fr); }
      .talent-card-name { font-size: 0.9rem; }
      .talent-card-overlay { padding: 0.5rem; }
      .brief-panel-inner { padding: 1.25rem 1.25rem 3rem; }
      .brief-panel-close { display: block; }
      .eyebrow { white-space: normal; font-size: 8px; letter-spacing: 0.06em; line-height: 1.4; overflow: visible; text-overflow: clip; }
      .compare-table { font-size: 0.72rem; }
      .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; font-size: 0.65rem; }
      .compare-table th:nth-child(2), .compare-table td:nth-child(2) { display: none; }
      .compare-table th, .compare-table td { width: 50%; }
      .field, .form-group { margin-bottom: 16px; }
      .apply-section-label { margin: 1.5rem 0 0.75rem; }
    }
    @media (max-width: 380px) {
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; }
      .campaign-pill { font-size: 11px; padding: 7px 12px; }
      .compare-table th, .compare-table td { font-size: 12px; padding: 10px 8px; }
      .btn-open-brief { font-size: 11px; padding: 10px 14px; }
      .selection-count { font-size: 1.2rem; }
      .selection-label { font-size: 0.6rem; }
      .selection-bar { padding: 0.7rem 1rem calc(0.7rem + var(--safe-bottom)); gap: 0.5rem; }
    }
    @media (max-width: 340px) {
      .eyebrow { font-size: 7px; letter-spacing: 0.04em; white-space: normal; }
      .nav-mobile .nav-tab, .nav-mobile .nav-badge { font-size: clamp(24px, 8vw, 40px); }
      .display-xl, .display-lg, .display-md { overflow-wrap: break-word; hyphens: auto; }
      .page, section { overflow-x: hidden; }
      .upload-zone { padding: 20px 12px; font-size: 0.75rem; }
      .selection-clear { font-size: 0.55rem; }
      .btn-open-brief { font-size: 10px; padding: 8px 10px; }
    }
    @media (min-width: 481px) and (max-width: 767px) {
      .roster-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
      .home-routes { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 768px) and (max-width: 1023px) {
      .roster-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    }
    @media (min-width: 1024px) {
      .roster-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
      .display-xl { font-size: clamp(80px, 12vw, 200px); }
      .display-lg { font-size: clamp(64px, 8vw, 140px); }
    }
