/* ============================================================
   QuickQuack Run Club — Stylesheet
   Colors: #0D0D0D (bg), #F5C800 (yellow), #FFFFFF (body text)
   Fonts: Bebas Neue (headings), Inter (body)
============================================================ */

/* --- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --yellow:  #F5C800;
  --white:   #FFFFFF;
  --gray:    #141414;
  --gray-3:  #2a2a2a;
  --muted:   #777;
  --max-w:   1140px;
  --nav-h:   64px;
  --ticker-h: 40px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Typography ----------------------------------------- */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.section-title.centered { text-align: center; }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-label { display: block; }

/* --- Layout --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: #ffd700; transform: translateY(-2px); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-full { width: 100%; display: flex; justify-content: center; }

.link-yellow { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,200,0,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img--mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img--badge {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-fallback { align-items: center; }

.nav-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: fixed;
  top: 0;
  right: 28px;
  height: var(--nav-h);
  z-index: 101;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.nav-cta--wa {
  background: #25D366 !important;
  color: var(--white) !important;
}
.nav-cta--wa:hover { background: #1ebe5d !important; }
.nav-cta--wa svg { width: 14px; height: 14px; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   TICKER
============================================================ */
.ticker {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  height: var(--ticker-h);
  background: var(--yellow);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
}

.ticker-dot {
  font-size: 1.2rem !important;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--ticker-h));
  background: var(--black);
}

/* Background photo + dark overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.72) 60%,
    rgba(13,13,13,0.92) 100%
  );
}


/* Centered content column */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 28px 80px;
  max-width: 860px;
  width: 100%;
}

.hero-badge {
  width: clamp(100px, 16vw, 180px);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   YELLOW BAND
============================================================ */
.yellow-band {
  background: var(--yellow);
  padding: 48px 28px;
}

.yellow-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.yb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.yb-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--black);
  letter-spacing: 0.03em;
  flex: 1;
}

/* ============================================================
   EVENT — Coming Soon
============================================================ */
.event {
  background: #0a0a0a;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}

.event-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event-collab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.3em;
  color: var(--yellow);
  margin-top: 10px;
}

.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-top: 16px;
}

.event-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-top: 28px;
}

.event-sub {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 14px;
}

.nav-event { color: var(--yellow) !important; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: #bbb;
  margin-top: 24px;
  max-width: 460px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-text p + p { margin-top: 12px; }

/* ============================================================
   SHOW UP (merged about + run)
============================================================ */
/* --- About / Show Up ----------------------------------------- */
.about .section-title { font-size: clamp(4rem, 10vw, 8rem); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact-dot { color: var(--yellow); opacity: 0.5; }

.about-body {
  color: #bbb;
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 440px;
}

.about-sub {
  font-size: 0.88rem;
  color: #555;
  margin-top: 10px;
}

.about-split-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: #0f0f0f;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
}
.about-split-photo img,
.about-split-photo video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* --- After the Run ------------------------------------------- */
.afterrun-new {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-3);
}

.afterrun-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-left: 1px solid var(--gray-3);
}

.afterrun-col {
  padding: 36px 32px;
  border-right: 1px solid var(--gray-3);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}
.afterrun-col:hover { border-top-color: var(--yellow); }

.ac-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--yellow);
  opacity: 0.6;
  margin-bottom: 14px;
}


.ac-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
}

.afterrun-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-3);
}

.afterrun-tease {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.06em;
}

/* Photo card — right column of about section */
.run-photo-card {
  position: relative;
  aspect-ratio: 3/4;
  background: #0f0f0f;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
}

.run-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.run-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  z-index: 1;
  pointer-events: none;
}
.run-photo-placeholder span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.1);
}

.run-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.run-photo-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.04em;
}

.run-photo-details {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.rp-dot { opacity: 0.4; }

/* ============================================================
   FIND THE FLOCK — Community platforms
============================================================ */
.community { background: var(--black); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.platform-card {
  background: var(--gray);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.platform-card:hover {
  background: #1a1a1a;
  border-color: var(--yellow);
}
.platform-card:hover .platform-cta { color: var(--yellow); }

.platform-card--featured {
  background: var(--yellow);
  border-top: none;
}
.platform-card--featured h3,
.platform-card--featured p,
.platform-card--featured .platform-icon,
.platform-card--featured .platform-cta { color: var(--black); }
.platform-card--featured:hover { background: #f0c400; border-color: transparent; }
.platform-card--featured:hover .platform-cta { color: var(--black); }

.platform-icon {
  color: var(--yellow);
  width: 40px; height: 40px;
}
.platform-icon svg { width: 100%; height: 100%; }

.platform-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.platform-card p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
  flex: 1;
}
.platform-card--featured p { color: rgba(0,0,0,0.65); }

.platform-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  transition: color 0.15s;
}

/* ============================================================
   COMMUNITY VIDEOS
============================================================ */
.videos { background: var(--gray); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
}

.video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 2;
}

.community-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.15s;
}
.video-play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6)); }
.video-wrap:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-play-btn.hidden { opacity: 0; pointer-events: none; }

.video-placeholder-label {
  position: absolute;
  bottom: 16px; left: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   COMMUNITY PHOTOS
============================================================ */
.photos { background: var(--black); }

/* ============================================================
   MERCH
============================================================ */
.merch { background: var(--gray); }

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.merch-text p {
  color: #bbb;
  margin-top: 24px;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.7;
}

.merch-sizes {
  display: flex;
  gap: 8px;
  margin: 24px 0 0;
}

.merch-sizes span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  border: 1px solid var(--gray-3);
  color: var(--muted);
  padding: 6px 16px;
  transition: border-color 0.15s, color 0.15s;
}

.merch-sizes span:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.merch-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 24px;
}

.merch-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.merch-price::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.merch-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.merch-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: #0d0d0d;
  overflow: hidden;
  border: 1px solid var(--gray-3);
}

.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.merch-img-wrap:hover img { transform: scale(1.03); }

.merch-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.merch-placeholder span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
}

/* ============================================================
   CONTACT / SPONSOR
============================================================ */
.contact { background: var(--gray); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  color: #888;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-btn {
  margin-top: 40px;
  display: inline-flex;
  gap: 10px;
  font-size: 0.95rem;
}

.contact-right {
  padding-top: 4px;
}

.contact-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-3);
}
.contact-item:first-child { border-top: 1px solid var(--gray-3); }

.contact-item-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.contact-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--gray);
  border-top: 1px solid rgba(245,200,0,0.12);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-links svg { width: 15px; height: 15px; }

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-headline { font-size: clamp(3.5rem, 11vw, 8rem); }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split-photo { order: -1; aspect-ratio: 16/9; }
  .about .section-title { font-size: clamp(3rem, 14vw, 5rem); }
  .about-body { font-size: 0.95rem; }
  .afterrun-cols { border-left: none; }
  .afterrun-col { padding: 20px 12px; border-right: none; border-top: 1px solid var(--gray-3); }
  .afterrun-col:first-child { border-left: 1px solid var(--gray-3); }
  .afterrun-col:hover { border-top-color: var(--yellow); }
  .ac-name { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .afterrun-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .platform-card { padding: 28px 20px; gap: 10px; }
  .platform-card p { display: none; }
  .platform-icon { width: 28px; height: 28px; }
  .platform-card h3 { font-size: 1.5rem; }
  .merch-grid { grid-template-columns: 0.8fr 1fr; gap: 14px; align-items: start; }
  .merch .section-title { font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .merch-text p { font-size: 0.75rem; margin-top: 8px; line-height: 1.5; }
  .merch-meta { margin: 8px 0 10px; }
  .merch-sizes { gap: 4px; margin-top: 8px; }
  .merch-sizes span { width: 26px; height: 26px; font-size: 0.6rem; padding: 0; display: flex; align-items: center; justify-content: center; }
  .merch-note { display: none; }
  .merch-img-wrap { aspect-ratio: 3/4; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  :root { --ticker-h: 36px; }
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    background: var(--black);
    z-index: 100;
    padding-bottom: 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; color: var(--white); }
  .nav-cta--wa { padding: 12px 24px !important; font-size: 0.9rem !important; }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + var(--ticker-h)); }
  .hero-inner { padding: 40px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { justify-content: center; width: 100%; max-width: 320px; }

  .yellow-band-inner { gap: 24px; }
  .yb-label { font-size: 1.2rem; }

  .video-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  /* Platform cards: pull out of container padding so 3 cols fit */
  .platform-grid { margin: 0 -20px; }
  .platform-card { padding: 20px 12px; gap: 8px; }
  .platform-card h3 { font-size: 1.1rem; }
  .platform-icon { width: 20px; height: 20px; }
  .platform-cta { white-space: nowrap; font-size: 0.6rem; letter-spacing: 0.1em; }

  /* Section titles slightly smaller */
  .section-title { font-size: clamp(2.4rem, 11vw, 7rem); }

  /* Run photo overlay: smaller THU in landscape card */
  .run-photo-day { font-size: clamp(2rem, 8vw, 4rem); }
  .run-photo-overlay { padding: 20px 16px 16px; gap: 6px; }
  .run-photo-details { font-size: 0.65rem; }

  /* Afterrun cols: full width, stacked */
  .ac-name { font-size: clamp(1.2rem, 5vw, 2rem); }

  /* Yellow band */
  .yellow-band-inner { flex-direction: column; gap: 16px; text-align: center; }
  .yb-label { font-size: 1rem; }
  .yb-num { font-size: clamp(3rem, 15vw, 5rem); }
}

/* --- GlitchText ------------------------------------------ */
.glitch {
  position: relative;
  display: inline-block;
  user-select: none;
  --glitch-bg: var(--black);
  --after-duration: 3s;
  --before-duration: 2s;
  --after-shadow: -5px 0 #F5C800;
  --before-shadow: 5px 0 #ffffff;
}

.glitch::after,
.glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  color: inherit;
  background-color: var(--glitch-bg);
  overflow: hidden;
  width: 100%;
  clip-path: inset(0 0 0 0);
}

.glitch::after {
  left: 5px;
  text-shadow: var(--after-shadow);
  animation: animate-glitch var(--after-duration) infinite linear alternate-reverse;
}

.glitch::before {
  left: -5px;
  text-shadow: var(--before-shadow);
  animation: animate-glitch var(--before-duration) infinite linear alternate-reverse;
}

.event .glitch { --glitch-bg: #0a0a0a; }

@keyframes animate-glitch {
  0%   { clip-path: inset(20% 0 50% 0); }
  5%   { clip-path: inset(10% 0 60% 0); }
  10%  { clip-path: inset(15% 0 55% 0); }
  15%  { clip-path: inset(25% 0 35% 0); }
  20%  { clip-path: inset(30% 0 40% 0); }
  25%  { clip-path: inset(40% 0 20% 0); }
  30%  { clip-path: inset(10% 0 60% 0); }
  35%  { clip-path: inset(15% 0 55% 0); }
  40%  { clip-path: inset(25% 0 35% 0); }
  45%  { clip-path: inset(30% 0 40% 0); }
  50%  { clip-path: inset(20% 0 50% 0); }
  55%  { clip-path: inset(10% 0 60% 0); }
  60%  { clip-path: inset(15% 0 55% 0); }
  65%  { clip-path: inset(25% 0 35% 0); }
  70%  { clip-path: inset(30% 0 40% 0); }
  75%  { clip-path: inset(40% 0 20% 0); }
  80%  { clip-path: inset(20% 0 50% 0); }
  85%  { clip-path: inset(10% 0 60% 0); }
  90%  { clip-path: inset(15% 0 55% 0); }
  95%  { clip-path: inset(25% 0 35% 0); }
  100% { clip-path: inset(30% 0 40% 0); }
}
