/*
Theme Name: Rebel Minds
Theme URI: https://www.youtube.com/@be_a_rebel_mind
Author: Wee! Digital
Author URI: https://wee.digital
Description: A bold, dark landing-page theme for the Rebel Minds documentary series. Features animated hero, episode grid, social links and manifesto section.
Version: 2.4.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Tags: one-page, dark, portfolio, custom-colors, full-width-template
*/

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --green:  #00FF7F;
  --black:  #0a0a0a;
  --gray:   #1c1c1c;
  --white:  #f5f5f0;
  --muted:  #666662;
  --pad:    clamp(20px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
.cur, .cur-ring {
  pointer-events: none;
  z-index: 9999;
  position: fixed;
  transform: translate(-50%, -50%);
}
.cur {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  transition: width .25s, height .25s;
  mix-blend-mode: difference;
  z-index: 9999;
}
.cur-ring {
  z-index: 9998;
  width: 38px; height: 38px;
  border: 1px solid rgba(0,255,127,.45);
  border-radius: 50%;
  transition: width .3s, height .3s, opacity .3s;
}
.cur.big    { width: 18px;  height: 18px; }
.cur-ring.big { width: 64px; height: 64px; opacity: .15; }
@media (hover: none) { .cur, .cur-ring { display: none; } body { cursor: auto; } }

/* ─────────────────────────────────────────
   GRAIN OVERLAY
───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  opacity: .042;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,.97), transparent);
}
.nav-logo img { height: 28px; width: auto; display: block; transition: opacity .2s; }
.nav-logo img:hover { opacity: .75; }
.nav-logo { text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  padding: 10px 20px;
  border: 1px solid rgba(0,255,127,.35);
  color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green); color: var(--black); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--green); }
.nav-drawer .drawer-cta { color: var(--green); border: 1px solid rgba(0,255,127,.35); padding: 14px 36px; font-size: 20px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 26vw, 380px);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.033);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.03em;
  will-change: transform;
}
.hero-blob {
  position: absolute; top: -120px; right: -100px;
  width: min(580px, 80vw); height: min(580px, 80vw);
  background: radial-gradient(ellipse at 40% 40%, rgba(0,255,127,.16) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
  will-change: transform;
}
.hero-logo-wrap {
  position: relative; z-index: 1;
  margin-bottom: clamp(20px, 4vw, 40px);
  opacity: 0;
  animation: fadeUp .7s ease 0s forwards;
}
.hero-logo-wrap img { height: clamp(36px, 7vw, 80px); width: auto; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  opacity: 0;
  animation: fadeUp .7s ease .15s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 13vw, 176px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.025em;
  position: relative; z-index: 1;
}
.h1-wrap { overflow: hidden; display: block; }
.h1-line {
  display: block; position: relative;
  opacity: 0; transform: translateY(110%);
}
.h1-line:nth-child(1) { animation: slideUp .7s cubic-bezier(.16,1,.3,1) .35s forwards; }
.h1-line:nth-child(2) { animation: slideUp .7s cubic-bezier(.16,1,.3,1) .5s  forwards; color: var(--green); }
.h1-line:nth-child(3) { animation: slideUp .7s cubic-bezier(.16,1,.3,1) .65s forwards; }

/* GLITCH on hover */
.h1-line::before, .h1-line::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
.h1-line:hover::before {
  opacity: 1;
  color: var(--green);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  animation: glitchA .28s steps(1) infinite;
  text-shadow: 3px 0 #ff2050, -1px 0 #00eeff;
}
.h1-line:hover::after {
  opacity: 1;
  color: var(--white);
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: glitchB .28s steps(1) infinite;
  text-shadow: -3px 0 #ff2050, 2px 0 #00eeff;
}
@keyframes glitchA {
  0%   { transform: translate(0,0);       filter: none; }
  20%  { transform: translate(-6px,2px);  filter: hue-rotate(40deg); }
  40%  { transform: translate(5px,-1px);  filter: none; }
  60%  { transform: translate(-4px,3px);  filter: hue-rotate(-30deg); }
  80%  { transform: translate(6px,-2px);  filter: none; }
  100% { transform: translate(0,0);       filter: none; }
}
@keyframes glitchB {
  0%   { transform: translate(0,0);       filter: none; }
  20%  { transform: translate(6px,-2px);  filter: hue-rotate(-40deg); }
  40%  { transform: translate(-5px,1px);  filter: none; }
  60%  { transform: translate(4px,-3px);  filter: hue-rotate(30deg); }
  80%  { transform: translate(-6px,2px);  filter: none; }
  100% { transform: translate(0,0);       filter: none; }
}

.hero-desc {
  max-width: 500px;
  margin-top: clamp(20px, 3vw, 36px);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  color: rgba(245,245,240,.5);
  position: relative; z-index: 1;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards;
}
.hero-actions {
  margin-top: clamp(28px, 4vw, 48px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0;
  animation: fadeUp .8s ease 1.1s forwards;
}

/* BUTTONS */
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px clamp(20px,3vw,34px);
  background: var(--green); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform .2s, box-shadow .2s;
}
.btn-fill:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 rgba(0,255,127,.22); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px clamp(20px,3vw,34px);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,245,240,.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px 0;
  background: rgba(0,255,127,.02);
}
.ticker-track {
  display: flex;
  animation: ticker 26s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.tick-star {
  display: inline-block; flex-shrink: 0;
  width: 22px; height: 22px;
  background-image: url('assets/images/tick-star.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: .9;
  animation: spinStar 10s linear infinite;
}
@keyframes spinStar { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────
   SECTION LABELS
───────────────────────────────────────── */
.label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--green); flex-shrink: 0; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 76px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  padding: clamp(64px,10vw,130px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 90px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.about-h em { color: var(--green); font-style: normal; display: block; }
.about-r p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  color: rgba(245,245,240,.58);
  margin-bottom: 24px;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.06);
  margin-top: clamp(28px, 4vw, 52px);
}
.num-cell {
  padding: clamp(16px,2vw,28px) clamp(14px,2vw,24px);
  border-right: 1px solid rgba(255,255,255,.06);
}
.num-cell:last-child { border-right: none; }
.num-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  color: var(--green);
}
.num-desc { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ─────────────────────────────────────────
   EPISODES
───────────────────────────────────────── */
.episodes { padding: 0 var(--pad) clamp(64px,10vw,130px); }
.ep-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
  gap: 16px;
}
/* ════════════════════════════════════════════════════════════════════════
   EPISODE CAROUSEL
   overflow:hidden on the wrapper physically clips everything — nothing
   can wrap to a second row. JS slides the track with translateX.
════════════════════════════════════════════════════════════════════════ */

/* Navigation dots — shown on all screen sizes */
.ep-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 14px; }
.ep-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; padding: 0; cursor: pointer; transition: background .25s, transform .25s; flex-shrink: 0; }
.ep-dot.active { background: var(--green); transform: scale(1.4); }

/* Episode scroll container */
.ep-scroll-wrap {
  overflow-x: auto;
  white-space: nowrap;      /* stops the inline-grid track from wrapping to a new line */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ep-scroll-wrap::-webkit-scrollbar { display: none; }

/* Desktop: inline-grid so the track shrinks/grows to fit its content.
   This lets the scroll wrapper detect overflow when there are 6+ episodes.
   --col-w = exact 1/5 of the available section width. */
.ep-track {
  --col-w: calc((100vw - 2 * var(--pad) - 16px) / 5);
  display: inline-grid;
  white-space: normal;      /* reset so text inside cards wraps normally */
  vertical-align: top;
  grid-template-columns: repeat(5, var(--col-w));
  grid-auto-columns: var(--col-w);
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  gap: 4px;
  min-width: calc(5 * var(--col-w) + 16px); /* fill section when ≤5 episodes */
}

/* Individual episode card */
.ep-card {
  min-width: 0;
  position: relative; overflow: hidden;
  background: var(--gray);
  aspect-ratio: 9/16;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  text-decoration: none; color: var(--white);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.ep-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.2) 40%, transparent 100%);
  z-index: 1;
}
.ep-card:hover { transform: scale(1.03); z-index: 5; }
.ep-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s;
  filter: grayscale(15%) contrast(1.05);
}
.ep-card:hover .ep-thumb { transform: scale(1.06); filter: grayscale(0%) contrast(1.1); }
.ep-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  background: rgba(0,0,0,.35);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s;
}
.ep-card:hover .ep-play { transform: translate(-50%,-50%) scale(1); background: rgba(0,255,127,.15); border-color: var(--green); }
.ep-info { position: relative; z-index: 2; }
.ep-num { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.ep-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(16px,2.5vw,22px);
  line-height: 1; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 3px;
}
.ep-role { font-size: 10px; letter-spacing: .06em; color: rgba(245,245,240,.45); text-transform: uppercase; }

/* ─────────────────────────────────────────
   SOCIAL
───────────────────────────────────────── */
.social { padding: 0 var(--pad) clamp(64px,10vw,130px); }
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.soc-card {
  position: relative; overflow: hidden;
  min-height: 240px;
  padding: clamp(24px,3vw,36px) clamp(20px,3vw,32px);
  display: flex; flex-direction: column; justify-content: space-between;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  text-decoration: none; color: var(--white);
  transition: background .3s, border-color .3s, transform .35s;
}
.soc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.soc-card:hover { background: rgba(0,255,127,.04); border-color: rgba(0,255,127,.18); transform: translateY(-4px); }
.soc-card:hover::after { transform: scaleX(1); }
.soc-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
  margin-bottom: auto;
}
.soc-card:hover .soc-icon { border-color: var(--green); background: rgba(0,255,127,.06); }
.soc-arrow {
  position: absolute; top: 24px; right: 24px;
  color: var(--green); font-size: 18px;
  opacity: 0; transform: translate(6px,-6px);
  transition: opacity .3s, transform .3s;
}
.soc-card:hover .soc-arrow { opacity: 1; transform: translate(0,0); }
.soc-platform { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; margin-top: 24px; }
.soc-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(18px,2.5vw,24px);
  text-transform: uppercase; letter-spacing: .02em;
  transition: color .3s;
}
.soc-card:hover .soc-handle { color: var(--green); }

/* ─────────────────────────────────────────
   MANIFESTO
───────────────────────────────────────── */
.manifesto {
  padding: clamp(64px,10vw,130px) var(--pad);
  background: var(--green);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: 'MINDS';
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(120px,22vw,300px);
  color: rgba(0,0,0,.06);
  pointer-events: none; user-select: none;
  white-space: nowrap; line-height: 1;
}
.manifesto-inner { position: relative; z-index: 1; max-width: 960px; }
.manifesto-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px,9vw,124px);
  line-height: .88;
  text-transform: uppercase; letter-spacing: -.025em;
  color: var(--black);
  margin-bottom: clamp(24px,4vw,44px);
}
.manifesto-body {
  font-size: clamp(15px,2vw,18px);
  line-height: 1.75;
  color: rgba(10,10,10,.55);
  max-width: 520px;
  margin-bottom: clamp(28px,4vw,48px);
}
.powered-manifesto { display: block; height: clamp(28px,4vw,44px); width: auto; opacity: .85; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  padding: clamp(32px,4vw,52px) var(--pad);
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo img { height: 24px; width: auto; opacity: .75; }
.footer-powered { display: block; height: 20px; width: auto; opacity: .35; transition: opacity .2s; }
.footer-powered:hover { opacity: .6; }
.footer-nav { display: flex; gap: clamp(14px,2vw,28px); list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--green); }
.footer-copy { font-size: 11px; color: rgba(102,102,98,.45); letter-spacing: .05em; }
.hr { height: 1px; background: rgba(255,255,255,.05); }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px);  } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(110%);  } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  /* Mobile: switch back to flex, enable scroll-snap */
  .ep-track { display: flex; flex-wrap: nowrap; grid-template-rows: unset; grid-auto-flow: unset; grid-auto-columns: unset; gap: 8px; }
  .ep-card { flex: 0 0 72vw; width: 72vw; min-width: 72vw; aspect-ratio: 3/4; scroll-snap-align: start; }
  .ep-scroll-wrap { scroll-snap-type: x mandatory; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .btn-fill, .btn-ghost { justify-content: center; }
  /* Phone: nearly full width per card */
  .ep-track { display: flex; flex-wrap: nowrap; gap: 10px; }
  .ep-card { flex: 0 0 88vw; width: 88vw; min-width: 88vw; aspect-ratio: 3/4; scroll-snap-align: start; }
  .social-grid { grid-template-columns: 1fr; }
  .soc-card { min-height: 140px; flex-direction: row; align-items: center; gap: 20px; }
  .soc-icon { margin-bottom: 0; flex-shrink: 0; }
  .soc-platform { margin-top: 0; }
}
