/**
 * jbz-homepage-hero frontend.css v1.1.0
 * Purpose: JBZ homepage red/white/blue rebuild — dark navy dominant, kills white per Wyatt's feedback.
 *          Rocket video centered in max-width container. Event cards use bundled base-venue images
 *          (matching mobile app EventCard) NOT ACF flyers. Role-gated register buttons.
 * v1.1.0 (2026-08-14, per Wyatt): NEW .jbz-hero-testimonials / .jbz-testimonial-carousel /
 *          .jbz-testimonial-card rules for the [jbz_hero_testimonials] carousel. Nothing
 *          else touched.
 * Author: Generated by Claude on 2026-07-17 per Wyatt's request (v1.0.1 feedback pass;
 *          v1.1.0 2026-08-14 testimonials carousel styles added)
 * Replaces: v1.0.0 (too much white, off-center video, flyer-as-card-image, no register buttons)
 * Deactivate-safe: yes — scoped to .jbz-hero-* classes
 */

:root {
  --jbz-red:        #C1272D;
  --jbz-red-dark:   #8B0000;
  --jbz-red-glow:   rgba(193,39,45,.35);
  --jbz-navy:       #0F2555;
  --jbz-navy-mid:   #16326A;
  --jbz-navy-deep:  #0A1A3D;
  --jbz-ink:        #05122B;
  --jbz-white:      #ffffff;
  --jbz-yellow:     #FDE047;
  --jbz-line:       rgba(255,255,255,.12);
  --jbz-line-strong:rgba(255,255,255,.22);
  --jbz-shadow:     0 8px 24px rgba(0,0,0,.28);
  --jbz-shadow-lg:  0 18px 48px rgba(0,0,0,.45);
}

/* Full-bleed dark canvas — no more white washout */
.jbz-hero-wrap {
  color: var(--jbz-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--jbz-navy-deep);
}
.jbz-hero-wrap *  { box-sizing: border-box; }
.jbz-hero-wrap a  { color: var(--jbz-yellow); }
.jbz-hero-wrap h1, .jbz-hero-wrap h2, .jbz-hero-wrap h3 { color: var(--jbz-white); }

.jbz-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER (WHITE background so the JobZone logo blends) ---------- */
.jbz-hero-nav {
  background: var(--jbz-white);
  border-bottom: 4px solid var(--jbz-red);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
/* Bigger logo — height bumped, transform-scale + generous horizontal clipping
   to visually crop the white padding baked into the source logo PNG. */
.jbz-hero-nav__logo {
  display: block; height: 72px;
  overflow: hidden; padding: 0;
  display: flex; align-items: center;
}
.jbz-hero-nav__logo img {
  height: 72px; width: auto; display: block;
  transform: scale(1.18);
  transform-origin: left center;
  /* If the source logo has extra whitespace, crop from left by shifting */
  margin-left: -2px;
}

/* ---- BELT-AND-SUSPENDERS: hide any JBZ Hub link when the role-view toggle
       is previewing as Jobseeker or Company. Backup for the manage_options
       gate in jbz-hub.php — real non-admin users never see it because the
       plugin blocks access on cap check; this stops it from LOOKING like
       a jobseeker/company can access it in preview. ---- */
body.jbz-rv-jobseeker a[href*="jbz-hub"],
body.jbz-rv-jobseeker a[href*="/hub"],
body.jbz-rv-jobseeker a[href*="/jbz_hub"],
body.jbz-rv-company   a[href*="jbz-hub"],
body.jbz-rv-company   a[href*="/hub"],
body.jbz-rv-company   a[href*="/jbz_hub"] {
  display: none !important;
}
.jbz-hero-nav__menu-list {
  display: flex; gap: 22px; list-style: none; margin: 0; padding: 0;
}
.jbz-hero-nav__menu-list a {
  color: var(--jbz-navy); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 8px 4px; border-bottom: 2px solid transparent; transition: border-color .18s, color .18s;
}
.jbz-hero-nav__menu-list a:hover {
  border-bottom-color: var(--jbz-red); color: var(--jbz-red);
}
.jbz-hero-nav__actions { display: flex; gap: 12px; align-items: center; }
/* Header-scoped: swap the outline button so it reads on white */
.jbz-hero-nav .jbz-btn--outline { color: var(--jbz-navy); border-color: var(--jbz-navy); }
.jbz-hero-nav .jbz-btn--outline:hover { background: var(--jbz-navy); color: var(--jbz-white); }
.jbz-hero-nav__toggle svg { color: var(--jbz-navy); }

.jbz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 8px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .18s, color .18s;
  line-height: 1;
}
.jbz-btn:hover { transform: translateY(-2px); box-shadow: var(--jbz-shadow); }
.jbz-btn--outline { background: transparent; color: var(--jbz-white); border-color: var(--jbz-white); }
.jbz-btn--outline:hover { background: var(--jbz-white); color: var(--jbz-navy); }
.jbz-btn--primary { background: var(--jbz-red); color: var(--jbz-white); box-shadow: 0 0 0 3px var(--jbz-red-glow); }
.jbz-btn--primary:hover { background: var(--jbz-red-dark); color: var(--jbz-white); }
.jbz-btn--secondary { background: var(--jbz-white); color: var(--jbz-navy); }
.jbz-btn--secondary:hover { background: var(--jbz-yellow); color: var(--jbz-navy); }
/* v1.2.0 — yellow CTA. Same palette as the Event Details button's hover state, used for the
   "See Full Schedule" button so the homepage's primary yellow CTA reads consistently.
   Scoped with .jbz-hero-wrap ON PURPOSE: the blanket `.jbz-hero-wrap a { color: yellow }` rule
   on line ~34 is specificity (0,1,1) and beats a bare `.jbz-btn--cta` (0,1,0) — which rendered
   yellow-on-yellow (invisible label). Caught in the v1.2.0 render preview. Do not unscope. */
.jbz-hero-wrap .jbz-btn--cta,
.jbz-btn--cta { background: var(--jbz-yellow); color: var(--jbz-navy); box-shadow: 0 8px 24px rgba(253,224,71,.20); }
.jbz-hero-wrap .jbz-btn--cta:hover,
.jbz-btn--cta:hover { background: var(--jbz-white); color: var(--jbz-navy); }

/* Disabled / blurred = not-signed-in state */
.jbz-btn--locked {
  filter: blur(1.2px) grayscale(.3);
  opacity: .55;
  cursor: not-allowed;
  pointer-events: auto;
  position: relative;
}
.jbz-btn--locked:hover { transform: none; box-shadow: none; }
.jbz-btn--locked::after {
  content: '🔒'; position: absolute; top: -8px; right: -8px;
  background: var(--jbz-yellow); color: var(--jbz-navy);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; box-shadow: 0 2px 6px rgba(0,0,0,.4);
  filter: none;
}
.jbz-btn__tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--jbz-ink); color: var(--jbz-white); padding: 6px 10px;
  border-radius: 6px; font-size: 12px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s;
}
.jbz-btn--locked:hover .jbz-btn__tooltip { opacity: 1; }

.jbz-hero-nav__toggle {
  display: none; background: none; border: none; padding: 8px; cursor: pointer;
}
.jbz-hero-nav__toggle svg { width: 30px; height: 30px; color: var(--jbz-white); }

/* ---------- 3 BROWSE BUTTONS (dark card row) ---------- */
.jbz-hero-browse {
  background: linear-gradient(180deg, var(--jbz-navy-deep) 0%, var(--jbz-navy) 100%);
  padding: 56px 24px 36px; text-align: center;
}
.jbz-hero-browse__eyebrow {
  color: var(--jbz-red); text-transform: uppercase; letter-spacing: .14em;
  font-size: 22px; font-weight: 800; margin: 0 0 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.jbz-hero-browse__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 42px; font-weight: 700; margin: 0 0 10px; line-height: 1.15;
}
.jbz-hero-browse__title span { color: var(--jbz-yellow); }
.jbz-hero-browse__subtitle {
  color: rgba(255,255,255,.85); font-size: 18px; margin: 0 0 36px;
}
.jbz-hero-browse__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 960px; margin: 0 auto;
}
.jbz-hero-browse__card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--jbz-line-strong);
  border-radius: 12px; padding: 26px 18px; text-align: center;
  text-decoration: none; color: var(--jbz-white); transition: all .18s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  backdrop-filter: blur(4px);
}
.jbz-hero-browse__card:hover {
  background: var(--jbz-red); border-color: var(--jbz-red);
  transform: translateY(-4px); box-shadow: var(--jbz-shadow-lg);
}
.jbz-hero-browse__card svg { width: 44px; height: 44px; color: var(--jbz-yellow); }
.jbz-hero-browse__card:hover svg { color: var(--jbz-white); }
.jbz-hero-browse__card h3 { margin: 4px 0 2px; font-size: 20px; font-weight: 700; color: var(--jbz-white); }
.jbz-hero-browse__card p  { margin: 0; font-size: 13px; color: rgba(255,255,255,.75); }
.jbz-hero-browse__card:hover p { color: rgba(255,255,255,.95); }

/* ---------- HERO VIDEO (centered in max-width container) ---------- */
.jbz-hero-video-wrap {
  background: linear-gradient(180deg, var(--jbz-navy) 0%, var(--jbz-navy-deep) 100%);
  padding: 20px 24px 60px;
  display: flex; justify-content: center;
}
.jbz-hero-video {
  width: 100%; max-width: 1100px;
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--jbz-shadow-lg), 0 0 0 4px rgba(193,39,45,.3);
}
.jbz-hero-video__media {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.jbz-hero-video__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,18,43,0) 40%, rgba(5,18,43,.9) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 36px 24px;
}
.jbz-hero-video__caption { text-align: center; color: var(--jbz-white); max-width: 900px; }
.jbz-hero-video__caption h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 40px; margin: 0 0 8px; font-weight: 700; line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.jbz-hero-video__caption h2 .accent { color: var(--jbz-yellow); }
.jbz-hero-video__caption p {
  font-size: 18px; margin: 0; font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
  color: rgba(255,255,255,.95);
}

/* ---------- SECOND VIDEO — Opening Doors (side-by-side copy + video) ---------- */
.jbz-hero-video-wrap--doors {
  padding: 40px 24px 60px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.jbz-hero-video-doors-copy { color: var(--jbz-white); }
.jbz-hero-video-doors-eyebrow {
  color: var(--jbz-red); text-transform: uppercase; letter-spacing: .14em;
  font-size: 18px; font-weight: 800; margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.jbz-hero-video-doors-headline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 34px; line-height: 1.2; margin: 0 0 18px; font-weight: 700;
  color: var(--jbz-white);
}
.jbz-hero-video-doors-headline .accent { color: var(--jbz-yellow); }
.jbz-hero-video-doors-body {
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.9); margin: 0;
}
.jbz-hero-video-wrap--doors .jbz-hero-video {
  aspect-ratio: 16 / 9; margin: 0;
  box-shadow: var(--jbz-shadow-lg), 0 0 0 3px rgba(253,224,71,.25);
}
@media (max-width: 900px) {
  .jbz-hero-video-wrap--doors { grid-template-columns: 1fr; gap: 24px; }
  .jbz-hero-video-doors-headline { font-size: 26px; }
}

/* ---------- ABOUT / INFO (dark w/ red accent) ---------- */
.jbz-hero-about {
  padding: 72px 24px; background: var(--jbz-navy-deep); text-align: center;
}
.jbz-hero-about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto 36px;
}
.jbz-hero-about__stat {
  background: rgba(255,255,255,.05); border: 1px solid var(--jbz-line);
  border-top: 4px solid var(--jbz-red);
  border-radius: 14px; padding: 28px 18px;
}
.jbz-hero-about__stat:nth-child(2) {
  background: var(--jbz-red); border-top-color: var(--jbz-white);
  border-color: transparent;
}
.jbz-hero-about__stat:nth-child(3) { border-top-color: var(--jbz-yellow); }
.jbz-hero-about__stat .num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 46px; font-weight: 700; line-height: 1; display: block;
  color: var(--jbz-white);
}
.jbz-hero-about__stat .label {
  font-size: 13px; margin-top: 8px; display: block;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.85);
}
.jbz-hero-about__tagline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 30px; margin: 28px 0 8px; font-weight: 700; color: var(--jbz-white);
}
.jbz-hero-about__vet {
  font-size: 18px; color: var(--jbz-yellow); margin: 0 0 20px; font-weight: 600;
}
.jbz-hero-about__body {
  max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.9);
}

/* ---------- TESTIMONIALS CAROUSEL (v1.1.0) ---------- */
.jbz-hero-testimonials {
  background: var(--jbz-navy);
  padding: 72px 24px;
}
.jbz-hero-testimonials__eyebrow {
  color: var(--jbz-red); text-transform: uppercase; letter-spacing: .14em;
  font-size: 18px; font-weight: 800; margin: 0 0 12px; text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.jbz-hero-testimonials__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 34px; line-height: 1.2; margin: 0 auto 40px;
  color: var(--jbz-white); text-align: center; max-width: 700px;
}
.jbz-testimonial-carousel { max-width: 820px; margin: 0 auto; }
.jbz-testimonial-carousel__viewport { position: relative; }
.jbz-testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--jbz-line-strong);
  border-radius: 16px;
  padding: 44px 40px 32px;
  backdrop-filter: blur(4px);
  box-shadow: var(--jbz-shadow);
}
.jbz-testimonial-card[hidden] { display: none; }
.jbz-testimonial-card.is-active { animation: jbz-testimonial-fade .45s ease; }
@keyframes jbz-testimonial-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jbz-testimonial-card__mark {
  width: 40px; height: 30px; color: var(--jbz-red); opacity: .85; margin-bottom: 8px; display: block;
}
.jbz-testimonial-card__quote { margin: 0 0 24px; border: none; padding: 0; }
.jbz-testimonial-card__quote p {
  margin: 0; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.95);
  font-style: italic;
}
.jbz-testimonial-card__attribution {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--jbz-line); padding-top: 16px;
}
.jbz-testimonial-card__name { font-weight: 700; color: var(--jbz-yellow); font-size: 15px; font-style: normal; }
.jbz-testimonial-card__meta { font-size: 13px; color: rgba(255,255,255,.7); }
.jbz-testimonial-carousel__controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 28px;
}
.jbz-testimonial-carousel__arrow {
  background: rgba(255,255,255,.06); border: 1px solid var(--jbz-line-strong);
  color: var(--jbz-white); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .18s, border-color .18s, transform .12s;
  flex-shrink: 0; padding: 0;
}
.jbz-testimonial-carousel__arrow svg { width: 20px; height: 20px; }
.jbz-testimonial-carousel__arrow:hover { background: var(--jbz-red); border-color: var(--jbz-red); transform: translateY(-2px); }
.jbz-testimonial-carousel__dots { display: flex; gap: 8px; }
.jbz-testimonial-carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  transition: background .18s, transform .18s;
}
.jbz-testimonial-carousel__dot:hover { background: rgba(255,255,255,.5); }
.jbz-testimonial-carousel__dot.is-active { background: var(--jbz-yellow); transform: scale(1.2); }
@media (max-width: 700px) {
  .jbz-hero-testimonials__title { font-size: 26px; }
  .jbz-testimonial-card { padding: 32px 24px 24px; }
  .jbz-testimonial-card__quote p { font-size: 16px; }
}

/* ---------- EVENTS GRID (base-venue images, mobile-app style) ---------- */
.jbz-hero-events {
  background: var(--jbz-navy); padding: 72px 24px;
}
.jbz-hero-events__title {
  text-align: center; color: var(--jbz-white);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 38px; margin: 0 0 8px;
}
.jbz-hero-events__sub {
  text-align: center; color: rgba(255,255,255,.75);
  margin: 0 0 40px; font-size: 17px;
}
.jbz-hero-events__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
/* v1.2.0 (2026-07-25, per Wyatt): "See Full Schedule" route out of the capped strip. */
.jbz-hero-events__more {
  max-width: 1200px; margin: 36px auto 0; text-align: center;
}
.jbz-hero-events__more-btn {
  font-size: 16px; padding: 14px 30px;
}

.jbz-event-card {
  background: var(--jbz-white);
  color: var(--jbz-ink);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--jbz-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  border-left: 4px solid var(--jbz-red);
}
.jbz-event-card:hover { transform: translateY(-6px); box-shadow: var(--jbz-shadow-lg); }
.jbz-event-card__image {
  aspect-ratio: 16 / 10; background: #222;
  background-size: cover; background-position: center;
  position: relative;
}
.jbz-event-card__date-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--jbz-red); color: var(--jbz-white);
  border-radius: 10px; padding: 8px 12px;
  font-weight: 700; text-align: center;
  min-width: 56px; box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.jbz-event-card__date-badge .day   { display: block; font-size: 22px; line-height: 1; }
.jbz-event-card__date-badge .month { display: block; text-transform: uppercase; font-size: 10px; letter-spacing: .08em; margin-top: 2px; }
.jbz-event-card__body {
  padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.jbz-event-card__title {
  font-size: 20px; font-weight: 700; color: var(--jbz-navy); margin: 0;
  line-height: 1.3;
}
.jbz-event-card__meta {
  color: #475467; font-size: 14px; display: flex; flex-direction: column; gap: 6px;
}
.jbz-event-card__meta-row { display: flex; align-items: center; gap: 8px; }
.jbz-event-card__meta-row svg {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--jbz-red);
}
.jbz-event-card__base-req {
  background: #FFF3CD; color: #856404;
  align-self: flex-start; padding: 4px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700; margin-top: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.jbz-event-card__actions {
  margin-top: auto; display: flex; gap: 8px; padding-top: 10px;
  border-top: 1px solid #EAECF0;
}
.jbz-event-card__actions .jbz-btn {
  flex: 1; text-align: center; padding: 12px; font-size: 13px;
}

/* ---------- COMPARISON TABLE (v1.0.5) ---------- */
.jbz-hero-comparison {
  background: var(--jbz-navy-deep);
  padding: 72px 24px;
}
.jbz-hero-comparison__inner { max-width: 1100px; margin: 0 auto; }
.jbz-hero-comparison__eyebrow {
  color: var(--jbz-red); text-transform: uppercase; letter-spacing: .14em;
  font-size: 18px; font-weight: 800; margin: 0 0 12px; text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.jbz-hero-comparison__title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 34px; line-height: 1.2; margin: 0 auto 12px;
  color: var(--jbz-white); text-align: center; max-width: 800px;
}
.jbz-hero-comparison__sub {
  text-align: center; color: rgba(255,255,255,.85);
  margin: 0 auto 32px; font-size: 17px; max-width: 720px; line-height: 1.55;
}

.jbz-cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.jbz-cmp__table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--jbz-line-strong);
  border-radius: 14px; overflow: hidden;
  color: var(--jbz-white); font-size: 15px;
}
.jbz-cmp__table th, .jbz-cmp__table td {
  padding: 14px 16px; border-bottom: 1px solid var(--jbz-line);
  vertical-align: middle;
}
.jbz-cmp__table tbody tr:last-child th,
.jbz-cmp__table tbody tr:last-child td { border-bottom: none; }
.jbz-cmp__feature-head, .jbz-cmp__brand-head {
  background: rgba(0,0,0,.25);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  font-size: 12px; color: rgba(255,255,255,.9);
  text-align: center;
}
.jbz-cmp__brand-head--jbz {
  background: var(--jbz-red);
  color: var(--jbz-white);
  font-size: 14px; letter-spacing: .04em;
}
.jbz-cmp__feature-head { text-align: left; }
.jbz-cmp__feature {
  text-align: left; font-weight: 600; color: var(--jbz-white);
  background: rgba(255,255,255,.02);
  max-width: 380px;
}
.jbz-cmp__cell { text-align: center; }
.jbz-cmp__cell svg { width: 22px; height: 22px; display: inline-block; }
.jbz-cmp__cell--yes { color: #34D399; background: rgba(52,211,153,.08); }
.jbz-cmp__cell--yes svg { filter: drop-shadow(0 0 8px rgba(52,211,153,.35)); }
.jbz-cmp__cell--partial { color: var(--jbz-yellow); background: rgba(253,224,71,.06); }
/* v1.0.8: 'Partial' / 'Generic' render as words (no dashes, per Wyatt 2026-07-19) */
.jbz-cmp__word {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1; padding: 4px 8px; border-radius: 999px;
  background: rgba(253,224,71,.14); color: var(--jbz-yellow); white-space: nowrap;
}
.jbz-cmp__cell--no { color: #F87171; background: rgba(248,113,113,.06); }
/* JobZone column always highlighted */
.jbz-cmp__table tbody td:nth-child(2) { background: rgba(193,39,45,.10); }
.jbz-cmp__table tbody tr:hover td { background: rgba(255,255,255,.06); }
.jbz-cmp__table tbody tr:hover td:nth-child(2) { background: rgba(193,39,45,.18); }

.jbz-hero-comparison__legend {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin: 24px 0 0; color: rgba(255,255,255,.75); font-size: 13px;
}
.jbz-cmp__legend-item { display: inline-flex; align-items: center; gap: 8px; }
.jbz-cmp__cell--yes-swatch,
.jbz-cmp__cell--partial-swatch,
.jbz-cmp__cell--no-swatch {
  width: 20px; height: 20px; border-radius: 4px; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}
.jbz-cmp__cell--yes-swatch { background: rgba(52,211,153,.15); color: #34D399; }
.jbz-cmp__cell--partial-swatch { background: rgba(253,224,71,.15); color: var(--jbz-yellow); }
.jbz-cmp__cell--no-swatch { background: rgba(248,113,113,.15); color: #F87171; }

@media (max-width: 700px) {
  .jbz-hero-comparison__title { font-size: 26px; }
  .jbz-cmp__table { font-size: 13px; }
  .jbz-cmp__table th, .jbz-cmp__table td { padding: 10px 8px; }
  .jbz-cmp__feature { max-width: 200px; }
  .jbz-cmp__cell svg { width: 18px; height: 18px; }
}

/* ---------- COMPANY MARQUEE (CSS-only) ---------- */
.jbz-hero-companies {
  background: var(--jbz-navy-deep); padding: 56px 0; overflow: hidden;
  border-top: 1px solid var(--jbz-line);
}
.jbz-hero-companies__title {
  text-align: center; color: var(--jbz-yellow);
  margin: 0 0 28px; font-size: 15px;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}
.jbz-marquee { position: relative; overflow: hidden; }
.jbz-marquee__track {
  display: flex; gap: 40px; align-items: center;
  /* v1.2.0 (2026-07-25, per Wyatt): SLOWED from 70s to 180s. The band is ~2.5x slower
     than before (the chips also got wider with logos, so the real px/s drop is ~2x),
     which puts it in comfortable reading range instead of a blur. */
  animation: jbz-marquee-scroll 180s linear infinite;
  width: max-content;
}
.jbz-marquee:hover .jbz-marquee__track { animation-play-state: paused; }
.jbz-marquee__item {
  flex-shrink: 0; padding: 10px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--jbz-line-strong);
  border-radius: 999px; font-weight: 600; color: var(--jbz-white);
  font-size: 15px; white-space: nowrap;
  transition: background .18s, border-color .18s;
}
.jbz-marquee__item:hover {
  background: var(--jbz-red); border-color: var(--jbz-red);
}
/* v1.2.0 — LOGO + NAME chips.
   The logo sits on its own white tile inside the dark pill: company logos are authored for
   light backgrounds, so a dark-ink mark would otherwise vanish against the navy band. Height
   is hard-capped so one oversized upload can't blow the band's rhythm out. Chips WITHOUT a
   logo keep the original name-only pill (see .jbz-marquee__item base rule above). */
.jbz-marquee__item--logo {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 22px 8px 8px;
}
.jbz-marquee__logo {
  flex-shrink: 0;
  height: 34px; width: auto; max-width: 96px;
  object-fit: contain; display: block;
  background: #fff; border-radius: 999px;
  padding: 4px 8px; box-sizing: content-box;
}
.jbz-marquee__name { white-space: nowrap; }
@keyframes jbz-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- MOBILE DRAWER (overlay) ---------- */
.jbz-hero-drawer {
  position: fixed; top: 0; right: -340px; width: 340px; max-width: 88vw;
  height: 100vh; background: var(--jbz-navy);
  box-shadow: -12px 0 32px rgba(0,0,0,.5);
  transition: right .3s cubic-bezier(.4,0,.2,1);
  z-index: 1000; padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  color: var(--jbz-white);
}
.jbz-hero-drawer.is-open { right: 0; }
.jbz-hero-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--jbz-line);
}
.jbz-hero-drawer__close { background: none; border: none; padding: 8px; cursor: pointer; }
.jbz-hero-drawer__close svg { width: 26px; height: 26px; color: var(--jbz-white); }
.jbz-hero-drawer__menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.jbz-hero-drawer__menu a {
  display: block; padding: 14px 12px; color: var(--jbz-white);
  text-decoration: none; font-weight: 600; border-radius: 8px;
  transition: background .15s, color .15s;
}
.jbz-hero-drawer__menu a:hover { background: var(--jbz-red); color: var(--jbz-white); }
.jbz-hero-drawer__actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.jbz-hero-drawer__actions .jbz-btn { text-align: center; padding: 14px; }

.jbz-hero-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s;
  z-index: 999;
}
.jbz-hero-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  /* v1.0.7 FIX: the desktop menu markup is `.jbz-hero-nav > nav > ul.jbz-hero-nav__menu-list`.
     The prior selector `.jbz-hero-nav__menu` matched NOTHING, so the full menu stayed visible
     and overflowed horizontally on phones instead of collapsing to the hamburger drawer. */
  .jbz-hero-nav > nav,
  .jbz-hero-nav__menu-list,
  .jbz-hero-nav__actions .jbz-btn { display: none; }
  .jbz-hero-nav__toggle { display: block; }
  .jbz-hero-video__caption h2 { font-size: 28px; }
  .jbz-hero-video__caption p  { font-size: 15px; }
  .jbz-hero-about__stats { grid-template-columns: 1fr; gap: 14px; }
  .jbz-hero-browse__grid { grid-template-columns: 1fr; }
  .jbz-hero-browse__title { font-size: 30px; }
  .jbz-hero-events__title { font-size: 28px; }
  .jbz-hero-events__grid  { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .jbz-hero-drawer, .jbz-hero-drawer-backdrop { display: none; }
}
