/* ===== TOKENS ===== */
:root {
  --text-xs: clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.1rem + 1vw, 2rem);
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
  --bg: #0a0a0a;
  --surface: #111;
  --surface2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --text: #fff;
  --muted: rgba(255,255,255,0.55);
  --faint: rgba(255,255,255,0.3);
  --accent: #c8ff00;
  --white-bg: #f0f0f0;
  --dark-text: #0a0a0a;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --fast: 180ms cubic-bezier(0.16,1,0.3,1);
}
body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 10px 16px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10,10,10,0.7);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease);
}
.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  display: flex; align-items: center; gap: 4px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 6px;
}
.nav__logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--accent);
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; white-space: nowrap;
}
.nav__links { display: flex; list-style: none; gap: 0; align-items: center; }
.nav__link {
  text-decoration: none; color: var(--muted);
  font-size: 11px; font-weight: 500; padding: 6px 12px;
  border-radius: 999px; white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__right { display: flex; align-items: center; gap: 4px; }
.nav__search {
  display: none; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 14px;
  color: var(--faint); font-size: 11px; cursor: pointer; min-width: 160px;
}
@media(min-width:768px){ .nav__search{display:flex;} }
.nav__cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--text); color: var(--bg);
  font-size: 11px; font-weight: 700; padding: 8px 16px;
  border-radius: 999px; text-decoration: none; white-space: nowrap;
}
.nav__cta:hover { background: rgba(255,255,255,0.88); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 55vh; overflow: hidden; padding-top: 52px;
}
@media(min-width:768px){ .hero{height:60vh;} }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  position: absolute; inset: 0;
}
.hero__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.5) 70%, var(--bg) 100%);
}
.hero__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: #000;
}

/* ===== HERO VIDEO ===== */
.herovid {
  background: #000;
  position: relative;
  overflow: hidden;
}
.herovid__player {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}
.herovid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(10,10,10,0.6) 85%,
    var(--bg) 100%
  );
  pointer-events: none;
}

/* ===== PHONES ===== */
.phones {
  padding: 48px 0 56px; background: var(--bg);
}
.phones__label {
  text-align: center; font-size: 10px; font-weight: 500;
  color: var(--faint); letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 28px;
}
.phones__tray {
  max-width: 1060px; margin: 0 auto;
  background: var(--surface); border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.phones__track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; justify-content: center;
}
.phones__track::-webkit-scrollbar{display:none;}
.phone {
  flex-shrink: 0; width: 180px; height: 380px;
  background: var(--surface2); border-radius: 28px;
  border: 2.5px solid #2a2a2a; overflow: hidden; position: relative;
  scroll-snap-align: center; transition: transform 0.5s var(--ease);
}
.phone:hover { transform: scale(1.03); }
.phone__notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 75px; height: 22px; background: #000; border-radius: 14px; z-index: 2;
}
.phone__img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CHOOSE FROM (DARK bg) ===== */
.choose {
  background: var(--bg); color: var(--text);
  padding: clamp(48px, 6vw, 96px) 0;
}
.choose__wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.choose__heading {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
}

/* --- Showcase container --- */
.showcase {
  position: relative;
  background: #151515;
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  max-height: 640px;
  display: flex;
  align-items: stretch;
}
.showcase__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 55% 50%, rgba(40,35,30,0.6), transparent);
  transition: opacity 400ms ease;
  pointer-events: none;
}
.showcase__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.showcase__audio {
  position: absolute; top: 16px; right: 18px; z-index: 5;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all var(--fast);
}
.showcase__audio:hover { background: rgba(255,255,255,0.14); color: #fff; }
.showcase__audio.is-playing { background: rgba(200,255,0,0.15); border-color: rgba(200,255,0,0.3); color: #c8ff00; }

/* --- Left controls: arrows + pills --- */
.showcase__left {
  position: relative; z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 40px 0 40px 36px;
  flex-shrink: 0;
}
.showcase__arrows {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 72px;
}
.showcase__arrow {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all var(--fast);
}
.showcase__arrow:hover { background: rgba(255,255,255,0.12); color: #fff; }

.showcase__pills {
  display: flex; flex-direction: column; gap: 6px;
}

/* --- Pill buttons --- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px;
  padding: 0 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 200ms ease;
}
.pill:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.pill--active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.pill__check {
  flex-shrink: 0;
}

/* --- Phone-in-hand asset --- */
.showcase__phone {
  position: absolute; inset: 0; z-index: 1;
}
.showcase__phone-img,
.showcase__phone-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WHY STORY (DARK bg — dark bordered cards) ===== */
.why {
  background: var(--bg); color: var(--text);
  padding: clamp(48px, 5vw, 72px) 0 clamp(48px, 6vw, 96px);
}
.why__inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.why__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px; flex-wrap: wrap; gap: 16px;
}
.why__title {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; line-height: 1.15; max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.why__link {
  font-size: 11px; color: var(--faint);
  text-decoration: underline; text-underline-offset: 3px;
}
.why__link:hover { color: var(--text); }
.features {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
@media(min-width:768px){ .features{grid-template-columns:repeat(5,1fr);} }
.feat-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px 24px 32px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: border-color var(--fast);
}
.feat-card:hover { border-color: rgba(255,255,255,0.12); }
.feat-card__icon { width: 28px; height: 28px; margin-bottom: 18px; color: var(--text); }
.feat-card__title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: var(--text);
}
.feat-card__desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.55; margin-top: auto; }

/* ===== PROOF SHELL (light bg for Swipe + Comments) ===== */
.proof {
  background: #efefef;
  color: #111;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.proof__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 28px 90px;
}
.proof__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #111;
}

/* ===== SWIPE THE WORK ===== */
.swipe {
  margin-bottom: 100px;
}
.swipe__strip-wrap {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
}
.swipe__strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.swipe__strip:active { cursor: grabbing; }
.swipe__strip::-webkit-scrollbar { display: none; }

.flyer-card {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  height: 372px;
  border-radius: 12px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  scroll-snap-align: center;
}
.flyer-card img,
.flyer-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.flyer-plus {
  position: absolute;
  right: 8px; bottom: 8px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(20,20,20,0.85);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; line-height: 1;
  z-index: 2;
}

.swipe__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.swipe__btn {
  width: 24px; height: 24px;
  border: none; border-radius: 999px;
  background: #e1e1e1;
  color: #9a9a9f;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.18s ease;
  padding: 0;
}
.swipe__btn:hover {
  background: #d5d5d5;
  color: #666;
  transform: translateY(-1px);
}

/* ===== FROM THE COMMENTS ===== */
.ftc {
  background: #fff;
  margin: 48px calc(-50vw + 50%) -90px;
  padding: 48px max(28px, calc((100vw - 1280px) / 2 + 28px)) 64px;
}
.ftc__grid {
  display: grid;
  grid-template-columns: 360px 210px 360px 210px;
  gap: 10px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.comment-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.comment-card__inner {
  padding: 0;
}
.comment-card__inner img {
  width: 100%;
  display: block;
}

.comment-flyer {
  position: relative;
  width: 210px;
  height: 372px;
  border-radius: 10px;
  overflow: hidden;
  background: #d9d9d9;
  justify-self: start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.comment-flyer img,
.comment-flyer__vid {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.flyer-audio {
  position: absolute;
  right: 8px; bottom: 8px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(20,20,20,0.85);
  border: none;
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; line-height: 1;
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
}
.flyer-audio:hover { background: rgba(20,20,20,1); }
.flyer-audio.is-playing { background: rgba(200,255,0,0.2); color: #c8ff00; }

/* ===== EVENT PACKAGES ===== */
.events {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface); border-top: 1px solid var(--border);
}
.events__title {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; text-align: center; margin-bottom: 28px;
}
.events__layout {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
}
.events__partner { text-align: left; flex-shrink: 0; }
.events__posh { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 12px; }
.events__posh-name {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 900; font-style: italic; color: var(--text);
}
.events__posh-circle {
  width: 36px; height: 36px; border-radius: 50%; background: #e65100;
  display: flex; align-items: center; justify-content: center;
}
.events__posh-circle--sm { width: 20px; height: 20px; }
.events__posh-desc { font-size: 10px; color: var(--faint); max-width: 160px; }
.events__mockup { flex: 1; min-width: 300px; max-width: 620px; }
.events__browser {
  background: #1a1a1a; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.events__browser-dots {
  display: flex; gap: 5px; padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.events__browser-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.events__browser-body { padding: 10px; }
.events__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px; }
.events__item { border-radius: 8px; overflow: hidden; position: relative; }
.events__item-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }
.events__item-label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9px; font-weight: 600; color: var(--text);
  background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.08em;
}
.events__item--ticket { background: #fff; border-radius: 8px; overflow: hidden; }
.events__eventbrite { color: var(--dark-text); font-size: 10px; }
.events__eb-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px; border-bottom: 1px solid #eee;
}
.events__eb-logo { font-weight: 700; color: #f05537; font-size: 10px; }
.events__eb-nav { font-size: 9px; color: #666; }
.events__eb-hero { overflow: hidden; }
.events__eb-hero-img { width: 100%; height: 80px; object-fit: cover; }
.events__eb-content { padding: 8px; }
.events__eb-tag {
  background: #f05537; color: #fff; font-size: 8px; font-weight: 600;
  padding: 2px 6px; border-radius: 3px; display: inline-block; margin-bottom: 4px;
}
.events__eb-date { font-size: 9px; color: #666; margin: 2px 0; }
.events__eb-title-row { display: flex; align-items: center; gap: 6px; margin: 4px 0; }
.events__eb-title-row strong { font-size: 12px; }
.events__eb-desc { font-size: 9px; color: #666; line-height: 1.4; margin: 4px 0 8px; }
.events__eb-ticket {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px; border: 1px solid #eee; border-radius: 6px; margin-bottom: 6px;
}
.events__eb-price { font-weight: 700; font-size: 11px; }
.events__eb-btn {
  width: 100%; padding: 8px; border-radius: 6px;
  background: #f05537; color: #fff; font-size: 10px; font-weight: 600;
  border: none; cursor: pointer;
}
.events__cta {
  text-align: right; margin-top: 20px;
  font-size: 11px; color: var(--faint);
  max-width: 1000px; margin-left: auto; margin-right: auto;
  padding: 0 24px;
}
.events__cta a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.events__cta a:hover { color: var(--text); }

/* ===== TRUSTED BY ===== */
.trusted {
  padding: clamp(40px, 5vw, 72px) 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.trusted__label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 28px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
  padding: 0 24px;
}
.trusted__track {
  overflow: hidden;
  width: 100%;
}
.trusted__logos {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.trusted__set {
  display: flex; align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-right: clamp(36px, 5vw, 64px);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tlogo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--fast);
  filter: brightness(1.2);
  flex-shrink: 0;
}
.tlogo-img:hover { opacity: 1; }

/* ===== JOIN ===== */
.join {
  padding: clamp(48px, 6vw, 96px) 0;
  background: var(--bg);
}
.join__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media(min-width:768px){ .join__inner{grid-template-columns:1fr 1.3fr;} }
.join__title {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; margin-bottom: 6px;
}
.join__subtitle {
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
}
.join__roles { display: flex; flex-direction: column; }
.role {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  cursor: pointer;
}
.role__header {
  display: flex; justify-content: space-between; align-items: center;
  transition: padding var(--fast);
}
.role__header:hover { padding-left: 8px; }
.role__name { font-size: 14px; font-weight: 600; }
.role__toggle { color: var(--faint); transition: transform 0.3s ease; }
.role--expanded .role__toggle { transform: rotate(180deg); }
.role__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}
.role--expanded .role__body {
  max-height: 500px;
  margin-top: 12px;
}
.role__desc {
  font-size: 11px; color: var(--muted); line-height: 1.55; max-width: 380px;
  margin: 0 0 12px;
}
.role__apply {
  font-size: 11px; color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px;
}
.role__apply:hover { color: var(--text); }
.join__right { display: flex; justify-content: center; align-items: center; }
.join__visual {
  width: 100%; max-width: 540px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.join__visual-img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 12px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap; padding: 0 16px;
}
.flink {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--muted);
  font-size: 11px; font-weight: 500; padding: 8px 14px;
  border-radius: 999px; transition: all var(--fast);
}
.flink:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.flink--active {
  background: var(--accent); color: var(--dark-text); font-weight: 700;
}
.flink--active:hover { background: #d4ff33; color: var(--dark-text); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 1; }
@supports(animation-timeline:scroll()){
  .fade-in {
    opacity: 0; animation: revealFade linear both;
    animation-timeline: view(); animation-range: entry 0% entry 80%;
  }
}
@keyframes revealFade { to { opacity: 1; } }

@supports(animation-timeline:scroll()){
  .hero__img {
    animation: heroPara linear both;
    animation-timeline: scroll(); animation-range: 0% 50%;
  }
}
@keyframes heroPara {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.05) translateY(-50px); }
}

.scroll-container {
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.scroll-container:active { cursor: grabbing; }
.scroll-container::-webkit-scrollbar { display: none; }

/* ===== MOBILE ===== */
@media(max-width:767px){
  .phone { width: 150px; height: 310px; border-radius: 22px; }
  .phone__notch { width: 60px; height: 18px; top: 5px; }
  .phones__tray { padding: 20px 16px; border-radius: 18px; margin: 0 16px; }
  /* Proof section mobile */
  .proof__wrap { padding: 34px 18px 70px; }
  .swipe { margin-bottom: 72px; }
  .swipe__strip-wrap { max-width: none; margin-left: 0; }
  .flyer-card { flex: 0 0 calc(50vw - 32px); width: calc(50vw - 32px); height: calc((50vw - 32px) * 1.77); border-radius: 14px; }
  .ftc { margin: 36px calc(-50vw + 50%) -70px; padding: 36px 0 48px; width: 100vw; box-sizing: border-box; }
  .ftc .proof__title { padding: 0 18px; }
  .ftc__grid { grid-template-columns: 1fr 160px; gap: 14px; padding: 0 18px; }

  .comment-flyer { width: 160px; height: 284px; }

  /* Hero video mobile — taller, cropped to fill */
  .herovid {
    min-height: 50vh;
  }
  .herovid__player {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
  }
  /* Showcase mobile — phone below pills */
  .showcase { flex-direction: column; min-height: auto; max-height: none; }
  .showcase__left { padding: 24px 20px 0; flex-direction: column; gap: 12px; }
  .showcase__arrows { flex-direction: row; padding-top: 0; }
  .showcase__pills { flex-direction: row; flex-wrap: wrap; }
  .showcase__phone {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    order: 2;              /* push below pills */
  }
  .showcase__phone-img,
  .showcase__phone-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 30px;
  }
  .showcase__audio { top: 12px; right: 12px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feat-card { min-height: 200px; padding: 22px 18px 24px; border-radius: 18px; }
  .feat-card__title { font-size: 15px; }
  .events__grid { grid-template-columns: 1fr 1fr; }
  .events__item--ticket { grid-column: span 2; }
}
