/* =====================================================
   INTRO — minimal logo-only reveal on first load
   Timeline:
     0    → overlay visible, logo hidden
     200  → logo zooms+rotates in (900ms, elastic)
     950  → white flash (200ms) at logo "landing"
     1100 → hold (logo settled + ring pulsing)
     1700 → overlay scales up + blurs + fades (650ms)
     2350 → JS removes overlay from DOM
   ===================================================== */

body.intro-active { overflow: hidden; height: 100vh; }

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--zink);
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: introExit 650ms 1700ms cubic-bezier(.6, .04, .98, .335) forwards;
}

/* White flash at the climax */
.intro-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  animation: introFlash 200ms 950ms ease-out;
  mix-blend-mode: screen;
}
@keyframes introFlash {
  0%   { opacity: 0; }
  40%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.intro-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

/* Logo wrap + pulsing red ring */
.intro-logo-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: clamp(160px, 34vmin, 320px);
  height: clamp(160px, 34vmin, 320px);
}
.intro-logo-ring {
  position: absolute;
  inset: -14%;
  border: 2px solid rgba(227, 6, 19, 0.4);
  border-radius: 999px;
  opacity: 0;
  animation: introRing 1600ms 900ms cubic-bezier(.2, .7, .2, 1) infinite;
  pointer-events: none;
}
@keyframes introRing {
  0%   { opacity: 0;   transform: scale(0.85); }
  20%  { opacity: 0.8; }
  100% { opacity: 0;   transform: scale(1.35); }
}

.intro-logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.25) rotate(-180deg);
  filter: drop-shadow(0 16px 50px rgba(227, 6, 19, 0.45));
  animation: introLogo 950ms 200ms cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes introLogo {
  0%   { opacity: 0; transform: scale(0.25) rotate(-180deg); }
  60%  { opacity: 1; transform: scale(1.12) rotate(12deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0deg);   }
}

/* Exit — zoom forward + blur + fade */
@keyframes introExit {
  0%   { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.18); filter: blur(8px); pointer-events: none; }
}

.intro-overlay.is-removed { display: none; }
.intro-overlay.is-skipped { display: none; }

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
  body.intro-active { overflow: auto; height: auto; }
}

/* =====================================================
   HOME — Full-bleed cover, motto band, latest YouTube videos.
   (Split nav layout is shared and lives in base.css)
   ===================================================== */

.nav.split {
  background: rgba(10, 10, 10, 0);
  transition: background-color 220ms ease, border-color 220ms ease;
}
.nav.split.scrolled {
  background-color: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
}
.nav-split-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .nav-split-inner { padding: 0 40px; height: 92px; }
}

.nav-side {
  display: none;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.nav-side.left { justify-content: flex-end; }
.nav-side.right { justify-content: flex-start; }
@media (min-width: 900px) {
  .nav-side { display: flex; }
}
.nav-side a {
  color: #fff;
  opacity: 0.88;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, opacity 160ms ease, border-color 160ms ease;
}
.nav-side a:hover { color: var(--zred); opacity: 1; }
.nav-side a.shop {
  color: #fff;
  background: var(--zred);
  padding: 8px 14px;
  border-bottom: none;
  letter-spacing: 0.16em;
}
.nav-side a.shop:hover { background: #fff; color: var(--zink); }

.brand-center {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.brand-center img {
  width: 58px;
  height: 58px;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}
@media (min-width: 768px) {
  .brand-center img { width: 68px; height: 68px; }
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
@media (min-width: 900px) {
  .nav-mobile { display: none; }
}

.menu-btn-home { display: inline-grid; }
@media (min-width: 900px) {
  .menu-btn-home { display: none; }
}

/* ---------- FULL-BLEED COVER (parallax + scroll-zoom + fade) ---------- */
.cover-full {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100svh;
  background: #d70a2c;
  overflow: hidden;
  display: block;
  touch-action: pan-y;
}
.cover-full .cover-media {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  transform-origin: center 40%;
  transition: transform 60ms linear;
}
.cover-full img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Slides — stacked, cross-fade between covers */
.cover-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  z-index: 1;
}
.cover-slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* Dot navigation for the cover carousel */
.cover-dots {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.cover-dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, width 220ms ease;
}
/* Invisible 44x44 tap target for touch devices (Apple HIG) */
.cover-dot::after {
  content: "";
  position: absolute;
  inset: -18px;
}
@media (hover: hover) {
  .cover-dot:hover { background: rgba(255, 255, 255, 0.85); }
}
.cover-dot.is-active {
  background: #fff;
  width: 22px;
}

.cover-full::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.22) 55%, rgba(10, 10, 10, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.cover-full::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  animation: scrollCue 1.8s ease-out infinite;
  transform-origin: top;
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- MOTTO BAND ---------- */
.motto {
  position: relative;
  padding: 0;
  background: var(--zink);
  color: #fff;
  overflow: hidden;
}
.motto::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.motto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .motto-inner { padding: 170px 40px 180px; }
}

.motto .eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}
.motto .eyebrow-row .bar {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.motto .eyebrow-row .accent { color: var(--zred); }

.motto h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  margin: 0;
}
.motto h2 .red { color: var(--zred); }
.motto h2 .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.motto::after {
  content: "Z";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Anton', sans-serif;
  font-size: 80vw;
  line-height: 0.8;
  color: rgba(227, 6, 19, 0.045);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1200px) {
  .motto::after { font-size: 880px; }
}

/* ---------- SPONSORS MARQUEE ---------- */
.sponsors {
  position: relative;
  padding: 0;
  background: var(--zink);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sponsors-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .sponsors-head { padding: 64px 40px 32px; }
}
.sponsors-head .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.sponsors-head .label .accent { color: var(--zred); margin-right: 8px; }
.sponsors-head .cta {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  transition: color 160ms ease, border-color 160ms ease;
}
.sponsors-head .cta:hover { color: var(--zred); border-color: var(--zred); }

.marquee {
  position: relative;
  padding: 28px 0 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
@media (min-width: 768px) {
  .marquee { padding: 36px 0 80px; }
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.sponsor {
  flex: 0 0 auto;
  width: 240px;
  height: 110px;
  display: grid;
  place-items: center;
  margin: 0 4px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.85);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  user-select: none;
}
@media (hover: hover) {
  .sponsor:hover {
    background: rgba(227, 6, 19, 0.10);
    border-color: var(--zred);
    color: #fff;
  }
}

.sponsor .s-wrap { text-align: center; line-height: 1; }
.sponsor .s-name {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}
.sponsor .s-name .red { color: var(--zred); }
.sponsor .s-sub {
  display: block;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.sponsor.outline .s-name { -webkit-text-stroke: 1.5px #fff; color: transparent; }
.sponsor.serif .s-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.sponsor.mono .s-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
}
.sponsor.tag .s-name {
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.sponsor.dot::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background: var(--zred);
  border-radius: 999px;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* ---------- YOUTUBE VIDEOS ---------- */
.yt {
  padding: 0;
  background: var(--zbone);
  color: var(--zink);
}
.yt-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .yt-wrap { padding: 112px 40px; }
}

.yt-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.yt-head .left .eyebrow {
  color: var(--zred);
  display: flex;
  align-items: center;
  gap: 10px;
}
.yt-head .left h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  margin: 10px 0 0;
  color: var(--zink);
}
.yt-head .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}
.yt-head .right .channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zink);
}
.yt-head .right .channel .yt-logo {
  width: 28px;
  height: 28px;
  background: #ff0000;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 6px;
}
.yt-head .right .channel-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.yt-head .right .subs { font-size: 10px; color: rgba(10, 10, 10, 0.55); }
.yt-head .right .subscribe-link {
  color: var(--zred);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .yt-grid { grid-template-columns: 2fr 1fr; gap: 24px; }
}
@media (min-width: 1100px) {
  .yt-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.yt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  color: var(--zink);
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1), border-color 200ms ease;
  overflow: hidden;
}
@media (hover: hover) {
  .yt-card:hover { transform: translateY(-4px); border-color: var(--zred); }
}
.yt-card.featured { grid-row: span 2; }
@media (max-width: 1099px) {
  .yt-card.featured { grid-row: auto; }
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0 2px,
      transparent 2px 14px);
  overflow: hidden;
}
.yt-skeleton .yt-thumb,
.yt-skeleton .yt-title {
  background: linear-gradient(90deg, rgba(10,10,10,0.06) 25%, rgba(10,10,10,0.12) 37%, rgba(10,10,10,0.06) 63%);
  background-size: 400% 100%;
  animation: ytShimmer 1.4s ease infinite;
  color: transparent;
  border-radius: 0;
}
.yt-skeleton .yt-title { height: 18px; margin: 8px 0 0; }
.yt-skeleton .date { color: rgba(10, 10, 10, 0.35); }
@keyframes ytShimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.yt-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.yt-thumb .play { z-index: 2; }
.yt-thumb .duration, .yt-thumb .ph-label { z-index: 2; }

.yt-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed rgba(10, 10, 10, 0.18);
}
.yt-fallback p { margin: 8px 0 0; color: rgba(10, 10, 10, 0.7); }
.yt-fallback a { color: var(--zred); border-bottom: 1px solid rgba(227, 6, 19, 0.4); }

.yt-thumb .ph-label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.85);
  background: rgba(10, 10, 10, 0.6);
  padding: 4px 8px;
  border: 1px solid rgba(244, 241, 236, 0.18);
  max-width: calc(100% - 24px);
}
.yt-thumb .duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: rgba(10, 10, 10, 0.85);
  color: #fff;
  padding: 3px 7px;
  letter-spacing: 0.04em;
}
.yt-thumb .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(10, 10, 10, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background-color 200ms ease, transform 240ms ease;
}
@media (hover: hover) {
  .yt-card:hover .yt-thumb .play {
    background: #ff0000;
    border-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
.yt-thumb .play svg { color: #fff; }
.yt-card.featured .yt-thumb .play { width: 84px; height: 84px; }

.yt-meta {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yt-meta .date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}
.yt-card.featured .yt-meta { padding: 26px 26px 30px; }

.yt-title {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 4px 0 0;
}
.yt-card.featured .yt-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.98;
}
.yt-card.featured .yt-desc {
  margin: 8px 0 0;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.55;
  font-size: 15px;
}
.yt-stats {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.yt-stats .live { color: var(--zred); }

.yt-cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ---------- EXPLORE TILES ---------- */
.explore { padding: 0; background: var(--zbone); color: var(--zink); }
.explore-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
@media (min-width: 700px)  { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .explore-grid { grid-template-columns: repeat(5, 1fr); } }

.explore-tile {
  position: relative;
  padding: 44px 24px 36px;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  color: var(--zink);
  transition: background-color 200ms ease, color 200ms ease;
  display: block;
  min-height: 200px;
}
@media (min-width: 700px) { .explore-tile { padding: 56px 32px 44px; } }
.explore-tile.last { border-right: none; }
@media (hover: hover) {
  .explore-tile:hover { background: var(--zink); color: #fff; }
  .explore-tile:hover .explore-num { color: var(--zred); }
  .explore-tile:hover .explore-arrow { transform: translateX(6px); color: var(--zred); }
}
.explore-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--zred);
  transition: color 200ms ease;
}
.explore-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.explore-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.55;
}
@media (hover: hover) {
  .explore-tile:hover .explore-sub { color: rgba(244, 241, 236, 0.65); }
}
.explore-arrow {
  position: absolute;
  right: 24px;
  bottom: 28px;
  transition: transform 220ms ease, color 200ms ease;
}
@media (min-width: 700px) {
  .explore-arrow { right: 32px; bottom: 36px; }
}

.footer { margin-top: 0; }

/* ============ HOME · MOBILE TUNING ============ */
@media (max-width: 480px) {
  /* Reduce marquee edge mask on small screens so chips are more visible */
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  }
  .sponsor { width: 200px; padding: 0 18px; }
  .sponsor .s-name { font-size: 26px; }

  /* Motto: tighter padding on phones */
  .motto-inner { padding: 88px 18px 100px; }

  /* YT section: tighter padding + smaller title */
  .yt-wrap { padding: 64px 18px; }
  .yt-head { gap: 16px; margin-bottom: 32px; }
  .yt-head .right { align-items: flex-start; }
  .yt-title { font-size: 20px; }
  .yt-card.featured .yt-title { font-size: clamp(24px, 6vw, 36px); }

  /* Explore tiles: tighter padding */
  .explore-tile { padding: 36px 18px 30px; min-height: 170px; }
  .explore-title { font-size: 32px; }

  /* Sponsors head: smaller label */
  .sponsors-head { padding: 36px 18px 20px; }
  .sponsors-head .label { font-size: 10px; letter-spacing: 0.24em; }

  /* Cover dots: lift above scroll-cue + safe area */
  .cover-dots { bottom: calc(86px + env(safe-area-inset-bottom)); }
  .scroll-cue { bottom: calc(22px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .sponsor { width: 180px; padding: 0 14px; }
  .sponsor .s-name { font-size: 22px; }
  .yt-head .right { display: none; } /* Free up vertical space */
}
