/* =============================================================
   AIIMS GLOBAL COMMAND MENU V2 — CSS
   Nova 2026-08-12
   ============================================================= */

:root {
  --mnv2-red: #ff492f;
  --mnv2-red-soft: #ff6b4f;
  --mnv2-red-rgb: 255, 73, 47;
  --mnv2-ink: #050505;
  --mnv2-platinum-muted: rgba(233, 236, 242, 0.78);
  --mnv2-platinum-soft: rgba(225, 229, 237, 0.64);
  --mnv2-line: rgba(233, 236, 242, 0.18);
}

/* ── Topbar ─────────────────────────────────────────────────── */
.mnv2-topbar {
  position: fixed !important;
  z-index: 500 !important;
  top: 44px !important; /* below awards ticker */
  left: 0 !important;
  right: 0 !important;
  display: grid !important;
  grid-template-columns: 180px 1fr auto !important;
  align-items: center !important;
  height: 82px !important;
  padding: 0 clamp(22px, 5.3vw, 84px) !important;
  border-bottom: 1px solid rgba(255,255,255,.11) !important;
  background: rgba(5,5,5,.94) !important;
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body { padding-top: calc(44px + 82px) !important; }

@media (max-width: 760px) {
  .mnv2-topbar { top: 38px; }
  body { padding-top: calc(38px + 72px) !important; }
}

/* ── Brand ──────────────────────────────────────────────────── */
.mnv2-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  text-decoration: none;
}
.mnv2-brand img {
  width: 126px;
  height: auto;
  object-fit: contain;
  display: block;
}
.mnv2-brand-word {
  display: none;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.065em;
  color: #fff;
}

/* ── Primary Nav ─────────────────────────────────────────────── */
.mnv2-primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 26px);
  height: 100%;
}

.mnv2-nav-trigger {
  position: relative;
  border: 0;
  background: transparent;
  padding: 2px 4px 0;
  cursor: pointer;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: color .25s ease;
  font-family: inherit;
}
.mnv2-nav-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--mnv2-red);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.mnv2-nav-trigger:hover,
.mnv2-nav-trigger:focus-visible,
.mnv2-nav-trigger.active { color: #fff; }
.mnv2-nav-trigger.active::after,
.mnv2-nav-trigger:hover::after { transform: scaleX(1); }

/* ── Header CTA ─────────────────────────────────────────────── */
.mnv2-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  background: #fff;
  color: #080808;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.mnv2-header-cta:hover {
  background: var(--mnv2-red);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Mobile menu button ─────────────────────────────────────── */
.mnv2-mobile-btn { display: none; }

/* ── Mega Menu overlay ──────────────────────────────────────── */
.mnv2-mega {
  position: fixed;
  z-index: 490;
  top: calc(44px + 82px);
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px) scale(.992);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .26s ease, transform .42s cubic-bezier(.2,.8,.2,1), visibility .42s;
}
.mnv2-mega.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mnv2-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,2,2,.82);
  backdrop-filter: blur(18px) saturate(105%);
  -webkit-backdrop-filter: blur(18px) saturate(105%);
}

/* ── Mega Shell ─────────────────────────────────────────────── */
.mnv2-shell {
  position: relative;
  display: grid;
  grid-template-rows: 52px 58px minmax(0, 1fr) 54px;
  width: min(1540px, calc(100% - clamp(28px, 4.2vw, 72px)));
  height: min(680px, calc(100% - 24px));
  margin: 12px auto;
  padding: 0 clamp(18px, 2vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-top-color: rgba(255,255,255,.42);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12,12,12,.99), rgba(5,5,5,.99) 74%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.82), 0 28px 96px rgba(0,0,0,.68);
}
.mnv2-shell::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -1px;
  left: 30px;
  width: min(24vw, 280px);
  height: 2px;
  background: linear-gradient(90deg, var(--mnv2-red), transparent);
  pointer-events: none;
}

/* ── Topline ─────────────────────────────────────────────────── */
.mnv2-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--mnv2-line);
}
.mnv2-menu-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: rgba(233,236,242,.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mnv2-menu-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mnv2-red);
}
.mnv2-topline-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* ── Office Clocks ──────────────────────────────────────────── */
.mnv2-office-clocks {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mnv2-office-clock {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mnv2-platinum-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.mnv2-office-clock + .mnv2-office-clock { padding-left: 16px; }
.mnv2-office-clock + .mnv2-office-clock::before {
  content: "";
  position: absolute;
  top: 3px; bottom: 3px; left: 0;
  width: 1px;
  background: var(--mnv2-line);
}
.mnv2-country-flag {
  display: grid;
  width: 23px; height: 23px;
  flex: 0 0 23px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  background: #141414;
  box-shadow: 0 0 0 2px rgba(255,255,255,.035);
}
.mnv2-country-flag > span {
  display: block;
  font-size: 18px;
  line-height: 1;
  transform: scale(1.22);
}
.mnv2-office-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.mnv2-office-copy strong { color: #f6f7fa; font-weight: 700; }
.mnv2-office-time { color: rgba(233,236,242,.76); font-variant-numeric: tabular-nums; }
.mnv2-office-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 43px;
  color: var(--mnv2-platinum-soft);
  white-space: nowrap;
}
.mnv2-status-dot {
  width: 6px; height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #ff4b42;
}
.mnv2-office-clock.is-open .mnv2-status-dot {
  background: #35d07f;
  animation: mnv2PulseGreen 1.8s ease-out infinite;
}
.mnv2-office-clock.is-closed .mnv2-status-dot {
  background: #ff4b42;
  animation: mnv2PulseRed 2.1s ease-out infinite;
}
.mnv2-office-clock.is-open .mnv2-status-label { color: #82e3ad; }
.mnv2-office-clock.is-closed .mnv2-status-label { color: #ff918a; }
@keyframes mnv2PulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(53,208,127,.54); }
  72%, 100% { box-shadow: 0 0 0 7px rgba(53,208,127,0); }
}
@keyframes mnv2PulseRed {
  0% { box-shadow: 0 0 0 0 rgba(255,75,66,.48); }
  72%, 100% { box-shadow: 0 0 0 7px rgba(255,75,66,0); }
}

/* ── Close button ────────────────────────────────────────────── */
.mnv2-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(233,236,242,.76);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease;
  font-family: inherit;
}
.mnv2-close-icon {
  position: relative;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.mnv2-close-icon::before,
.mnv2-close-icon::after {
  content: "";
  position: absolute;
  top: 13px; left: 7px;
  width: 13px; height: 1px;
  background: currentColor;
}
.mnv2-close-icon::before { transform: rotate(45deg); }
.mnv2-close-icon::after { transform: rotate(-45deg); }
.mnv2-close:hover { color: #fff; }

/* ── Menu switch (mobile tabs) ──────────────────────────────── */
.mnv2-switch {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(var(--mnv2-red-rgb),.26);
  background: rgba(255,255,255,.012);
  padding: 0;
  scrollbar-width: none;
}
.mnv2-switch::-webkit-scrollbar { display: none; }
.mnv2-switch-btn {
  position: relative;
  flex: 1 0 auto;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: transparent;
  padding: 0 clamp(14px, 1.65vw, 25px);
  color: rgba(233,236,242,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.006em;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  font-family: inherit;
}
.mnv2-switch-btn::after {
  content: "";
  position: absolute;
  right: 14px; bottom: -1px; left: 14px;
  height: 2px;
  background: var(--mnv2-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.mnv2-switch-btn:hover,
.mnv2-switch-btn:focus-visible,
.mnv2-switch-btn.active {
  background: rgba(255,255,255,.045);
  color: #fff;
  outline: 0;
}
.mnv2-switch-btn:hover::after,
.mnv2-switch-btn:focus-visible::after,
.mnv2-switch-btn.active::after { transform: scaleX(1); }

/* ── Body / columns ─────────────────────────────────────────── */
.mnv2-body {
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(28px, 3.3vw, 54px);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 22px 0 18px;
}
.mnv2-film-col { align-self: start; min-width: 0; }

/* ── Spotlight ──────────────────────────────────────────────── */
.mnv2-spotlight {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: #111;
  box-shadow: 0 24px 58px rgba(0,0,0,.48);
}
.mnv2-spotlight::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0; bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mnv2-red), transparent);
  opacity: 0;
  transform: translateX(-65%);
  pointer-events: none;
}
.mnv2-spotlight.is-loading::after {
  opacity: 1;
  animation: mnv2MediaLoad 1.15s ease-in-out infinite;
}
@keyframes mnv2MediaLoad {
  50% { transform: translateX(65%); }
  100% { transform: translateX(165%); }
}
.mnv2-spotlight-media,
.mnv2-spotlight-media img,
.mnv2-spotlight-media video,
.mnv2-spotlight-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mnv2-spotlight-media img,
.mnv2-spotlight-media video,
.mnv2-spotlight-media iframe {
  border: 0;
  object-fit: cover;
  transform: scale(1.015);
  transition: opacity .42s ease, transform 6s ease;
}
.mnv2-spotlight-media iframe {
  max-width: none;
  left: 0;
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
}
.mnv2-spotlight.youtube-ready .mnv2-spotlight-media iframe { opacity: 1; }
.mnv2-spotlight:hover .mnv2-spotlight-media img,
.mnv2-spotlight:hover .mnv2-spotlight-media video { transform: scale(1.06); }

.mnv2-film-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 2px 0;
  color: rgba(225,229,237,.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
}
.mnv2-film-caption strong {
  overflow: hidden;
  color: rgba(241,243,247,.92);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnv2-film-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.mnv2-film-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mnv2-red);
}

/* ── Directory ──────────────────────────────────────────────── */
.mnv2-directory {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.mnv2-dir-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 0 2px 18px;
  border-bottom: 1px solid var(--mnv2-line);
}
.mnv2-dir-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .94;
  color: #fff;
}
.mnv2-dir-number {
  color: rgba(225,229,237,.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.mnv2-dir-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mnv2-eyebrow {
  margin: 0;
  color: var(--mnv2-red-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.mnv2-section-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(var(--mnv2-red-rgb),.48);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.mnv2-section-link span { font-size: 16px; line-height: 1; }
.mnv2-section-link:hover,
.mnv2-section-link:focus-visible {
  border-color: var(--mnv2-red);
  background: var(--mnv2-red);
  color: #fff;
  outline: 0;
}

/* ── Link columns ────────────────────────────────────────────── */
.mnv2-link-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: clamp(18px, 2.2vw, 36px);
  min-height: 0;
  padding: 22px 10px 12px 2px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgba(var(--mnv2-red-rgb),.62) rgba(255,255,255,.05);
  scrollbar-width: thin;
}
.mnv2-link-cols::-webkit-scrollbar { width: 4px; }
.mnv2-link-cols::-webkit-scrollbar-track { background: rgba(255,255,255,.045); }
.mnv2-link-cols::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(var(--mnv2-red-rgb),.62); }
.mnv2-mega[data-section="cases"] .mnv2-link-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: 17px 12px;
}
.mnv2-link-group h4 {
  margin: 0 0 15px;
  color: var(--mnv2-red-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}
.mnv2-link-group a {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 11px;
  color: rgba(237,240,245,.88);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.22;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.mnv2-link-group a::before {
  content: "";
  position: absolute;
  top: .55em; left: -13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mnv2-red);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .18s ease, transform .18s ease;
}
.mnv2-link-group a:hover,
.mnv2-link-group a:focus-visible { color: #fff; transform: translateX(7px); }
.mnv2-link-group a:hover::before,
.mnv2-link-group a:focus-visible::before { opacity: 1; transform: scale(1); }

/* ── Content shelf ──────────────────────────────────────────── */
.mnv2-shelf {
  min-width: 0;
  overflow: hidden;
  padding: 10px 0 1px;
  border-top: 1px solid rgba(var(--mnv2-red-rgb),.24);
}
.mnv2-shelf[hidden] { display: none; }
.mnv2-shelf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}
.mnv2-shelf-title-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.mnv2-shelf-head h3 {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.mnv2-shelf-head p {
  margin: 0;
  overflow: hidden;
  color: rgba(225,229,237,.62);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnv2-shelf-controls { display: flex; gap: 7px; }
.mnv2-shelf-btn {
  display: grid;
  width: 28px; height: 28px;
  place-items: center;
  border: 1px solid rgba(var(--mnv2-red-rgb),.66);
  border-radius: 50%;
  background: rgba(var(--mnv2-red-rgb),.07);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-family: inherit;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.mnv2-shelf-btn:hover,
.mnv2-shelf-btn:focus-visible {
  border-color: var(--mnv2-red);
  background: rgba(var(--mnv2-red-rgb),.25);
  outline: 0;
}
.mnv2-shelf-btn:disabled { cursor: default; opacity: .3; }
.mnv2-shelf-track {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 32px 4px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 93%, transparent 100%);
}
.mnv2-shelf-track::-webkit-scrollbar { display: none; }

/* ── Story cards ─────────────────────────────────────────────── */
.mnv2-story-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(175px, 23vw, 225px);
  min-height: 104px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: linear-gradient(145deg, #28100c, #0c0c0c 72%);
  scroll-snap-align: start;
  isolation: isolate;
  text-decoration: none;
  transition: border-color .22s ease, transform .22s ease;
}
.mnv2-story-card::before {
  content: attr(data-mark);
  position: absolute;
  z-index: -2;
  top: 1px; right: 8px;
  color: rgba(255,255,255,.10);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .9;
}
.mnv2-story-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.12) 82%);
}
.mnv2-story-card.has-image { background-position: center; background-size: cover; }
.mnv2-story-card.has-image::before { display: none; }
.mnv2-story-card[data-tone="cobalt"] { background: linear-gradient(145deg, #132c4f, #080b11 75%); }
.mnv2-story-card[data-tone="signal"] { background: linear-gradient(145deg, #222f3c, #07090b 75%); }
.mnv2-story-card[data-tone="ice"]    { background: linear-gradient(145deg, #16404c, #070b0d 75%); }
.mnv2-story-card[data-tone="gold"]   { background: linear-gradient(145deg, #544019, #0e0b05 75%); }
.mnv2-story-card[data-tone="plum"]   { background: linear-gradient(145deg, #4d1738, #0d070b 75%); }
.mnv2-story-card[data-tone="steel"]  { background: linear-gradient(145deg, #35404b, #090b0d 75%); }
.mnv2-story-card[data-tone="violet"] { background: linear-gradient(145deg, #3d285a, #0a0710 75%); }
.mnv2-story-card[data-tone="forest"] { background: linear-gradient(145deg, #1d493b, #070d0b 75%); }
.mnv2-story-card:hover,
.mnv2-story-card:focus-visible {
  border-color: rgba(var(--mnv2-red-rgb),.80);
  outline: 0;
  transform: translateY(-2px);
}
.mnv2-story-card small,
.mnv2-story-card strong,
.mnv2-story-card span { display: block; }
.mnv2-story-card small {
  margin-bottom: 5px;
  color: var(--mnv2-red-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.mnv2-story-card strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.03;
}
.mnv2-story-card span {
  margin-top: 6px;
  color: rgba(237,240,245,.74);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
}

/* ── Footer ─────────────────────────────────────────────────── */
.mnv2-footer {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--mnv2-line);
  color: rgba(225,229,237,.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .035em;
  background: #060606;
}
.mnv2-footer-line { display: flex; align-items: center; gap: 14px; }
.mnv2-footer-line strong { color: #fff; font-weight: 700; }
.mnv2-discovery-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
}
.mnv2-discovery-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mnv2-red);
}
.mnv2-discovery-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 25px);
  min-width: 0;
}
.mnv2-discovery-links a {
  position: relative;
  color: rgba(233,236,242,.74);
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s ease;
}
.mnv2-discovery-links a::after {
  content: "";
  position: absolute;
  right: 0; bottom: -6px; left: 0;
  height: 1px;
  background: var(--mnv2-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.mnv2-discovery-links a:hover,
.mnv2-discovery-links a:focus-visible { color: #fff; outline: 0; }
.mnv2-discovery-links a:hover::after,
.mnv2-discovery-links a:focus-visible::after { transform: scaleX(1); }

/* ── Responsive: 901–1280px ─────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1280px) {
  .mnv2-topbar { grid-template-columns: 145px 1fr auto; padding-inline: 28px; }
  .mnv2-primary-nav { gap: 10px; }
  .mnv2-header-cta { padding-inline: 15px; }
  .mnv2-shell { width: calc(100% - 32px); padding-inline: 18px; }
  .mnv2-body { grid-template-columns: minmax(235px, 30vw) minmax(0, 1fr); gap: 24px; }
  .mnv2-topline-actions { gap: 15px; }
  .mnv2-office-clocks { gap: 10px; }
  .mnv2-office-clock + .mnv2-office-clock { padding-left: 10px; }
  .mnv2-dir-heading { gap: 14px; }
  .mnv2-dir-heading h2 { font-size: clamp(30px, 4vw, 44px); }
  .mnv2-section-link { padding-inline: 14px; }
  .mnv2-link-cols { gap: 18px; }
  .mnv2-link-group a { font-size: 13px; }
  .mnv2-discovery-links { gap: 12px; }
  .mnv2-footer { grid-template-columns: auto minmax(0, 1fr); gap: 16px; }
  .mnv2-footer > .mnv2-footer-line:last-child { display: none; }
  .mnv2-footer-line { gap: 8px; }
  .mnv2-story-card { flex-basis: clamp(168px, 22vw, 205px); }
}

@media (min-width: 901px) and (max-width: 1060px) {
  .mnv2-shell { width: calc(100% - 20px); margin-block: 10px; }
  .mnv2-menu-label { font-size: 10px; }
  .mnv2-office-clock { gap: 6px; font-size: 10px; }
  .mnv2-country-flag { width: 21px; height: 21px; flex-basis: 21px; }
  .mnv2-country-flag > span { font-size: 16px; }
  .mnv2-switch-btn { padding-inline: 12px; }
  .mnv2-body { grid-template-columns: minmax(225px, 29vw) minmax(0, 1fr); gap: 20px; }
  .mnv2-dir-heading h2 { font-size: clamp(28px, 4.1vw, 40px); }
  .mnv2-section-link { min-height: 38px; padding-inline: 12px; font-size: 10px; }
  .mnv2-link-cols { gap: 15px; }
  .mnv2-link-group a { font-size: 12px; }
  .mnv2-discovery-links { gap: 10px; }
  .mnv2-discovery-links a { font-size: 10px; }
}

@media (min-width: 901px) and (max-height: 800px) {
  .mnv2-shell { grid-template-rows: 46px 52px minmax(0, 1fr) 48px; height: calc(100% - 20px); margin-block: 10px; }
  .mnv2-body { gap: clamp(22px, 2.7vw, 42px); padding-block: 16px 13px; }
  .mnv2-dir-heading { min-height: 68px; padding-bottom: 12px; }
  .mnv2-dir-heading h2 { font-size: clamp(30px, 3vw, 44px); }
  .mnv2-dir-kicker { margin-bottom: 7px; }
  .mnv2-link-cols { padding-block: 15px 8px; }
  .mnv2-link-group h4 { margin-bottom: 10px; }
  .mnv2-link-group a { margin-bottom: 8px; line-height: 1.15; }
  .mnv2-shelf { padding-top: 8px; }
  .mnv2-shelf-head { margin-bottom: 6px; }
  .mnv2-story-card { min-height: 90px; padding: 11px 12px; }
  .mnv2-story-card::before { font-size: 44px; }
  .mnv2-story-card strong { font-size: 15px; }
  .mnv2-story-card span { margin-top: 4px; }
  .mnv2-film-caption { padding-top: 9px; }
  .mnv2-shelf-btn { width: 26px; height: 26px; }
}

@media (min-width: 901px) and (max-height: 650px) {
  .mnv2-shell { grid-template-rows: 42px 46px minmax(0, 1fr) 44px; }
  .mnv2-body { padding-block: 12px 10px; }
  .mnv2-dir-heading { min-height: 58px; padding-bottom: 9px; }
  .mnv2-dir-heading h2 { font-size: clamp(27px, 2.8vw, 38px); }
  .mnv2-dir-kicker { margin-bottom: 5px; }
  .mnv2-link-cols { padding-block: 10px 6px; }
  .mnv2-link-group h4 { margin-bottom: 8px; }
  .mnv2-link-group a { margin-bottom: 6px; }
  .mnv2-shelf { padding-top: 6px; }
  .mnv2-shelf-head { margin-bottom: 5px; }
  .mnv2-shelf-title-group p { display: none; }
  .mnv2-story-card { min-height: 78px; }
  .mnv2-story-card span { display: none; }
  .mnv2-film-caption { padding-top: 7px; }
}

/* ── Mobile (<= 900px) ──────────────────────────────────────── */
@media (max-width: 900px) {
  .mnv2-topbar { grid-template-columns: 1fr auto; height: 72px; }
  .mnv2-primary-nav, .mnv2-header-cta { display: none; }
  .mnv2-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    padding: 10px 14px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    color: #fff;
    font-family: inherit;
  }
  .mnv2-mobile-btn i,
  .mnv2-mobile-btn i::before,
  .mnv2-mobile-btn i::after {
    display: block;
    width: 14px; height: 1px;
    background: currentColor;
  }
  .mnv2-mobile-btn i { position: relative; }
  .mnv2-mobile-btn i::before,
  .mnv2-mobile-btn i::after { content: ""; position: absolute; left: 0; }
  .mnv2-mobile-btn i::before { top: -4px; }
  .mnv2-mobile-btn i::after { top: 4px; }
  .mnv2-mega { top: calc(38px + 72px); overflow-y: auto; background: #050505; }
  .mnv2-shell {
    display: block;
    width: calc(100% - 32px);
    height: auto;
    min-height: 100%;
    margin: 12px auto;
    padding-inline: 16px;
  }
  .mnv2-topline { position: sticky; z-index: 8; top: 0; height: 52px; background: rgba(5,5,5,.94); }
  .mnv2-office-clocks { display: none; }
  .mnv2-switch { display: flex; }
  .mnv2-switch-btn { flex: 0 0 auto; min-height: 54px; }
  .mnv2-body { display: block; padding-top: 0; }
  .mnv2-spotlight { min-height: 0; aspect-ratio: 16 / 9; }
  .mnv2-directory { display: block; margin-top: 22px; }
  .mnv2-link-cols { grid-template-columns: 1fr 1fr; gap: 28px; overflow: visible; }
  .mnv2-mega[data-section="cases"] .mnv2-link-cols { grid-template-columns: 1fr 1fr; }
  .mnv2-shelf { margin-top: 8px; padding-block: 16px 8px; }
  .mnv2-story-card { flex-basis: 42vw; }
  .mnv2-footer { grid-template-columns: 1fr; min-height: 72px; padding-block: 18px; }
  .mnv2-discovery-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 20px 10px 0;
    mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent 100%);
    scrollbar-width: none;
  }
  .mnv2-discovery-links::-webkit-scrollbar { display: none; }
}

@media (max-width: 560px) {
  .mnv2-topbar { height: 68px; padding-inline: 18px; }
  .mnv2-brand img { width: 112px; }
  .mnv2-mega { top: calc(38px + 68px); }
  .mnv2-shell { width: calc(100% - 24px); }
  .mnv2-menu-label { max-width: 190px; line-height: 1.3; }
  .mnv2-close > span:first-child { display: none; }
  .mnv2-spotlight { aspect-ratio: 16 / 10; border-radius: 16px; }
  .mnv2-dir-heading { align-items: start; flex-direction: column; }
  .mnv2-link-cols,
  .mnv2-mega[data-section="cases"] .mnv2-link-cols { grid-template-columns: 1fr; padding-block: 24px; }
  .mnv2-link-group a { margin-bottom: 12px; font-size: 16px; }
  .mnv2-shelf-title-group p { display: none; }
  .mnv2-story-card { flex-basis: 74vw; min-height: 132px; }
  .mnv2-footer { display: block; padding-block: 18px; }
  .mnv2-discovery-label { margin-bottom: 15px; }
  .mnv2-footer-line:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
