/* ================================================================
   ANDRE – Subpage Shared Styles
   Dołącz PO concept-v2.css
   ================================================================ */

/* ── Subpage hero ──────────────────────────────────────── */
.subhero {
  position: relative;
  min-height: clamp(340px, 52vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
}
.subhero-bg {
  position: absolute;
  inset: 0;
}
.subhero-bg img {
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.28;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.subhero:hover .subhero-bg img { transform: scale(1.09); }

.subhero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8,8,8,0.45) 55%, rgba(8,8,8,0.12) 100%),
    linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 60%);
}
.subhero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--gap) * 2), var(--sh));
  margin-inline: auto;
  padding-bottom: clamp(40px, 6vh, 80px);
}
.subhero-kicker {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 10px;
}
.subhero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 12vw, 13rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 100px rgba(204,20,34,0.18),
    0 0 50px  rgba(204,20,34,0.08);
}
.subhero-sub {
  margin-top: 14px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
  line-height: 1.6;
}

/* ── Breadcrumb nav ──────────────────────────────────────*/
.breadcrumb {
  width: min(calc(100% - var(--gap) * 2), var(--sh));
  margin-inline: auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 180ms;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--red); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ── Subpage nav active state ──────────────────────────── */
.hdr-nav a.is-active { color: var(--white); }
.hdr-nav a.is-active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--red);
  margin-top: 2px;
  box-shadow: 0 0 8px var(--red-glow);
}

/* ================================================================
   DO POBRANIA – Download Cards
   ================================================================ */
.dl-sec {
  background: var(--bg);
  padding: clamp(60px, 8vw, 120px) 0;
}
.dl-intro {
  max-width: 60ch;
  margin-bottom: clamp(36px, 5vw, 70px);
}
.dl-intro h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.dl-intro p {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.dl-card {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  transition: background 250ms;
  position: relative;
  overflow: hidden;
}
.dl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px var(--red-glow);
}
.dl-card:hover::before { transform: scaleX(1); }
.dl-card:hover { background: rgba(255,255,255,0.03); }

.dl-preview {
  aspect-ratio: 4/3;
  background: var(--bg3);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* checkerboard bg for logo transparency */
.dl-preview.has-logo {
  background:
    repeating-conic-gradient(#1a1a1a 0% 25%, #111 0% 50%)
    0 0 / 20px 20px;
}
.dl-preview img {
  max-width: 48%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 300ms ease;
}
.dl-card:hover .dl-preview img { transform: scale(1.06); }
.dl-preview .dl-photo-thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 300ms ease, transform 300ms ease;
}
.dl-card:hover .dl-photo-thumb { opacity: 0.75; transform: scale(1.04); }

.dl-info {
  padding: 22px 24px 16px;
  flex: 1;
}
.dl-type {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.dl-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.dl-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

.dl-footer {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dl-meta {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  font-weight: 500;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  white-space: nowrap;
  flex-shrink: 0;
}
.dl-btn:hover {
  background: #e01525;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,20,34,0.35);
}
.dl-btn svg { flex-shrink: 0; }

.dl-notice {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  background: rgba(204,20,34,0.04);
}
.dl-notice strong { color: rgba(255,255,255,0.6); }

/* ================================================================
   MULTIMEDIA
   ================================================================ */
.mm-sec {
  background: var(--bg);
  padding: clamp(60px, 8vw, 120px) 0;
}
.mm-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
  flex-wrap: wrap;
}
.mm-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
}
.mm-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
  transition: border-color 200ms, background 200ms;
}
.mm-channel:hover {
  border-color: rgba(255,0,0,0.4);
  background: rgba(255,0,0,0.06);
}
.mm-channel svg { color: #FF0000; flex-shrink: 0; }
.mm-channel-info strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.mm-channel-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mm-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--line);
  transition: border-color 280ms, box-shadow 280ms;
}
.mm-frame:hover {
  border-color: rgba(204,20,34,0.4);
  box-shadow: 0 0 0 1px rgba(204,20,34,0.15), 0 8px 32px rgba(0,0,0,0.4);
}
.mm-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.mm-frame:hover img { transform: scale(1.04); }
.mm-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.18) 52%, rgba(0,0,0,0.04) 100%);
}
.mm-frame-play {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.mm-frame-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ff0000;
}
.mm-frame-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 1;
}

.mm-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 52px);
  padding-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.mm-more p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.4);
}
.mm-more p strong { color: rgba(255,255,255,0.75); }

/* Social wall */
.social-wall {
  background: var(--bg2);
  padding: clamp(52px, 7vw, 100px) 0;
  border-top: 1px solid var(--line);
}
.social-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.social-card {
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 250ms, transform 250ms;
}
.social-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.social-card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
}
.social-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}
.social-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  flex: 1;
}
.social-card-stat {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--red);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  transition: color 180ms;
}
.social-card-link:hover { color: var(--white); }

/* ================================================================
   ZESPÓŁ
   ================================================================ */
.team-sec {
  background: var(--bg);
  padding: clamp(60px, 8vw, 120px) 0;
}
.team-leader {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.team-photo {
  margin: 0;
  overflow: hidden;
  height: min(70vh, 820px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
}
.team-photo img { transition: transform 700ms ease; }
.team-photo:hover img { transform: scale(1.04); }

.team-copy .eyebrow { margin-bottom: 14px; }
.team-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.team-copy p {
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 50ch;
  margin-bottom: 20px;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.team-stat {
  background: var(--bg2);
  padding: 20px;
  text-align: center;
}
.team-stat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--red);
  line-height: 0.9;
}
.team-stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  font-weight: 500;
}

/* Team horizontal photo */
.team-fullphoto {
  position: relative;
  height: clamp(280px, 45vw, 680px);
  overflow: hidden;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.team-fullphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.team-fullphoto:hover img { transform: scale(1.04); }
.team-fullphoto-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
  padding: 28px clamp(20px, 4vw, 52px);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Awards grid on team page */
.team-awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.team-award-card {
  background: var(--bg2);
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background 250ms;
}
.team-award-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 380ms cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 16px var(--red-glow);
}
.team-award-card:hover::before { transform: scaleY(1); }
.team-award-card:hover { background: rgba(255,255,255,0.025); }
.ta-year {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--red);
  line-height: 0.88;
  display: block;
  margin-bottom: 10px;
}
.team-award-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.team-award-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 42ch;
}

/* ================================================================
   SHARED CTA (reused on all subpages)
   ================================================================ */
.page-cta {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: clamp(52px, 8vw, 100px) 0;
  text-align: center;
}
.page-cta .eyebrow { justify-content: center; display: flex; }
.page-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 10px 0 24px;
}
.page-cta p {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.38);
  max-width: 44ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.page-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================================================================
   RESPONSIVE – SUBPAGES
   ================================================================ */
@media (max-width: 1080px) {
  .dl-grid    { grid-template-columns: repeat(2, 1fr); }
  .mm-grid    { grid-template-columns: repeat(2, 1fr); }
  .mm-frame:nth-child(5),
  .mm-frame:nth-child(6) { display: none; } /* show only 4 at tablet */
  .social-wall-grid { grid-template-columns: 1fr; }
  .team-leader { grid-template-columns: 1fr; }
  .team-photo  { height: clamp(280px, 55vw, 500px); }
  .team-awards { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .subhero-title { font-size: clamp(3.5rem, 18vw, 7rem); }
  .dl-grid  { grid-template-columns: 1fr; }
  .mm-grid  { grid-template-columns: 1fr; }
  .mm-frame:nth-child(4),
  .mm-frame:nth-child(5),
  .mm-frame:nth-child(6) { display: none; } /* show only 3 on mobile */
  .mm-head  { flex-direction: column; align-items: flex-start; }
  .team-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   MULTIMEDIA — premium layout matched to andre.css
   ================================================================ */
body.mm-page .subhero {
  min-height: min(82svh, 860px);
  align-items: flex-end;
  isolation: isolate;
  background: var(--bg);
}
body.mm-page .subhero-bg img,
body.mm-page .subhero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .52;
  filter: saturate(1.2) contrast(1.08) brightness(.9);
}
body.mm-page .subhero-shade {
  background:
    linear-gradient(180deg, rgba(6,1,15,.42) 0%, rgba(6,1,15,.18) 34%, var(--bg) 100%),
    radial-gradient(52% 72% at 18% 54%, rgba(255,31,174,.48), transparent 68%),
    radial-gradient(50% 64% at 84% 24%, rgba(61,107,255,.36), transparent 66%);
}
body.mm-page .subhero-copy {
  padding-top: calc(var(--hdr) + 54px);
  padding-bottom: clamp(52px, 8vw, 108px);
}
body.mm-page .subhero-kicker {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .34em;
  color: var(--cyan);
  text-transform: uppercase;
}
body.mm-page .subhero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 13vw, 13rem);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 0 70px rgba(255,31,174,.26);
  word-break: keep-all;
  overflow-wrap: normal;
}
body.mm-page .subhero-title::after {
  content: ".";
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.mm-page .subhero-sub {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  max-width: 58ch;
}
body.mm-page .mm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
body.mm-page .mm-crumb-wrap {
  background: linear-gradient(180deg, rgba(11,4,32,.72), rgba(6,1,15,.96));
}
body.mm-page .breadcrumb {
  border-bottom: 1px solid var(--panel-bd);
  color: var(--ink-mute);
}
body.mm-page .breadcrumb a {
  color: var(--ink-dim);
}
body.mm-page .breadcrumb a:hover,
body.mm-page .breadcrumb .current {
  color: var(--ink);
}
body.mm-page .breadcrumb .sep {
  color: var(--magenta-2);
}
body.mm-page .hdr-nav a.is-active {
  color: var(--ink);
}
body.mm-page .hdr-nav a.is-active::after {
  background: var(--grad-neon);
  box-shadow: 0 0 14px var(--magenta-glow);
}

body.mm-page .mm-sec {
  position: relative;
  padding: clamp(68px, 9vw, 136px) 0;
  overflow: hidden;
  background:
    radial-gradient(54% 72% at 82% 10%, rgba(255,31,174,.16), transparent 68%),
    radial-gradient(44% 58% at 0% 38%, rgba(61,107,255,.18), transparent 64%),
    var(--bg);
}
body.mm-page .mm-head {
  margin-bottom: clamp(34px, 5vw, 64px);
}
body.mm-page .mm-head > div {
  max-width: 780px;
}
body.mm-page .mm-head h2,
body.mm-page .mm-social-title,
body.mm-page .page-cta h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: .88;
  letter-spacing: 0;
  color: var(--ink);
}
body.mm-page .mm-head p:not(.eyebrow) {
  color: var(--ink-dim);
  margin-top: 18px;
  max-width: 56ch;
}
body.mm-page .mm-channel {
  border: 1px solid var(--panel-bd);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  padding: 12px 20px 12px 14px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
body.mm-page .mm-channel:hover {
  transform: translateY(-3px);
  border-color: var(--magenta);
  background: rgba(255,31,174,.08);
  box-shadow: 0 0 34px var(--magenta-glow);
}
body.mm-page .mm-channel svg {
  color: #fff;
  background: linear-gradient(135deg, #ff1fae, #ff0000);
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
}
body.mm-page .mm-channel-info strong {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: 0;
}
body.mm-page .mm-channel-info span {
  color: var(--ink-mute);
  font-size: .76rem;
}

body.mm-page .mm-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(14px, 1.8vw, 24px);
}
body.mm-page .mm-frame {
  border: 1px solid var(--panel-bd);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .35s;
}
body.mm-page .mm-feature {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: clamp(410px, 42vw, 620px);
}
body.mm-page .mm-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-neon);
  opacity: .42;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .35s;
}
body.mm-page .mm-frame::after {
  z-index: 1;
  background: linear-gradient(190deg, rgba(6,1,15,.02) 24%, rgba(6,1,15,.52) 64%, rgba(6,1,15,.94));
}
body.mm-page .mm-frame:hover {
  transform: translateY(-7px);
  border-color: rgba(79,230,255,.36);
  box-shadow: 0 34px 80px var(--blue-glow);
}
body.mm-page .mm-frame:hover::before {
  opacity: 1;
}
body.mm-page .mm-frame img {
  filter: saturate(1.12) contrast(1.05);
}
body.mm-page .mm-frame:hover img {
  transform: scale(1.07);
}
body.mm-page .mm-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #06010f;
  background: var(--grad-hot);
  box-shadow: 0 8px 24px var(--magenta-glow);
}
body.mm-page .mm-frame-play {
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%) scale(.86);
  opacity: 0;
  background: rgba(6,1,15,.46);
  border: 1px solid rgba(255,255,255,.26);
  color: var(--ink);
  backdrop-filter: blur(10px);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .02em;
  transition: opacity .35s, transform .35s var(--ease);
}
body.mm-page .mm-frame:hover .mm-frame-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
body.mm-page .mm-frame-play::before {
  border-left-color: var(--magenta-2);
}
body.mm-page .mm-frame-label {
  z-index: 4;
  padding: 22px 18px 18px;
  background: none;
  color: var(--ink);
}
body.mm-page .mm-frame-label strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.12;
}
body.mm-page .mm-feature .mm-frame-label strong {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}
body.mm-page .mm-frame-label span {
  display: block;
  margin-top: 4px;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
body.mm-page .mm-more {
  border-top: 1px solid var(--panel-bd);
}
body.mm-page .mm-more p {
  color: var(--ink-dim);
}
body.mm-page .mm-more p strong {
  color: var(--ink);
}

body.mm-page .social-wall {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6,1,15,.96), rgba(13,8,43,.95)),
    radial-gradient(50% 64% at 80% 20%, rgba(79,230,255,.16), transparent 68%);
  border-top: 1px solid var(--panel-bd);
  padding: clamp(64px, 8vw, 120px) 0;
}
body.mm-page .social-card {
  border: 1px solid var(--panel-bd);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
}
body.mm-page .social-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,31,174,.36);
  box-shadow: 0 30px 70px rgba(255,31,174,.22);
}
body.mm-page .social-card-icon {
  border-radius: 50%;
  border: 1px solid var(--panel-bd);
  color: var(--cyan);
  background: rgba(255,255,255,.05);
}
body.mm-page .social-card h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--ink);
}
body.mm-page .social-card p {
  color: var(--ink-dim);
}
body.mm-page .social-card-stat {
  font-family: "Anton", sans-serif;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.mm-page .social-card-link {
  border-top: 1px solid var(--panel-bd);
  color: var(--ink-dim);
}
body.mm-page .social-card:hover .social-card-link {
  color: var(--ink);
}

body.mm-page .page-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6,1,15,.98), rgba(11,4,32,.96)),
    radial-gradient(42% 68% at 50% 22%, rgba(255,31,174,.24), transparent 70%);
  border-top: 1px solid var(--panel-bd);
}
body.mm-page .page-cta p {
  color: var(--ink-dim);
}
body.mm-page .page-cta h2 em {
  filter: drop-shadow(0 0 28px var(--magenta-glow));
}

@media (max-width: 1080px) {
  body.mm-page .mm-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.mm-page .mm-feature {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  body.mm-page .mm-frame:nth-child(5),
  body.mm-page .mm-frame:nth-child(6) {
    display: block;
  }
}

@media (max-width: 680px) {
  body.mm-page .subhero {
    min-height: 76svh;
  }
  body.mm-page .subhero-copy {
    padding-bottom: 48px;
  }
  body.mm-page .mm-hero-actions,
  body.mm-page .page-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  body.mm-page .mm-grid {
    grid-template-columns: 1fr;
  }
  body.mm-page .mm-feature,
  body.mm-page .mm-frame {
    aspect-ratio: 16 / 10;
  }
  body.mm-page .mm-frame:nth-child(4),
  body.mm-page .mm-frame:nth-child(5),
  body.mm-page .mm-frame:nth-child(6) {
    display: block;
  }
  body.mm-page .mm-channel {
    width: 100%;
  }
}
