/* ─── Penny Hardaway — Animation + Video Layer ───────────────────────────────
   Applied via Elementor "Additional CSS Class" field.
   Never edited by client. ──────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════
   HERO — CINEMATIC FULL-BLEED (Option A)
══════════════════════════════════════════════════════ */
.hero-cin {
  position: relative;
  width: 100%;
  min-height: 68vh;
  overflow: hidden;
  background: #09090E;
  display: flex;
  flex-direction: column;
}

/* Hide overlaid name — nav title carries the branding now */
.hero-cin-name,
.hero-cin-eyebrow {
  display: none !important;
}

/* Video background */
.hero-cin-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-cin-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Cinematic overlay — heavy left, fades right; full bleed to dark at bottom */
.hero-cin-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(9,9,14,0.92) 0%, rgba(9,9,14,0.60) 55%, rgba(9,9,14,0.20) 100%),
    linear-gradient(to top,    rgba(9,9,14,1.00) 0%, rgba(9,9,14,0.00) 40%),
    linear-gradient(to bottom, rgba(9,9,14,0.50) 0%, rgba(9,9,14,0.00) 20%);
  z-index: 1;
}

/* Content column */
.hero-cin-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 88px 40px;
}

.hero-cin-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2756F0;
  margin: 0 0 22px;
}

/* Two-line name — fills the left half of the viewport */
.hero-cin-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 12.5vw, 200px);
  line-height: 0.87;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}
.hero-cin-line {
  display: block;
  overflow: visible;
}

/* Letter reveal — chars start below + tilted */
.hero-cin-name .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(56px) rotate(3deg);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-cin-name .char.revealed {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero-cin-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 440px;
  margin: 0 0 38px;
}

.hero-cin-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btn-primary,
.hero-btn-ghost {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 15px 32px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}
.hero-btn-primary {
  background: #2756F0;
  color: #ffffff !important;
  border: 1px solid #2756F0;
}
.hero-btn-primary:hover {
  background: #1E47D4;
  border-color: #1E47D4;
  text-decoration: none !important;
}
.hero-btn-ghost {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.hero-btn-ghost:hover {
  border-color: #ffffff;
  text-decoration: none !important;
}

/* Stats bar — pinned to the bottom of the hero */
.hero-cin-stats {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 88px;
  gap: 0;
}
.hero-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat-item + .hero-stat-item {
  padding-left: 32px;
}
.hero-stat-item:last-child {
  border-right: none;
}
.hero-stat-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: block;
}

/* Scroll cue — bottom-right, vertical */
.hero-scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 110px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #2756F0);
  animation: hero-scroll-drop 2.2s ease-in-out infinite;
}
@keyframes hero-scroll-drop {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8) translateY(-4px); }
  50%       { opacity: 1;   transform: scaleY(1.0) translateY(0);    }
}
.hero-scroll-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-cin-inner {
    padding: 90px 20px 28px;
  }
  .hero-cin-name {
    /* 12vw keeps HARDAWAY inside the viewport at every phone size */
    font-size: clamp(36px, 12vw, 200px);
    letter-spacing: -0.02em;
  }
  .hero-cin-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }
  .hero-cin-stats {
    padding: 20px 20px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stat-item {
    flex: 0 0 calc(50% - 16px);
    border-right: none;
    padding: 0;
  }
  .hero-stat-item + .hero-stat-item { padding-left: 0; }
  .hero-stat-val { font-size: 24px; }
  .hero-scroll-cue { display: none; }
}

/* ══════════════════════════════════════════════════════
   MEDIA GRID
══════════════════════════════════════════════════════ */
.media-grid-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
  background: #09090E;
}
.media-right-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
/* Third video spans both columns in right col */
.media-small-wide {
  grid-column: 1 / -1;
}
/* All cells share these */
.media-cell {
  position: relative;
  overflow: hidden;
  background: #000000;
  border: none;
  border-radius: 0;
}
.media-tall  { min-height: 600px; }
.media-small { min-height: 300px; }
/* iframe covers each cell */
.media-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  z-index: 0;
}
/* Overlay */
.media-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
  transition: background 0.3s ease;
  pointer-events: none;
}
.media-cell:hover .media-cell-overlay {
  background: rgba(0, 0, 0, 0.18);
}
/* Centered play button */
.media-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  line-height: 0;
}
.media-cell:hover .media-play-icon {
  transform: translate(-50%, -50%) scale(1.18);
  opacity: 1;
}
.play-svg { display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
/* Bottom-left metadata */
.media-cell-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  width: 100%;
}
.media-cell-type {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2756F0;
}
.media-cell-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.media-small .media-cell-title { font-size: 13px; }
.media-small .media-play-icon .play-svg { width: 36px; height: 36px; }
/* Responsive */
@media (max-width: 900px) {
  .media-grid-outer { grid-template-columns: 1fr; }
  .media-tall { min-height: 360px; }
  .media-right-col { grid-template-columns: 1fr 1fr; }
  .media-small { min-height: 220px; }
}

/* ── Fade-up on scroll ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Per-element stagger reveal (Apple-style) ──────────────────────────── */
.reveal-child {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-child.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Hero parallax drift ────────────────────────────────────────────────── */
.hero-scroll-drift {
  will-change: transform, opacity;
}

/* ── Hero H1 letter reveal ─────────────────────────────────────────────── */
.hero-h1 .elementor-heading-title .char,
.hero-h1 h1 .char,
.video-hero-h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-h1 .elementor-heading-title .char.revealed,
.hero-h1 h1 .char.revealed,
.video-hero-h1 .char.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Eyebrow labels ────────────────────────────────────────────────────── */
.eyebrow .elementor-heading-title,
.eyebrow p {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #2756F0;
  margin-bottom: 12px;
}

/* ── Nav: sticky + smart hide/show on scroll ─────────────────────────────── */
.site-header,
#masthead {
  position: sticky !important;
  top: 0 !important;
  z-index: 9000 !important;
  transform: translateY(0);
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.32s ease,
    box-shadow 0.32s ease;
  will-change: transform;
}

/* Nav title — PENNY® + coin logo lockup */
.site-title,
.site-title a {
  font-size: 1.9rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}
.site-cent {
  display: inline-block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

/* Desktop header — full-width single-line layout */
.site-header .header-inner {
  max-width: 100% !important;
  padding: 0 40px !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 64px !important;
  box-sizing: border-box !important;
}
@media (max-width: 767px) {
  .site-header .header-inner {
    padding: 0 16px !important;
  }
  .site-navigation-toggle-holder {
    margin-left: auto;
    flex-shrink: 0;
  }
}
.site-navigation.show .menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-navigation.show .menu > .menu-item > a {
  white-space: nowrap !important;
  line-height: 64px !important;
  padding: 0 !important;
  display: block !important;
}

/* Bottom fade — blends nav into hero video */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(9, 9, 14, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 8998;
  transition: opacity 0.32s ease;
}
.nav-scrolled .site-header::after {
  opacity: 0;
}

/* Scrolled: add solid dark background */
.nav-scrolled .site-header,
.nav-scrolled #masthead {
  background-color: rgba(7, 7, 13, 0.96) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(39, 86, 240, 0.18);
}

/* Scrolling down: slide header off-screen */
.nav-hidden .site-header,
.nav-hidden #masthead {
  transform: translateY(-110%);
}

/* ── Mobile hamburger menu ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Dropdown panel */
  .site-navigation-dropdown {
    background: rgba(5, 5, 15, 0.98) !important;
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(39, 86, 240, 0.2) !important;
    padding: 8px 0 28px !important;
  }

  .site-navigation-dropdown .menu {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    gap: 0 !important;
  }

  .site-navigation-dropdown .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-navigation-dropdown .menu-item a {
    display: block !important;
    padding: 15px 28px !important;
    font-size: 12px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
  }

  .site-navigation-dropdown .menu-item a:hover {
    color: #4B7BFF !important;
    padding-left: 36px !important;
  }

  /* Hamburger icon — 3 bars */
  .site-navigation-toggle {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-navigation-toggle-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: background 0.25s ease;
  }

  .site-navigation-toggle-icon::before,
  .site-navigation-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease, bottom 0.28s ease;
  }

  .site-navigation-toggle-icon::before { top: -7px; }
  .site-navigation-toggle-icon::after  { bottom: -7px; }

  /* Animated to X when open */
  .site-navigation-toggle[aria-expanded="true"] .site-navigation-toggle-icon {
    background: transparent;
  }
  .site-navigation-toggle[aria-expanded="true"] .site-navigation-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .site-navigation-toggle[aria-expanded="true"] .site-navigation-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

/* ── Shop nav dropdown ──────────────────────────────────────────────────── */
/* Parent item — needs relative positioning for the panel */
nav li.menu-item-has-children,
.elementor-nav-menu li.menu-item-has-children,
.menu-primary-container li.menu-item-has-children {
  position: relative;
}

/* Dropdown panel — hidden by default */
/* Use !important to beat Hello Elementor header-footer.css which sets background:#fff on .site-navigation ul.menu li ul */
.site-navigation li.menu-item-has-children > .sub-menu,
nav li.menu-item-has-children > .sub-menu,
.menu-primary-container li.menu-item-has-children > .sub-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 180px !important;
  background: rgba(5, 5, 15, 0.97) !important;
  border: 1px solid rgba(39, 86, 240, 0.22) !important;
  border-top: 2px solid #2756F0 !important;
  padding: 6px 0 !important;
  z-index: 9999 !important;
  list-style: none !important;
  margin: 0 !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Reveal on hover (desktop) */
.site-navigation li.menu-item-has-children:hover > .sub-menu,
nav li.menu-item-has-children:hover > .sub-menu,
.menu-primary-container li.menu-item-has-children:hover > .sub-menu {
  display: block !important;
}

/* Child item links */
.site-navigation li.menu-item-has-children > .sub-menu a,
nav li.menu-item-has-children > .sub-menu a,
.menu-primary-container li.menu-item-has-children > .sub-menu a {
  display: block !important;
  padding: 11px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.62) !important;
  white-space: nowrap !important;
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease !important;
  text-decoration: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-navigation li.menu-item-has-children > .sub-menu a:hover,
nav li.menu-item-has-children > .sub-menu a:hover,
.menu-primary-container li.menu-item-has-children > .sub-menu a:hover {
  color: #4B7BFF !important;
  padding-left: 30px !important;
  background: rgba(39, 86, 240, 0.06) !important;
}

/* Suppress the Hello Elementor li::after chevron — we use our own a::after */
.site-navigation ul.menu li.menu-item-has-children::after {
  display: none !important;
}

/* Chevron indicator on parent link */
nav li.menu-item-has-children > a::after,
.menu-primary-container li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.5;
  vertical-align: middle;
}

/* Mobile: show children inline inside the hamburger panel */
@media (max-width: 1024px) {
  .site-navigation-dropdown li.menu-item-has-children > .sub-menu {
    display: block !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 0 0 20px !important;
  }
  .site-navigation-dropdown li.menu-item-has-children > .sub-menu a {
    padding: 10px 28px !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.4) !important;
  }
  .site-navigation-dropdown li.menu-item-has-children > .sub-menu a:hover {
    color: #4B7BFF !important;
    padding-left: 36px !important;
    background: transparent !important;
  }
}

/* ── Shop dropdown — redesigned panel ──────────────────────────────────── */
.shop-dropdown-panel {
  min-width: 240px !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.shop-dropdown-header {
  display: block !important;
  padding: 13px 20px 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #2756F0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  pointer-events: none !important;
  user-select: none !important;
  list-style: none !important;
}
/* Two-line link layout: name + descriptor */
.shop-dropdown-panel .menu-item > a {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  padding: 11px 20px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  background: transparent !important;
  box-shadow: none !important;
}
.shop-link-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.shop-link-desc {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
/* Hover state */
.shop-dropdown-panel .menu-item > a:hover {
  padding-left: 20px !important;
  background: rgba(39,86,240,0.07) !important;
}
.shop-dropdown-panel .menu-item > a:hover .shop-link-name {
  color: #4B7BFF;
}
.shop-dropdown-panel .menu-item > a:hover .shop-link-desc {
  color: rgba(255,255,255,0.45);
}
/* Divider between NBA/collector and Tigers */
.shop-dropdown-divider {
  display: block !important;
  height: 1px !important;
  background: rgba(255,255,255,0.07) !important;
  margin: 4px 0 !important;
  padding: 0 !important;
  border: none !important;
  list-style: none !important;
}

/* ── Button gold-slide underline ───────────────────────────────────────── */
.btn-slide-gold .elementor-button,
.btn-slide-gold a.elementor-button {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.btn-slide-gold .elementor-button::after,
.btn-slide-gold a.elementor-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #2756F0;
  transition: left 0.3s ease;
}
.btn-slide-gold .elementor-button:hover::after,
.btn-slide-gold a.elementor-button:hover::after {
  left: 0;
}

/* ── Venture cards grid — auto-reflows for any card count ───────────────── */
.venture-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  /* Reset Elementor flex defaults */
  flex-wrap: unset !important;
  align-items: unset !important;
  flex-direction: unset !important;
}

/* Force each card to fill its grid track — overrides Elementor's column widths */
.venture-cards-grid > .e-con,
.venture-cards-grid > .venture-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex-basis: unset !important;
  box-sizing: border-box;
}

/* ── Venture cards hover ────────────────────────────────────────────────── */
.venture-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-left: 3px solid transparent !important;
  cursor: pointer;
}
.venture-card:hover {
  transform: translateY(-6px);
  border-left-color: #2756F0 !important;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.venture-card .venture-num .elementor-heading-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.venture-card .venture-title .elementor-heading-title {
  font-size: 20px;
  font-family: 'Archivo Black', sans-serif;
  margin: 0;
}
.venture-card .venture-body .elementor-text-editor p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ── Venture accordion toggle button (hidden on desktop) ────────────────── */
.venture-toggle {
  display: none;
}

/* ── Mobile accordion ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .venture-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .venture-cards-grid > .e-con,
  .venture-cards-grid > .venture-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .venture-card {
    border-left: 3px solid transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }

  /* Body collapsed by default on mobile */
  .venture-card .venture-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
    opacity: 0;
  }

  /* Body open */
  .venture-card.venture-open .venture-body {
    max-height: 400px;
    opacity: 1;
  }

  /* Open card gets blue left border */
  .venture-card.venture-open {
    border-left-color: #2756F0 !important;
  }

  /* Disable desktop hover lift on mobile */
  .venture-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Toggle chevron button */
  .venture-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(39, 86, 240, 0.12);
    border: 1px solid rgba(39, 86, 240, 0.3);
    border-radius: 50%;
    color: #2756F0;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.25s ease;
    padding: 0;
  }

  .venture-toggle svg {
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .venture-card.venture-open .venture-toggle {
    background: rgba(39, 86, 240, 0.22);
  }

  .venture-card.venture-open .venture-toggle svg {
    transform: rotate(180deg);
  }
}

/* ── Ticker ────────────────────────────────────────────────────────────── */
.ticker-outer {
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  border-top: 1px solid rgba(39,86,240,0.45);
  border-bottom: 1px solid rgba(39,86,240,0.45);
  /* Fill flex container on all browsers including iOS Safari */
  width: 100%;
  min-width: 0;
  display: block;
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
  animation-play-state: paused;
}
.ticker-inner.ticker-ready {
  animation-play-state: running;
}
@media (hover: hover) {
  .ticker-inner.ticker-ready:hover { animation-play-state: paused; }
}

/* Scroll invitation cue */
.scroll-cue {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(39,86,240,.85);
  animation: scroll-bounce 2.2s ease-in-out infinite;
  user-select: none;
  z-index: 9999;
  transition: opacity 0.7s ease;
  white-space: nowrap;
}
.scroll-cue.scroll-cue-gone {
  opacity: 0 !important;
  pointer-events: none;
}
.scroll-cue-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-cue-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39,86,240,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(39,86,240,.25);
  animation: ring-pulse 2.2s ease-in-out infinite;
}
.scroll-cue:hover { color: rgba(39,86,240,1); }
.scroll-cue:hover .scroll-cue-ring {
  border-color: rgba(39,86,240,.7);
  box-shadow: 0 0 22px rgba(39,86,240,.5);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .75; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(39,86,240,.2); }
  50%       { box-shadow: 0 0 22px rgba(39,86,240,.55); }
}

/* Logo images inside ticker */
.ticker-logo-img {
  display: block;
  width: auto;
  max-width: 260px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
.ticker-logo-memphis {
  max-width: 200px;
  max-height: 200px;
}
.ticker-logo-walmart {
  max-width: 140px;
  max-height: 60px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 14px;
  box-sizing: content-box;
}
.ticker-logo-penny {
  max-width: 64px;
  max-height: 64px;
}
.ticker-inner.ticker-partners {
  animation-direction: normal;
}
.ticker-logo-stjude {
  max-width: 340px;
  max-height: 130px;
}
.ticker-logo-gatorade {
  max-width: 320px;
  max-height: 140px;
}
.ticker-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 50px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ticker-item a.ticker-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.ticker-item a.ticker-link:hover {
  color: #4B7BFF;
  text-decoration: none;
}
.ticker-dot {
  color: #2756F0;
  font-size: 7px;
  vertical-align: middle;
  padding: 0 4px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Media grid cells ───────────────────────────────────────────────────── */
.media-cell {
  position: relative;
  overflow: hidden;
}
.media-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.media-cell:hover::after {
  background: rgba(0,0,0,0.45);
}
.media-cell .elementor-custom-embed-play,
.media-cell .elementor-video-play-icon {
  transition: transform 0.35s ease;
  z-index: 2;
  position: relative;
}
.media-cell:hover .elementor-custom-embed-play,
.media-cell:hover .elementor-video-play-icon {
  transform: scale(1.18);
}

/* ── Split parallax ────────────────────────────────────────────────────── */
.split-parallax {
  overflow: hidden;
}
.split-parallax .elementor-widget-image img,
.split-parallax img {
  will-change: transform;
  transition: transform 0.12s linear;
}

/* ── Stats band ────────────────────────────────────────────────────────── */
.stat-num .elementor-heading-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: #2756F0;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label .elementor-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Foundation quote ───────────────────────────────────────────────────── */
.foundation-quote {
  border-left: 3px solid #2756F0;
  padding: 16px 0 16px 28px;
  margin: 24px 0;
}
.foundation-quote p {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #ffffff;
  font-style: normal;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Social links (footer) ──────────────────────────────────────────────── */
.social-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}
.social-link:hover { color: #2756F0; }

/* ── Foamposite section: force true full-viewport width ─────────────────── */
/* WP sets --wide-size:1200px; Elementor widget containers inherit it.       */
/* These overrides ensure the immersive section bleeds edge-to-edge.         */
.section-nike-pm,
.section-nike-pm .elementor-widget,
.section-nike-pm .elementor-widget-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Bottom bleeds blue into Home Court — same glow, both sides of the seam */
.e-con.section-nike-pm {
  position: relative;
}
.e-con.section-nike-pm::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 350px;
  background:
    radial-gradient(ellipse 140% 100% at 50% 100%, rgba(39,86,240,.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Keep npm content above the fade overlay */
.npm-wrap {
  position: relative;
  z-index: 1;
}

/* Home Court container — remove radius/shadow, add blue bottom glow border */
.elementor-element-122d53d {
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  border-bottom: 1px solid rgba(39,86,240,.45) !important;
  box-shadow: 0 4px 32px rgba(39,86,240,.25) !important;
}

/* ── Merch grid ─────────────────────────────────────────────────────────── */
.merch-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.merch-header {
  margin-bottom: 40px;
}
.merch-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2756F0;
  margin: 0 0 14px;
}
.merch-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: #ffffff;
  margin: 0;
  line-height: 1;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.merch-card {
  display: block;
  text-decoration: none !important;
  background: #0E0F1A;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.merch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  text-decoration: none !important;
}
.merch-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% 60%, rgba(39,86,240,.30) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(39,86,240,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(39,86,240,.14) 0%, transparent 60%),
    #06060E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.merch-img-contain img {
  object-fit: contain;
  padding: 20px;
}
.merch-img-fanatics img {
  object-fit: contain;
  padding: 12px;
}
.merch-card:hover .merch-img-wrap img {
  transform: scale(1.04);
}
.merch-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.merch-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2756F0;
}
.merch-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
.merch-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px;
  transition: color 0.25s ease;
}
.merch-card:hover .merch-card-cta {
  color: #4B7BFF;
}

@media (max-width: 768px) {
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .merch-title { font-size: 36px; }
}

/* ── Footer ventures line ───────────────────────────────────────────────── */
.footer-ventures {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}
.fv-label {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer-logo .elementor-heading-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.footer-tagline .elementor-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.footer-copy .elementor-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ── Shop cards ─────────────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.shop-card {
  background: #111111;
  padding: 0 0 20px;
}
.shop-img-placeholder {
  height: 200px;
  background: #1a1a1a;
  margin-bottom: 16px;
}
.shop-item-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: #ffffff;
  padding: 0 16px;
  margin: 0 0 10px;
}
.shop-cta {
  display: inline-block;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2756F0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.shop-cta:hover { opacity: 0.7; }

/* ── Events list ────────────────────────────────────────────────────────── */
.penny-events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}
.penny-event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0E0F1A;
  padding: 20px 28px;
  transition: background 0.25s ease;
}
.penny-event-row:hover { background: #131622; }
.penny-event-info { display: flex; align-items: center; gap: 24px; }
.penny-event-date {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: #2756F0;
  min-width: 80px;
}
.penny-event-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: #ffffff;
}
.penny-event-location {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.penny-event-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2756F0;
  text-decoration: none;
  border: 1px solid rgba(39,86,240,0.35);
  padding: 12px 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.penny-event-btn:hover { border-color: #2756F0; }

/* ── Partners row ───────────────────────────────────────────────────────── */
.partner-name .elementor-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Partner logo images ─────────────────────────────────────────────────── */
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 12px;
  transition: transform 0.25s ease;
}
.partner-logo-link:hover {
  transform: scale(1.06);
}
.partner-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

/* ── CF7 form overrides ─────────────────────────────────────────────────── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: #0E0F1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.25s ease;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #2756F0;
}
.wpcf7-form input[type="submit"] {
  background: #2756F0;
  color: #ffffff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.wpcf7-form input[type="submit"]:hover { background: #1E47D4; }

/* ── Hero section ───────────────────────────────────────────────────────── */
.section-hero {
  min-height: 82vh;
}
.section-hero .hero-body .elementor-text-editor p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 16px 0 32px;
}
.section-hero .hero-h1 .elementor-heading-title {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.0;
  font-family: 'Archivo Black', sans-serif;
  margin: 0;
}

/* ── lite-youtube in media grid ─────────────────────────────────────────── */
.media-cell lite-youtube {
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}
/* Remove aspect-ratio padding — cell height is set by min-height */
.media-cell lite-youtube::after { display: none; }
/* Remove title gradient — we have our own .media-cell-info */
.media-cell lite-youtube::before { display: none; }
/* Hide default red YT play button — we use .media-play-icon */
.media-cell lite-youtube > .lty-playbtn { display: none; }
/* After video activates, hide our overlay chrome */
.media-cell lite-youtube.lyt-activated ~ .media-cell-overlay,
.media-cell lite-youtube.lyt-activated ~ .media-play-icon,
.media-cell lite-youtube.lyt-activated ~ .media-cell-info {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ══════════════════════════════════════════════════════
   PENNY VIDEO CARDS  (Loop Grid / penny_video CPT)
   Apply _css_classes: "penny-video-card" to the Loop Item container
══════════════════════════════════════════════════════ */
.penny-video-card {
  position: relative;
  overflow: hidden;
  background: #0E0F1A;
  cursor: pointer;
  display: block;
}
.penny-video-card .penny-video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.penny-video-card:hover .penny-video-thumb {
  transform: scale(1.04);
}
.penny-video-card .penny-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 10, 0.88) 0%,
    rgba(6, 6, 10, 0.30) 50%,
    transparent 100%
  );
  transition: background 0.35s ease;
}
.penny-video-card:hover .penny-video-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 6, 10, 0.92) 0%,
    rgba(6, 6, 10, 0.50) 60%,
    rgba(39, 86, 240, 0.08) 100%
  );
}
.penny-video-card .penny-video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 2;
}
.penny-video-card .penny-video-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4B7BFF;
  margin: 0 0 7px;
  display: block;
}
.penny-video-card .penny-video-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
/* Play button */
.penny-video-card .penny-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}
.penny-video-card:hover .penny-play-btn {
  transform: translate(-50%, -50%) scale(1);
  background: rgba(39, 86, 240, 0.20);
  border-color: #2756F0;
}
.penny-play-btn svg { display: block; }

/* Loop Grid container spacing */
.elementor-loop-container .penny-video-card {
  transition: box-shadow 0.35s ease;
}
.elementor-loop-container .penny-video-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Stagger entrance for Loop Grid children */
.elementor-loop-container > * {
  transition-delay: calc(var(--loop-item-index, 0) * 60ms);
}

/* ══════════════════════════════════════════════════════
   HERO — native Elementor video background adjustments
══════════════════════════════════════════════════════ */
/* Ensure hero widget text sits above Elementor's overlay layer */
.section-hero-video .elementor-widget-heading,
.section-hero-video .elementor-widget-text-editor,
.section-hero-video .elementor-widget-button,
.section-hero-video .e-con.e-child {
  position: relative;
  z-index: 2;
}
/* Elementor button widget — inherit our typography classes */
.section-hero-video .elementor-button.video-btn-primary,
.section-hero-video .elementor-button.video-btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.section-hero-video .elementor-button.video-btn-secondary:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════
   MOBILE — comprehensive overrides (≤768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Media grid: collapse right col to 1 column ── */
  .media-right-col {
    grid-template-columns: 1fr !important;
  }
  .media-tall  { min-height: 260px; }
  .media-small { min-height: 200px; }
  .media-small-wide { grid-column: 1; }

  /* ── News grid → single column ── */
  .penny-news-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Shop grid → single column ── */
  .shop-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* ── Events: stack vertically ── */
  .penny-event-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }
  .penny-event-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .penny-event-name    { font-size: 14px; }
  .penny-event-location { font-size: 12px; }

  /* ── Foundation quote: smaller text ── */
  .foundation-quote p {
    font-size: 17px;
  }

  /* ── Split parallax panels: reduce min-height ── */
  .split-parallax {
    min-height: 260px !important;
  }

  /* ── General Elementor section padding reduction ── */
  .e-con[class*="section-"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── Hero: zero padding so video is full-bleed ── */
  #hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ── Hero video: brighter on mobile — lighten overlay instead of filter (no GPU cost) ── */
  .hero-cin-overlay {
    opacity: 0.5;
  }

  /* ── Stat band: smaller numbers ── */
  .stat-num .elementor-heading-title {
    font-size: 28px;
  }

  /* ── Media cell info text ── */
  .media-cell-title { font-size: 13px; }

  /* ── Ticker: slightly tighter on mobile ── */
  .ticker-item { font-size: 10px; padding: 0 14px; }

  /* ── Top ticker: force zero horizontal padding, escape any Elementor container padding ── */
  .elementor-element-11afa8e {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .elementor-element-11afa8e .ticker-outer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* ── Bottom ticker: on mobile Elementor collapses the 80px padding — override to 0 ── */
  .elementor-element-1291dc9 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .elementor-element-1291dc9 .ticker-outer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* ── Ticker logos: scale down for mobile viewports ── */
  .ticker-logo-img    { max-width: 80px !important;  max-height: 28px !important; }
  .ticker-logo-memphis { max-width: 60px !important; max-height: 40px !important; }
  .ticker-logo-penny  { max-width: 32px !important;  max-height: 32px !important; }
  .ticker-logo-stjude { max-width: 100px !important; max-height: 28px !important; }
  .ticker-logo-gatorade { max-width: 80px !important; max-height: 28px !important; }

  /* ── Scroll cues: minimal on mobile — bare ring/chevron, no pill ── */
  .scroll-cue {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    gap: 4px !important;
    bottom: 20px !important;
    color: rgba(255,255,255,0.42) !important;
    touch-action: manipulation;
    animation: none !important;
  }
  .scroll-cue-label {
    font-size: 8px !important;
    letter-spacing: 0.10em !important;
    color: rgba(255,255,255,0.32) !important;
  }
  .scroll-cue-ring {
    width: 30px !important;
    height: 30px !important;
    border-color: rgba(255,255,255,0.18) !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .scroll-cue-chevron {
    width: 14px !important;
    height: 9px !important;
  }
}

/* ── Phones (≤480px): extra tweaks ── */
@media (max-width: 480px) {
  .hero-cin-eyebrow { font-size: 12px; letter-spacing: 0.10em; }
  .media-tall  { min-height: 220px; }
  .media-small { min-height: 170px; }
  .shop-img-placeholder { height: 160px; }

  /* Partner logos: wrap into 3-per-row grid on phones */
  .elementor-element-128feda > .e-con-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .partner-logo-img {
    max-height: 36px;
    max-width: 100px;
  }
  .partner-logo-fedex {
    max-height: 26px;
    max-width: 110px;
  }
}

/* ── Small phones (≤375px): tightest adjustments ── */
@media (max-width: 375px) {
  .hero-cin-inner {
    padding: 72px 16px 20px;
  }
  .hero-cin-name {
    font-size: clamp(32px, 11vw, 60px);
  }
  .hero-cin-stats {
    padding: 16px;
    gap: 12px;
  }
  .hero-stat-item {
    flex: 0 0 calc(50% - 12px);
  }
  .media-tall  { min-height: 180px; }
  .media-small { min-height: 140px; }
  .partner-logo-img {
    max-height: 30px;
    max-width: 84px;
  }
  .partner-logo-fedex {
    max-height: 22px;
    max-width: 96px;
  }
  /* Bigger hamburger hit area */
  .site-navigation-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

/* ── PARTNERS dual marquee ───────────────────────────────────────────── */
.prt-outer {
  padding: 72px 0 80px;
  overflow: hidden;
  background: #0a0a0a;
}
.prt-eyebrow {
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28) !important;
  margin: 0 0 48px !important;
}
.prt-fade {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.prt-row {
  display: flex;
  width: max-content;
}
.prt-row--fwd { animation: prt-left  32s linear infinite; }
.prt-row--rev { animation: prt-right 32s linear infinite; margin-top: 20px; }
.prt-fade:hover .prt-row { animation-play-state: paused; }
@keyframes prt-left  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes prt-right { from { transform: translateX(-50%); } to { transform: translateX(0);    } }
.prt-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  height: 80px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.prt-cell a {
  display: flex;
  align-items: center;
  opacity: 0.3;
  filter: grayscale(1) brightness(2);
  transition: opacity .35s ease, filter .35s ease, transform .3s ease;
  text-decoration: none;
}
.prt-cell a:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.12);
}
.prt-cell img           { height: 32px; width: auto; display: block; pointer-events: none; }
.prt-cell--nike img     { height: 26px; }
.prt-cell--memphis img  { height: 42px; }
.prt-cell--fedex img    { height: 28px; }
.prt-cell--gatorade img { height: 34px; }
.prt-cell--autozone img { height: 30px; }
.prt-cell--stjude img   { height: 38px; }
@media (max-width: 600px) {
  .prt-cell { padding: 0 32px; height: 64px; }
  .prt-cell img           { height: 24px; }
  .prt-cell--memphis img  { height: 32px; }
  .prt-cell--stjude img   { height: 30px; }
}
