/* ============================================================
   MY MONSTERS — site.css (Brand Kit V2)
   Loaded AFTER tokens.css. All legacy aliases resolve to the
   Brand Kit palette (#CC0000 / #0A0A0A / #FFFFFF) automatically.

   Sections:
     §1  Reset + buttons
     §2  Floating nav
     §3  Hero
     §4  Yakujihō flag
     §5  Awards (left/right split)
     §6  Bento Grid (Layout B: char + package)
     §7  PAIN counter banner
     §8  Collab (C-1 symmetry)
     §9  Brand Story (4 blocks)
     §10 JOIN THE LAND. (window frames)
     §11 Final CTA (3-monster lineup)
     §12 Follow modal
     §13 Footer
     §14 Responsive
   ============================================================ */

/* ====================================================================
   §1  RESET + BUTTONS
   ==================================================================== */
.mm-site { background: var(--white); color: var(--ink); min-height: 100vh; overflow-x: hidden; }
.mm-site * { box-sizing: border-box; }

.mm-btn {
  font-family: var(--font-en-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em;
  padding: 18px 28px; border-radius: 999px;
  border: 1.5px solid var(--ink); cursor: pointer;
  transition: all 140ms var(--ease-bite, cubic-bezier(0.7, 0, 0.2, 1.4));
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; white-space: nowrap;
  background: transparent; color: var(--ink);
}
.mm-btn--filled { background: var(--ink); color: var(--white); }
.mm-btn--filled:hover { background: var(--brand-red); border-color: var(--brand-red); color: var(--white); }
.mm-btn--outline:hover { background: var(--ink); color: var(--white); }
.mm-btn--ghost {
  background: transparent; color: var(--ink); border-color: transparent;
  padding: 18px 4px;
}
.mm-btn--ghost:hover { color: var(--brand-red); }
.mm-btn:active { transform: scale(0.97); }
.mm-btn.is-pending { opacity: 0.45; cursor: not-allowed; }
.mm-btn__chev { transition: transform 200ms; }
.mm-btn:hover .mm-btn__chev { transform: translateX(3px); }

/* SVG mascot helper — display:block kills baseline gap */
.mm-charmark { display: block; }

/* ====================================================================
   §2  FLOATING NAV
   ==================================================================== */
.mm-nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 4px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 8px 8px 8px 14px;
  color: var(--white);
  box-shadow: 0 12px 32px -8px rgba(10,10,10,0.4);
}
.mm-nav__brand {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--white); text-decoration: none; overflow: hidden;
}
.mm-nav__logo {
  width: 220px; max-width: none;
  object-fit: cover; object-position: 4% center;
  height: 44px;
}
.mm-nav__links {
  list-style: none; padding: 0 0 0 6px; margin: 0;
  display: flex; align-items: center; gap: 0;
}
.mm-nav__link {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em;
  padding: 10px 14px; color: var(--white); text-decoration: none;
  border-radius: 999px; cursor: pointer;
  transition: background 140ms;
}
.mm-nav__link:hover { background: rgba(255,255,255,0.12); }
.mm-nav__cta {
  background: var(--white); color: var(--ink); border: none;
  border-radius: 999px; padding: 12px 18px;
  font-family: var(--font-en-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em;
  margin-left: 8px; cursor: pointer; white-space: nowrap;
  transition: all 140ms;
}
.mm-nav__cta:hover { background: var(--brand-red); color: var(--white); }

/* ====================================================================
   §3  HERO  (Brand Kit V2: typo-first, white bg, EAT YOUR PAIN. in red)
   ==================================================================== */
.mm-hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 96px 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--white);
}
.mm-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--white);
}
.mm-hero__bg-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(10,10,10,0.04), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(204,0,0,0.04), transparent 70%);
}
.mm-hero__inner { position: relative; z-index: 1; max-width: 1280px; }

/* ---- Opening overlay video ----------------------------------------
   Full-bleed one-shot video on first paint. While it plays, the
   existing hero contents (inner + scrollhint) are opacity:0 so the
   burned-in headline in the video isn't doubled. When the video ends
   (or its 11s safety timer fires) we add `is-opened` to the section
   and the hero fades in over 500ms; the overlay is then removed from
   the DOM. */
.mm-hero__opening {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  z-index: 10;
  pointer-events: none;
  transition: opacity 500ms ease;
}
.mm-hero__opening.is-done { opacity: 0; }
.mm-hero .mm-hero__inner,
.mm-hero .mm-hero__scrollhint {
  transition: opacity 500ms ease;
}
.mm-hero.is-opening .mm-hero__inner,
.mm-hero.is-opening .mm-hero__scrollhint {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  /* Narrow viewports: contain still applies — no override needed. */
}
.mm-hero__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 56px;
  display: inline-flex; align-items: center; gap: 12px;
}
.mm-hero__tick {
  display: inline-block; width: 28px; height: 1.5px; background: var(--ink);
}
.mm-hero__title {
  margin: 0;
  display: flex; flex-direction: column; gap: 0.04em;
}
.mm-hero__title-en {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92; letter-spacing: -0.04em;
  color: var(--brand-red);
  display: block;
}
.mm-hero__title-jp {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(40px, 7vw, 108px);
  line-height: 1.0; letter-spacing: 0.005em;
  color: var(--ink);
  display: block;
  margin-top: 0.08em;
}
.mm-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 64px;
}
.mm-hero__scrollhint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; color: var(--fog);
  letter-spacing: 0.2em;
  display: flex; align-items: center; gap: 10px;
}
.mm-hero__scrollbar {
  display: inline-block; width: 28px; height: 1.5px; background: var(--ink);
  animation: mm-tick 1.6s ease-in-out infinite;
}
@keyframes mm-tick {
  0%,100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(2); }
}

/* ====================================================================
   §4  (Yakujihō flag removed per client request)
   ==================================================================== */

/* ====================================================================
   §5  AWARDS  (left = oimon throne · right = text)
   ==================================================================== */
.mm-awards {
  background: #FFFFFF;
  color: var(--ink);
  padding: 120px 96px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
/* Full-bleed royal-hall loop video — sits below the scrim + content. */
.mm-awards__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  z-index: 0;
  pointer-events: none;
  background: #0A0A0A;
}
/* Right-side veil: soft white gradient that lets the gold palace shine
   through on the left while ramping up to a strong-ish milky white on
   the right where the headline + sub sit. Peaks at ~0.65 so the gold
   still reads, but black text on top stays clearly legible. */
.mm-awards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0)    0%,
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 255, 255, 0.40) 55%,
    rgba(255, 255, 255, 0.60) 80%,
    rgba(255, 255, 255, 0.66) 100%
  );
}
.mm-awards__inner {
  position: relative; z-index: 1;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  max-width: 1600px; margin: 0 auto;
}
/* Text column lives in the right half so it never overlaps the
   in-video oimon character (left side of the royal-hall loop). */
.mm-awards__inner > .mm-awards__text { grid-column: 2 / 3; }
.mm-awards__visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.mm-awards__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
}
.mm-awards__throne {
  position: relative; z-index: 2;
  width: 92%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(10,10,10,0.18));
  animation: mm-throne-float 6s ease-in-out infinite;
}
@keyframes mm-throne-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.mm-awards__sparkle {
  position: absolute; z-index: 1;
  font-family: var(--font-en-display);
  color: var(--gold, #F2B845);
  text-shadow: 0 0 12px rgba(242,184,69,0.55);
  animation: mm-sparkle 2.8s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.mm-awards__sparkle--1 { top: 12%;  left: 16%; font-size: 22px; animation-delay: 0s;   }
.mm-awards__sparkle--2 { top: 8%;   right: 18%; font-size: 28px; animation-delay: 0.6s; }
.mm-awards__sparkle--3 { top: 38%;  right: 8%;  font-size: 18px; animation-delay: 1.2s; }
.mm-awards__sparkle--4 { top: 26%;  left: 8%;  font-size: 16px; animation-delay: 1.8s; }
.mm-awards__sparkle--5 { bottom: 32%; right: 14%; font-size: 14px; animation-delay: 2.3s; }
@keyframes mm-sparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.15) rotate(20deg); }
}
.mm-awards__visual-cap {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--fog);
  margin: 0;
}
.mm-awards__text { padding: 0 0; }
.mm-awards__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--fog);
  margin: 0 0 32px;
}
.mm-awards__shout {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1.1; letter-spacing: 0.005em;
  margin: 0 0 32px;
  color: var(--ink);
  display: flex; flex-wrap: wrap; align-items: baseline;
}
.mm-awards__shout > span { display: inline; }
.mm-awards__amazon {
  font-family: var(--font-en-display); font-weight: 700;
  color: var(--brand-red);
  letter-spacing: -0.02em;
  padding: 0 0.05em;
}
.mm-awards__sub {
  font-family: var(--font-jp-body); font-weight: 500;
  font-size: 16px; line-height: 1.55;
  color: var(--fog); margin: 0;
  /* Translucent pill behind the bottom subline so the black body text +
     red ★ read against the busy gilded video. Sits flush with the line
     itself (inline-block hugs the content width) with a little internal
     padding; backdrop-blur softens the gold behind it. */
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
}
.mm-awards__trophy {
  display: inline-block; margin-right: 10px;
  color: var(--brand-red); font-size: 18px;
}
.mm-awards__date {
  color: var(--smoke); margin-left: 6px;
  font-family: var(--font-mono); font-size: 13px;
}
/* Drop the dark-scrim shadow that paired with the previous black scrim. */
.mm-awards__shout {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.92),
    0 0 20px rgba(255, 255, 255, 0.70);
}
/* Small / medium text gets a tighter, slightly brighter halo so it lifts
   off the gilded background without smearing. */
.mm-awards__eyebrow,
.mm-awards__sub,
.mm-awards__date,
.mm-awards__trophy {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 16px rgba(255, 255, 255, 0.75);
}
.mm-awards__spotlight { display: none; }

/* ====================================================================
   §6  BENTO GRID  (Layout B — char + package side-by-side per card)
   ==================================================================== */
.mm-bento {
  background: var(--white);
  padding: 120px 96px 140px;
  position: relative;
}
.mm-bento__heading {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 24px; margin-bottom: 28px;
  border-bottom: 1.5px solid var(--ink);
}
/* Top-of-section title block — added to make the bento read explicitly
   as the product index. Sits above the existing chapter/eyebrow row. */
.mm-bento__title-block {
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.mm-bento__title {
  font-family: var(--font-en-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.mm-bento__lead {
  font-family: var(--font-jp-display);
  font-weight: 900;
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.mm-bento__num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--fog);
}
.mm-bento__heading-txt {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
}
.mm-bento__row { display: grid; gap: 14px; margin-bottom: 14px; }
.mm-bento__row--live { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; align-items: stretch; }
.mm-bento__row--soon { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; align-items: stretch; }

.mm-bento__cell {
  position: relative; overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  background: var(--cho-color);
  display: grid;
  grid-template-rows: auto auto auto;
  padding: 20px 28px;
  cursor: pointer;
  transition: transform 320ms, box-shadow 320ms;
  gap: 8px;
}
.mm-bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(10,10,10,0.22);
}
.mm-bento__cell.is-locked { cursor: default; }
.mm-bento__cell.is-locked:hover { transform: none; box-shadow: none; }
.mm-bento__cell.is-clickable { cursor: pointer; }
.mm-bento__cell.is-clickable:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -6px;
}

/* Brand Kit product world colors */
.mm-bento__cell.bg-cho {
  /* Layered: translucent cream overlay on top of the kitchen photo,
     with the C.H.O活 cream as the underlying fallback color. The cell
     already has `overflow: hidden` + `border-radius`, so the photo is
     clipped to the card shape. Child sections (.mm-bento__head /
     __stage / __foot) carry `z-index: 2`, so they sit above this. */
  background-color: var(--cho-color);
  background-image:
    linear-gradient(rgba(245, 240, 235, 0.62), rgba(245, 240, 235, 0.62)),
    url('assets/cho-card-bg.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--ink);
}
.mm-bento__cell.bg-ase {
  /* Fire×water dual photo (shared with the A.S.E活 hero), with a dark scrim
     for text legibility. Slightly stronger toward the bottom where the
     tagline + CTA sit. Children carry z-index:2 so they stay above this.
     Cell already clips to its 24px radius via overflow:hidden. */
  background-color: var(--ase-color);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.46) 100%),
    url('assets/ase-hero-bg.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--white);
  border-color: var(--ink);
}
.mm-bento__cell.bg-min { background: var(--min-color); color: var(--white); }
.mm-bento__cell.bg-hug { background: var(--hug-color); color: var(--ink); }
.mm-bento__cell.bg-tin { background: var(--tin-color); color: var(--white); }

.mm-bento__cell.is-locked::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg, transparent 0 18px, rgba(10,10,10,0.07) 18px 19px
  );
  border-radius: 24px;
}
.mm-bento__cell.bg-min.is-locked::after,
.mm-bento__cell.bg-tin.is-locked::after {
  background-image: repeating-linear-gradient(
    135deg, transparent 0 18px, rgba(255,255,255,0.08) 18px 19px
  );
}

/* Stage: character (left) + package (right) — middle layer, baseline-aligned, no overlap */
.mm-bento__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  width: 100%;
  min-height: 0;
  overflow: hidden;
}
.mm-bento__char {
  position: relative;
  flex: 0 1 auto;
  display: flex; align-items: flex-end; justify-content: center;
  height: 100%;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
/* CHO speech bubble — anchored over Hapimon's head (upper area, slightly
   right of the mascot), tail pointing down-left back toward the character.
   Sized to ~30% of the card so it stays smaller than Hapimon and clear of
   the package + tagline. Sits above the kitchen bg / char but below the
   head/foot (z-index:2) and never intercepts the card click. */
/* CHO speech bubble — direct child of the card, parked in the open pocket
   to Hapimon's UPPER-RIGHT (the heart fills card-relative ~l12-37%/t30-69%;
   the package pouch starts ~l59%). Its visible art lands ~l37-58%/t16-39%,
   clear of the heart, pouch, title, sub-label, tagline and CTA — only the
   down-left tail reaches back toward the mascot. Sits above the kitchen bg
   but below the head/foot (z-index:2) and never intercepts the card click. */
.mm-bento__bubble {
  position: absolute;
  top: 12%;
  left: 35%;
  width: 34%;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(10,10,10,0.18));
}
/* A.S.E活 variant — オイモン sits lower-left, so place the bubble up-and-right
   of it with the down-left tail pointing back toward the mascot. Sized within
   25–35% of the card width; clears the package (right) + tagline/CTA (bottom). */
.mm-bento__bubble--ase {
  top: 10%;
  left: 30%;
  width: 31%;
}
/* C.H.O活 / A.S.E活 promo speech-bubbles removed per client request. */
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; justify-items: center;
  pointer-events: none;
  z-index: 0;
  padding: 60px 16px 16px;
}
.mm-bento__char {
  position: relative;
  bottom: -6%;
  transform: rotate(-6deg);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mm-bento__cell:hover .mm-bento__char { transform: rotate(-4deg) translateY(-6px) scale(1.04); }
.mm-bento__char-photo {
  /* Sized so the character reads at ~90% the height of the package
     image next to it (max-height: 640px in live row), giving the two
     stage elements equal visual weight. */
  width: 460px; max-width: 100%; height: auto; max-height: 580px; display: block;
  filter: drop-shadow(0 18px 28px rgba(10,10,10,0.32));
}
.mm-bento__row--soon .mm-bento__char-photo {
  filter: grayscale(0.55) brightness(0.85) drop-shadow(0 12px 20px rgba(10,10,10,0.45));
  opacity: 0.78;
}
.mm-bento__cell.is-locked .mm-bento__char {
  position: relative;
}
.mm-bento__cell.is-locked .mm-bento__char::after {
  content: '';
  position: absolute; inset: -8%;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.35) 100%);
  pointer-events: none;
}
.mm-bento__pkg {
  position: relative;
  flex: 0 1 auto;
  display: flex; align-items: flex-end; justify-content: center;
  height: auto;
  max-width: 58%;
}
.mm-bento__pkg img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mm-bento__cell:hover .mm-bento__pkg img { transform: translateY(-6px); }
.mm-bento__pkg-placeholder {
  width: 180px; height: 220px;
  border: 2px dashed rgba(10,10,10,0.3);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: rgba(10,10,10,0.55);
  gap: 6px;
}
.mm-bento__cell.bg-ase .mm-bento__pkg-placeholder,
.mm-bento__cell.bg-min .mm-bento__pkg-placeholder,
.mm-bento__cell.bg-tin .mm-bento__pkg-placeholder {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
}

.mm-bento__row--soon .mm-bento__stage { padding: 0; }
.mm-bento__row--soon .mm-bento__char-photo {
  /* Soon row cells are narrower (3-up); scale character to match the
     row's 480px package max-height with proportional width. */
  width: 320px; max-height: 420px;
}
/* M.I.N (soon row, but ships with a live character video) — undo the
   soon-row grayscale/brightness/opacity dimming on the seapaz video so
   it reads in true color, and scale to match the soon-row package
   height. The card's COMING SOON badge + locked CTA + lattice overlay
   stay intact; only the character render itself is restored. */
.mm-bento__cell.bg-min .mm-bento__char-photo {
  filter: drop-shadow(0 18px 28px rgba(10,10,10,0.32));
  opacity: 1;
  width: 400px; max-height: 460px;
}
.mm-bento__cell.bg-min.is-locked .mm-bento__char::after {
  display: none;
}
.mm-bento__row--soon .mm-bento__pkg img { max-height: 480px; }

.mm-bento__head {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.mm-badge {
  font-family: var(--font-en-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(10,10,10,0.88); color: var(--white);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.mm-badge--collab { background: var(--ink); color: var(--white); }
.mm-badge--award { background: var(--white); color: var(--ink); border: 1.5px solid var(--ink); }
.mm-badge--soon { background: rgba(10,10,10,0.5); color: rgba(255,255,255,0.95); }
.mm-bento__cell.bg-cho .mm-badge { background: var(--ink); color: var(--white); }
.mm-bento__cell.bg-ase .mm-badge--award {
  background: var(--white); color: var(--ase-color); border-color: var(--white);
}

.mm-bento__foot {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 100%;
}
.mm-bento__name-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mm-bento__name {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(22px, 2vw, 32px); line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
}
.mm-bento__sub {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.04em;
  opacity: 0.8;
}
.mm-bento__tag {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0; max-width: 28ch;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.mm-bento__cell.bg-ase .mm-bento__tag,
.mm-bento__cell.bg-min .mm-bento__tag,
.mm-bento__cell.bg-tin .mm-bento__tag {
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.mm-bento__cta-row { padding-top: 2px; }
.mm-bento__cta {
  font-family: var(--font-en-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em;
  display: inline-flex; align-items: center; gap: 8px;
  color: inherit; text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
  transition: gap 200ms;
  white-space: nowrap;
}
.mm-bento__cell:hover .mm-bento__cta { gap: 16px; }
.mm-bento__cta.is-locked { opacity: 0.55; border-bottom-style: dashed; cursor: default; }

.mm-bento__row--soon .mm-bento__name { font-size: clamp(18px, 1.6vw, 24px); }
.mm-bento__row--soon .mm-bento__tag { font-size: 14px; max-width: 22ch; }
.mm-bento__row--soon .mm-bento__cell { padding: 18px 24px; }
/* Product-card taglines on one line (desktop) — the card foot has ample
   width; the prior max-width cap was forcing a wrap. Narrow phones fall
   back to natural wrapping so nothing overflows. */
.mm-bento__row--live .mm-bento__tag,
.mm-bento__row--soon .mm-bento__tag {
  white-space: nowrap;
  max-width: none;
}
@media (max-width: 520px) {
  .mm-bento__row--live .mm-bento__tag,
  .mm-bento__row--soon .mm-bento__tag {
    white-space: normal;
    max-width: 28ch;
  }
}

/* ====================================================================
   §7  PAIN COUNTER BANNER (dark, full-width)
   ==================================================================== */
.mm-pain { background: var(--ink); padding: 0; position: relative; overflow: hidden; }
.mm-bento__cell--counter {
  background: var(--ink); color: var(--white);
  border: none; border-radius: 0;
  text-align: center;
  padding: 120px 96px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 36px;
  cursor: default;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}
.mm-bento__cell--counter:hover { transform: none; box-shadow: none; }
.mm-counter__noise {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(204,0,0,0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255,255,255,0.05), transparent 70%);
}
.mm-counter__head { position: relative; z-index: 1; }
.mm-counter__eyebrow {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: 0.4em; text-transform: uppercase;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.mm-counter__eyebrow-jp {
  font-family: var(--font-jp-body); font-weight: 500;
  font-size: clamp(17px, 1.85vw, 24px); color: rgba(255,255,255,0.6);
  margin: 0;
  letter-spacing: 0.08em;
}
.mm-counter__body { position: relative; z-index: 1; }
.mm-counter__num {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(96px, 16vw, 240px);
  line-height: 0.9; letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; justify-content: center;
  white-space: nowrap;
  color: var(--brand-red);
}
.mm-counter__plus {
  color: var(--brand-red); font-size: 0.55em; margin-left: 0.05em;
  transform: translateY(-0.1em);
}
/* Replayable number — click to restart the count-up from 0. Keyboard
   focusable (role=button, tabIndex=0); subtle hover/active feedback. */
.mm-counter__num.is-replayable {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 180ms ease, transform 180ms ease;
}
.mm-counter__num.is-replayable:hover { opacity: 0.85; }
.mm-counter__num.is-replayable:active { transform: scale(0.985); }
.mm-counter__num.is-replayable:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 8px;
  border-radius: 4px;
}
.mm-counter__unit {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(46px, 6vw, 92px); letter-spacing: 0.22em;
  margin: 28px 0 0; color: rgba(255,255,255,0.85);
}
/* ---- Live-ticker animation system ----
   (a) heartbeat: subtle continuous scale on the number wrapper while live
   (b) +N float: damage-number that pops from the top-right and rises away
   (c) bounce: the whole number pops on each increment
   (d) red glow: the vignette pulses once per increment */
.mm-counter__numwrap { position: relative; display: inline-block; }

@keyframes mm-counter-heartbeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}
@keyframes mm-counter-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes mm-counter-float {
  0%   { transform: translate(0, 0) scale(0.7); opacity: 0; }
  18%  { transform: translate(var(--fx, 0), -8px) scale(1.06); opacity: 1; }
  100% { transform: translate(var(--fx, 0), -56px) scale(1); opacity: 0; }
}
@keyframes mm-counter-glow {
  0%   { opacity: 0; }
  40%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Floating "+N" damage number */
.mm-counter__float {
  position: absolute;
  top: 0; right: -0.34em;
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(32px, 5.3vw, 80px); /* ~1/3 of the number */
  line-height: 1;
  color: #CC0000;
  text-shadow: 0 2px 10px rgba(204,0,0,0.45);
  pointer-events: none;
  z-index: 3;
  will-change: transform, opacity;
  animation: mm-counter-float 0.95s cubic-bezier(0.22, 0.7, 0.3, 1) forwards;
}

/* Red glow pulse layer — sits with the noise, below content */
.mm-counter__redglow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0;
  background: radial-gradient(ellipse 62% 52% at 50% 50%, rgba(204,0,0,0.5), transparent 70%);
}
.mm-counter__redglow.is-pulse { animation: mm-counter-glow 0.3s ease-out; }

@media (prefers-reduced-motion: no-preference) {
  .mm-bento__cell--counter.is-live .mm-counter__numwrap {
    animation: mm-counter-heartbeat 1.5s ease-in-out infinite;
  }
  .mm-counter__num.is-bump { animation: mm-counter-bump 0.18s ease; }
}
.mm-counter__foot {
  position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ====================================================================
   §8  COLLAB  (C-1 symmetry: pkg-10 · あかり 3D · pkg-30)
   ==================================================================== */
.mm-collab {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255,255,255,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(124,58,237,0.18) 0%, transparent 65%),
    linear-gradient(160deg, #F0EBFF 0%, #DCC8FF 45%, #B69CFF 100%);
  color: var(--ink);
  overflow: hidden;
  /* Locked to 16:9 so object-fit:cover renders the full video frame at every
     width — the burned-in top/bottom bars + あかり pop-out stay fully visible. */
  min-height: calc(100vw * 9 / 16);
  padding: 64px 96px;
  position: relative;
  display: flex;
  align-items: center;
}
/* Full-bleed concert-scene loop — lowest layer; lavender gradient above is
   the fallback. The video has black bars burned in (額縁 3D pop-out effect);
   cover may trim them slightly, which is intentional/acceptable. */
.mm-collab__bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.mm-collab__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1760px; margin: 0 auto;
  display: flex; justify-content: flex-end;
}
.mm-collab__left { position: relative; padding-top: 24px; }
.mm-collab__sticker {
  position: absolute; top: 40px; left: 40px; z-index: 5;
  transform: rotate(-12deg);
  background: var(--brand-red); color: var(--white);
  width: 130px; height: 130px; border-radius: 999px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-en-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.04em; line-height: 1.05;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px rgba(204,0,0,0.35);
  gap: 2px;
}
.mm-collab__sticker-num {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; opacity: 0.85; margin-top: 4px;
}
.mm-collab__stage {
  display: grid;
  /* Center 3D あかり removed — two packages flank a wide center gap so the
     in-video character reads clearly between them. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 10vw, 200px);
  align-items: center;
  justify-items: center;
  align-items: end;
  padding: 16px;
}
.mm-collab__pkg {
  margin: 0;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  position: relative;
  width: 100%;
}
/* Tilts moved to .mm-collab__pkg-photo so figcaptions stay upright + readable */
.mm-collab__pkg-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  text-align: center;
  box-shadow: 0 18px 28px rgba(10,10,10,0.18);
}
.mm-collab__pkg-img--green {
  background: linear-gradient(160deg, #8FD9B0 0%, #4FA67D 100%);
  color: var(--ink);
}
.mm-collab__pkg-img--pink {
  background: linear-gradient(160deg, #FFB8D4 0%, #FF7AB2 100%);
  color: var(--ink);
}
.mm-collab__pkg-label {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.mm-collab__pkg-brand {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
}
.mm-collab__pkg-collab {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.mm-collab__pkg-variant {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  background: rgba(10,10,10,0.85); color: var(--white);
  border-radius: 999px;
  margin-top: 4px;
}
.mm-collab__pkg figcaption {
  display: flex; flex-direction: column; gap: 2px;
  text-align: center;
  font-family: var(--font-jp-body);
  font-size: 12px; color: var(--fog);
}
.mm-collab__pkg figcaption strong {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 18px; color: var(--ink); letter-spacing: 0.04em;
}
.mm-collab__price {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 14px; color: var(--ink); letter-spacing: 0.02em;
  margin-top: 4px;
}
.mm-collab__price em {
  font-family: var(--font-mono); font-style: normal;
  font-size: 9px; color: var(--fog); margin-left: 4px;
}

.mm-collab__hero {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  z-index: 3;
}
.mm-collab__hero-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
}
.mm-collab__hero-name {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--ink); margin: 14px 0 0;
}

.mm-collab__caption {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--fog);
  display: flex; align-items: center; gap: 12px;
  margin: 32px 0 0;
  text-transform: uppercase;
}
.mm-collab__caption-rule {
  display: inline-block; width: 28px; height: 1.5px; background: var(--ink);
}
.mm-collab__right {
  /* ~25% of viewport (480px @ 1920), tracking 20–30% across sizes, so the
     background pop-out video stays the hero. Height grows with content. */
  width: clamp(320px, 25vw, 520px);
  padding: 40px 40px;
  position: relative;
  border-radius: 20px;
  /* Readability scrim over the busy concert video — thin enough that the
     video still reads through it. */
  background: linear-gradient(180deg, rgba(244,239,255,0.74) 0%, rgba(255,255,255,0.62) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 18px 48px -24px rgba(76,40,130,0.45);
}
/* Light white halo so text lifts off the scrim + video without smearing. */
.mm-collab__eyebrow,
.mm-collab__title,
.mm-collab__partner,
.mm-collab__x,
.mm-collab__brand,
.mm-collab__quote-text,
.mm-collab__quote-foot,
.mm-collab__footnote {
  text-shadow: 0 0 8px rgba(255,255,255,0.85), 0 0 16px rgba(255,255,255,0.6);
}
.mm-collab__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--fog);
  margin: 0 0 32px;
}
.mm-collab__title {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.2; letter-spacing: 0.005em;
  margin: 0 0 40px;
  display: flex; flex-direction: column;
  /* Line breaks are explicit via <br> — never auto-wrap. */
  white-space: nowrap;
}
.mm-collab__title-2 { color: var(--brand-red); }
.mm-collab__lockup {
  display: flex; align-items: baseline; gap: 12px 16px; flex-wrap: wrap;
  padding: 24px 0; margin-bottom: 36px;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.mm-collab__partner {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(24px, 2.4vw, 36px); letter-spacing: 0.02em;
  white-space: nowrap;
}
.mm-collab__x {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--brand-red);
}
.mm-collab__brand {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px); letter-spacing: -0.02em;
  white-space: nowrap;
}
.mm-collab__quote {
  margin: 0 0 36px; padding: 24px 0 0;
  font-family: var(--font-jp-body);
}
/* Design-reveal placeholder — black pkg silhouette + big ? over the video.
   Framed below by a hairline divider (the lockup border above is the top one). */
.mm-collab__reveal {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 120px;
  margin: 0 0 12px;
  padding: 8px 0 24px;
  border-bottom: 1.5px solid rgba(10,10,10,0.55);
}
.mm-collab__reveal-img {
  height: 132px; width: auto; max-width: 60%;
  object-fit: contain;
  /* Transparent PNG → only the package turns solid black. */
  filter: brightness(0);
  opacity: 0.92;
}
.mm-collab__reveal-q {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en-display); font-weight: 900;
  font-size: 66px; line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  pointer-events: none;
}
.mm-collab__quote-text {
  font-size: 16px; line-height: 2; color: var(--fog);
  min-height: 96px;
  background: linear-gradient(transparent calc(100% - 1px), rgba(10,10,10,0.22) 100%) repeat-y 0 0 / 100% 32px;
  margin: 0 0 12px;
}
.mm-collab__quote-mark {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 28px; color: var(--ink); opacity: 0.45;
  vertical-align: -0.18em; margin: 0 6px;
}
.mm-collab__quote-placeholder {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--brand-red); opacity: 0.7;
}
.mm-collab__quote-foot {
  font-family: var(--font-jp-body);
  font-size: 12px; color: var(--fog);
  letter-spacing: 0.04em;
}
.mm-collab__quote-note {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--brand-red); letter-spacing: 0.12em;
  margin-left: 8px;
}
.mm-collab__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.mm-collab__footnote {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--smoke); margin: 0;
}

/* ====================================================================
   §9  BRAND STORY  (4 blocks, dark · dark · dark · brand-red)
   ==================================================================== */
.mm-story {
  background: var(--ink); color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.mm-story__block {
  min-height: 100vh;
  padding: 140px 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  text-align: center;
}

/* Brand-story full-bleed video (between BLOCK 1 and BLOCK 2) */
.mm-story__video {
  position: relative;
  width: 100%;
  padding: 72px 0;
  background: var(--ink);
  box-sizing: border-box;
}
.mm-story__video > video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.mm-story__chapter {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.4);
  margin: 0 0 56px;
}
.mm-story__shout {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.94; letter-spacing: -0.04em;
  margin: 0;
  display: flex; flex-direction: column; gap: 0.04em;
}
.mm-story__shout span:nth-child(2) { color: rgba(255,255,255,0.3); }
.mm-story__shout-jp {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.08em; color: rgba(255,255,255,0.78);
  margin: 48px 0 0;
}
.mm-story__col { max-width: 720px; }
.mm-story__col--with-art { max-width: 760px; }

/* ---- BLOCK 2 cast — transparent character PNGs (oimon L · hapimon R · seepers floor) ---- */
.mm-story__b2 { z-index: 0; padding-bottom: 400px; }
.mm-story__b2 .mm-story__col { position: relative; z-index: 2; max-width: none; }
/* BLOCK 2 — enlarged type + single-line lede on desktop */
.mm-story__b2 .mm-story__lede-jp {
  font-size: clamp(30px, 3.4vw, 54px); line-height: 1.4;
  white-space: nowrap; margin: 0 0 40px;
}
.mm-story__b2 .mm-story__body-jp {
  font-size: clamp(17px, 1.45vw, 22px); line-height: 2.15; margin: 0 0 30px;
}
.mm-story__b2 .mm-story__body-jp--em {
  font-size: clamp(21px, 1.7vw, 27px);
}
@media (max-width: 860px) {
  .mm-story__b2 .mm-story__lede-jp { white-space: normal; }
}
/* BLOCK 3 — enlarged type */
.mm-story__b3 .mm-story__lede-jp {
  font-size: clamp(30px, 3.4vw, 54px); line-height: 1.4; margin: 0 0 40px;
}
.mm-story__b3 .mm-story__body-jp {
  font-size: clamp(17px, 1.45vw, 22px); line-height: 2.15; margin: 0 0 30px;
}
.mm-story__b3 .mm-story__body-jp--em {
  font-size: clamp(21px, 1.7vw, 27px);
}
.mm-story__b2-char,
.mm-story__b2-floor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.15));
  user-select: none;
}
.mm-story__b2-char {
  top: 30%;
  transform: translateY(-50%);
  width: 19%;
  max-width: 280px;
  height: auto;
}
.mm-story__b2-char--left  { left: 2.5%; }
.mm-story__b2-char--right { right: 2.5%; }
.mm-story__b2-floor {
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  width: 40%;
  max-width: 440px;
  height: auto;
}
.mm-story__sigil {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 28px; letter-spacing: 0.1em;
  color: var(--brand-red); margin: 0 0 32px;
}
.mm-story__lede-jp {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}
.mm-story__body-jp {
  font-family: var(--font-jp-body); font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px); line-height: 2.1;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}
.mm-story__symptoms {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.mm-story__body-jp--em {
  font-size: clamp(18px, 1.4vw, 22px); font-weight: 700;
  color: var(--white);
  font-family: var(--font-jp-display);
}
.mm-story__hl {
  color: var(--brand-red); padding: 0 4px;
  border-bottom: 2px solid var(--brand-red);
}
.mm-story__hl-warn { color: var(--brand-red); }
.mm-story__body-en {
  font-family: var(--font-en-display); font-weight: 400;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.48); line-height: 1.7;
  margin: 40px 0 0;
  letter-spacing: 0.01em;
}
.mm-story__body-en em { color: var(--white); font-style: italic; font-weight: 600; }

.mm-story__art {
  position: relative;
  margin: 48px auto 32px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 1;
}
.mm-story__art-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(255,63,79,0.18) 0%, transparent 60%);
  z-index: -1;
  filter: blur(28px);
}
.mm-story__art-cap {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.4);
  margin: 12px 0 0;
}

.mm-story__b4 {
  background: #CC0000;
  padding-left: 80px; padding-right: 80px;
}
.mm-story__manifesto {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.96; letter-spacing: -0.04em;
  margin: 0;
  display: flex; flex-direction: column; gap: 0.04em;
  color: #FFFFFF;
  max-width: 100%;
  word-break: keep-all;
}
.mm-story__manifesto-line { display: block; white-space: nowrap; }
.mm-story__manifesto-line--dark { color: #0A0A0A; }
/* Manifesto video — burned-in "NO PLACEBO. / JUST VIOLENCE." text.
   Full-bleed cover over the brand-red block; red fills any letterbox. */
.mm-story__manifesto-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: #CC0000;
  display: block;
}
/* Narrow viewports: the burned-in text would crop left/right under cover,
   so switch to contain and let the red background fill the margins. */
@media (max-width: 700px) {
  .mm-story__manifesto-video { object-fit: contain; }
}

/* ====================================================================
   §10  JOIN THE LAND.  (window frames + monsters peeking)
   ==================================================================== */
/* ====================================================================
   JOIN THE LAND → FEED THE MONSTERS — scoped fixed-feel video backdrop.
   The video is sticky: pinned to the viewport while this range scrolls,
   and it naturally clips away once the range ends (no bleed onto the
   sections before/after). The two sections' backgrounds are dropped to
   30% alpha so the video reads through them. */
.mm-landtour { position: relative; isolation: isolate; }
.mm-landtour__video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mm-landtour__video.is-active { opacity: 1; }
.mm-landtour > .mm-jtl,
.mm-landtour > .mm-cta {
  position: relative;
  z-index: 1;
}

.mm-jtl {
  background: transparent;
  color: var(--ink);
  padding: 160px 80px 180px;
  position: relative;
  overflow: hidden;
}
.mm-jtl__head {
  text-align: center;
  margin-bottom: 96px;
  position: relative; z-index: 1;
  /* Local legibility backing — only behind the heading text, fading fully
     transparent at the edges so no seam appears over the video. */
  padding: clamp(40px, 6vw, 88px) clamp(40px, 8vw, 140px);
  background: radial-gradient(ellipse 75% 65% at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.0) 70%);
}
.mm-jtl__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; color: var(--fog);
  margin: 0 0 24px;
}
.mm-jtl__title {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(72px, 12vw, 192px);
  line-height: 0.92; letter-spacing: -0.045em;
  color: var(--brand-red);
  margin: 0 0 28px;
}
.mm-jtl__sub {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.04em; color: var(--ink);
  margin: 0;
}
.mm-jtl__grid {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 1600px; margin: 0 auto;
  position: relative; z-index: 1;
}
.mm-jtl__row { display: grid; gap: 24px; }
.mm-jtl__row--big { grid-template-columns: 1fr 1fr; }
.mm-jtl__row--mid { grid-template-columns: 1fr; } /* inner .mm-jtl-line owns the 2-col split */
.mm-jtl__row--small { grid-template-columns: repeat(3, 1fr); }

.mm-jtl-card {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.mm-jtl-card__frame {
  position: relative;
  background: var(--frame, var(--ink));
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: 18px;
  overflow: visible;
  box-shadow: 0 18px 36px -12px rgba(10,10,10,0.2);
  transition: transform 320ms;
}
.mm-jtl-card:hover .mm-jtl-card__frame { transform: translateY(-6px); }
.mm-jtl-card__frame-inner {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.mm-jtl-card--big .mm-jtl-card__frame-inner { aspect-ratio: 5 / 4; }
.mm-jtl-card__frame-inner--line { aspect-ratio: 4 / 3; }

/* Peek monster — emerges from window edge */
.mm-jtl-card__peek {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.mm-jtl-card__peek--instagram {
  right: -40px; bottom: -30px;
  transform: rotate(8deg);
}
.mm-jtl-card__peek--tiktok {
  left: -40px; bottom: -30px;
  transform: rotate(-8deg);
}
.mm-jtl-card__peek--line {
  right: -30px; top: -20px;
  transform: rotate(10deg);
}
/* Akari collab — real photo overrides (width-based to preserve aspect) */
.mm-collab__pkg-photo {
  width: clamp(220px, 20vw, 320px);
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 22px 36px rgba(10,10,10,0.32));
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mm-collab__pkg--10 .mm-collab__pkg-photo { transform: rotate(-6deg); transform-origin: center bottom; }
.mm-collab__pkg--30 .mm-collab__pkg-photo { transform: rotate(6deg); transform-origin: center bottom; }
.mm-collab__pkg--10:hover .mm-collab__pkg-photo { transform: rotate(-3deg) translateY(-8px); }
.mm-collab__pkg--30:hover .mm-collab__pkg-photo { transform: rotate(3deg) translateY(-8px); }
.mm-collab__pkg-cap {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  text-align: center;
  font-family: var(--font-jp-body);
  font-size: 13px;
  color: var(--ink);
}
.mm-collab__pkg-cap strong {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 20px; color: var(--ink); letter-spacing: 0.04em;
}
.mm-collab__pkg-cap > span:not(.mm-collab__price) {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--smoke);
  text-transform: uppercase;
}
.mm-collab__hero-photo {
  position: relative; z-index: 1;
  width: clamp(360px, 34vw, 520px);
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  /* Halo reduction: light contrast + slight desaturation of edge pixels */
  filter: contrast(1.05) saturate(1.05) drop-shadow(0 18px 40px rgba(60, 20, 120, 0.28));
  height: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 32px 48px rgba(76,29,149,0.32));
  filter: drop-shadow(0 24px 36px rgba(10,10,10,0.4));
}

.mm-jtl-card:hover .mm-jtl-card__peek { transform: rotate(0deg) translateY(-4px); }
.mm-jtl-card__peek-photo {
  width: 200px; height: auto; display: block;
  filter: drop-shadow(0 14px 22px rgba(10,10,10,0.32));
}
.mm-jtl-card__peek-photo--line { width: 170px; }
.mm-jtl-card__peek--line .mm-jtl-card__peek-photo--line { filter: drop-shadow(0 10px 16px rgba(6,199,85,0.35)); }

/* Card meta */
.mm-jtl-card__meta {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 8px;
}
.mm-jtl-card__platform {
  font-family: var(--font-en-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.28em; color: var(--ink);
}
.mm-jtl-card__handle {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--fog); letter-spacing: 0.04em;
}
.mm-jtl-card__follow {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--brand-red);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
}
.mm-jtl-card__arr {
  display: inline-block;
  transition: transform 200ms;
}
.mm-jtl-card:hover .mm-jtl-card__arr { transform: translate(3px, -3px); }

/* Instagram feed mock */
.mm-jtl-igfeed {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; height: 100%; padding: 6px;
}
.mm-jtl-igfeed__tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mm-jtl-igfeed__tile img {
  width: 90%; height: 90%; object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(10,10,10,0.3));
}
.mm-jtl-igfeed__txt {
  margin: 0;
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(9px, 0.9vw, 13px);
  line-height: 1.05; letter-spacing: -0.01em;
  text-align: center;
  white-space: pre-line;
}

/* TikTok feed mock */
.mm-jtl-ttfeed {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 6px; height: 100%; padding: 6px;
}
.mm-jtl-ttfeed__tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 14px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 0;
}
.mm-jtl-ttfeed__hash {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.02em;
}
.mm-jtl-ttfeed__cap {
  font-family: var(--font-jp-body);
  font-size: clamp(9px, 0.8vw, 11px);
  line-height: 1.4; opacity: 0.85;
}
.mm-jtl-ttfeed__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  opacity: 0.6;
}

/* LINE feed mock */
.mm-jtl-linefeed {
  background: #F5F7FA;
  height: 100%;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.mm-jtl-linefeed__header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.mm-jtl-linefeed__avatar {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0;
}
.mm-jtl-linefeed__name {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 13px;
}
.mm-jtl-linefeed__sub {
  font-family: var(--font-jp-body); font-size: 10px; color: var(--fog);
}
.mm-jtl-bubble {
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 16px;
  font-family: var(--font-jp-body); font-size: 11px; line-height: 1.4;
}
.mm-jtl-bubble--them {
  background: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(10,10,10,0.06);
}
.mm-jtl-bubble--me {
  background: #06C755; color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* ====================================================================
   OFFICIAL LINE — 2-column renewal (chat preview + pop promo card)
   ==================================================================== */
.mm-jtl-line {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr; /* ~43% chat / ~57% promo */
  gap: 28px;
  align-items: stretch;
}
.mm-jtl-line .mm-jtl-card--mid {
  margin: 0;
}

/* --- RIGHT: pop LINE-green promo card --- */
.mm-jtl-promo {
  position: relative;
  display: block;
  text-decoration: none;
  border: 7px solid #0A0A0A;
  border-radius: 32px;
  background: #06C755; /* LINE green */
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(6,199,85,0.55);
  transition: transform 320ms, box-shadow 320ms;
}
.mm-jtl-promo:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -18px rgba(6,199,85,0.65);
}
/* Halftone — faint white dot grid over the green */
.mm-jtl-promo__dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, #FFFFFF 1px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.20;
}
/* Scattered pop icons */
.mm-jtl-promo__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mm-jtl-promo__deco span {
  position: absolute;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.20));
}
/* Content */
.mm-jtl-promo__body {
  position: relative; z-index: 2;
  height: 100%;
  box-sizing: border-box;
  padding: 50px 54px 44px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.mm-jtl-promo__label {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
}
.mm-jtl-promo__title {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.16; letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 0 0 22px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.14);
}
/* Brand-red marker highlight on 「限定クーポン」.
   inline-block + line-height:1 caps the box height to the glyph height (well
   under the title's 1.16 line-height) so it can't bleed into the rows above
   /below; white-space:nowrap keeps 限定クーポン on one line (the heading column
   sizes to fit it). */
.mm-jtl-promo__hl {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
  color: #FFFFFF;
  background: #CC0000;
  padding: 2px 10px;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.mm-jtl-promo__sub {
  font-family: var(--font-en-display); font-weight: 600;
  font-size: clamp(12px, 1vw, 15px); line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.94);
  margin: 0 0 auto;
  max-width: 32ch;
}
.mm-jtl-promo__cta {
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  margin-top: 34px;
  background: #FFFFFF; color: #06C755;
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(17px, 1.4vw, 23px); letter-spacing: 0.02em;
  padding: 16px 36px;
  border: 2.5px solid #0A0A0A;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.9);
  transition: transform 160ms, box-shadow 160ms;
}
.mm-jtl-promo:hover .mm-jtl-promo__cta {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.9);
}
.mm-jtl-promo__cta-arr { display: inline-block; transition: transform 200ms; }
.mm-jtl-promo:hover .mm-jtl-promo__cta-arr { transform: translateX(5px); }
.mm-jtl-promo__handle {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
}

/* Small soon cards */
.mm-jtl-card--small {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 140px;
  cursor: default;
  flex-direction: column; gap: 8px;
}
.mm-jtl-card__small-inner {
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
/* Official SNS marks. fill="currentColor" + per-platform color below. */
.mm-jtl-card__sns-icon {
  width: 28px; height: 28px;
  display: block;
  color: var(--ink);
}
.mm-jtl-card--small[data-platform="X"]       .mm-jtl-card__sns-icon { color: #000000; }
.mm-jtl-card--small[data-platform="YOUTUBE"] .mm-jtl-card__sns-icon { color: #FF0000; }
.mm-jtl-card--small[data-platform="NOTE"]    .mm-jtl-card__sns-icon { color: #41C9B4; }
.mm-jtl-card__small-platform {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.16em;
  color: var(--ink);
}
.mm-jtl-card__small-soon {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--brand-red);
}

/* ====================================================================
   §11  FINAL CTA  (3-monster lineup · white · brand red shout)
   ==================================================================== */
.mm-cta {
  background: transparent;
  color: var(--ink);
  padding: 80px 96px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mm-cta__lineup {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.mm-cta__mon {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative;
  animation: mm-monster-float 5s ease-in-out infinite;
  will-change: transform;
}
.mm-cta__mon-img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(10,10,10,0.18));
  display: block;
}
/* Seapaz video lineup — non-alpha WebMs masked to a soft circle so the
   black video bg fades to transparent over the section's white bg. The
   character itself stays fully opaque (mask opaque through 78%) — only
   the outermost ring fades out so no halo / vignette is visible. */
.mm-cta__mon-video {
  -webkit-mask-image: radial-gradient(circle at center,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.55) 90%,
    rgba(0, 0, 0, 0.00) 100%);
          mask-image: radial-gradient(circle at center,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.55) 90%,
    rgba(0, 0, 0, 0.00) 100%);
}
/* Drop the soft drop-shadow on these specific videos — even at low
   opacity it reads as a "frame" around the character on a pure white bg. */
.mm-cta__mon .mm-cta__mon-video {
  filter: none;
}
/* The center seapaz (眠り) source video has more empty padding around
   the character than the left/right takes, so at equal widths it reads
   smaller. Scale-up to match the visual size of left/right. Anchor the
   scale to the bottom so the three pairs of feet stay aligned. */
.mm-cta__mon--center .mm-cta__mon-video {
  transform: scale(1.32);
  transform-origin: center bottom;
}
.mm-cta__mon--left   { animation-delay: 0s;    }
.mm-cta__mon--center { animation-delay: 0.9s;  }
.mm-cta__mon--right  { animation-delay: 1.8s;  }
@keyframes mm-monster-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.mm-cta__mon-name {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--fog);
}
.mm-cta__inner {
  position: relative; z-index: 2;
  /* Local legibility backing — only behind the CTA text + buttons, fading
     fully transparent at the edges so no seam appears over the video. */
  padding: clamp(48px, 6vw, 96px) clamp(40px, 8vw, 140px);
  background: radial-gradient(ellipse 75% 65% at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.0) 70%);
}
.mm-cta__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; color: var(--fog);
  margin: 0 0 24px;
}
.mm-cta__head {
  margin: 0 0 18px;
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95; letter-spacing: -0.04em;
  color: var(--brand-red);
}
.mm-cta__head-en { display: block; }
.mm-cta__jp {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(20px, 2vw, 32px);
  color: var(--ink);
  margin: 0 0 56px;
  letter-spacing: 0.02em;
}
.mm-cta__actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.mm-cta__btn {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em;
  padding: 20px 36px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; border: 1.5px solid var(--ink);
  transition: all 140ms;
}
.mm-cta__btn--prim { background: var(--ink); color: var(--white); }
.mm-cta__btn--prim:hover { background: var(--brand-red); border-color: var(--brand-red); }
.mm-cta__btn--sec { background: transparent; color: var(--ink); }
.mm-cta__btn--sec:hover { background: var(--ink); color: var(--white); }
.mm-cta__arr { transition: transform 200ms; }
.mm-cta__btn:hover .mm-cta__arr { transform: translateX(3px); }
.mm-cta__marks {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--smoke);
}
.mm-cta__dot { color: var(--brand-red); font-size: 8px; }

/* ====================================================================
   §12  FOLLOW MODAL
   ==================================================================== */
.mm-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,10,0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.mm-modal__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(204,0,0,0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 70%, rgba(124,58,237,0.15) 0%, transparent 45%);
  pointer-events: none;
}
.mm-modal__close {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent; color: var(--white);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 140ms;
}
.mm-modal__close:hover { background: var(--brand-red); border-color: var(--brand-red); }
.mm-modal__inner {
  position: relative;
  max-width: 1200px; width: 100%;
  text-align: center;
  color: var(--white);
}
.mm-modal__eyebrow {
  font-family: var(--font-en-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.45);
  margin: 0 0 24px;
}
.mm-modal__head {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95; letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--white);
}
.mm-modal__jp {
  font-family: var(--font-jp-display); font-weight: 900;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(255,255,255,0.7); letter-spacing: 0.06em;
  margin: 0 0 64px;
}
.mm-modal__portals {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px; margin: 0 auto 48px;
}
.mm-portal {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 40px 32px;
  text-decoration: none;
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: all 200ms;
  overflow: hidden;
}
.mm-portal:hover {
  border-color: var(--brand-red);
  background: rgba(204,0,0,0.08);
}
.mm-portal__platform {
  font-family: var(--font-en-display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.28em;
}
.mm-portal__handle {
  font-family: var(--font-mono); font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.mm-portal__line {
  width: 60%; height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 4px 0;
}
.mm-portal__cta {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.24em;
  color: var(--brand-red);
  display: inline-flex; gap: 8px;
}
.mm-portal__arr { transition: transform 200ms; }
.mm-portal:hover .mm-portal__arr { transform: translate(3px, -3px); }
.mm-modal__foot {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ====================================================================
   §13  FOOTER  (Brand Kit V2 — white surface, ink type)
   ==================================================================== */
.mm-footer {
  background: var(--white); color: var(--ink);
  padding: 120px 96px 32px;
  text-align: center;
}
.mm-footer__top { display: flex; justify-content: center; margin-bottom: 64px; }
.mm-footer__logo-wrap {
  display: block;
  background: var(--white);
  overflow: hidden;
}
.mm-footer__logo {
  height: 620px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: none;
}

/* ====== Footer logo loop video panel ======
   The video sizes itself: 100vw wide, auto height (16:9 intrinsic
   ratio). Container is a plain block — no width / aspect-ratio /
   object-fit tricks needed.
*/
.footer-logo-panel {
  width: calc(100% + 192px);
  margin-left: -96px;
  margin-right: -96px;
  position: relative;
  height: 56.25vw; /* 16:9 against viewport width (100vw × 9/16) */
  overflow: hidden;
}
.footer-logo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Fade out the bottom edge so the in-frame ground shadow blends into
     the white footer instead of showing a hard line. */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
.mm-footer__nav {
  display: flex; justify-content: center; gap: 0;
  font-family: var(--font-en-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.32em;
  margin-bottom: 80px;
}
.mm-footer__nav a {
  color: var(--ink); text-decoration: none;
  padding: 0 18px; border-right: 1px solid rgba(10,10,10,0.18);
  transition: color 140ms;
}
.mm-footer__nav a:last-child { border-right: none; }
.mm-footer__nav a:hover { color: var(--brand-red); }
.mm-footer__hq {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 64px;
}
.mm-footer__hq-title {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.mm-footer__hq-line {
  font-family: var(--font-jp-body);
  font-size: 13px;
  color: #4A4A4A;
}
.mm-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid #E0E0E0;
  font-family: var(--font-mono); font-size: 11px;
  color: #4A4A4A;
  letter-spacing: 0.1em;
}
.mm-footer__manifesto {
  font-family: var(--font-en-display); font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em; color: var(--brand-red);
}

/* ====================================================================
   §14  RESPONSIVE
   ==================================================================== */
@media (max-width: 1100px) {
  .mm-awards__inner { gap: 48px; }
  .mm-collab__inner { gap: 56px; }
  .mm-jtl-card__peek { transform: scale(0.7) rotate(8deg); }
}
@media (max-width: 900px) {
  .mm-hero { padding: 140px 24px 80px; }
  .mm-awards { padding: 80px 24px; min-height: 70vh; }
  .mm-awards__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .mm-awards__inner > .mm-awards__text { grid-column: 1 / -1; }
  .mm-awards__shout { justify-content: center; }
  .mm-bento { padding: 80px 24px; }
  .mm-bento__row--live { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .mm-bento__row--soon { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .mm-bento__cell--counter { padding: 80px 24px; min-height: 360px; }
  .mm-collab { padding: 80px 24px; min-height: auto; display: block; }
  /* Stacked/narrow: the 16:9 lock would force vertical cropping under cover,
     so drop it, switch to contain, and let the lavender background fill the
     letterbox margins — the full video frame stays visible. */
  .mm-collab__bg-video { object-fit: contain; }
  .mm-collab__inner { justify-content: center; }
  .mm-collab__right { max-width: 100%; }
  .mm-collab__stage { grid-template-columns: 1fr; gap: 32px; }
  .mm-collab__pkg--10, .mm-collab__pkg--30 { transform: none; max-width: 280px; margin: 0 auto; }
  .mm-story__block { padding: 100px 24px; }
  .mm-story__b2 { padding-bottom: 220px; }
  .mm-story__b2-char {
    top: auto; bottom: 16px; transform: none;
    width: 30%; max-width: 132px;
  }
  .mm-story__b2-char--left  { left: 6px; }
  .mm-story__b2-char--right { right: 6px; }
  .mm-story__b2-floor { width: 46%; max-width: 300px; bottom: 116px; }
  .mm-story__video { padding: 48px 0; }
  .mm-story__b4 { padding: 100px 24px; }
  .mm-jtl { padding: 80px 24px 100px; }
  .mm-jtl__row--big { grid-template-columns: 1fr; }
  .mm-jtl__row--mid { grid-template-columns: 1fr; }
  .mm-jtl-line { grid-template-columns: 1fr; gap: 20px; }
  .mm-jtl-promo__body { padding: 36px 30px 34px; }
  .mm-cta { padding: 60px 24px 100px; }
  .mm-cta__lineup { gap: 8px; }
  .mm-cta__mon { transform: scale(0.7); }
  .mm-modal__portals { grid-template-columns: 1fr; }
  .mm-footer { padding: 80px 24px 32px; }
  .mm-footer__nav { flex-wrap: wrap; }
}


/* ==========================================================================
   Character WEBM videos (site sections)
   - Awards throne (oimon-throne.webm) — mix-blend-mode: screen
   - JOIN THE LAND LINE card (seapaz-right.webm) — mix-blend-mode: screen
   - Collab hero (akari-3d.webm) — NO blend mode (black tights/turtleneck
     would also be erased). Black bg square is acceptable per spec until
     alpha-channel asset arrives.
   Videos inherit sizing from their matching .__img / .__photo class so
   layout stays identical to the static image they replace. When alpha
   versions arrive, swap the file path and drop the is-blackbg class.
   ========================================================================== */
.mm-awards__throne--video,
.mm-collab__hero-photo--video,
.mm-jtl-card__peek-video {
  display: block;
  background: transparent;
  object-fit: contain;
}
.mm-awards__throne--video.is-blackbg,
.mm-jtl-card__peek-video.is-blackbg {
  mix-blend-mode: screen;
}

/* Bento Grid character WEBM videos.
   No mix-blend-mode — character renders in its native colors. A soft
   circular `mask-image: radial-gradient(...)` fades the corners of the
   video to transparent, hiding the black non-alpha background against
   whatever card color sits behind it. Center stays fully opaque so the
   character itself reads cleanly. */
.mm-bento__char-video {
  display: block;
  object-fit: contain;
  background: transparent;
  -webkit-mask-image: radial-gradient(circle at center,
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.85) 68%,
    rgba(0, 0, 0, 0.45) 82%,
    rgba(0, 0, 0, 0.00) 96%);
          mask-image: radial-gradient(circle at center,
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.85) 68%,
    rgba(0, 0, 0, 0.45) 82%,
    rgba(0, 0, 0, 0.00) 96%);
}


/* Awards — dark radial spotlight behind throne video.
   Required so mix-blend-mode: screen can work against the section's white
   background. Sized to roughly the throne footprint; sits below the video
   (z-index:1) but above the sparkles' background plane. */
.mm-awards__stage { isolation: isolate; }
.mm-awards__spotlight {
  position: absolute;
  z-index: 0;
  /* Expanded ~1.5× from the previous -14% inset. Spotlight box is now ~1.9×
     the stage size so the dark field reaches well past the crown's top and
     the throne's base on all sides. */
  inset: -45% -45% -45% -45%;
  border-radius: 50%;
  /* 10-stop multi-stage falloff. Dark "lair" core (0–45%) → gradual mid-fade
     (45–75%) → near-transparent halo (75–100%). The many stops dissolve the
     circular edge so it reads as a soft shadow, not a ring. */
  background: radial-gradient(circle closest-side at center,
    rgba(8, 8, 8, 0.95)     0%,
    rgba(12, 12, 12, 0.90)  18%,
    rgba(18, 18, 18, 0.82)  32%,
    rgba(28, 28, 28, 0.68)  45%,
    rgba(45, 45, 45, 0.50)  58%,
    rgba(75, 75, 75, 0.32)  70%,
    rgba(125, 125, 125, 0.18) 80%,
    rgba(180, 180, 180, 0.08) 88%,
    rgba(220, 220, 220, 0.03) 94%,
    rgba(255, 255, 255, 0.00) 100%);
  pointer-events: none;
}
.mm-awards__throne--video {
  position: relative;
  z-index: 2;
}
