/**
 * MMMX marketing landing — full revamp
 * Nash-inspired motion + Gaiia sticky story, dark→light narrative.
 */

.mk-rv {
  --rv-void: #03050c;
  --rv-ink: #0b1220;
  --rv-muted: #64748b;
  --rv-line: rgba(148, 163, 184, 0.18);
  --rv-cyan: #22d3ee;
  --rv-violet: #818cf8;
  --rv-surface: #f8fafc;
  --rv-card: #ffffff;
  color: #e2e8f0;
  background: var(--rv-void);
  /* Do not set overflow-x/y here — non-visible overflow on ancestors breaks position:sticky. */
}

.mk-body--landing:has(.mk-rv) {
  background: var(--rv-void);
}

.mk-body--landing:has(.mk-rv) #main-content {
  padding-top: 0;
}

.mk-body--landing:has(.mk-rv) .mk-site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.mk-rv-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .mk-rv-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .mk-rv-inner { padding: 0 2rem; }
}

.mk-rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #67e8f9;
  margin: 0 0 1rem;
}

.mk-rv-eyebrow__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--rv-cyan);
  box-shadow: 0 0 10px var(--rv-cyan);
  animation: mk-rv-pulse 2s ease-in-out infinite;
}

@keyframes mk-rv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.mk-rv-title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
  color: #fff;
}

.mk-rv-title span {
  background: linear-gradient(115deg, #fff 10%, #67e8f9 45%, #a78bfa 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mk-rv-lead {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 36rem;
}

.mk-rv-section {
  padding: 5rem 0;
  position: relative;
  isolation: isolate;
}

.mk-rv-section > .mk-rv-inner,
.mk-rv-cta > .mk-rv-eyebrow,
.mk-rv-cta > .mk-rv-title,
.mk-rv-cta > .mk-rv-lead,
.mk-rv-cta > .mk-rv-cta__journey,
.mk-rv-cta > .mk-rv-cta__actions {
  position: relative;
  z-index: 2;
}

.mk-rv-section--light {
  background: var(--rv-surface);
  color: var(--rv-ink);
  /* overflow must stay visible for sticky story; clip only via ::before mask */
}

/* ── Cyber financial geometry (dark sections only — distinct from hero mesh) ── */
.mk-rv-section--geo {
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(34, 211, 238, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(129, 140, 248, 0.08), transparent 50%),
    var(--rv-void);
}

.mk-rv-geo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Hex financial lattice (not the hero square grid) */
.mk-rv-geo__hex {
  position: absolute;
  inset: -10%;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z' fill='none' stroke='%2322d3ee' stroke-opacity='0.22' stroke-width='1'/%3E%3Cpath d='M28 64 L56 80 L56 112 L28 128 L0 112 L0 80 Z' fill='none' stroke='%23818cf8' stroke-opacity='0.14' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  animation: mk-rv-hex-drift 48s linear infinite;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 75%);
}

.mk-rv-geo__hex--dense {
  background-size: 42px 76px;
  opacity: 0.4;
  animation-duration: 36s;
  animation-direction: reverse;
}

@keyframes mk-rv-hex-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, -100px, 0); }
}

/* Diagonal data beams / ledger scan lines */
.mk-rv-geo__beams {
  position: absolute;
  inset: -20%;
  opacity: 0.55;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0,
      transparent 48px,
      rgba(34, 211, 238, 0.04) 48px,
      rgba(34, 211, 238, 0.04) 49px,
      transparent 49px,
      transparent 96px,
      rgba(129, 140, 248, 0.05) 96px,
      rgba(129, 140, 248, 0.05) 97px
    );
  animation: mk-rv-beam-shift 22s linear infinite;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.mk-rv-geo__beams--cross {
  background:
    repeating-linear-gradient(
      62deg,
      transparent 0,
      transparent 64px,
      rgba(34, 211, 238, 0.05) 64px,
      rgba(34, 211, 238, 0.05) 65px
    ),
    repeating-linear-gradient(
      -62deg,
      transparent 0,
      transparent 72px,
      rgba(129, 140, 248, 0.04) 72px,
      rgba(129, 140, 248, 0.04) 73px
    );
  animation-duration: 28s;
  animation-direction: reverse;
}

@keyframes mk-rv-beam-shift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(80px, 40px, 0); }
}

/* Concentric radar / MTM rings */
.mk-rv-geo__rings {
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  right: -6%;
  top: 12%;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow:
    0 0 40px rgba(34, 211, 238, 0.08),
    inset 0 0 40px rgba(34, 211, 238, 0.05);
  animation: mk-rv-ring-spin 40s linear infinite;
}

.mk-rv-geo__rings::before,
.mk-rv-geo__rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(129, 140, 248, 0.2);
  inset: 18%;
}

.mk-rv-geo__rings::after {
  inset: 36%;
  border-color: rgba(34, 211, 238, 0.22);
  border-style: dashed;
  animation: mk-rv-ring-spin 22s linear infinite reverse;
}

.mk-rv-geo__rings--offset {
  left: -8%;
  right: auto;
  top: auto;
  bottom: 8%;
  animation-direction: reverse;
}

@keyframes mk-rv-ring-spin {
  to { transform: rotate(360deg); }
}

/* Soft glow orbs (deeper / more neon than hero) */
.mk-rv-geo__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.mk-rv-geo__orb--a {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  top: -8%;
  left: -6%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45), transparent 68%);
  animation: mk-rv-orb-float 16s ease-in-out infinite;
}

.mk-rv-geo__orb--b {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  bottom: 5%;
  right: 5%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.4), transparent 68%);
  animation: mk-rv-orb-float 20s ease-in-out infinite reverse;
}

.mk-rv-geo__orb--c {
  width: min(34vw, 260px);
  height: min(34vw, 260px);
  top: 30%;
  right: -4%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.22), transparent 70%);
  animation: mk-rv-orb-float 18s ease-in-out infinite;
}

.mk-rv-geo__orb--d {
  width: min(38vw, 300px);
  height: min(38vw, 300px);
  bottom: -10%;
  left: 15%;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.18), transparent 70%);
  animation: mk-rv-orb-float 24s ease-in-out infinite reverse;
}

@keyframes mk-rv-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

.mk-rv-geo__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.mk-rv-geo__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 12, 0.55) 0%, transparent 18%, transparent 82%, rgba(3, 5, 12, 0.65) 100%),
    linear-gradient(90deg, rgba(3, 5, 12, 0.45) 0%, transparent 25%, transparent 75%, rgba(3, 5, 12, 0.45) 100%);
}

/* Per-section tint shifts */
.mk-rv-section--geo[data-rv-geo="platform"] .mk-rv-geo__hex {
  filter: hue-rotate(25deg);
}
.mk-rv-section--geo[data-rv-geo="cta"] .mk-rv-geo__hex {
  opacity: 0.28;
}
.mk-rv-section--geo[data-rv-geo="cta"] .mk-rv-geo__beams {
  opacity: 0.4;
}

/* Subtle geometry wash on light sections — never overflow:hidden (breaks sticky). */
.mk-rv-section--light {
  position: relative;
  overflow: visible;
}

.mk-rv-section--light::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='84' viewBox='0 0 48 84'%3E%3Cpath d='M24 0 L48 14 L48 42 L24 56 L0 42 L0 14 Z' fill='none' stroke='%230891b2' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 48px 84px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
}

.mk-rv-section--light > .mk-rv-inner,
.mk-rv-section--light > .mk-rv-story__scroller {
  position: relative;
  z-index: 1;
}

.mk-rv-section--light .mk-rv-title { color: var(--rv-ink); }
.mk-rv-section--light .mk-rv-title span {
  background: linear-gradient(115deg, #0b1220 0%, #0891b2 55%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.mk-rv-section--light .mk-rv-lead { color: var(--rv-muted); }
.mk-rv-section--light .mk-rv-eyebrow { color: #0891b2; }

/* ── Hero — aurora stack restored from production mmmx.app ── */
.mk-rv-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  color: #fff;
  background: #030508;
}

.mk-rv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mk-rv-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.08);
}

.mk-rv-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 10%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(139, 92, 246, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 121, 249, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.2) 0%, rgba(3, 5, 8, 0.92) 85%);
}

.mk-rv-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Perspective floor grid (production hero) */
.mk-rv-hero__grid-floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -30%;
  height: 55%;
  background:
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(68deg);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
  opacity: 0.45;
  animation: mk-rv-grid-pulse 8s ease-in-out infinite;
}

@keyframes mk-rv-grid-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

.mk-rv-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.mk-rv-hero__cursor-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

.mk-rv-hero.is-hovering .mk-rv-hero__cursor-glow {
  opacity: 1;
}

.mk-rv-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: mk-rv-orb-float 14s ease-in-out infinite;
  z-index: 0;
}

.mk-rv-hero__orb--1 {
  width: 28rem;
  height: 28rem;
  top: 8%;
  left: -8%;
  background: rgba(34, 211, 238, 0.25);
}

.mk-rv-hero__orb--2 {
  width: 22rem;
  height: 22rem;
  top: 20%;
  right: -5%;
  background: rgba(139, 92, 246, 0.22);
  animation-delay: -4s;
}

.mk-rv-hero__orb--3 {
  width: 16rem;
  height: 16rem;
  bottom: 25%;
  left: 40%;
  background: rgba(232, 121, 249, 0.15);
  animation-delay: -7s;
}

@keyframes mk-rv-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  .mk-rv-hero__orb,
  .mk-rv-hero__grid-floor {
    animation: none;
  }

  .mk-rv-hero__cursor-glow,
  .mk-rv-hero__particles {
    display: none;
  }
}

.mk-rv-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: start;
  /* Mobile DOM order: copy → panel → CTA → journey */
}

@media (min-width: 1024px) {
  .mk-rv-hero__layout {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy panel"
      "cta panel"
      "journey panel";
    column-gap: 3rem;
    row-gap: 0;
    align-items: center;
  }

  .mk-rv-hero__copy {
    grid-area: copy;
  }

  .mk-rv-panel--hero {
    grid-area: panel;
    align-self: center;
  }

  .mk-rv-hero__cta {
    grid-area: cta;
    margin-top: 1.75rem;
  }

  .mk-rv-hero__journey {
    grid-area: journey;
    margin-top: 1.5rem;
  }
}

.mk-rv-hero-slider__viewport {
  display: grid;
  min-height: 13.5rem;
}

.mk-rv-hero-slider__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
  pointer-events: none;
}

.mk-rv-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mk-rv-hero__title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
}

.mk-rv-hero__title-grad {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(115deg, #fff 0%, #67e8f9 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mk-rv-hero__lead {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 34rem;
}

.mk-rv-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.mk-rv-hero-nav__btn {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 4.25rem;
  padding: 0.25rem 0.1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #64748b;
  text-align: left;
}

.mk-rv-hero-nav__btn.is-active { color: #a5f3fc; }

.mk-rv-hero-nav__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-rv-hero-nav__track {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.mk-rv-hero-nav__btn.is-active .mk-rv-hero-nav__track { width: 3.5rem; }

.mk-rv-hero-nav__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

.mk-rv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.mk-rv-hero__journey {
  margin-top: 0.25rem;
}

/* Mobile: panel sits between nav and CTA (DOM order) */
@media (max-width: 1023px) {
  .mk-rv-panel--hero {
    margin-top: 0.25rem;
  }

  .mk-rv-hero__cta {
    margin-top: 0.5rem;
  }

  .mk-rv-hero__journey {
    margin-top: 1rem;
  }
}

.mk-rv-btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 11rem;
  border-radius: 0.8rem;
  padding: 0.85rem 1.35rem;
  background: linear-gradient(135deg, #22d3ee, #0891b2 55%, #6366f1);
  color: #042f2e;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 36px -12px rgba(34, 211, 238, 0.55);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.mk-rv-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.mk-rv-btn-primary small { font-size: 0.68rem; font-weight: 600; opacity: 0.75; }

.mk-rv-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  border-radius: 0.8rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.mk-rv-btn-secondary:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.08);
}

.mk-rv-section--light .mk-rv-btn-secondary {
  color: var(--rv-ink);
  border-color: #cbd5e1;
}

/* Hero live panel */
.mk-rv-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.mk-rv-panel__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 16, 0.5);
  min-height: 2.35rem;
}

.mk-rv-panel__chrome i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #f87171;
  font-style: normal;
  flex: none;
}
.mk-rv-panel__chrome i:nth-child(2) { background: #fbbf24; }
.mk-rv-panel__chrome i:nth-child(3) { background: #34d399; }

/* Browser-style URL path — changes per scene to match card content */
.mk-rv-panel__chrome-url,
.mk-rv-panel__chrome em {
  margin-left: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-size: 0.68rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #94a3b8;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Page chip on the right — short label for the active card */
.mk-rv-panel__chrome-page {
  flex: none;
  max-width: 42%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #67e8f9;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.mk-rv-panel__body { padding: 1rem; }

/* In-scene app breadcrumb bar (pairs with chrome path) */
.mk-rv-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-rv-appbar__crumb {
  font-size: 0.72rem;
  font-weight: 600;
  color: #cbd5e1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Intel panel: 3 scenes synced to steps ── */
.mk-rv-panel--intel {
  min-height: 24rem;
}

.mk-rv-intel-scenes {
  position: relative;
  min-height: 20.5rem;
}

.mk-rv-intel-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.5s;
  pointer-events: none;
}

.mk-rv-intel-scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.mk-rv-form-mock {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-rv-form-mock__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mk-rv-form-mock__row:last-child { border-bottom: 0; }
.mk-rv-form-mock__row span { color: #64748b; }
.mk-rv-form-mock__row strong { color: #e2e8f0; font-weight: 700; }

.mk-rv-legs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mk-rv-leg {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #cbd5e1;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.12);
}

.mk-rv-leg__n {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(34, 211, 238, 0.2);
  color: #67e8f9;
  flex: none;
}

.mk-rv-guards {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mk-rv-guard {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-rv-guard.is-pass {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.06);
}

/* Icon is a span — do not style it via `.mk-rv-guard span` (that broke centering). */
.mk-rv-guard__icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  flex: none;
  flex-shrink: 0;
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
  font-size: 0; /* hide text node; draw check via ::before for true center */
  line-height: 0;
  overflow: hidden;
}

.mk-rv-guard__icon::before {
  content: "";
  display: block;
  width: 0.38rem;
  height: 0.62rem;
  margin-top: -0.08rem; /* optical: check sits a hair high without this */
  border-right: 2px solid #34d399;
  border-bottom: 2px solid #34d399;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.mk-rv-guard strong {
  display: block;
  font-size: 0.8rem;
  color: #e2e8f0;
}

/* Subtitle only — exclude .mk-rv-guard__icon */
.mk-rv-guard > div > span {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.1rem;
}

.mk-rv-status-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.35rem 0;
}

.mk-rv-status-flow__arrow {
  color: #64748b;
  font-size: 0.85rem;
}

.mk-rv-feed--static {
  min-height: 0;
}

.mk-rv-feed--static .mk-rv-feed__item {
  animation: none;
  opacity: 1;
  transform: none;
}

/* ── Hero panel: 4 synced scenes ── */
.mk-rv-panel--hero {
  min-height: 24rem;
}

.mk-rv-hero-scenes {
  position: relative;
  min-height: 20.5rem;
}

.mk-rv-hero-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.5s;
  pointer-events: none;
}

.mk-rv-hero-scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.mk-rv-hero-scene__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
}

/* Capture: chat bubbles + queue */
.mk-rv-chat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mk-rv-chat__bubble {
  max-width: 92%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-rv-chat__bubble--in {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.75);
  border-bottom-left-radius: 0.25rem;
}

.mk-rv-chat__bubble--out {
  align-self: flex-end;
  background: rgba(8, 145, 178, 0.18);
  border-color: rgba(34, 211, 238, 0.25);
  border-bottom-right-radius: 0.25rem;
}

.mk-rv-chat__who {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.mk-rv-queue {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mk-rv-queue__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.65rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}

.mk-rv-queue__uid {
  font-weight: 700;
  color: #67e8f9;
  font-variant-numeric: tabular-nums;
}

.mk-rv-queue__meta { color: #94a3b8; }

.mk-rv-pill {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
}

.mk-rv-pill--amber {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}
.mk-rv-pill--cyan {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
}
.mk-rv-pill--green {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
}

.mk-rv-banner {
  margin-top: auto;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  font-size: 0.75rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid transparent;
}

.mk-rv-banner strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-rv-banner span { color: #94a3b8; }

.mk-rv-banner--warn {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.28);
}
.mk-rv-banner--warn strong { color: #fbbf24; }

.mk-rv-banner--ok {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.28);
}
.mk-rv-banner--ok strong { color: #34d399; }

.mk-rv-banner--cyan {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.28);
}
.mk-rv-banner--cyan strong { color: #67e8f9; }

/* Reconcile spread */
.mk-rv-spread {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-rv-spread__col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mk-rv-spread__side {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.mk-rv-spread__col strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.mk-rv-spread__sub {
  font-size: 0.7rem;
  color: #94a3b8;
}

.mk-rv-spread__vs {
  color: #67e8f9;
  font-size: 1.1rem;
  opacity: 0.8;
}

.mk-rv-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mk-rv-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #94a3b8;
  padding: 0.4rem 0.5rem;
  border-radius: 0.5rem;
}

.mk-rv-checklist__item.is-done { color: #cbd5e1; }
.mk-rv-checklist__item.is-active {
  color: #e2e8f0;
  background: rgba(34, 211, 238, 0.08);
}

.mk-rv-check {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  flex: none;
}

.mk-rv-checklist__item.is-done .mk-rv-check {
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
}

.mk-rv-checklist__item.is-active .mk-rv-check {
  background: rgba(34, 211, 238, 0.2);
  color: #67e8f9;
}

/* Audit trail */
.mk-rv-trail {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0.25rem;
}

.mk-rv-trail__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0.5rem 0.65rem 0;
  position: relative;
}

.mk-rv-trail__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1.35rem;
  bottom: -0.15rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.45), rgba(148, 163, 184, 0.15));
}

.mk-rv-trail__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  margin-top: 0.15rem;
  background: #334155;
  border: 2px solid #64748b;
  flex: none;
  z-index: 1;
}

.mk-rv-trail__dot--amber {
  background: rgba(251, 191, 36, 0.3);
  border-color: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

.mk-rv-trail__dot--green {
  background: rgba(52, 211, 153, 0.3);
  border-color: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.35);
}

.mk-rv-trail__step strong {
  display: block;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.mk-rv-trail__step span {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.1rem;
}

.mk-rv-trail__step em {
  font-style: normal;
  font-size: 0.68rem;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

.mk-rv-trail__step.is-current strong { color: #67e8f9; }

/* Profit MTM grid */
.mk-rv-mtm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mk-rv-mtm-card {
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mk-rv-mtm-card span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.mk-rv-mtm-card strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.mk-rv-mtm-card strong.is-up { color: #34d399; }

.mk-rv-mtm-card--total {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(129, 140, 248, 0.1));
  border-color: rgba(34, 211, 238, 0.25);
}

.mk-rv-mtm-card--total strong {
  font-size: 1.35rem;
  color: #67e8f9;
}

.mk-rv-flow-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 0.35rem 0;
}

.mk-rv-flow-line__bar {
  flex: 1;
  min-width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.7), rgba(129, 140, 248, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .mk-rv-hero-scene {
    transition: none;
  }
}

.mk-rv-feed {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 14rem;
}

.mk-rv-feed__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transform: translateY(10px);
  animation: mk-rv-feed-in 0.5s ease forwards;
}

.mk-rv-feed__item.is-hot {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 24px -8px rgba(34, 211, 238, 0.4);
}

@keyframes mk-rv-feed-in {
  to { opacity: 1; transform: none; }
}

.mk-rv-feed__tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #67e8f9;
  padding: 0.2rem 0.4rem;
  border-radius: 0.35rem;
  background: rgba(34, 211, 238, 0.12);
}

.mk-rv-feed__msg {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.35;
}

.mk-rv-feed__time {
  font-size: 0.7rem;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

/* ── Intelligence layer (Nash-style) ── */
.mk-rv-intel {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .mk-rv-intel {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.mk-rv-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.mk-rv-step {
  border: 1px solid var(--rv-line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mk-rv-step.is-active {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(129, 140, 248, 0.08));
  transform: translateX(4px);
}

.mk-rv-step__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #67e8f9;
}

.mk-rv-step h3 {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.mk-rv-step p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.mk-rv-step:not(.is-active) p {
  display: none;
}

/* ── Sticky scroll story (Gaiia-style) ──
   Structure: tall scroller wraps sticky pin so content stays fixed while
   progress advances through 3 panels. Parent must not use overflow:hidden. */
.mk-rv-story {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mk-rv-story__scroller {
  /* 1 viewport of sticky view + ~2 extra viewports of scroll runway */
  height: 300vh;
  position: relative;
}

.mk-rv-story__pin {
  position: sticky;
  top: 5.5rem; /* below fixed marketing nav */
  min-height: calc(100vh - 5.5rem);
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
  z-index: 2;
  box-sizing: border-box;
}

.mk-rv-story__grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  align-items: center;
}

@media (min-width: 960px) {
  .mk-rv-story__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.mk-rv-story__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mk-rv-story__nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.45rem 0;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mk-rv-story__nav-btn.is-active { color: var(--rv-ink); }

.mk-rv-story__nav-idx {
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0891b2;
  min-width: 1.5rem;
}

.mk-rv-story__nav-bar {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  max-width: 8rem;
}

.mk-rv-story__nav-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22d3ee, #6366f1);
  transition: width 0.15s linear;
}

.mk-rv-story__nav-btn.is-active .mk-rv-story__nav-fill { width: 100%; }

.mk-rv-story__panels {
  position: relative;
  min-height: 11rem;
}

.mk-rv-story__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.mk-rv-story__panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.mk-rv-story__panel h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rv-ink);
}

.mk-rv-story__panel p {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rv-muted);
  max-width: 28rem;
}

.mk-rv-story__visual {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  min-height: 18rem;
}

.mk-rv-story__visual-head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mk-rv-story__visual-body {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mk-rv-story__metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.mk-rv-story__metric strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rv-ink);
  font-variant-numeric: tabular-nums;
}

.mk-rv-story__metric span {
  font-size: 0.8rem;
  color: var(--rv-muted);
}

.mk-rv-story__metric.is-accent {
  background: linear-gradient(135deg, #ecfeff, #f5f3ff);
  border-color: #e0f2fe;
}

.mk-rv-story__metric.is-accent strong { color: #0e7490; }

/* ── Platform motion (Nash) ── */
.mk-rv-platform-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .mk-rv-platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .mk-rv-platform-grid { grid-template-columns: repeat(3, 1fr); }
}

.mk-rv-mod {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid var(--rv-line);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.2rem;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mk-rv-mod.is-live {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(34, 211, 238, 0.55);
}

.mk-rv-mod__pulse {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #334155;
}

.mk-rv-mod.is-live .mk-rv-mod__pulse {
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  animation: mk-rv-ping 1.6s ease-out infinite;
}

@keyframes mk-rv-ping {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

.mk-rv-mod h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.mk-rv-mod p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.mk-rv-mod__status {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.mk-rv-mod.is-live .mk-rv-mod__status { color: #67e8f9; }

/* ── Results (Nash) ── */
.mk-rv-results {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .mk-rv-results { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .mk-rv-results { grid-template-columns: repeat(4, 1fr); }
}

.mk-rv-stat {
  border-radius: 1.1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.mk-rv-stat__value {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rv-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.mk-rv-stat__value span {
  color: #0891b2;
}

.mk-rv-stat__label {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rv-muted);
}

/* ── CTA ── */
.mk-rv-cta {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 5rem 1.25rem 5.5rem;
  overflow: hidden;
  background: transparent;
}

.mk-rv-cta .mk-rv-title {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.mk-rv-cta .mk-rv-lead {
  margin-left: auto;
  margin-right: auto;
}

.mk-rv-cta__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.mk-rv-cta__journey {
  margin: 1.5rem auto 0;
  max-width: 28rem;
}

/* Reveal (visible by default; animated when ready) */
.mk-rv .mk-reveal {
  opacity: 1;
  transform: none;
}

html.mk-reveal-ready .mk-rv .mk-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.mk-reveal-ready .mk-rv .mk-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.mk-reveal--d1 { transition-delay: 0.08s; }
.mk-reveal--d2 { transition-delay: 0.16s; }
.mk-reveal--d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .mk-rv-hero-nav__fill,
  .mk-rv-feed__item,
  .mk-rv-mod__pulse,
  .mk-rv-eyebrow__dot,
  .mk-rv-geo__hex,
  .mk-rv-geo__beams,
  .mk-rv-geo__rings,
  .mk-rv-geo__rings::after,
  .mk-rv-geo__orb {
    animation: none !important;
  }
  .mk-rv-geo__canvas {
    display: none;
  }
  .mk-rv-story__scroller { height: auto; }
  .mk-rv-story__pin { position: relative; top: auto; min-height: 0; padding: 3rem 0; }
  .mk-rv-story__panel {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-bottom: 1.5rem;
    visibility: visible !important;
  }
  html.mk-reveal-ready .mk-rv .mk-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
