/* ================================================================
   Circuits hero — "Tonight's premiere"
   All rules scoped under .mm-marketing (shared wrapper). Class
   prefix mmc- (movie minder circuits) to avoid collisions.
   ================================================================ */

.mm-marketing .mmc-hero {
  position: relative;
  min-height: 100vh;
  background:
    /* Deep purple-to-ink wash — establishes the room is lit, not black */
    radial-gradient(ellipse 90% 70% at 50% 30%,
      rgba(56, 32, 96, 0.45) 0%,
      rgba(28, 16, 54, 0.30) 40%,
      transparent 75%),
    radial-gradient(ellipse 60% 50% at 50% 100%,
      rgba(170, 60, 50, 0.18) 0%,
      transparent 70%),
    #05050A;
  color: #F6EFE0;
  padding: 96px 0 0;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--mm-font-body, 'Inter', sans-serif);
}

/* ---------- Atmosphere: cones, grain, vignette ---------- */

.mm-marketing .mmc-atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Big spotlight halo behind the copy column — the diva-light hitting
   the talent. Pulses gently so the room feels alive. */
.mm-marketing .mmc-atmo::before {
  content: '';
  position: absolute;
  left: -8%;
  top: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(circle at 38% 42%,
    rgba(255, 222, 158, 0.22) 0%,
    rgba(196, 166, 255, 0.18) 18%,
    rgba(123, 91, 207, 0.12) 38%,
    transparent 64%);
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: mmc-halo-breathe 9s ease-in-out infinite;
  pointer-events: none;
}

/* Counter-spot on the marquee side — softer, gold-warm, balances
   the composition. */
.mm-marketing .mmc-atmo::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  height: 110%;
  background: radial-gradient(circle at 65% 50%,
    rgba(255, 200, 110, 0.18) 0%,
    rgba(226, 192, 107, 0.10) 25%,
    transparent 60%);
  filter: blur(50px);
  mix-blend-mode: screen;
  animation: mmc-halo-breathe 11s ease-in-out -3s infinite;
  pointer-events: none;
}

@keyframes mmc-halo-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1.05; transform: scale(1.04); }
}

.mm-marketing .mmc-cone {
  position: absolute;
  top: -25%;
  width: 64%;
  height: 140%;
  background: conic-gradient(from 180deg at 50% 0%,
    transparent 0deg,
    rgba(255, 220, 150, 0.16) 6deg,
    rgba(255, 220, 150, 0.32) 12deg,
    rgba(255, 220, 150, 0.16) 18deg,
    transparent 26deg);
  filter: blur(8px);
  mix-blend-mode: screen;
  animation: mmc-cone-drift 22s ease-in-out infinite alternate;
}
.mm-marketing .mmc-cone--l { left: -18%; transform: rotate(18deg); }
.mm-marketing .mmc-cone--r { right: -18%; transform: rotate(-18deg); animation-delay: -11s; }

@keyframes mmc-cone-drift {
  0%   { transform: rotate(var(--r, 18deg)) translateX(0); opacity: 0.75; }
  50%  { opacity: 1; }
  100% { transform: rotate(var(--r, 18deg)) translateX(4%); opacity: 0.85; }
}
.mm-marketing .mmc-cone--l { --r: 18deg; }
.mm-marketing .mmc-cone--r { --r: -18deg; }

/* Searchlight sweep — a long, soft beam that pans slowly across the
   hero. Suggests a hollywood-premiere klieg light raking the sky. */
.mm-marketing .mmc-cone--sweep {
  position: absolute;
  left: 50%;
  top: -10%;
  width: 12%;
  height: 130%;
  margin-left: -6%;
  background: linear-gradient(180deg,
    rgba(196, 166, 255, 0.45) 0%,
    rgba(196, 166, 255, 0.18) 35%,
    rgba(255, 233, 168, 0.10) 70%,
    transparent 100%);
  filter: blur(14px);
  mix-blend-mode: screen;
  transform-origin: 50% 0%;
  animation: mmc-sweep 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  opacity: 0.9;
}

@keyframes mmc-sweep {
  0%   { transform: rotate(-32deg); opacity: 0.55; }
  25%  { opacity: 0.95; }
  50%  { transform: rotate(28deg); opacity: 0.6; }
  75%  { opacity: 0.95; }
  100% { transform: rotate(-32deg); opacity: 0.55; }
}

.mm-marketing .mmc-grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.45;
  mix-blend-mode: overlay;
  animation: mmc-grain-drift 6s steps(6) infinite;
  pointer-events: none;
}
@keyframes mmc-grain-drift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-12px, 6px); }
  40%  { transform: translate(8px, -10px); }
  60%  { transform: translate(-6px, -4px); }
  80%  { transform: translate(4px, 8px); }
  100% { transform: translate(0, 0); }
}

.mm-marketing .mmc-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, transparent 40%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse 100% 70% at 50% 100%, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* ---------- Hero grid ---------- */

.mm-marketing .mmc-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .mm-marketing .mmc-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 72px;
    min-height: 70vh;
  }
}

/* ---------- Copy column ---------- */

.mm-marketing .mmc-eyebrow {
  display: inline-block;
  font-family: var(--mm-font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--mm-gold, #E2C06B);
  padding: 6px 12px;
  border: 1px solid rgba(226, 192, 107, 0.3);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(226, 192, 107, 0.04);
}

.mm-marketing .mmc-hero-title {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-weight: 800;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: #F8F1E4;
  text-wrap: balance;
}
.mm-marketing .mmc-hero-title .mmc-line-1 {
  display: block;
}
.mm-marketing .mmc-hero-title .mmc-line-2 {
  display: block;
  margin-top: 4px;
}
.mm-marketing .mmc-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #F5D37A 0%, #E2C06B 45%, #B68F3A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding: 0 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.mm-marketing .mmc-hero-title em::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0.02em;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(226, 192, 107, 0.6), transparent);
  border-radius: 2px;
}

.mm-marketing .mmc-hero-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(246, 239, 224, 0.72);
  max-width: 52ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.mm-marketing .mmc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.mm-marketing .mmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.mm-marketing .mmc-btn-primary {
  background: linear-gradient(180deg, #F0CF7B, #D9AD52);
  color: #1A1308;
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.7) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 10px 32px -12px rgba(226, 192, 107, 0.6);
}
.mm-marketing .mmc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.8) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 16px 40px -10px rgba(226, 192, 107, 0.75);
}
.mm-marketing .mmc-btn-arrow {
  font-family: var(--mm-font-mono, monospace);
  transition: transform 220ms ease;
}
.mm-marketing .mmc-btn-primary:hover .mmc-btn-arrow { transform: translateX(3px); }
.mm-marketing .mmc-btn-ghost {
  background: transparent;
  color: rgba(246, 239, 224, 0.85);
  border-color: rgba(246, 239, 224, 0.2);
}
.mm-marketing .mmc-btn-ghost:hover {
  background: rgba(246, 239, 224, 0.06);
  border-color: rgba(246, 239, 224, 0.35);
  color: #F6EFE0;
}

.mm-marketing .mmc-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.mm-marketing .mmc-trust-label {
  font-family: var(--mm-font-mono, monospace);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(246, 239, 224, 0.42);
}
.mm-marketing .mmc-trust-names {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--mm-font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(246, 239, 224, 0.58);
}
.mm-marketing .mmc-trust-dot { color: rgba(226, 192, 107, 0.4); }

/* ---------- Attribution console + phone composition ---------- */

.mm-marketing .mmc-hero-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px 0;
  perspective: 1800px;
}

.mm-marketing .mmc-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mm-marketing .mmc-console-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.mm-marketing .mmc-console-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mm-gold, #E2C06B);
  padding: 6px 14px;
  border: 1px solid rgba(226, 192, 107, 0.32);
  border-radius: 999px;
  background: rgba(226, 192, 107, 0.06);
}
.mm-marketing .mmc-console-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E14B5A;
  box-shadow: 0 0 10px rgba(225, 75, 90, 0.7);
  animation: mmc-live-pulse 1.6s ease-in-out infinite;
}
@keyframes mmc-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.mm-marketing .mmc-console-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(246, 239, 224, 0.65);
  max-width: 50ch;
  letter-spacing: -0.005em;
}
.mm-marketing .mmc-console-sub b {
  color: #F5D37A;
  font-weight: 600;
}

/* Composition wrapper — phone overlaps the console */
.mm-marketing .mmc-comp {
  position: relative;
  isolation: isolate;
}

/* Console frame — modernized: tighter radii, less paper texture */
.mm-marketing .mmc-console-frame {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(123, 91, 207, 0.10), transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(226, 192, 107, 0.06), transparent 60%),
    linear-gradient(180deg, #14141F 0%, #0A0A12 100%);
  border-radius: 18px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(226, 192, 107, 0.05);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Make room on the right for the phone overlap */
  margin-right: clamp(0px, 12vw, 110px);
}
.mm-marketing .mmc-console-frame:hover {
  transform: rotateY(-1deg) rotateX(0.5deg);
}

/* ---- Header ---- */
.mm-marketing .mmc-console-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}
.mm-marketing .mmc-console-head-l {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mm-marketing .mmc-console-circuit {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #F6EFE0;
}
.mm-marketing .mmc-console-night {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.55);
}
.mm-marketing .mmc-console-head-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.mm-marketing .mmc-console-clock {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: var(--mm-gold, #E2C06B);
}
.mm-marketing .mmc-console-clock-label {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6FCF97;
}

/* ---- 90-SECOND WINDOW · trailer block ---- */
.mm-marketing .mmc-window {
  margin-bottom: 16px;
}
.mm-marketing .mmc-window-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mm-marketing .mmc-window-label {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(246, 239, 224, 0.7);
}
.mm-marketing .mmc-window-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mm-gold, #E2C06B);
}
.mm-marketing .mmc-window-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5D37A;
  box-shadow: 0 0 10px rgba(245, 211, 122, 0.7);
  animation: mmc-live-pulse 1.4s ease-in-out infinite;
}

/* The track itself — a film-strip ribbon split into 6 equal cells */
.mm-marketing .mmc-window-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  height: 64px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(226, 192, 107, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.45) 0,
      rgba(0, 0, 0, 0.45) 8px,
      rgba(0, 0, 0, 0.25) 8px,
      rgba(0, 0, 0, 0.25) 14px),
    #07060D;
  border: 1px solid rgba(226, 192, 107, 0.18);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 220, 150, 0.04) inset, 0 0 24px rgba(123, 91, 207, 0.12) inset;
}
/* Sprocket holes — top and bottom to read as a film strip */
.mm-marketing .mmc-window-track::before,
.mm-marketing .mmc-window-track::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background:
    repeating-linear-gradient(90deg,
      #0A0814 0,
      #0A0814 6px,
      rgba(226, 192, 107, 0.18) 6px,
      rgba(226, 192, 107, 0.18) 8px);
  pointer-events: none;
}
.mm-marketing .mmc-window-track::before { top: 0; }
.mm-marketing .mmc-window-track::after  { bottom: 0; }

.mm-marketing .mmc-window-cell {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-right: 1px dashed rgba(226, 192, 107, 0.18);
  padding: 8px 4px 8px;
}
.mm-marketing .mmc-window-cell:last-child { border-right: none; }

.mm-marketing .mmc-window-cell-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(123, 91, 207, 0.55) 0%, rgba(46, 36, 115, 0.85) 100%);
  transition: height 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.mm-marketing .mmc-window-cell[data-top="true"] .mmc-window-cell-fill {
  background: linear-gradient(180deg, rgba(245, 211, 122, 0.7) 0%, rgba(182, 143, 58, 0.9) 100%);
  box-shadow: 0 0 18px rgba(245, 211, 122, 0.35);
}
.mm-marketing .mmc-window-cell-bar { display: none; } /* legacy hook */

.mm-marketing .mmc-window-cell-n {
  position: relative;
  z-index: 2;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  letter-spacing: -0.01em;
  color: rgba(246, 239, 224, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}
.mm-marketing .mmc-window-cell[data-top="true"] .mmc-window-cell-n {
  color: #F5D37A;
}

/* The "now" scan-head — sweeps to whichever cell just took a hit */
.mm-marketing .mmc-window-scanhead {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(245, 211, 122, 0.95) 12%,
    rgba(245, 211, 122, 0.95) 88%,
    transparent 100%);
  box-shadow: 0 0 14px rgba(245, 211, 122, 0.85), 0 0 30px rgba(245, 211, 122, 0.45);
  transform: translateX(-50%);
  transition: left 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 3;
}

.mm-marketing .mmc-window-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.4);
  font-variant-numeric: tabular-nums;
}

/* ---- KPIs ---- */
.mm-marketing .mmc-console-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mm-marketing .mmc-console-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-marketing .mmc-console-kpi--accent {
  border-color: rgba(245, 211, 122, 0.28);
  background: linear-gradient(180deg, rgba(245, 211, 122, 0.08), rgba(245, 211, 122, 0.02));
}
.mm-marketing .mmc-console-kpi-k {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.6);
  line-height: 1.2;
}
.mm-marketing .mmc-console-kpi--accent .mmc-console-kpi-k {
  color: var(--mm-gold, #E2C06B);
}
.mm-marketing .mmc-console-kpi-v {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #F8F1E4;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.mm-marketing .mmc-console-kpi--accent .mmc-console-kpi-v {
  color: #F5D37A;
}
.mm-marketing .mmc-console-kpi-unit {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.55);
  text-transform: lowercase;
}
.mm-marketing .mmc-console-kpi-delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.55);
}
.mm-marketing .mmc-console-kpi--accent .mmc-console-kpi-delta {
  color: #6FCF97;
}
.mm-marketing .mmc-console-kpi-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.18);
  color: #6FCF97;
  font-size: 10px;
  font-weight: 700;
}

/* ---- Live event feed ---- */
.mm-marketing .mmc-console-feed {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.mm-marketing .mmc-console-feed-head {
  display: grid;
  grid-template-columns: 60px 84px 56px 1fr 80px;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(246, 239, 224, 0.55);
}
.mm-marketing .mmc-console-feed-head-right {
  text-align: right;
}
.mm-marketing .mmc-console-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 232px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, #000 0, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0, #000 84%, transparent 100%);
}
.mm-marketing .mmc-console-rowgroup {
  border-bottom: 1px solid rgba(246, 239, 224, 0.04);
  animation: mmc-row-in 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: calc(1 - (var(--i) * 0.06));
}
.mm-marketing .mmc-console-row {
  display: grid;
  grid-template-columns: 60px 84px 56px 1fr 80px;
  gap: 8px;
  padding: 9px 14px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  align-items: center;
}
@keyframes mmc-row-in {
  0%   { opacity: 0; transform: translateY(-8px); background: rgba(245, 211, 122, 0.10); }
  60%  { opacity: 1; transform: translateY(0); background: rgba(245, 211, 122, 0.06); }
  100% { opacity: 1; transform: translateY(0); background: transparent; }
}
.mm-marketing .mmc-console-row-time {
  color: var(--mm-gold, #E2C06B);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 11.5px;
}
.mm-marketing .mmc-console-row-aud {
  color: rgba(246, 239, 224, 0.85);
  font-weight: 500;
  font-size: 11.5px;
}
.mm-marketing .mmc-console-row-slot {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}
.mm-marketing .mmc-console-row-reel {
  color: #B7A8F0;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: -0.005em;
}
.mm-marketing .mmc-console-row-slot-t {
  color: rgba(246, 239, 224, 0.45);
  font-size: 10.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.mm-marketing .mmc-console-row-title {
  color: #F6EFE0;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
.mm-marketing .mmc-console-row-title b {
  color: #F5D37A;
  font-weight: 600;
}
.mm-marketing .mmc-console-row-ticket {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.mm-marketing .mmc-console-row-seat {
  color: rgba(246, 239, 224, 0.6);
  font-size: 10.5px;
  font-weight: 500;
}
.mm-marketing .mmc-console-row-price {
  color: #6FCF97;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Follow-up row — directly visualises "and the one after that" */
.mm-marketing .mmc-console-row--followup {
  padding-top: 0;
  padding-bottom: 8px;
  background:
    linear-gradient(90deg,
      rgba(245, 211, 122, 0.05) 0%,
      rgba(245, 211, 122, 0.02) 60%,
      transparent 100%);
  font-size: 10.5px;
  position: relative;
}
.mm-marketing .mmc-console-row--followup::before {
  content: '';
  position: absolute;
  left: 78px;
  top: -2px;
  width: 8px;
  height: 14px;
  border-left: 1px dashed rgba(245, 211, 122, 0.45);
  border-bottom: 1px dashed rgba(245, 211, 122, 0.45);
  border-bottom-left-radius: 4px;
  pointer-events: none;
}
.mm-marketing .mmc-console-row-followup-tag {
  color: #F5D37A;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: rgba(245, 211, 122, 0.12);
  border: 1px solid rgba(245, 211, 122, 0.3);
  border-radius: 6px;
  padding: 3px 7px;
  align-self: center;
  text-align: center;
}

/* ---- Footer ---- */
.mm-marketing .mmc-console-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(246, 239, 224, 0.55);
}
.mm-marketing .mmc-console-foot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 8px rgba(111, 207, 151, 0.5);
}

/* ---------- Phone (foreground product shot) ---------- */
.mm-marketing .mmc-device {
  position: absolute;
  right: clamp(-12px, -2vw, 12px);
  bottom: clamp(-30px, -3vw, -10px);
  width: clamp(160px, 22vw, 230px);
  z-index: 5;
  transform: rotate(4deg);
  transform-origin: 80% 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.mm-marketing .mmc-device-glow {
  position: absolute;
  inset: -20% -25% -10% -25%;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(245, 211, 122, 0.28) 0%,
    rgba(167, 139, 250, 0.18) 35%,
    transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
  animation: mmc-device-glow 6s ease-in-out infinite;
}
@keyframes mmc-device-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.mm-marketing .mmc-device-shadow {
  display: none;
}
.mm-marketing .mmc-device-frame {
  position: relative;
  background: linear-gradient(180deg, #1A1A22 0%, #0A0A12 100%);
  border-radius: 28px;
  padding: 6px;
  box-shadow:
    0 0 0 1.5px rgba(60, 60, 80, 0.9),
    0 0 0 2.5px rgba(226, 192, 107, 0.22),
    0 1px 0 rgba(255, 220, 150, 0.08) inset;
}
.mm-marketing .mmc-device-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}
/* Tap pulse — sits over the "Buy Now & Save" button on the screenshot */
.mm-marketing .mmc-device-tap {
  position: absolute;
  /* The Buy Now button sits roughly 27% from left, 53% from top of the image */
  left: 27%;
  top: 53%;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
.mm-marketing .mmc-device-tap::before,
.mm-marketing .mmc-device-tap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245, 211, 122, 0.85);
  box-shadow: 0 0 18px rgba(245, 211, 122, 0.6);
  animation: mmc-tap-ring 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.mm-marketing .mmc-device-tap::after { animation-delay: 1.2s; }
@keyframes mmc-tap-ring {
  0%   { opacity: 0;   transform: scale(0.4); }
  20%  { opacity: 0.95; }
  100% { opacity: 0;   transform: scale(1.6); }
}
/* Caption tag floating off the phone */
.mm-marketing .mmc-device-caption {
  position: absolute;
  right: -8%;
  top: 14%;
  display: flex;
  flex-direction: column;
  background: rgba(15, 15, 22, 0.92);
  border: 1px solid rgba(245, 211, 122, 0.38);
  border-radius: 10px;
  padding: 7px 10px;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 4;
  transform: rotate(-4deg);
}
.mm-marketing .mmc-device-caption-k {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 600;
  color: var(--mm-gold, #E2C06B);
  letter-spacing: -0.005em;
}
.mm-marketing .mmc-device-caption-v {
  font-family: var(--mm-font-display, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #6FCF97;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Red-carpet floor ---------- */

.mm-marketing .mmc-carpet {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 80px);
  height: 340px;
  overflow: hidden;
}
.mm-marketing .mmc-carpet-floor {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(74, 14, 24, 0.55) 0%,
      #5A1320 14%,
      #7A1A2A 38%,
      #8C1E2F 65%,
      #5C1422 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  opacity: 1;
}
.mm-marketing .mmc-carpet-floor::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      rgba(0,0,0,0) 0,
      rgba(0,0,0,0) 6px,
      rgba(0,0,0,0.15) 6px,
      rgba(0,0,0,0.15) 8px);
  opacity: 0.4;
}
.mm-marketing .mmc-carpet-spot {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 220px;
  height: 140%;
  background: radial-gradient(ellipse, rgba(255, 240, 210, 0.28), transparent 70%);
  transform: translateX(-50%);
  filter: blur(12px);
  animation: mmc-spot 10s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes mmc-spot {
  0%, 100% { left: 18%; }
  50%      { left: 82%; }
}

.mm-marketing .mmc-carpet-strip {
  position: absolute;
  top: 64px;
  left: 0;
  display: flex;
  animation: mmc-carpet-scroll 60s linear infinite;
  width: max-content;
  z-index: 2;
}
.mm-marketing .mmc-carpet-track {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding-right: 22px; /* gap-equivalent so seam matches inter-poster spacing */
}
@keyframes mmc-carpet-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.mm-marketing .mmc-carpet-poster {
  flex: 0 0 auto;
  width: clamp(110px, 11vw, 140px);
  height: clamp(160px, 16vw, 200px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(226, 192, 107, 0.4),
              0 12px 28px rgba(0, 0, 0, 0.7),
              0 0 24px rgba(167, 139, 250, 0.18);
  transition: transform 220ms ease;
}
.mm-marketing .mmc-carpet-poster:hover { transform: translateY(-5px); }
.mm-marketing .mmc-carpet-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.95);
}

/* ---------- Scroll cue ---------- */

.mm-marketing .mmc-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mm-font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(226, 192, 107, 0.6);
  pointer-events: none;
  z-index: 3;
}
.mm-marketing .mmc-scroll-arrow {
  font-size: 14px;
  animation: mmc-arrow-pulse 1.8s ease-in-out infinite;
}
@keyframes mmc-arrow-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .mm-marketing .mmc-cone,
  .mm-marketing .mmc-grain,
  .mm-marketing .mmc-carpet-spot,
  .mm-marketing .mmc-carpet-strip,
  .mm-marketing .mmc-scroll-arrow,
  .mm-marketing .mmc-console-live,
  .mm-marketing .mmc-window-dot,
  .mm-marketing .mmc-console-rowgroup,
  .mm-marketing .mmc-device-glow,
  .mm-marketing .mmc-device-tap::before,
  .mm-marketing .mmc-device-tap::after {
    animation: none !important;
  }
  .mm-marketing .mmc-window-cell-fill,
  .mm-marketing .mmc-window-scanhead {
    transition: none !important;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  .mm-marketing .mmc-hero { padding-top: 100px; }
  .mm-marketing .mmc-console-frame { transform: none; margin-right: 0; }
  .mm-marketing .mmc-hero-marquee { padding: 8px 0; }
  .mm-marketing .mmc-scroll-cue { display: none; }
  .mm-marketing .mmc-console-kpis { grid-template-columns: 1fr; }
  .mm-marketing .mmc-console-feed-head,
  .mm-marketing .mmc-console-row {
    grid-template-columns: 52px 70px 48px 1fr 64px;
    font-size: 11px;
  }
  .mm-marketing .mmc-window-track { height: 56px; }
  /* On mobile the phone moves below the dashboard, not floating over it */
  .mm-marketing .mmc-device {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 16px auto 0;
    width: 200px;
    transform: rotate(0);
  }
  .mm-marketing .mmc-device-caption { right: -4%; top: 8%; }
}

/* @bp tablet — 48px gutters on the circuits hero. */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .mm-marketing .mmc-hero-grid {
    padding-left: 48px;
    padding-right: 48px;
  }
}
