/* ============================================================
   SPORTS REPACK — MOBILE HOMEPAGE  ·  PHASE 3
   Elite, focal-point-driven, emotional.
   ============================================================ */

/* Hide everything on mobile homepage — and reclaim space (no intrinsic-size ghosts) */
@media (max-width: 768px) {
  /* Hide ALL body-direct children except: srm-home-root, the mobile shell, scripts/styles/links */
  html.srm-mobile-home body > *:not(.srm-home-root):not(.sr-mobile-bottom-nav):not(.sr-mobile-float-cta):not(.sr-mobile-menu):not(script):not(style):not(link):not(noscript):not(template) {
    display: none !important;
    content-visibility: hidden !important;
    contain-intrinsic-size: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }
  /* Hide anything that might still be inside main */
  html.srm-mobile-home main > *:not(.srm-home-root) {
    display: none !important;
    content-visibility: hidden !important;
    contain-intrinsic-size: 0 !important;
    height: 0 !important;
  }

  /* The .srm-home-root is the ONLY thing in the flow.
     Trust the browser's native scroll. Do NOT touch overflow on html or body.
     Mixed-axis overflow (hidden x, visible y) is a known iOS Safari scroll-killer. */
  html.srm-mobile-home {
    background: #050315;
  }
  html.srm-mobile-home body {
    /* Just enough body padding-bottom to clear the fixed bottom nav.
       This empty space is below the slim footer — covered by the nav at max scroll —
       so the user never sees scrollable blank space inside the footer. */
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
    min-height: 0 !important;
  }
  /* Only when fullscreen menu is open: lock scroll */
  html.sr-mobile-menu-open,
  html.sr-mobile-menu-open body {
    overflow: hidden !important;
  }

  /* CRITICAL: mobile.css applies content-visibility:auto + contain-intrinsic-size:auto 600px
     to ALL sections. On scroll, sections pop in/out causing layout shifts and iOS scroll locks.
     Force our mobile sections to always render. */
  .srm-home-root,
  .srm-home-root section,
  .srm-home-root section[data-srm] {
    content-visibility: visible !important;
    contain-intrinsic-size: none !important;
    contain: none !important;
  }
  /* Slim footer has minimal internal padding — nav clearance is handled by body padding-bottom above. */
  .srm-footer-slim {
    padding-bottom: 16px !important;
  }
}

.srm-home-root { display: none; }

@media (max-width: 768px) {
.srm-home-root {
  display: block;
  background: #050315;
  color: #fff;
  font-family: 'Source Sans 3', -apple-system, system-ui, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
}

/* All decorative videos in the mobile flow must NOT eat scroll touches.
   iOS Safari treats videos as tap targets even when muted+autoplay+playsinline.
   Make them purely visual; the parent link/card still receives clicks. */
.srm-home-root video {
  pointer-events: none;
}
.srm-home-root section[data-srm] {
  padding: 36px 22px;
  position: relative;
}
.srm-grad {
  background: linear-gradient(90deg, #00c8ff 0%, #a855f7 40%, #ec4899 70%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   1. HERO  —  Restrained luxury. Breathing room.
   ============================================================ */
.srm-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 24px 88px !important;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}
.srm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* CRITICAL: video + poster + decorations are visual-only.
     Without this, iOS Safari treats the muted-autoplay video as a tap target,
     swallowing scroll-start touches landing on the hero background. */
  pointer-events: none;
}
.srm-hero-bg * { pointer-events: none; }
.srm-hero-poster,
.srm-hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}
.srm-hero-poster { z-index: 0; }
.srm-hero-video  { z-index: 1; }
.srm-hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(140% 100% at 50% 0%,  rgba(168,85,247,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,3,21,0.25) 0%, rgba(5,3,21,0.65) 55%, rgba(5,3,21,0.99) 100%);
}
.srm-hero-fx {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  transition: opacity 300ms ease;
}
/* Floating cards — softer, less competing for attention */
.srm-hero-card {
  position: absolute;
  width: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
  opacity: 0.32;
  filter: saturate(1.1) brightness(0.85);
  --rot: -10deg;
  transform: rotate(var(--rot));
  will-change: transform;
}
.srm-hero-card img { display: block; width: 100%; height: 90px; object-fit: cover; }
.srm-hc-1 { top: 12%;  left: -10px; --rot: -14deg; animation: srm-float 12s ease-in-out infinite; }
.srm-hc-2 { top: 18%;  right: -8px; --rot: 12deg;  animation: srm-float 14s ease-in-out infinite reverse; }
.srm-hc-3 { display: none; }  /* Restraint: drop the third — less clutter */
@keyframes srm-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50%      { transform: translateY(-8px) rotate(calc(var(--rot) + 1deg)); }
}
.srm-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.srm-hg-1 { top: 30%; left: -30%; width: 260px; height: 260px; background: rgba(168, 85, 247, 0.18); }
.srm-hg-2 { display: none; }  /* Restraint: one ambient glow, not two */

/* BRAND BAR — Logo + SPORTS REPACK wordmark, top-center, dominant */
.srm-hero-brand {
  position: relative;
  z-index: 5;
  align-self: center;
  display: inline-flex;
  margin-top: max(env(safe-area-inset-top, 0px), 28px);
  margin-bottom: 18px;
}
.srm-brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  padding: 8px 4px;
  -webkit-tap-highlight-color: transparent;
}
.srm-brand-mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 32px rgba(168, 85, 247, 0.55))
          drop-shadow(0 0 22px rgba(0, 200, 255, 0.25));
}
.srm-brand-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.srm-brand-word i {
  font-style: normal;
  background: linear-gradient(90deg, #00c8ff, #a855f7, #ec4899, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.srm-hero-status {
  position: relative;
  z-index: 4;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.srm-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b6b;
  box-shadow: 0 0 12px #ff3b6b;
  animation: srm-pulse 1.8s ease-in-out infinite;
}
.srm-status-live { color: #ff3b6b; }
.srm-status-sep { opacity: 0.4; }
.srm-status-watch b { color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }
@keyframes srm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.55); }
}

.srm-hero-content {
  position: relative;
  z-index: 4;
  margin-top: auto;
  margin-bottom: 16px;
}
.srm-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 18vw, 104px);
  letter-spacing: 0.005em;
  line-height: 0.86;
  margin: 0 0 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
}
.srm-hero-sub {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  margin: 0 0 36px;
  max-width: 340px;
  font-weight: 400;
}

/* CTAs — clear hierarchy. Primary dominates. Secondary supports. */
.srm-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.srm-cta-primary,
.srm-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.srm-cta-primary:active,
.srm-cta-secondary:active { transform: scale(0.97); }

/* PRIMARY: Watch Live — owns the moment */
.srm-cta-primary {
  background: linear-gradient(135deg, #ff3b6b 0%, #a855f7 55%, #00c8ff 110%);
  box-shadow:
    0 12px 30px rgba(168, 85, 247, 0.32),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.srm-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
  animation: srm-pulse 1.8s ease-in-out infinite;
}
.srm-cta-text { font-weight: 400; line-height: 1; padding-top: 1px; }
.srm-cta-arrow {
  font-size: 18px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.srm-cta-primary:active .srm-cta-arrow { transform: translateX(5px); }

/* SECONDARY: Shop — present but quiet */
.srm-cta-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.srm-hero-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: srm-cue 2.4s ease-in-out infinite;
}
.srm-hero-cue span {
  width: 1px; height: 18px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
}
.srm-hero-cue small {
  font-size: 9px; letter-spacing: 0.36em; color: rgba(255,255,255,0.4);
}
@keyframes srm-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ============================================================
   2. TRUST STRIP — high up, single line
   ============================================================ */
.srm-trust-strip {
  padding: 18px 22px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.012);
}
.srm-ts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.srm-ts-ic { font-size: 16px; filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)); }
.srm-ts-item span:last-child {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
  line-height: 1;
}

/* ============================================================
   3. LIVE NOW
   ============================================================ */
.srm-live { padding-top: 36px !important; }
.srm-live-card {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  box-shadow:
    0 30px 70px rgba(255, 59, 107, 0.2),
    0 0 0 1px rgba(255, 59, 107, 0.32);
  isolation: isolate;
}
.srm-live-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.srm-live-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.85) 100%);
}
.srm-live-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.srm-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,59,107,0.95);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 800;
}
.srm-livedot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: srm-pulse 1.6s ease-in-out infinite;
}
.srm-live-count {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.srm-live-count b { font-weight: 800; font-variant-numeric: tabular-nums; }
.srm-live-meta {
  margin-top: auto;
  margin-bottom: 14px;
}
.srm-live-show {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.srm-live-time {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}
.srm-live-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.srm-live-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
}
.srm-live-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   4. MONSTER HITS WALL  —  jackpot energy
   ============================================================ */
.srm-monster {
  padding: 44px 0 28px !important;
  background:
    radial-gradient(80% 50% at 50% 30%, rgba(255,215,0,0.05), transparent 60%);
}
.srm-mn-head {
  padding: 0 22px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.srm-mn-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffd700;
  margin-bottom: 4px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}
.srm-mn-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.02em;
  line-height: 0.96;
  margin: 0;
}
.srm-mn-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 700;
  padding-bottom: 6px;
}
.srm-mn-stack {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 22px 16px;
  scroll-padding-inline: 22px;
  -webkit-overflow-scrolling: touch;
}
.srm-mn-stack::-webkit-scrollbar { display: none; }

.srm-mn-card {
  position: relative;
  flex: 0 0 84%;
  scroll-snap-align: center;
  aspect-ratio: 3 / 4.4;
  border-radius: 24px;
  overflow: hidden;
  background: #0a081a;
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.srm-mn-card:active { transform: scale(0.98); }

/* Restrained per-tier accents — depth instead of glow */
.srm-mn-card[data-tier="gold"]   { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.22); }
.srm-mn-card[data-tier="cyan"]   { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 200, 255, 0.18); }
.srm-mn-card[data-tier="pink"]   { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 59, 107, 0.18); }
.srm-mn-card[data-tier="purple"] { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.18); }

.srm-mn-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.srm-mn-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}
.srm-mn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: srm-shine 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes srm-shine {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50%      { transform: translateX(100%); opacity: 0.7; }
}
.srm-mn-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.92) 100%);
}

.srm-mn-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
}
.srm-mn-tier {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #ffd700;
}

.srm-mn-body {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
}
.srm-mn-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: #ffd700;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.srm-mn-player {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 4px;
  color: #fff;
}
.srm-mn-card-name {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.srm-mn-user {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.srm-mn-user b { color: #fff; font-weight: 700; }

.srm-mn-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 0;
}
.srm-mn-dots .srm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
}
.srm-mn-dots .srm-dot.is-active {
  background: #ffd700;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* ============================================================
   5. EMOTIONAL BREAKS
   ============================================================ */
.srm-break {
  padding: 64px 22px !important;
  text-align: center;
}
.srm-break-a {
  background: #050315;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.srm-break-b {
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(255,215,0,0.04), transparent 70%),
    #050315;
}
.srm-break-quote {
  font-family: 'Playfair Display', 'Bebas Neue', serif;
  font-style: italic;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
  font-weight: 400;
}
.srm-break-attrib {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================
   6. FOUNDER — From Kitchen Table to Culture
   ============================================================ */
.srm-founder {
  padding: 0 !important;
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.srm-founder-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.srm-founder-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}
.srm-founder-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,3,21,0.4) 0%, rgba(5,3,21,0.2) 30%, rgba(5,3,21,0.95) 100%);
}
.srm-founder-content {
  position: relative;
  z-index: 2;
  padding: 28px 22px 56px;
  width: 100%;
}
.srm-founder-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffd700;
  margin-bottom: 14px;
}
.srm-founder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 11vw, 64px);
  letter-spacing: 0.005em;
  line-height: 0.9;
  margin: 0 0 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.65);
}
.srm-founder-line {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0 0 24px;
  max-width: 340px;
}
.srm-founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 200ms ease, background 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.srm-founder-cta:active {
  transform: scale(0.96);
  background: rgba(255, 215, 0, 0.08);
}
.srm-founder-cta span { transition: transform 200ms ease; display: inline-block; }
.srm-founder-cta:active span { transform: translateX(4px); }

/* ============================================================
   7. EXPLORE — Restrained
   ============================================================ */
.srm-explore { padding-top: 40px !important; }
.srm-ex-head {
  margin-bottom: 16px;
}
.srm-ex-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
.srm-ex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.srm-ex-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 8px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), border-color 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.srm-ex-tile:active {
  transform: scale(0.94);
  border-color: rgba(255,215,0,0.35);
}
.srm-ex-tile[data-tier="gold"]   { border-color: rgba(255,215,0,0.22); }
.srm-ex-tile[data-tier="mute"] {
  background: transparent;
}
.srm-ex-emoji {
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.25));
}
.srm-ex-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* ============================================================
   8. FAMILY
   ============================================================ */
.srm-fam { padding-top: 44px !important; }
.srm-fam-head { margin-bottom: 14px; }
.srm-fam-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffd700;
  margin-bottom: 4px;
}
.srm-fam-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
.srm-fam-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.srm-fam-row a {
  display: block;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.srm-fam-row img { width: 100%; height: 100%; object-fit: cover; }
.srm-fam-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  text-decoration: none;
}
.srm-fam-cta span { transition: transform 200ms ease; }
.srm-fam-cta:active span { transform: translateX(4px); }

/* ============================================================
   9. VIP
   ============================================================ */
.srm-vip { padding: 56px 22px !important; }
.srm-vip-inner {
  position: relative;
  padding: 32px 24px;
  border-radius: 24px;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(255,215,0,0.10), transparent 70%),
    linear-gradient(180deg, rgba(168,85,247,0.10), rgba(0,200,255,0.04));
  border: 1px solid rgba(255,215,0,0.25);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.srm-vip-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffd700;
  margin-bottom: 10px;
}
.srm-vip-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 12px;
}
.srm-vip-line {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 22px;
}
.srm-vip-form {
  display: flex;
  gap: 6px;
}
.srm-vip-form input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  -webkit-appearance: none;
}
.srm-vip-form input::placeholder { color: rgba(255,255,255,0.4); }
.srm-vip-form input:focus {
  outline: none;
  border-color: rgba(255,215,0,0.5);
  background: rgba(255,255,255,0.08);
}
.srm-vip-btn {
  padding: 16px 22px;
  border-radius: 14px;
  border: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #050315;
  background: #ffd700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 200ms ease;
  font-weight: 700;
}
.srm-vip-btn:active { transform: scale(0.96); }
.srm-vip-btn.done {
  background: #4ade80;
  color: #050315;
  cursor: default;
}
.srm-vip-fine {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   10. SLIM FOOTER
   ============================================================ */
.srm-footer-slim {
  padding: 28px 22px 12px !important;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.srm-fs-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.srm-fs-row a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.srm-fs-mark {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.32);
  font-weight: 700;
}

} /* end @media max-width: 768px */
