/* ═══════════════════════════════════════════════════════════════
   MARKETING PAGE
   Sales-page sibling using .m- namespace.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --m-bg: #000;
  --m-panel: #090b0c;
  --m-panel-2: #101415;
  --m-line: rgba(255, 255, 255, 0.09);
  --m-line-strong: rgba(255, 255, 255, 0.18);
  --m-text: #fff;
  --m-mid: rgba(255, 255, 255, 0.72);
  --m-dim: rgba(255, 255, 255, 0.44);
  --m-good: #4ade80;
  --m-good-dim: rgba(74, 222, 128, 0.12);
  --m-bad: #ee3a39;
  --m-bad-dim: rgba(238, 58, 57, 0.12);
  --m-cyan: #22d3ee;
  --m-gold: #fbbf24;
  --m-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --nav-height: 68px;
}

.marketing-page {
  background: #000;
  color: #fff;
}

.m-mono,
.m-kicker,
.m-section-label,
.m-proof-card span,
.m-offer-cards span {
  font-family: var(--m-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Hero */
.m-hero {
  position: relative;
  height: 200vh;
  background: #000;
  isolation: isolate;
}

.m-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.m-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 68%);
  opacity: 0.55;
}

.m-glow {
  position: absolute;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.28;
}

.m-glow--good {
  right: -14vw;
  top: 12vh;
  background: var(--m-good);
}

.m-glow--bad {
  left: -18vw;
  bottom: 10vh;
  background: var(--m-bad);
}

.m-hero-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 28px 56px;
  z-index: 1;
}

.m-hero-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.m-hero-copy {
  position: relative;
  min-height: 360px;
}

.m-hero-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.m-kicker {
  display: inline-flex;
  color: var(--m-good);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 999px;
  background: var(--m-good-dim);
  margin-bottom: 22px;
}

.m-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.m-hero-slide[data-hero-stage="0"] h1 {
  font-size: clamp(3rem, 5.1vw, 4.8rem);
  line-height: 1.02;
}

.m-hero-slide[data-hero-stage="1"] h1 {
  font-size: clamp(2.85rem, 5.2vw, 5rem);
  line-height: 1.02;
}

.m-hero h1 span {
  color: var(--m-dim);
}

.m-hero-promise {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}

.m-hero h1 .m-hero-pain {
  color: #fff;
}

.m-hero h1 .m-hero-muted {
  color: rgba(255, 255, 255, 0.5);
}

.m-hero h1 .m-hero-answer {
  color: transparent;
  background: linear-gradient(180deg, #fff 12%, var(--m-good) 118%);
  -webkit-background-clip: text;
  background-clip: text;
}

.m-guarantee-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.m-hero h1 .m-guarantee-word {
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 0 22px rgba(74, 222, 128, 0.22);
}

.m-hero h1 .m-ai-emoji {
  display: inline-block;
  color: #fff;
  -webkit-text-fill-color: initial;
  background: none;
  font-size: 0.78em;
  transform: translateY(-0.04em) rotate(-4deg);
}

.m-hero h1 .m-hero-note {
  position: absolute;
  z-index: 4;
  left: 100%;
  top: -2.75em;
  bottom: auto;
  display: inline-block;
  white-space: nowrap;
  pointer-events: none;
  color: var(--m-bad);
  -webkit-text-fill-color: var(--m-bad);
  background: none;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  transform: rotate(-6deg);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-shadow: 0 0 18px rgba(238,58,57,0.22);
}

.m-note-arrow {
  position: absolute;
  left: -14px;
  top: 1.05em;
  width: 72px;
  height: 48px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-5deg);
}

.m-hero p {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--m-mid);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.m-reality-check {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.m-reality-check::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -3%;
  bottom: -0.14em;
  height: 5px;
  background:
    linear-gradient(92deg, transparent 0 4%, rgba(238, 58, 57, 0.9) 5% 92%, transparent 96%),
    linear-gradient(86deg, transparent 0 8%, rgba(238, 58, 57, 0.58) 9% 88%, transparent 92%);
  border-radius: 999px;
  transform: rotate(-1.4deg);
  opacity: 0.86;
  z-index: -1;
}

.m-hero-stat {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(74,222,128,0.36);
  border-radius: 999px;
  color: var(--m-good);
  background: rgba(74,222,128,0.1);
  box-shadow: 0 0 24px rgba(74,222,128,0.09);
  font: 800 0.78rem/1 var(--m-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.m-hero-stat--green {
  color: var(--m-good);
}

.m-proof-machine {
  position: relative;
  min-height: min(72vh, 564px);
  border: 1px solid var(--m-line-strong);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 46%, rgba(74, 222, 128, 0.13), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(238, 58, 57, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.m-proof-machine::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 42px;
  opacity: 0.25;
}

/* ═══════════════════════════════════════════════════════════════
   HERO FLOW — your marketing as ONE directed system, not pieces.
   Vertical pipeline: traffic sources → website → analytics → sales
   → booked boats, with a Reviews flywheel returning up the side.
   Problem (stages 1-2): disconnected vendors, broken pipes, buyers
   bounce off the slow site, nothing reaches sales, dead flywheel.
   Solution (stages 3-4): AI on every node, pipes heal and flow
   green top-to-bottom, buyers stream all the way to booked boats,
   the flywheel spins reviews back to the top of funnel.
   Driven entirely by .m-hero[data-active-stage].
   ═══════════════════════════════════════════════════════════════ */
.m-flow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  --bad: rgba(238,58,57,0.42);
  --bad-soft: rgba(255,150,146,0.9);
  --good: rgba(74,222,128,0.55);
  --good-line: rgba(74,222,128,0.85);
}

.m-flow-spine {
  position: relative;
  width: min(224px, 76%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 1.2vh, 11px);
}

/* ---- top of funnel: the traffic sources feeding in ---- */
.m-flow-sources {
  width: 100%;
  text-align: center;
}

.m-flow-eyebrow {
  display: block;
  margin-bottom: 8px;
  font: 800 0.56rem/1 var(--m-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--m-dim);
  transition: color 0.5s ease;
}

.m-flow-srcs {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.m-flow-src {
  position: relative;
  flex: 1 1 0;
  max-width: 94px;
  padding: 11px 6px;
  border-radius: 10px;
  border: 1px solid var(--bad);
  background: linear-gradient(180deg, rgba(26,8,8,0.95), rgba(12,4,4,0.95));
  color: #fff;
  font: 700 0.78rem/1 var(--font);
  transition: border-color 0.55s ease, background 0.55s ease, box-shadow 0.55s ease;
}
/* smaller AI badge that fits the narrow source chips */
.m-flow-src .m-flow-ai {
  top: -7px;
  right: 5px;
  padding: 1px 5px;
  font-size: 0.42rem;
}

/* ---- pipes between the nodes ---- */
.m-flow-pipe {
  position: relative;
  width: 3px;
  height: clamp(13px, 2.4vh, 24px);
  border-radius: 3px;
  /* problem: broken / dashed red */
  background: repeating-linear-gradient(180deg, var(--bad) 0 4px, transparent 4px 9px);
  transition: background 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}
.m-flow-pipe[data-flow-pipe="1"] { --p: 0; }
.m-flow-pipe[data-flow-pipe="2"] { --p: 1; }
.m-flow-pipe[data-flow-pipe="3"] { --p: 2; }
.m-flow-pipe[data-flow-pipe="4"] { --p: 3; }

.m-flow-pipe::after {
  /* flowing current — only revealed once the system is connected */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--good-line) 50%, transparent 100%);
  background-size: 100% 220%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ---- the nodes ---- */
.m-flow-node {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid var(--bad);
  background: linear-gradient(180deg, rgba(26,8,8,0.96), rgba(12,4,4,0.96));
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  text-align: center;
  transition: border-color 0.55s ease, background 0.55s ease, box-shadow 0.55s ease;
}

.m-flow-node b {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
}

.m-flow-state {
  display: block;
  margin-top: 3px;
  font: 700 0.55rem/1.2 var(--m-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.m-flow-state--bad { color: var(--bad-soft); }
.m-flow-state--good { color: rgba(150,240,180,0.95); display: none; }

/* AI badge — hidden until each node is wired into the system */
.m-flow-ai {
  position: absolute;
  top: -8px;
  right: 12px;
  padding: 2px 7px;
  border-radius: 999px;
  font: 800 0.5rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  color: #04150b;
  background: var(--m-good);
  box-shadow: 0 4px 12px rgba(74,222,128,0.5);
  opacity: 0;
  transform: translateY(4px) scale(0.7);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.5,0.5,1);
}

/* ---- spotlight: ONE card at a time, gliding down the left gutter,
   naming each item + why it leaks (✕) or the fix (✓). JS sets the
   text, the vertical position, and which item is highlighted. ---- */
.m-flow-spotlight {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 122px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 11px;
  border: 1px solid var(--bad);
  background: linear-gradient(180deg, rgba(28,8,8,0.98), rgba(14,4,4,0.98));
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
  pointer-events: none;
  opacity: 0;
  transition: left 0.5s cubic-bezier(0.4,0,0.2,1), top 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease, border-color 0.5s ease, background 0.5s ease;
}
.m-flow-spotlight.is-on { opacity: 1; }
.m-flow-spotlight.is-good {
  border-color: var(--good);
  background: linear-gradient(180deg, rgba(6,32,18,0.98), rgba(3,18,10,0.98));
}
/* connector stub pointing right toward the highlighted item */
.m-flow-spotlight::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--bad);
  transition: background 0.5s ease;
}
.m-flow-spotlight.is-good::after { background: var(--good-line); }

.m-flow-spot-badge {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  background: var(--m-bad);
  color: #fff;
}
.m-flow-spotlight.is-good .m-flow-spot-badge { background: var(--m-good); color: #02140a; }

.m-flow-spot-body { display: grid; gap: 2px; text-align: left; min-width: 0; }
.m-flow-spot-name {
  font: 800 0.5rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-dim);
  font-style: normal;
}
.m-flow-spot-text {
  font: 700 0.78rem/1.12 var(--font);
  font-style: normal;
  color: rgba(255,180,178,0.96);
}
.m-flow-spotlight.is-good .m-flow-spot-text { color: rgba(184,255,208,0.96); }

/* the item currently being explained gets a ring (red in problem, green in solution) */
.m-flow-src.is-spotlight,
.m-flow-node.is-spotlight {
  border-color: rgba(255,120,118,0.85) !important;
  box-shadow: 0 0 0 1px rgba(255,120,118,0.5), 0 0 22px rgba(238,58,57,0.4) !important;
}
.m-hero[data-active-stage="2"] .m-flow-src.is-spotlight,
.m-hero[data-active-stage="2"] .m-flow-node.is-spotlight,
.m-hero[data-active-stage="2"] .m-flow-src.is-spotlight,
.m-hero[data-active-stage="2"] .m-flow-node.is-spotlight {
  border-color: rgba(120,240,170,0.9) !important;
  box-shadow: 0 0 0 1px rgba(120,240,170,0.5), 0 0 22px rgba(74,222,128,0.45) !important;
}

/* ---- prospects: paid-traffic dots, positioned + animated by JS ---- */
.m-flow-prospects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.m-flow-prospect {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--bad-soft);
  box-shadow: 0 0 8px rgba(238,58,57,0.5);
  will-change: transform, opacity;
}
.m-flow-prospect.is-green {
  background: var(--m-good);
  box-shadow: 0 0 10px rgba(74,222,128,0.85);
}
.m-flow-prospect.is-untracked {
  background: rgba(214,214,214,0.5);
  box-shadow: none;
}

/* ---- output: spend → boats ---- */
.m-flow-out {
  width: 100%;
  padding: 9px 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(238,58,57,0.34);
  background: rgba(10,4,4,0.92);
  transition: border-color 0.55s ease, background 0.55s ease;
}

.m-flow-out-bad {
  font: 800 0.62rem/1.2 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-mid);
}
.m-flow-out-bad b { color: var(--m-bad); font-size: 1.6rem; letter-spacing: -0.02em; }

.m-flow-out-good {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 800 0.64rem/1.2 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(188,255,211,0.9);
}
.m-flow-out-boat { font-size: 1.2rem; }

.m-flow-count {
  position: relative;
  display: inline-grid;
  min-width: 1.7em;
  height: 1.5em;
  color: var(--m-good);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.m-flow-count i {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  font-style: normal;
}

/* ---- the line that flips: seven vendors → one operation ---- */
.m-flow-caption {
  position: relative;
  margin: 2px 0 0;
  min-height: 1.1em;
  width: 100%;
  text-align: center;
}
.m-flow-caption span {
  position: absolute;
  left: 0;
  right: 0;
  font: 700 0.62rem/1.25 var(--m-mono);
  letter-spacing: 0.03em;
  transition: opacity 0.5s ease;
}
.m-flow-caption--bad { color: var(--bad-soft); opacity: 1; }
.m-flow-caption--good { color: rgba(150,240,180,0.95); opacity: 0; }

/* ---- reviews flywheel: a return track up the right gutter. Dead/red
   in the problem beat (no happy customers); in the solution beat JS
   launches "Review!" dots from booked boats up to traffic in. ---- */
.m-flow-return {
  position: absolute;
  top: 15%;
  bottom: 19%;
  right: -30px;
  width: 2px;
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, rgba(238,58,57,0.4) 0 5px, transparent 5px 11px);
  opacity: 0.7;
  transition: background 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  pointer-events: none;
}
.m-flow-return-arrow {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  color: rgba(238,58,57,0.6);
  transform: rotate(45deg);
  transition: color 0.5s ease;
}
.m-flow-return-label {
  position: absolute;
  top: 50%;
  right: -54px;
  transform: translate(50%, -50%);
  font: 800 0.5rem/1 var(--m-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-dim);
  white-space: nowrap;
  transition: color 0.5s ease;
}

.m-flow-reviews {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
}
.m-flow-review {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  will-change: transform, opacity;
}
.m-flow-review i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-good);
  box-shadow: 0 0 10px rgba(74,222,128,0.85);
}
.m-flow-review b {
  font: 800 0.5rem/1 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(184,255,208,0.96);
  background: rgba(6,32,18,0.92);
  border: 1px solid rgba(74,222,128,0.45);
  border-radius: 999px;
  padding: 3px 6px;
}

/* ════════════ STAGE 3 + 4 — the system is connected ════════════ */
.m-hero[data-active-stage="2"] .m-flow-src,
.m-hero[data-active-stage="2"] .m-flow-src {
  border-color: var(--good);
  background: linear-gradient(180deg, rgba(6,30,16,0.96), rgba(3,16,9,0.96));
  box-shadow: 0 0 0 1px rgba(74,222,128,0.12);
}

.m-hero[data-active-stage="2"] .m-flow-pipe,
.m-hero[data-active-stage="2"] .m-flow-pipe {
  background: var(--good-line);
  box-shadow: 0 0 10px rgba(74,222,128,0.45);
  transition-delay: calc(var(--p, 0) * 0.12s);
}

.m-hero[data-active-stage="2"] .m-flow-node,
.m-hero[data-active-stage="2"] .m-flow-node {
  border-color: var(--good);
  background: linear-gradient(180deg, rgba(6,30,16,0.96), rgba(3,16,9,0.96));
  box-shadow: 0 10px 26px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,222,128,0.14), 0 0 26px rgba(74,222,128,0.12);
  transition-delay: calc(var(--ni, 0) * 0.12s);
}

.m-hero[data-active-stage="2"] .m-flow-state--bad,
.m-hero[data-active-stage="2"] .m-flow-state--bad { display: none; }
.m-hero[data-active-stage="2"] .m-flow-state--good,
.m-hero[data-active-stage="2"] .m-flow-state--good { display: block; }

.m-hero[data-active-stage="2"] .m-flow-ai,
.m-hero[data-active-stage="2"] .m-flow-ai {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--ni, 0) * 0.12s + 0.18s);
}

.m-hero[data-active-stage="2"] .m-flow-out,
.m-hero[data-active-stage="2"] .m-flow-out {
  border-color: rgba(74,222,128,0.42);
  background: rgba(3,18,10,0.92);
}
.m-hero[data-active-stage="2"] .m-flow-out-bad,
.m-hero[data-active-stage="2"] .m-flow-out-bad { display: none; }
.m-hero[data-active-stage="2"] .m-flow-out-good,
.m-hero[data-active-stage="2"] .m-flow-out-good { display: inline-flex; }

.m-hero[data-active-stage="2"] .m-flow-caption--bad,
.m-hero[data-active-stage="2"] .m-flow-caption--bad { opacity: 0; }
.m-hero[data-active-stage="2"] .m-flow-caption--good,
.m-hero[data-active-stage="2"] .m-flow-caption--good { opacity: 1; }

.m-hero[data-active-stage="2"] .m-flow-eyebrow,
.m-hero[data-active-stage="2"] .m-flow-eyebrow { color: rgba(150,240,180,0.9); }

.m-hero[data-active-stage="2"] .m-flow-return,
.m-hero[data-active-stage="2"] .m-flow-return {
  background: var(--good-line);
  opacity: 1;
  box-shadow: 0 0 12px rgba(74,222,128,0.5);
}
.m-hero[data-active-stage="2"] .m-flow-return-arrow,
.m-hero[data-active-stage="2"] .m-flow-return-arrow { color: var(--good-line); }
.m-hero[data-active-stage="2"] .m-flow-return-label,
.m-hero[data-active-stage="2"] .m-flow-return-label { color: rgba(150,240,180,0.9); }

/* ════════════ STAGE 4 — buyers flow all the way through ════════════ */
.m-hero[data-active-stage="2"] .m-flow-pipe::after {
  opacity: 1;
  animation: mFlowCurrent 1.2s linear infinite;
}
@keyframes mFlowCurrent {
  0% { background-position: 0 -110%; }
  100% { background-position: 0 110%; }
}

/* the amplified top of funnel pulses as reviews feed it */
.m-hero[data-active-stage="2"] .m-flow-src {
  animation: mFlowSrcPulse 2.6s ease-in-out infinite;
}
.m-hero[data-active-stage="2"] .m-flow-src:nth-child(2) { animation-delay: 0.25s; }
.m-hero[data-active-stage="2"] .m-flow-src:nth-child(3) { animation-delay: 0.5s; }
@keyframes mFlowSrcPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(74,222,128,0.12); }
  50% { box-shadow: 0 0 0 1px rgba(74,222,128,0.3), 0 0 18px rgba(74,222,128,0.35); }
}

.m-hero[data-active-stage="2"] .m-flow-count i:nth-child(1) { animation: mFlowCount 0.5s ease both; }
.m-hero[data-active-stage="2"] .m-flow-count i:nth-child(2) { animation: mFlowCount 0.5s ease both; animation-delay: 0.55s; }
.m-hero[data-active-stage="2"] .m-flow-count i:nth-child(3) { animation: mFlowCountFinal 0.5s ease both; animation-delay: 1.1s; }
@keyframes mFlowCount {
  0% { opacity: 0; transform: translateY(8px); }
  35% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes mFlowCountFinal {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ════════════ STAGE 2 — the leak: buyers bounce off the slow site ════════════ */
.m-hero[data-active-stage="1"] .m-flow-node[data-flow-node="site"] {
  border-color: rgba(238,58,57,0.7);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45), 0 0 26px rgba(238,58,57,0.28);
  animation: mFlowSlow 1.6s ease-in-out infinite;
}
@keyframes mFlowSlow {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* the downstream pipes stay severed while the site leaks */
.m-hero[data-active-stage="1"] .m-flow-pipe[data-flow-pipe="2"],
.m-hero[data-active-stage="1"] .m-flow-pipe[data-flow-pipe="3"],
.m-hero[data-active-stage="1"] .m-flow-pipe[data-flow-pipe="4"] {
  opacity: 0.35;
}

/* the unanswered question pulses while the system is disconnected */
.m-hero[data-active-stage="1"] .m-flow-out-bad b,
.m-hero[data-active-stage="1"] .m-flow-out-bad b {
  animation: mFlowUnsure 2.2s ease-in-out infinite;
}
@keyframes mFlowUnsure {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ---- (legacy radial engine removed — replaced by .m-flow above) ---- */
.m-hero-boards {
  position: absolute;
  inset: 16px;
  z-index: 1;
}

.m-marketing-board {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-hero[data-active-stage="1"] .m-marketing-board--problem,
.m-hero[data-active-stage="1"] .m-marketing-board--problem,
.m-hero[data-active-stage="2"] .m-marketing-board--operation,
.m-hero[data-active-stage="2"] .m-marketing-board--operation {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.m-hero[data-active-stage="2"] .m-marketing-board--problem,
.m-hero[data-active-stage="2"] .m-marketing-board--problem {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
}

.m-hero[data-active-stage="1"] .m-board-shell:not(.m-board-shell--operation) {
  opacity: 0.92;
}

.m-hero[data-active-stage="2"] .m-board-shell--operation {
  opacity: 0.54;
}

.m-board-shell {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 92px;
  border-radius: 16px;
  border: 1px solid rgba(238,58,57,0.26);
  background:
    radial-gradient(circle at 24% 18%, rgba(238,58,57,0.14), transparent 36%),
    linear-gradient(180deg, rgba(15, 6, 6, 0.92), rgba(0, 0, 0, 0.74));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 20px 60px rgba(0,0,0,0.38);
  overflow: hidden;
}

.m-board-shell--operation {
  border-color: rgba(74,222,128,0.36);
  background:
    radial-gradient(circle at 50% 22%, rgba(74,222,128,0.2), transparent 42%),
    linear-gradient(180deg, rgba(5, 24, 13, 0.92), rgba(0, 0, 0, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(74,222,128,0.08),
    inset 0 0 60px rgba(74,222,128,0.06),
    0 20px 60px rgba(0,0,0,0.38);
}

.m-board-shell--operation::before,
.m-board-shell--operation::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(74,222,128,0.18);
  border-radius: 13px;
  opacity: 0;
  transform: scaleX(0.96);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-board-shell--operation::after {
  inset: 26px;
  border-style: dashed;
  opacity: 0;
}

.m-hero[data-active-stage="2"] .m-board-shell--operation::before,
.m-hero[data-active-stage="2"] .m-board-shell--operation::after {
  opacity: 1;
  transform: scaleX(1);
}

.m-board-header {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.m-board-header span {
  color: rgba(255, 181, 177, 0.95);
  font: 800 0.66rem/1 var(--m-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.m-board-header strong {
  color: #fff;
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.m-board-header--operation {
  text-align: center;
  margin-bottom: 10px;
}

.m-board-header--operation span {
  color: var(--m-good);
}

.m-board-connectors {
  position: absolute;
  inset: 68px 18px 22px;
  z-index: 0;
  opacity: 0.62;
}

.m-board-connectors i {
  position: absolute;
  border-color: rgba(238,58,57,0.32);
  opacity: 0.55;
}

.m-hero[data-active-stage="1"] .m-board-connectors {
  opacity: 0;
}

.m-hero[data-active-stage="1"] .m-board-connectors i {
  animation: mBrokenConnector 2.8s steps(2, end) infinite;
}

.m-board-connectors i:nth-child(1) {
  left: 10%;
  right: 10%;
  top: 31%;
  border-top: 1px dashed rgba(238,58,57,0.32);
}

.m-board-connectors i:nth-child(2) {
  left: 10%;
  right: 10%;
  top: 65%;
  border-top: 1px dashed rgba(238,58,57,0.22);
  animation-delay: 0.5s;
}

.m-board-connectors i:nth-child(3) {
  top: 8%;
  bottom: 8%;
  left: 50%;
  border-left: 1px dashed rgba(238,58,57,0.26);
  animation-delay: 1s;
}

.m-board-connectors i:nth-child(4) {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 30%;
  border-top: 1px dashed rgba(238,58,57,0.18);
  transform: translateX(-50%) rotate(-24deg);
  transform-origin: 0 50%;
  animation-delay: 1.5s;
}

.m-board-grid {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 1 1 auto;
  align-content: center;
  gap: 8px;
}

.m-board-grid--problem {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.m-board-grid--operation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.m-board-card {
  position: relative;
  min-width: 0;
  border-radius: 11px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition:
    opacity 0.42s ease,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.m-board-card--problem {
  min-height: 74px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: 4px 11px;
  padding: 12px;
  border: 1px solid rgba(238,58,57,0.4);
  background: rgba(22, 7, 7, 0.92);
  box-shadow: 0 14px 32px rgba(0,0,0,0.34);
  overflow: visible;
}

.m-board-card--operation {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 11px 11px 11px 38px;
  border: 1px solid rgba(74,222,128,0.38);
  background: rgba(6, 32, 17, 0.86);
  box-shadow: 0 14px 30px rgba(0,0,0,0.26);
}

.m-hero[data-active-stage="1"] .m-board-card--problem {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.m-hero[data-active-stage="1"] .m-board-card--problem,
.m-hero[data-active-stage="2"] .m-board-card--operation,
.m-hero[data-active-stage="2"] .m-board-card--operation {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.m-hero[data-active-stage="1"] .m-board-card--problem {
  animation: mProblemCardWake 2.8s ease-in-out both;
}

.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(1) { animation-delay: 0.08s; transition-delay: 0.08s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(2) { animation-delay: 0.24s; transition-delay: 0.2s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(3) { animation-delay: 0.4s; transition-delay: 0.32s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(4) { animation-delay: 0.56s; transition-delay: 0.44s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(5) { animation-delay: 0.72s; transition-delay: 0.56s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(6) { animation-delay: 0.88s; transition-delay: 0.68s; }

.m-hero[data-active-stage="2"] .m-board-card--operation {
  opacity: 0.52;
}

.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(1) { transition-delay: 0.18s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(2) { transition-delay: 0.28s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(3) { transition-delay: 0.38s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(4) { transition-delay: 0.48s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(5) { transition-delay: 0.58s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(6) { transition-delay: 0.68s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(7) { transition-delay: 0.78s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(8) { transition-delay: 0.88s; }
.m-hero[data-active-stage="2"] .m-board-card--operation:nth-child(9) { transition-delay: 0.98s; }

.m-board-icon {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: rgba(255,188,184,1);
  background: rgba(238,58,57,0.2);
  font: 900 0.74rem/1 var(--m-mono);
}

.m-board-check {
  position: absolute;
  left: 10px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #00210c;
  background: var(--m-good);
  transform: translateY(-50%) scale(0.72);
  opacity: 0;
  box-shadow: 0 0 18px rgba(74,222,128,0.34);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-board-check::before {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.m-hero[data-active-stage="2"] .m-board-check {
  opacity: 0.14;
  transform: translateY(-50%) scale(0.72);
}

.m-hero[data-active-stage="2"] .m-board-check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.m-board-card strong {
  display: block;
  min-width: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-board-card--operation strong {
  font-size: 0.88rem;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.m-board-card small,
.m-board-card em {
  display: block;
  min-width: 0;
  color: rgba(255,182,178,0.92);
  font: 700 0.6rem/1.2 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-board-card--operation small {
  color: rgba(181,255,208,0.92);
  letter-spacing: 0.06em;
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-cost-token,
.m-activity-token {
  position: absolute;
  z-index: 3;
  right: 10px;
  top: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  font: 900 0.56rem/1 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px) scale(0.86);
}

.m-cost-token {
  color: rgba(255,171,167,0.96);
  border: 1px solid rgba(238,58,57,0.28);
  background: rgba(238,58,57,0.13);
  box-shadow: 0 8px 22px rgba(0,0,0,0.26);
}

.m-activity-token {
  top: auto;
  bottom: 8px;
  color: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
}

.m-hero[data-active-stage="1"] .m-cost-token {
  animation: mCostLeak 2.65s ease-in-out both;
}

.m-hero[data-active-stage="1"] .m-activity-token {
  animation: mActivityReturn 2.65s ease-in-out both;
}

.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(1) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(1) .m-activity-token { animation-delay: 0.12s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(2) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(2) .m-activity-token { animation-delay: 0.3s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(3) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(3) .m-activity-token { animation-delay: 0.48s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(4) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(4) .m-activity-token { animation-delay: 0.66s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(5) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(5) .m-activity-token { animation-delay: 0.84s; }
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(6) .m-cost-token,
.m-hero[data-active-stage="1"] .m-board-card--problem:nth-child(6) .m-activity-token { animation-delay: 1.02s; }

.m-board-output {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  margin-top: 0;
  padding: 11px 13px;
  border-radius: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-board-output span,
.m-board-output em {
  color: var(--m-dim);
  font: 800 0.58rem/1 var(--m-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
}

.m-board-output strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.m-board-output--problem {
  border: 1px solid rgba(238,58,57,0.28);
  background: rgba(15, 5, 5, 0.88);
}

.m-board-output--problem i {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(238,58,57,0.08), rgba(238,58,57,0.76), rgba(238,58,57,0.08));
}

.m-unknown-token {
  color: var(--m-bad) !important;
  text-shadow: 0 0 22px rgba(238,58,57,0.24);
}

.m-hero[data-active-stage="1"] .m-board-output--problem {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.m-board-output--operation {
  border: 1px solid rgba(74,222,128,0.32);
  background: rgba(2, 22, 10, 0.86);
}

.m-board-output--operation {
  justify-content: space-between;
}

.m-board-output--operation .m-sql-counter {
  position: relative;
  min-width: 70px;
  height: 1.35rem;
  color: var(--m-good);
}

.m-sql-counter b {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
}

.m-hero[data-active-stage="2"] .m-sql-counter b:nth-child(1) {
  animation: mSqlCount 1.7s ease both;
  animation-delay: 1.18s;
}

.m-hero[data-active-stage="2"] .m-sql-counter b:nth-child(2) {
  animation: mSqlCount 1.7s ease both;
  animation-delay: 1.78s;
}

.m-hero[data-active-stage="2"] .m-sql-counter b:nth-child(3) {
  animation: mSqlFinal 1.7s ease both;
  animation-delay: 2.38s;
}

.m-board-output--operation em {
  color: rgba(188,255,211,0.88);
}

.m-hero[data-active-stage="2"] .m-board-output--operation {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.32s;
}

.m-flow-lines {
  position: absolute;
  z-index: 1;
  inset: 78px 36px 88px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.m-flow-lines i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(74,222,128,0.08), rgba(74,222,128,0.72), rgba(74,222,128,0.08));
  transform-origin: 0 50%;
}

.m-flow-lines i:nth-child(1) { left: 8%; right: 8%; top: 31%; }
.m-flow-lines i:nth-child(2) { left: 8%; right: 8%; top: 63%; }
.m-flow-lines i:nth-child(3) { left: 50%; top: 8%; bottom: 8%; width: 1px; height: auto; background: linear-gradient(180deg, rgba(74,222,128,0.08), rgba(74,222,128,0.6), rgba(74,222,128,0.08)); }
.m-flow-lines i:nth-child(4) { left: 20%; width: 60%; top: 48%; transform: rotate(18deg); }

.m-hero[data-active-stage="2"] .m-flow-lines {
  opacity: 1;
  transition-delay: 0.98s;
}

.m-lead-packets {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.m-lead-packets span {
  position: absolute;
  left: 16%;
  top: 33%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-good);
  box-shadow: 0 0 18px rgba(74,222,128,0.58);
  opacity: 0;
}

.m-lead-packets span:nth-child(2) { top: 62%; animation-delay: 0.28s; }
.m-lead-packets span:nth-child(3) { top: 48%; animation-delay: 0.56s; }

.m-hero[data-active-stage="2"] .m-lead-packets span {
  animation: mLeadPacket 2.8s ease-in-out infinite;
  animation-delay: 1.05s;
}

.m-hero[data-active-stage="2"] .m-lead-packets span:nth-child(2) { animation-delay: 1.33s; }
.m-hero[data-active-stage="2"] .m-lead-packets span:nth-child(3) { animation-delay: 1.61s; }

.m-board-plus-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-board-plus-row span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 5px 8px;
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 999px;
  color: rgba(203,255,220,0.86);
  background: rgba(74,222,128,0.08);
  font: 800 0.48rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-hero[data-active-stage="2"] .m-board-plus-row {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.m-board-context {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 7px 10px 7px 40px;
  border: 1px solid rgba(74,222,128,0.32);
  border-radius: 999px;
  color: rgba(205,255,222,0.92);
  background: rgba(0,0,0,0.54);
  font: 800 0.48rem/1 var(--m-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-board-context i {
  position: absolute;
  left: -78px;
  top: 50%;
  width: 110px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.86));
}

.m-board-context i::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(74,222,128,0.95);
  border-right: 2px solid rgba(74,222,128,0.95);
  transform: translateY(-50%) rotate(45deg);
}

.m-website-chaos {
  --intro-y: -170px;
  position: absolute;
  inset: 14px 14px 158px;
  z-index: 1;
}

.m-chaos-lines,
.m-vendor-orbit,
.m-failure-tags,
.m-unify-layer,
.m-lead-context {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.m-chaos-lines { z-index: 0; }
.m-unify-layer { z-index: 1; }
.m-site-core { z-index: 2; }
.m-vendor-orbit { z-index: 3; }
.m-failure-tags { z-index: 4; }
.m-lead-context { z-index: 5; }

.m-chaos-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(238,58,57,0.7), rgba(238,58,57,0.04));
  opacity: 0.72;
  transition: opacity 0.5s ease, background 0.5s ease, width 0.5s ease;
}

.m-chaos-line--1 { transform: rotate(-138deg); width: 38%; }
.m-chaos-line--2 { transform: rotate(-35deg); width: 41%; }
.m-chaos-line--3 { transform: rotate(32deg); width: 42%; }
.m-chaos-line--4 { transform: rotate(143deg); width: 35%; }

.m-site-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(330px, 58%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(7, 8, 8, 0.92);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.65),
    0 0 0 1px rgba(238,58,57,0.12),
    0 0 44px rgba(238,58,57,0.13);
  overflow: hidden;
  transition: border-color 0.65s ease, box-shadow 0.65s ease, transform 0.65s ease, filter 0.65s ease;
  animation: mSiteStrain 4.8s ease-in-out infinite;
}

.m-site-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--m-line);
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.08em;
}

.m-site-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.m-site-bar em {
  min-width: 0;
  margin-left: 4px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-site-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10px;
  padding: 12px;
}

.m-site-boat {
  min-width: 0;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 48%, rgba(255,255,255,0.1), rgba(0,0,0,0.45));
  overflow: hidden;
}

.m-site-boat img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: contain;
  filter: saturate(0.8) brightness(0.9);
  transition: filter 0.65s ease;
}

.m-site-boat b {
  display: block;
  padding: 0 10px 10px;
  font-size: 0.7rem;
  line-height: 1.15;
}

.m-site-panel {
  min-width: 0;
}

.m-site-status {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(238,58,57,0.3);
  border-radius: 999px;
  color: rgba(255,150,146,0.95);
  background: rgba(238,58,57,0.11);
  font: 700 0.5rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.65s ease, border-color 0.65s ease, background 0.65s ease;
}

.m-site-panel h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.m-site-panel p {
  margin: 7px 0 0;
  color: var(--m-dim);
  font-size: 0.66rem;
  line-height: 1.32;
  transition: color 0.65s ease;
}

.m-site-form {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.m-site-form span,
.m-site-form button {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.m-site-form span:nth-child(2) {
  width: 72%;
}

.m-site-form button {
  width: 86%;
  height: 15px;
  color: transparent;
  background: rgba(238,58,57,0.34);
  transition: background 0.65s ease;
}

.m-vendor-node {
  --x: 0px;
  --y: 0px;
  --ix: 0px;
  --rot: 0deg;
  --fx: 0px;
  --fy: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  min-height: 68px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  gap: 3px 10px;
  padding: 10px 12px;
  border: 1px solid rgba(238,58,57,0.34);
  border-radius: 14px;
  background: rgba(22, 7, 7, 0.88);
  box-shadow: 0 14px 38px rgba(0,0,0,0.46);
  opacity: 0;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot));
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.65s ease,
    background 0.65s ease,
    opacity 0.65s ease,
    box-shadow 0.65s ease;
  animation: none;
}

.m-vendor-node--site { --x: -150px; --y: -104px; --ix: -108px; --rot: -8deg; --fx: -150px; --fy: -98px; }
.m-vendor-node--seo { --x: 150px; --y: -96px; --ix: 108px; --rot: 6deg; --fx: 150px; --fy: -98px; animation-delay: -1.1s; }
.m-vendor-node--ads { --x: -152px; --y: 112px; --ix: -72px; --rot: 7deg; --fx: -136px; --fy: 112px; animation-delay: -2.3s; }
.m-vendor-node--social { --x: 152px; --y: 104px; --ix: 72px; --rot: -7deg; --fx: 136px; --fy: 112px; animation-delay: -3.2s; }
.m-vendor-node--reviews { --x: 0px; --y: -128px; --ix: 0px; --rot: 3deg; --fx: 0px; --fy: -138px; animation-delay: -4.1s; }

.m-hero[data-active-stage="1"] .m-vendor-node {
  opacity: 0;
  transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.72);
  animation: mVendorIntro 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.m-hero[data-active-stage="1"] .m-vendor-node--site { animation-delay: 0.5s; }
.m-hero[data-active-stage="1"] .m-vendor-node--seo { animation-delay: 0.86s; }
.m-hero[data-active-stage="1"] .m-vendor-node--ads { animation-delay: 1.22s; }
.m-hero[data-active-stage="1"] .m-vendor-node--social { animation-delay: 1.58s; }
.m-hero[data-active-stage="1"] .m-vendor-node--reviews { animation-delay: 1.94s; }

.m-vendor-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: rgba(255, 155, 151, 0.95);
  background: rgba(238,58,57,0.14);
  transition: color 0.65s ease, background 0.65s ease;
}

.m-vendor-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.m-vendor-check {
  position: absolute;
  right: -9px;
  top: -9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #001c0b;
  background: var(--m-good);
  box-shadow: 0 0 22px rgba(74,222,128,0.42);
  opacity: 0;
  transform: scale(0.55) rotate(-16deg);
  transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-vendor-check::before {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.m-vendor-node strong,
.m-vendor-node small {
  display: block;
  min-width: 0;
}

.m-vendor-node strong {
  font-size: 0.86rem;
  line-height: 1.08;
}

.m-vendor-node small {
  color: rgba(255,150,146,0.86);
  font: 700 0.48rem/1.18 var(--m-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.65s ease;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-failure-tag {
  --tx: 0px;
  --ty: 0px;
  --tr: 0deg;
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 7px 10px;
  border: 1px solid rgba(238,58,57,0.34);
  border-radius: 999px;
  color: rgba(255,170,166,0.95);
  background: rgba(238,58,57,0.16);
  font: 800 0.55rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,0,0,0.38);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s ease, color 0.55s ease, background 0.55s ease;
  transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--tr));
  animation: none;
}

.m-failure-tag--1 { --tx: -68px; --ty: -116px; --tr: -8deg; }
.m-failure-tag--2 { --tx: 86px; --ty: -86px; --tr: 7deg; animation-delay: -0.8s; }
.m-failure-tag--3 { --tx: 56px; --ty: 108px; --tr: -6deg; animation-delay: -1.6s; }
.m-failure-tag--4 { --tx: -98px; --ty: 82px; --tr: 5deg; animation-delay: -2.4s; }

.m-hero[data-active-stage="1"] .m-failure-tag {
  opacity: 0;
  transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.78);
  animation: mFailureIntro 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.m-hero[data-active-stage="1"] .m-failure-tag--1 { animation-delay: 2.7s; }
.m-hero[data-active-stage="1"] .m-failure-tag--2 { animation-delay: 2.85s; }
.m-hero[data-active-stage="1"] .m-failure-tag--3 { animation-delay: 3s; }
.m-hero[data-active-stage="1"] .m-failure-tag--4 { animation-delay: 3.15s; }

.m-unify-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: min(430px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.74);
  text-align: center;
  border: 1px solid rgba(74,222,128,0.42);
  background:
    radial-gradient(circle at 50% 44%, rgba(74,222,128,0.18), transparent 48%),
    radial-gradient(circle at 50% 0%, rgba(74,222,128,0.19), rgba(0,0,0,0.72) 70%);
  box-shadow:
    inset 0 0 42px rgba(74,222,128,0.08),
    0 0 50px rgba(74,222,128,0.1);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-unify-layer::before,
.m-unify-layer::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(74,222,128,0.18);
  border-radius: inherit;
}

.m-unify-layer::after {
  inset: 38px;
  border-style: dashed;
  opacity: 0.72;
}

.m-unify-layer span {
  margin-bottom: 8px;
  color: var(--m-good);
  font: 800 0.68rem/1 var(--m-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.m-unify-layer strong {
  max-width: 216px;
  font-size: 1.58rem;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.m-lead-context {
  left: auto;
  top: auto;
  right: 18px;
  bottom: -4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
  padding: 8px 10px 8px 42px;
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 999px;
  color: rgba(199,255,217,0.92);
  background: rgba(3,18,9,0.84);
  box-shadow: 0 14px 34px rgba(0,0,0,0.32), 0 0 24px rgba(74,222,128,0.1);
  font: 800 0.52rem/1 var(--m-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-lead-context i {
  position: absolute;
  left: -82px;
  top: 50%;
  width: 116px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.85));
}

.m-lead-context i::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(74,222,128,0.95);
  border-right: 2px solid rgba(74,222,128,0.95);
  transform: translateY(-50%) rotate(45deg);
}

.m-hero[data-active-stage="1"] .m-site-core {
  border-color: rgba(74,222,128,0.34);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.65),
    0 0 0 1px rgba(74,222,128,0.14),
    0 0 48px rgba(74,222,128,0.16);
  animation: none;
}

.m-hero[data-active-stage="1"] .m-chaos-line {
  background: linear-gradient(90deg, rgba(74,222,128,0.62), rgba(74,222,128,0.04));
  width: 34%;
  opacity: 0.28;
}

.m-hero[data-active-stage="1"] .m-site-boat img {
  filter: saturate(1.08) brightness(1.04);
}

.m-hero[data-active-stage="1"] .m-site-status {
  color: rgba(160,255,194,0.95);
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.1);
  font-size: 0;
}

.m-hero[data-active-stage="1"] .m-site-status::before {
  content: none;
}

.m-hero[data-active-stage="1"] .m-site-status::after {
  content: attr(data-good-status);
  font: 700 0.5rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-hero[data-active-stage="1"] .m-site-panel p {
  color: var(--m-mid);
}

.m-hero[data-active-stage="1"] .m-site-form button {
  background: rgba(74,222,128,0.42);
}

.m-hero[data-active-stage="1"] .m-vendor-node {
  opacity: 1;
  border-color: rgba(74,222,128,0.3);
  background: rgba(6, 25, 14, 0.86);
  animation: mVendorDrift 5.8s ease-in-out infinite;
}

.m-hero[data-active-stage="1"] .m-vendor-node--site { transition-delay: 0.16s; }
.m-hero[data-active-stage="1"] .m-vendor-node--seo { transition-delay: 0.28s; }
.m-hero[data-active-stage="1"] .m-vendor-node--ads { transition-delay: 0.4s; }
.m-hero[data-active-stage="1"] .m-vendor-node--social { transition-delay: 0.52s; }
.m-hero[data-active-stage="1"] .m-vendor-node--reviews { transition-delay: 0.64s; }

.m-hero[data-active-stage="1"] .m-vendor-icon {
  color: rgba(157,255,193,0.95);
  background: rgba(74,222,128,0.13);
}

.m-hero[data-active-stage="1"] .m-vendor-node small {
  color: rgba(157,255,193,0.85);
  font-size: 0;
}

.m-hero[data-active-stage="1"] .m-vendor-node small::after {
  content: attr(data-good);
  font: 700 0.52rem/1 var(--m-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.m-hero[data-active-stage="1"] .m-vendor-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.m-hero[data-active-stage="1"] .m-vendor-node--site .m-vendor-check { transition-delay: 0.34s; }
.m-hero[data-active-stage="1"] .m-vendor-node--seo .m-vendor-check { transition-delay: 0.46s; }
.m-hero[data-active-stage="1"] .m-vendor-node--ads .m-vendor-check { transition-delay: 0.58s; }
.m-hero[data-active-stage="1"] .m-vendor-node--social .m-vendor-check { transition-delay: 0.7s; }
.m-hero[data-active-stage="1"] .m-vendor-node--reviews .m-vendor-check { transition-delay: 0.82s; }

.m-hero[data-active-stage="1"] .m-site-core {
  opacity: 0.26;
  transform: translate(-50%, -50%) scale(0.92);
  filter: blur(1px) saturate(0.8);
}

.m-hero[data-active-stage="1"] .m-vendor-node {
  transform: translate(-50%, -50%) translate(var(--fx), var(--fy)) rotate(0deg);
  animation: none;
  box-shadow: 0 16px 42px rgba(0,0,0,0.42), 0 0 26px rgba(74,222,128,0.08);
}

.m-hero[data-active-stage="1"] .m-failure-tag {
  opacity: 0;
  animation: none;
  transform: translate(-50%, -50%) scale(0.72);
}

.m-hero[data-active-stage="1"] .m-unify-layer {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.18s;
}

.m-hero[data-active-stage="1"] .m-lead-context {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.84s;
}

.m-proof-metrics {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 136px;
}

.m-proof-metric {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 5px 18px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--m-line);
  background: rgba(0,0,0,0.68);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.55s ease;
}

.m-proof-metric.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(34,211,238,0.35);
}

.m-proof-metric--good.is-active {
  border-color: rgba(74,222,128,0.42);
  background: rgba(74,222,128,0.09);
}

.m-proof-metric--good {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
}

.m-proof-metric.m-proof-metric--good strong {
  max-width: none;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.m-proof-metric.m-proof-metric--good small {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.84rem, 1.1vw, 0.98rem);
}

.m-proof-metric--statement {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
}

.m-proof-metric.m-proof-metric--statement strong {
  max-width: none;
  font-size: clamp(1.44rem, 2.35vw, 1.9rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.m-proof-metric.m-proof-metric--statement small {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
}

.m-proof-metric span {
  grid-column: 1 / -1;
  color: var(--m-dim);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.m-proof-metric strong {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.04em;
}

.m-proof-metric small {
  color: var(--m-mid);
  font-size: 0.92rem;
}

.m-hero-next {
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translate(-50%, 14px);
  color: var(--m-good);
  font: 700 0.68rem/1 var(--m-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.m-hero[data-active-stage="1"] .m-hero-next {
  opacity: 0;
  transform: translate(-50%, 14px);
}

/* Shared sections */
.m-section-inner,
.m-offer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.m-proof-section {
  padding: 130px 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 211, 238, 0.08), transparent 34%),
    #000;
}

.m-section-label {
  display: inline-flex;
  color: var(--m-good);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.m-proof-section h2,
.m-offer h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.m-section-sub,
.m-offer p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--m-mid);
  font-size: 1.08rem;
  line-height: 1.65;
}

.m-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.m-proof-card,
.m-offer-cards > div {
  min-width: 0;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}

.m-proof-card span,
.m-offer-cards span {
  display: block;
  color: var(--m-dim);
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.m-proof-card strong,
.m-offer-cards strong {
  display: block;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.m-proof-card p,
.m-offer-cards p {
  margin: 15px 0 0;
  color: var(--m-mid);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Proof showcase — Premier Watersports */
.m-showcase {
  position: relative;
  padding: 120px 0 130px;
  background:
    radial-gradient(circle at 80% 8%, rgba(74, 222, 128, 0.08), transparent 38%),
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.06), transparent 34%),
    #000;
}

.m-good-text { color: var(--m-good); font-weight: 800; }

.m-showcase-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 58px auto 12px;
  min-height: 360px;
  perspective: 1400px;
}

.m-showcase-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.9s ease;
  filter: blur(20px);
}
.m-showcase-stage.is-loaded .m-showcase-glow { opacity: 1; }

.m-device {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--m-line-strong);
  background: #0a0a0a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  flex: none;
}

.m-device--desktop {
  width: min(500px, 46vw);
  z-index: 1;
  padding: 0;
  overflow: hidden;
}
.m-device--tablet {
  width: 184px;
  z-index: 2;
  margin-left: -60px;
  overflow: hidden;
  transform: rotateY(-15deg) translateY(-4px);
}
.m-device--phone {
  width: 116px;
  z-index: 3;
  margin-right: -50px;
  border-radius: 22px;
  overflow: hidden;
  transform: rotateY(15deg) translateY(30px);
}

.m-device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--m-line);
  background: rgba(255, 255, 255, 0.03);
}
.m-device-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.m-device-bar em {
  margin-left: 10px;
  font: 600 0.62rem/1 var(--m-mono);
  color: var(--m-dim);
  font-style: normal;
}

.m-device-screen {
  position: relative;
  overflow: hidden;
}
.m-device--desktop .m-device-screen { aspect-ratio: 16 / 10; }
.m-device--tablet .m-device-screen { aspect-ratio: 3 / 4; }
.m-device--phone .m-device-screen { aspect-ratio: 100 / 188; }

/* real Premier screenshot fills the screen; only the image blurs in the
   "before" load state, so the load-time badge stays crisp on top */
.m-device-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: blur(5px) saturate(0.55);
  opacity: 0.68;
  transition: filter 0.85s ease, opacity 0.85s ease;
}
.m-showcase-stage.is-loaded .m-device-shot {
  filter: none;
  opacity: 1;
}

.m-device-load {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(238, 58, 57, 0.4);
  background: rgba(20, 6, 6, 0.92);
  transition: opacity 0.5s ease, border-color 0.5s ease;
}
.m-device-load b { font: 800 1.05rem/1 var(--m-mono); color: var(--m-bad); }
.m-device-load i { font: 600 0.54rem/1 var(--m-mono); color: var(--m-dim); font-style: normal; }
.m-showcase-stage.is-loaded .m-device-load {
  border-color: rgba(74, 222, 128, 0.45);
}
.m-showcase-stage.is-loaded .m-device-load b { color: var(--m-good); }

.m-device-score {
  position: absolute;
  right: 12px; bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--m-good);
  background: rgba(74, 222, 128, 0.12);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.m-showcase-stage.is-loaded .m-device-score { opacity: 1; transform: scale(1); }
.m-device-score b { font: 800 1.1rem/1 var(--m-mono); color: var(--m-good); }
.m-device-score i { font: 600 0.54rem/1 var(--m-mono); color: rgba(145,255,184,0.8); font-style: normal; }

.m-showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 46px auto 0;
}
.m-showcase-stat {
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}
.m-showcase-stat span {
  display: block;
  color: var(--m-dim);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.m-showcase-stat strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}
.m-showcase-stat strong em { color: var(--m-good); font-style: normal; font-weight: 400; }
.m-showcase-stat p {
  margin: 14px 0 0;
  color: var(--m-mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

.m-showcase-cta-row {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.m-showcase-cta-lead {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}
.m-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 999px;
  border: 1px solid var(--m-good);
  background: var(--m-good);
  color: #04150b;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  box-shadow: 0 0 36px rgba(74, 222, 128, 0.28), 0 6px 24px rgba(74, 222, 128, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.m-showcase-cta:hover {
  background: #6ee79a;
  transform: translateY(-2px);
  box-shadow: 0 0 54px rgba(74, 222, 128, 0.42), 0 8px 30px rgba(74, 222, 128, 0.26);
}

@media (max-width: 900px) {
  .m-showcase-stats { grid-template-columns: 1fr; }
  .m-device--desktop { width: min(440px, 70vw); }
  .m-device--tablet { width: 160px; margin-left: -40px; }
  .m-device--phone { width: 96px; margin-right: -36px; }
}
@media (max-width: 560px) {
  .m-showcase-stage { min-height: 280px; transform: scale(0.96); }
  .m-device--tablet { display: none; }
  .m-showcase-cta { font-size: 0.95rem; padding: 15px 28px; }
}

/* Act chassis (.de-act system) lives in css/de-act.css — shared with sales */

/* Visual primitives */
.m-window,
.m-listing-card,
.m-ad-dash,
.m-late-report,
.m-scoreboard,
.m-capture-grid,
.m-dam-proof,
.m-channel-hub,
.m-article-card,
.m-goal-board,
.m-team-grid,
.m-funnel-lanes,
.m-review-system,
.m-handoff {
  width: min(100%, 680px);
}

.m-window,
.m-ad-dash,
.m-late-report,
.m-scoreboard,
.m-article-card {
  border: 1px solid var(--m-line-strong);
  border-radius: 16px;
  background: var(--m-panel);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  overflow: hidden;
}

.m-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--m-line);
  color: var(--m-dim);
  font: 600 0.68rem/1 var(--m-mono);
}

.m-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.m-window-bar em {
  margin-left: 8px;
  font-style: normal;
}

.m-ticket-list {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.m-ticket {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(238,58,57,0.18);
  border-radius: 12px;
  background: rgba(238,58,57,0.07);
}

.m-ticket[data-old-ticket] {
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-ticket[data-old-ticket].is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-ticket b,
.m-chat-card span,
.m-channel-card b,
.m-goal-board b,
.m-team-grid b,
.m-funnel-lanes p,
.m-handoff b,
.m-handoff strong {
  min-width: 0;
}

.m-ticket span,
.m-bad-tags span,
.m-good-tags span,
.m-chat-card span,
.m-channel-card span,
.m-goal-board span,
.m-team-grid span,
.m-funnel-lanes span,
.m-review-card span,
.m-handoff-profile span,
.m-handoff-sales span {
  color: var(--m-dim);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-listing-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--m-line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.m-listing-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), rgba(0,0,0,0.4));
}

.m-listing-card h3 {
  margin: 10px 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.m-listing-card p {
  margin: 0;
  color: var(--m-mid);
  line-height: 1.55;
}

.m-bad-tags,
.m-good-tags,
.m-article-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.m-bad-tags span,
.m-good-tags span,
.m-article-modules span {
  padding: 7px 9px;
  border-radius: 999px;
}

.m-bad-tags span {
  color: rgba(255,150,146,0.92);
  border: 1px solid rgba(238,58,57,0.24);
  background: rgba(238,58,57,0.08);
}

/* Act 1 — old-way beat visuals */
.m-old-queue-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.95fr);
  gap: 14px;
  width: min(100%, 680px);
  align-items: stretch;
}

.m-old-listing-preview {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--m-line-strong);
  border-radius: 16px;
  background: var(--m-panel);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  transition: border-color 0.5s ease, filter 0.5s ease;
}

.m-old-listing-preview.is-stale {
  border-color: rgba(238,58,57,0.42);
  filter: saturate(0.72);
}

.m-old-listing-stamp {
  color: var(--m-dim);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.45s ease;
}

.m-old-listing-stamp.is-red {
  color: var(--m-bad);
}

.m-old-stale-buyer {
  position: absolute;
  top: 52px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(255,255,255,0.35);
}

.m-old-stale-buyer.is-in {
  opacity: 1;
  transform: scale(1);
}

.m-old-stale-buyer.is-out {
  opacity: 0;
  transform: translate(28px, -18px) scale(0.5);
}

.m-ticket em[data-old-ticket-status] {
  display: block;
  margin-top: 6px;
  color: var(--m-dim);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.m-ticket.is-in em[data-old-ticket-status] {
  opacity: 1;
}

.m-ticket.is-stamped em[data-old-ticket-status] {
  color: rgba(255,150,146,0.95);
}

.m-old-listing-preview img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(0,0,0,0.45));
}

.m-old-listing-preview h3 {
  margin: 8px 0 6px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.m-old-listing-preview p {
  margin: 0;
  color: var(--m-mid);
  font-size: 0.82rem;
  line-height: 1.45;
}

.m-old-queue-board {
  align-self: stretch;
}

/* Beat 1 morph: ready boat → stamped QUEUED, days tick up, ETAs recede */
.m-old-queue-scene {
  position: relative;
}

.m-old-listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.m-old-ready {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.12);
  color: var(--m-good);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.m-old-ready.is-stuck {
  border-color: rgba(238,58,57,0.42);
  background: rgba(238,58,57,0.12);
  color: rgba(255,150,146,0.95);
}

.m-old-queue-gate {
  position: absolute;
  top: 46%;
  left: 0;
  width: calc(50% - 7px);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: translateY(-18px) rotate(-9deg) scale(1.5);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-old-queue-gate span {
  padding: 8px 18px;
  border: 2px solid var(--m-bad);
  border-radius: 8px;
  color: var(--m-bad);
  background: rgba(8,2,2,0.78);
  font: 800 1.05rem/1 var(--m-mono);
  letter-spacing: 0.24em;
  box-shadow: 0 0 0 4px rgba(238,58,57,0.12);
}

.m-old-queue-gate.is-down {
  opacity: 1;
  transform: translateY(0) rotate(-9deg) scale(1);
}

.m-ticket em[data-old-ticket-status].is-pushed {
  color: var(--m-bad);
  animation: m-old-eta-bump 0.4s ease;
}

@keyframes m-old-eta-bump {
  40% { transform: translateX(6px); opacity: 0.4; }
}

.m-old-speed-scene {
  position: relative;
  width: min(100%, 680px);
  padding-top: 34px;
}

.m-old-speed-scene.is-fast-loaded .m-old-speed-path--fast {
  border-top-color: rgba(74,222,128,0.44);
  opacity: 1;
}

.m-old-speed-scene.is-buyers-leaving .m-old-speed-path--slow {
  border-top-color: rgba(238,58,57,0.5);
  opacity: 1;
  animation: m-old-speed-path-warn 1.2s ease-in-out infinite;
}

@keyframes m-old-speed-path-warn {
  50% { opacity: 0.28; }
}

.m-old-speed-buyers {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  min-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  z-index: 5;
}

.m-old-buyer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, background 0.45s ease;
  will-change: transform;
}

.m-old-buyer-dot.is-green {
  background: var(--m-good);
  box-shadow: 0 0 10px rgba(74,222,128,0.45);
}

.m-old-buyer-dot.is-lost {
  background: var(--m-bad);
  opacity: 0.22;
  transform: scale(0.55);
}

.m-old-buyer-dot.is-stranded {
  background: rgba(255,255,255,0.25);
  opacity: 0.45;
}

.m-old-speed-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.m-old-speed-path {
  position: absolute;
  top: -8px;
  width: 38%;
  height: 22px;
  border-top: 1px dashed rgba(255,255,255,0.14);
  opacity: 0.55;
  pointer-events: none;
}

.m-old-speed-path--slow {
  left: 8%;
  transform: skewX(-12deg);
}

.m-old-speed-path--fast {
  right: 8%;
  transform: skewX(12deg);
}

.m-old-speed-site {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 10px 54px 10px 10px;
  border-radius: 14px;
  border: 1px solid var(--m-line-strong);
  background: var(--m-panel);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  min-height: 200px;
  position: relative;
}

.m-old-speed-site--slow {
  border-color: rgba(238,58,57,0.38);
  background: linear-gradient(180deg, rgba(238,58,57,0.09), rgba(0,0,0,0.25));
}

.m-old-speed-site--fast {
  border-color: rgba(74,222,128,0.35);
  background: linear-gradient(180deg, rgba(74,222,128,0.08), rgba(0,0,0,0.25));
}

.m-old-speed-site.is-flash {
  animation: m-old-speed-flash 0.55s ease;
}

@keyframes m-old-speed-flash {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 0 1px rgba(74,222,128,0.5), 0 0 36px rgba(74,222,128,0.28); }
}

.m-old-speed-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--m-dim);
  font: 600 0.56rem/1 var(--m-mono);
}

.m-old-speed-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.m-old-speed-chrome em {
  margin-left: 4px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.m-old-speed-wire {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.02);
  min-height: 88px;
  overflow: hidden;
}

.m-old-speed-wire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 35%, rgba(255,255,255,0.08) 50%, transparent 65% 100%);
  transform: translateX(-120%);
  animation: m-old-wire-scan 1.7s ease-in-out infinite;
}

.m-old-speed-site--fast.is-flash .m-old-speed-wire::before,
.m-old-speed-site--fast.is-loaded .m-old-speed-wire::before {
  animation: none;
  opacity: 0;
}

@keyframes m-old-wire-scan {
  100% { transform: translateX(120%); }
}

.m-old-speed-wire.is-blur {
  filter: blur(1.2px);
  opacity: 0.78;
}

.m-old-speed-hero-block {
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}

.m-old-speed-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.m-old-speed-line--short {
  width: 62%;
}

.m-old-speed-cta {
  height: 14px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.m-old-speed-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.m-old-speed-meta strong {
  font: 800 clamp(1.2rem, 2.4vw, 1.65rem)/1 var(--m-mono);
  letter-spacing: -0.04em;
}

.m-old-speed-site--slow .m-old-speed-meta strong {
  color: var(--m-bad);
}

.m-old-speed-site--fast .m-old-speed-meta strong {
  color: var(--m-good);
}

.m-old-speed-site--fast.is-loaded .m-old-speed-hero-block,
.m-old-speed-site--fast.is-loaded .m-old-speed-line,
.m-old-speed-site--fast.is-loaded .m-old-speed-cta {
  background: rgba(74,222,128,0.16);
}

.m-old-speed-meta span {
  color: var(--m-dim);
  font: 700 0.56rem/1.2 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

.m-old-speed-zone {
  position: absolute;
  top: 44px;
  right: 10px;
  bottom: 12px;
  width: 34px;
  min-height: 0;
  border-top: 0;
  border-left: 1px dashed rgba(255,255,255,0.08);
  pointer-events: none;
}

.m-old-speed-site--slow.is-abandoned .m-old-speed-zone {
  border-left-color: rgba(238,58,57,0.28);
}

.m-old-speed-site--fast.is-loaded .m-old-speed-zone {
  border-left-color: rgba(74,222,128,0.28);
}

.m-old-form-scene {
  display: grid;
  gap: 10px;
  width: min(100%, 520px);
}

.m-old-intent-packet {
  padding: 10px 12px;
  border: 1px solid rgba(74,222,128,0.28);
  border-radius: 12px;
  background: rgba(74,222,128,0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-old-intent-packet.is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-old-intent-packet.is-press {
  transform: translateY(14px) scale(0.97);
  border-color: rgba(238,58,57,0.42);
  background: rgba(238,58,57,0.08);
  filter: saturate(0.45) brightness(0.82);
}

.m-old-intent-packet.is-press span {
  color: rgba(255,150,146,0.9);
}

.m-old-intent-packet span {
  display: block;
  color: var(--m-good);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.m-old-intent-packet strong {
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 650;
}

.m-old-intent-lost {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  min-height: 28px;
}

.m-old-intent-lost span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(238,58,57,0.32);
  background: rgba(238,58,57,0.1);
  color: rgba(255,150,146,0.95);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-48px) rotate(-7deg);
  transition: opacity 0.4s ease, transform 0.62s cubic-bezier(0.34, 1.32, 0.64, 1);
}

.m-old-intent-lost span.is-out {
  opacity: 1;
  transform: translateY(0) rotate(-3deg);
}

.m-old-form-card {
  padding: 16px;
  border: 1px solid rgba(238,58,57,0.28);
  border-radius: 16px;
  background: var(--m-panel);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.m-old-form-card.is-reject {
  border-color: rgba(238,58,57,0.5);
  box-shadow: 0 0 0 1px rgba(238,58,57,0.22), 0 24px 70px rgba(0,0,0,0.55);
}

.m-old-form-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--m-dim);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-old-form-fields {
  display: grid;
  gap: 8px;
}

.m-old-form-field {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--m-line);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}

.m-old-form-field.is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-old-form-field span {
  color: var(--m-dim);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-old-form-field input {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.35);
  font: 600 0.82rem/1.2 var(--m-font);
  padding: 0;
}

.m-old-form-field.is-error {
  border-color: rgba(238,58,57,0.45);
  background: rgba(238,58,57,0.08);
}

.m-old-form-field b {
  display: none;
}

.m-old-form-field.is-error b {
  display: block;
  color: var(--m-bad);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-old-form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font: 700 0.78rem/1 var(--m-font);
  cursor: default;
  transition: background 0.35s ease, transform 0.2s ease;
}

.m-old-form-submit.is-shake {
  animation: m-old-form-shake 0.42s ease-in-out;
  background: rgba(238,58,57,0.35);
}

@keyframes m-old-form-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ===== Beat 3 — vendor queue dissolves → site generates ===== */
.m-gen-scene {
  position: relative;
  width: min(100%, 680px);
  display: grid;
  gap: 16px;
}

.m-gen-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.m-gen-tickets,
.m-gen-inputs {
  display: grid;
  gap: 7px;
}

.m-gen-tickets span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 9px;
  border: 1px solid rgba(238,58,57,0.22);
  background: rgba(238,58,57,0.07);
  color: var(--m-mid);
  font: 600 0.72rem/1.15 var(--m-font);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.m-gen-tickets span em {
  flex: 0 0 auto;
  font-style: normal;
  color: rgba(255,150,146,0.9);
  font: 700 0.48rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.m-gen-tickets span.is-dissolve {
  opacity: 0;
  transform: translateX(-14px) scale(0.9);
  filter: blur(3px);
}

.m-gen-inputs span {
  padding: 8px 11px;
  border-radius: 9px;
  border: 1px solid rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.08);
  color: var(--m-good);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-gen-inputs span.is-in {
  opacity: 1;
  transform: translateX(0);
}

.m-gen-arrow {
  color: var(--m-good);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.m-gen-arrow.is-in {
  opacity: 1;
}

.m-gen-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.m-gen-page {
  padding: 16px 10px;
  border: 1px solid var(--m-line-strong);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  color: #fff;
  font: 700 0.74rem/1 var(--m-font);
  text-align: center;
  opacity: 0;
  transform: translateY(14px) scale(0.88);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.m-gen-page.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.m-gen-page--home {
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.1);
  color: var(--m-good);
}

.m-gen-speed {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.m-gen-bar {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 10px;
  align-items: center;
}

.m-gen-bar > span {
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-gen-bar i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.m-gen-bar i b {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
}

.m-gen-bar--vendor i b {
  background: var(--m-bad);
  transition: width 2.6s linear;
}

.m-gen-bar--de i b {
  background: var(--m-good);
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-gen-bar em {
  font-style: normal;
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.05em;
}

.m-gen-bar--vendor em { color: rgba(255,150,146,0.9); }
.m-gen-bar--de em { color: var(--m-good); }

/* ===== Beat 4 — stale listing grows a sales spine ===== */
.m-spine-scene {
  width: min(100%, 660px);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px;
  align-items: stretch;
}

.m-spine-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 24px 0;
}

.m-spine-rail::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  background: linear-gradient(180deg, var(--m-good), rgba(74,222,128,0.2));
  transition: transform 0.6s ease;
}

.m-spine-rail.is-grown::before {
  transform: translateX(-50%) scaleY(1);
}

.m-spine-rail i {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--m-panel-2);
  border: 1px solid var(--m-line-strong);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.m-spine-rail i.is-lit {
  background: var(--m-good);
  border-color: var(--m-good);
  box-shadow: 0 0 12px var(--m-good);
  transform: scale(1.3);
}

.m-spine-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--m-line-strong);
  border-left: 2px solid rgba(238,58,57,0.32);
  border-radius: 16px;
  background: var(--m-panel);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  filter: saturate(0.7);
  transition: filter 0.6s ease, border-left-color 0.5s ease;
}

.m-spine-card.is-live {
  filter: none;
  border-left-color: var(--m-good);
}

.m-spine-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.m-spine-stamp {
  flex: 0 0 auto;
  color: var(--m-dim);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.m-spine-stamp.is-live { color: var(--m-good); }

.m-spine-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.m-spine-body img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(0,0,0,0.45));
}

.m-spine-content {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.m-spine-content h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.12;
  transition: opacity 0.35s ease;
}

[data-spine-add] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-spine-add].is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-spine-copy {
  margin: 0;
  color: var(--m-mid);
  font-size: 0.82rem;
  line-height: 1.5;
}

.m-spine-fin {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.m-spine-fin b {
  color: var(--m-good);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.m-spine-fin b i {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--m-mid);
}

.m-spine-fin span {
  color: var(--m-dim);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-spine-faq span {
  display: block;
  color: var(--m-good);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.m-spine-faq em {
  font-style: normal;
  color: var(--m-mid);
  font-size: 0.78rem;
}

.m-spine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.m-spine-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.03);
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.32;
  transition: opacity 0.4s ease, color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.m-spine-tags span.is-lit {
  opacity: 1;
  color: var(--m-good);
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.1);
}

/* ===== Beat 5 — same traffic, nets catch, 16 → 636 ===== */
.m-capture-scene {
  width: min(100%, 620px);
  display: grid;
  gap: 18px;
  justify-items: center;
}

.m-capture-lane {
  position: relative;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.m-capture-lane::after {
  content: 'same traffic in →';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--m-dim);
  font: 700 0.5rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.m-capture-dot {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: m-capture-flow 2.8s linear infinite;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.m-capture-dot.is-caught {
  background: var(--m-good);
  box-shadow: 0 0 9px var(--m-good);
}

@keyframes m-capture-flow {
  0% { left: -12px; opacity: 0; }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.m-capture-nets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.m-capture-net {
  padding: 13px 10px;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed var(--m-line-strong);
  background: rgba(255,255,255,0.02);
  color: var(--m-dim);
  font: 700 0.62rem/1.2 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.m-capture-net.is-on {
  border-style: solid;
  border-color: rgba(74,222,128,0.45);
  background: rgba(74,222,128,0.1);
  color: var(--m-good);
  box-shadow: 0 0 20px rgba(74,222,128,0.15);
  transform: translateY(-2px);
}

.m-capture-tray {
  width: 100%;
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--m-line-strong);
  background: linear-gradient(180deg, rgba(74,222,128,0.06), rgba(255,255,255,0.018));
  transition: box-shadow 0.4s ease;
}

.m-capture-tray.is-spiking {
  box-shadow: 0 0 40px rgba(74,222,128,0.18);
}

.m-capture-tray .m-mono {
  color: var(--m-dim);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-capture-tray strong {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--m-good);
  text-shadow: 0 0 40px rgba(74,222,128,0.25);
  transition: transform 0.3s ease;
}

.m-capture-tray.is-spiking strong {
  transform: scale(1.06);
}

.m-old-sleep-scene {
  display: grid;
  gap: 10px;
  width: min(100%, 560px);
}

.m-old-sleep-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.m-old-sleep-milestone {
  padding: 8px 6px;
  border: 1px solid var(--m-line);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--m-dim);
  font: 700 0.5rem/1.25 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.45;
  transition: opacity 0.45s ease, border-color 0.45s ease, color 0.45s ease, background 0.45s ease;
}

.m-old-sleep-milestone.is-active {
  opacity: 1;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.m-old-sleep-milestone.is-night.is-active {
  border-color: rgba(238,58,57,0.38);
  background: rgba(238,58,57,0.1);
  color: rgba(255,170,166,0.98);
}

.m-old-sleep-activity {
  position: relative;
  min-height: 34px;
  border: 1px dashed rgba(74,222,128,0.22);
  border-radius: 12px;
  background: rgba(74,222,128,0.04);
  overflow: hidden;
}

.m-old-sleep-activity::before {
  content: 'buyers still active';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(150,255,188,0.42);
  font: 700 0.52rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-old-activity-dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-good);
  opacity: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(74,222,128,0.4);
  transition: opacity 0.35s ease;
}

.m-old-activity-dot[data-channel="search"] { top: 28%; animation-duration: 2.1s; }
.m-old-activity-dot[data-channel="reviews"] { top: 52%; animation-duration: 2.6s; }
.m-old-activity-dot[data-channel="inventory"] { top: 74%; animation-duration: 2.35s; }

.m-old-activity-dot.is-run {
  opacity: 1;
  animation: m-old-activity-run 2.4s linear infinite;
}

@keyframes m-old-activity-run {
  0% { left: 4%; }
  100% { left: 92%; }
}

.m-old-sleep-tasks {
  display: grid;
  gap: 8px;
}

.m-old-sleep-task {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--m-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-old-sleep-task.is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-old-sleep-task b {
  font-size: 0.88rem;
}

.m-old-task-badge {
  color: rgba(255,150,146,0.92);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(238,58,57,0.28);
  background: rgba(238,58,57,0.08);
}

.m-old-search-scene {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
}

.m-old-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  background: var(--m-panel);
}

.m-old-search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.m-old-search-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  right: -5px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.m-old-search-query {
  color: #fff;
  font: 600 0.9rem/1.3 var(--m-font);
  transition: opacity 0.35s ease;
}

.m-old-search-query.is-fade {
  opacity: 0.25;
}

.m-old-search-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m-old-search-result {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--m-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  opacity: 0.55;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.m-old-search-result.is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-old-search-result.is-picked {
  border-color: rgba(238,58,57,0.45);
  background: rgba(238,58,57,0.12);
  box-shadow: 0 0 0 1px rgba(238,58,57,0.2), 0 0 24px rgba(238,58,57,0.15);
}

.m-old-search-result.is-hesitate {
  border-color: rgba(255,255,255,0.2);
  opacity: 0.75;
}

.m-old-search-cursor {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.m-old-search-cursor.is-on {
  opacity: 1;
}

.m-old-search-cursor.is-tap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: m-old-cursor-tap 0.35s ease;
}

@keyframes m-old-cursor-tap {
  from { transform: scale(0.6); opacity: 1; }
  to { transform: scale(1.4); opacity: 0; }
}

.m-old-search-lost {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--m-bad);
  opacity: 0;
  box-shadow: 0 0 12px rgba(238,58,57,0.5);
  transition: opacity 0.4s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-old-search-lost.is-run {
  opacity: 1;
  transform: translate(40px, -28px);
}

.m-old-search-result strong {
  display: block;
  font-size: 1rem;
}

.m-old-search-result p {
  margin: 6px 0 0;
  color: var(--m-mid);
  font-size: 0.78rem;
  line-height: 1.4;
}

.m-old-unify-scene {
  position: relative;
  width: min(100%, 620px);
  min-height: 300px;
}

.m-old-unify-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 72%;
  z-index: 1;
  pointer-events: none;
}

.m-old-unify-lines line {
  stroke: rgba(74,222,128,0.35);
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.m-old-unify-lines line.is-in {
  opacity: 1;
}

.m-old-unify-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.m-old-unify-label {
  position: absolute;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(238,58,57,0.38);
  background: rgba(238,58,57,0.1);
  color: rgba(255,150,146,0.95);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  transition: border-color 0.45s ease, background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}

.m-old-unify-label[data-pos="top"] { top: 2%; left: 50%; transform: translateX(-50%); }
.m-old-unify-label[data-pos="right-top"] { top: 16%; right: 2%; }
.m-old-unify-label[data-pos="right"] { top: 42%; right: 0; }
.m-old-unify-label[data-pos="right-bottom"] { bottom: 28%; right: 2%; }
.m-old-unify-label[data-pos="bottom"] { bottom: 14%; left: 50%; transform: translateX(-50%); }
.m-old-unify-label[data-pos="left-bottom"] { bottom: 28%; left: 2%; }
.m-old-unify-label[data-pos="left"] { top: 42%; left: 0; }

.m-old-unify-label.is-linked {
  border-color: rgba(74,222,128,0.45);
  background: rgba(74,222,128,0.12);
  color: var(--m-good);
  box-shadow: 0 0 16px rgba(74,222,128,0.2);
}

.m-old-unify-label.is-pulse {
  animation: m-old-label-pulse 0.55s ease;
}

@keyframes m-old-label-pulse {
  50% { box-shadow: 0 0 22px rgba(74,222,128,0.38); }
}

.m-old-unify-ring {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(52%, 200px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.82);
  border-radius: 50%;
  border: 2px solid rgba(74,222,128,0.45);
  background: radial-gradient(circle at 50% 42%, rgba(74,222,128,0.16), rgba(0,0,0,0.55) 68%);
  box-shadow: 0 0 0 0 rgba(74,222,128,0.2);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.55s ease;
}

.m-old-unify-ring strong {
  max-width: 16ch;
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--m-good);
}

.m-old-unify-ring.is-in {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 40px rgba(74,222,128,0.22);
}

.m-old-unify-ring.is-pulse {
  animation: m-old-ring-pulse 0.9s ease;
}

@keyframes m-old-ring-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(74,222,128,0.22); }
  50% { box-shadow: 0 0 56px rgba(74,222,128,0.42); }
}

.m-old-unify-handoff {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px;
  pointer-events: none;
}

.m-old-lead-packet,
.m-old-sales-inbox {
  width: min(48%, 240px);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--m-line-strong);
  background: rgba(0,0,0,0.72);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.55s ease;
}

.m-old-lead-packet.is-in,
.m-old-sales-inbox.is-in {
  opacity: 1;
  transform: translateY(0);
}

.m-old-lead-packet {
  border-color: rgba(74,222,128,0.35);
  transform: translate(0, 16px);
}

.m-old-lead-packet.is-send {
  transform: translate(calc(100% + 12px), -8px) scale(0.94);
  opacity: 0.35;
}

.m-old-unify-scene.is-done .m-old-lead-packet.is-arrived {
  position: absolute;
  left: auto;
  right: calc(50% - 8px);
  bottom: 8px;
  width: min(46%, 220px);
  opacity: 1;
  transform: translate(0, 0) scale(0.96);
  z-index: 5;
}

.m-old-unify-scene.is-done .m-old-sales-inbox {
  opacity: 1;
  transform: translateY(0);
}

.m-old-lead-packet ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  color: var(--m-mid);
  font-size: 0.74rem;
  line-height: 1.35;
}

.m-old-sales-inbox {
  margin-left: auto;
  border-color: rgba(74,222,128,0.28);
}

.m-old-sales-inbox strong {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
}

.m-old-sales-inbox p {
  margin: 6px 0 0;
  color: var(--m-mid);
  font-size: 0.76rem;
}

.m-good-tags span,
.m-article-modules span {
  color: rgba(150,255,188,0.95);
  border: 1px solid rgba(74,222,128,0.24);
  background: rgba(74,222,128,0.08);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-ad-dash {
  padding: 22px;
}

.m-ad-dash-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.m-ad-dash-head span {
  color: var(--m-dim);
  font: 700 0.66rem/1 var(--m-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.m-ad-dash-head strong {
  color: var(--m-bad);
}

.m-bars {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--m-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
}

.m-bars div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.m-bars span {
  width: 100%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, rgba(238,58,57,0.9), rgba(238,58,57,0.22));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.m-bars div.is-in span {
  transform: scaleY(1);
}

.m-bars em {
  font-style: normal;
  color: var(--m-dim);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-ad-dash p {
  margin: 18px 0 0;
  color: var(--m-mid);
  line-height: 1.55;
}

.m-late-report {
  padding: 26px;
}

.m-late-report h3 {
  margin: 8px 0 24px;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
}

.m-report-line {
  height: 12px;
  width: 100%;
  margin: 12px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.m-report-line:nth-of-type(2) { width: 82%; }
.m-report-line:nth-of-type(3) { width: 60%; }

.m-late-report strong {
  display: block;
  margin-top: 28px;
  color: var(--m-bad);
  font-size: 1.45rem;
  line-height: 1.18;
}

.m-video-shell {
  width: min(100%, 720px);
  border: 1px solid var(--m-line-strong);
  border-radius: 18px;
  background: #050505;
  padding: 10px;
  box-shadow: 0 34px 100px rgba(0,0,0,0.65);
}

.m-video-shell video {
  display: block;
  width: 100%;
  max-height: min(52vh, 470px);
  object-fit: cover;
  border-radius: 12px;
}

.m-video-shell--calendar video {
  object-fit: contain;
  background: #090909;
}

.m-scoreboard {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.m-score-ring {
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(74,222,128,0.38);
  background: radial-gradient(circle, rgba(74,222,128,0.18), rgba(0,0,0,0.82));
}

.m-score-ring strong {
  display: block;
  font-size: 4.4rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.m-score-ring span {
  display: block;
  color: var(--m-good);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-score-list {
  display: grid;
  gap: 10px;
}

.m-score-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--m-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.m-score-list span {
  color: var(--m-mid);
}

.m-score-list b {
  color: var(--m-good);
}

.m-capture-grid,
.m-goal-board,
.m-team-grid,
.m-funnel-lanes,
.m-review-system,
.m-handoff {
  display: grid;
  gap: 14px;
}

.m-capture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m-chat-card,
.m-goal-board div,
.m-team-grid div,
.m-funnel-lanes div,
.m-review-card,
.m-handoff-profile,
.m-handoff-sales {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--m-line-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
}

.m-chat-card p,
.m-funnel-lanes p,
.m-review-card p,
.m-handoff p {
  margin: 12px 0 0;
  color: var(--m-mid);
  line-height: 1.55;
}

.m-dam-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.m-dam-proof figure {
  margin: 0;
  min-width: 0;
  border: 1px solid var(--m-line-strong);
  border-radius: 18px;
  overflow: hidden;
  background: var(--m-panel);
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
}

.m-dam-proof img {
  display: block;
  width: 100%;
  height: min(42vh, 390px);
  object-fit: cover;
}

.m-dam-proof figcaption {
  padding: 13px 14px;
  color: var(--m-mid);
  font: 700 0.64rem/1.25 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-channel-hub {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--m-line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(74,222,128,0.18), transparent 34%),
    rgba(255,255,255,0.025);
  overflow: hidden;
}

.m-channel-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--m-good);
  border: 1px solid rgba(74,222,128,0.42);
  background: rgba(0,0,0,0.82);
  font: 800 1.15rem/1 var(--m-mono);
  letter-spacing: 0.08em;
}

.m-channel-card {
  position: absolute;
  width: min(210px, 36%);
  padding: 16px;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  background: rgba(0,0,0,0.72);
}

.m-channel-card--page { left: 28px; top: 38px; }
.m-channel-card--social { right: 28px; top: 54px; }
.m-channel-card--sms { left: 42px; bottom: 48px; }
.m-channel-card--ad { right: 36px; bottom: 42px; }

.m-channel-card b {
  display: block;
  margin-top: 9px;
  line-height: 1.2;
}

.m-article-card {
  padding: 26px;
}

.m-article-card h3 {
  max-width: 560px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.m-article-card p {
  max-width: 620px;
  margin: 0;
  color: var(--m-mid);
  line-height: 1.6;
}

.m-goal-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.m-goal-board b,
.m-team-grid b {
  display: block;
  margin-top: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.m-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m-funnel-lanes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.m-funnel-lanes div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(34,211,238,0.08), rgba(74,222,128,0.05)),
    rgba(255,255,255,0.025);
}

.m-funnel-lanes span {
  color: var(--m-good);
  font-size: 0.76rem;
}

.m-review-system {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.m-review-card {
  border-color: rgba(74,222,128,0.28);
}

.m-review-card b {
  display: inline-flex;
  margin-top: 16px;
  color: var(--m-good);
  font: 700 0.68rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-review-card--warn {
  border-color: rgba(251,191,36,0.34);
}

.m-review-card--warn b {
  color: var(--m-gold);
}

.m-handoff {
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1.08fr);
  align-items: center;
}

.m-handoff-profile b,
.m-handoff-sales strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.m-handoff-arrow {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, var(--m-good), transparent);
}

.m-handoff-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--m-good);
  border-right: 2px solid var(--m-good);
  transform: translateY(-50%) rotate(45deg);
}

/* Offer */
.m-offer {
  padding: 140px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(74,222,128,0.14), transparent 36%),
    linear-gradient(180deg, #000 0%, #06100a 100%);
}

.m-offer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.m-offer-btn {
  margin-top: 34px;
}

/* Motion polish */
@keyframes mSiteStrain {
  0%, 100% { transform: translate(-50%, -50%) rotate(-0.7deg); }
  50% { transform: translate(-50%, -50%) rotate(0.9deg) scale(0.992); }
}

@keyframes mVendorDrift {
  0%, 100% {
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot));
  }
  50% {
    transform: translate(-50%, -50%) translate(calc(var(--x) + 5px), calc(var(--y) - 4px)) rotate(calc(var(--rot) + 2deg));
  }
}

@keyframes mVendorIntro {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.72);
    filter: blur(4px);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot)) scale(1.08);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot)) scale(1.08);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--rot)) scale(1);
    filter: blur(0);
  }
}

@keyframes mTagHit {
  0%, 100% {
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--tr));
  }
  50% {
    transform: translate(-50%, -50%) translate(calc(var(--tx) + 5px), calc(var(--ty) - 4px)) rotate(calc(var(--tr) + 3deg));
  }
}

@keyframes mFailureIntro {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.78);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--tr)) scale(1);
  }
}

@keyframes mBrokenConnector {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.62; }
}

@keyframes mProblemCardWake {
  0% {
    box-shadow: 0 14px 32px rgba(0,0,0,0.34);
    border-color: rgba(238,58,57,0.28);
  }
  18%, 40% {
    box-shadow: 0 14px 34px rgba(0,0,0,0.34), 0 0 24px rgba(238,58,57,0.18);
    border-color: rgba(238,58,57,0.62);
  }
  100% {
    box-shadow: 0 14px 32px rgba(0,0,0,0.34);
    border-color: rgba(238,58,57,0.34);
  }
}

@keyframes mCostLeak {
  0% {
    opacity: 0;
    transform: translateY(4px) translateX(0) scale(0.86);
  }
  16%, 54% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(38px) translateX(18px) scale(0.94);
  }
}

@keyframes mActivityReturn {
  0%, 28% {
    opacity: 0;
    transform: translateY(4px) translateX(0) scale(0.86);
  }
  46%, 82% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    opacity: 0.32;
    transform: translateY(20px) translateX(-10px) scale(0.96);
  }
}

@keyframes mSqlCount {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  20%, 58% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes mSqlFinal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  22%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mLeadPacket {
  0% {
    left: 16%;
    opacity: 0;
    transform: scale(0.72);
  }
  12% {
    opacity: 1;
  }
  72% {
    left: 78%;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    left: 86%;
    opacity: 0;
    transform: scale(0.84);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .m-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .m-hero-copy {
    min-height: 310px;
    text-align: center;
  }

  .m-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .m-proof-machine {
    width: min(760px, 100%);
    min-height: 420px;
    margin: 0 auto;
  }

  .m-website-chaos {
    --intro-y: -142px;
    inset: 16px 18px 152px;
  }

  .m-vendor-node {
    width: 168px;
    min-height: 68px;
  }

  .m-vendor-node--site { --x: -172px; --y: -86px; --ix: -112px; --fx: -164px; --fy: -82px; }
  .m-vendor-node--seo { --x: 172px; --y: -82px; --ix: 112px; --fx: 164px; --fy: -82px; }
  .m-vendor-node--ads { --x: -172px; --y: 92px; --ix: -72px; --fx: -152px; --fy: 96px; }
  .m-vendor-node--social { --x: 172px; --y: 88px; --ix: 72px; --fx: 152px; --fy: 96px; }
  .m-vendor-node--reviews { --x: 0px; --y: -106px; --ix: 0px; --fx: 0px; --fy: -112px; }

  .m-site-core {
    width: min(310px, 55%);
  }
}

@media (max-width: 1100px) {
  .m-hero-pin {
    min-height: 100svh;
    height: 100svh;
    padding: calc(var(--nav-height) + 28px + env(safe-area-inset-top, 0px)) 16px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  @supports (height: 100dvh) {
    .m-hero-pin {
      min-height: 100dvh;
      height: 100dvh;
    }
  }

  .m-hero-inner {
    height: 100%;
    align-content: start;
    justify-items: center;
  }

  .m-hero-copy {
    width: 100%;
    min-height: 210px;
  }

  .m-hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 3.8rem);
    line-height: 0.98;
  }

  .m-hero-slide:first-child h1,
  .m-hero-slide:not(:first-child) h1 {
    font-size: clamp(2.05rem, 9.4vw, 3.8rem);
    line-height: 1.04;
  }

  /* Mobile: drop the scribble arrow and set the note as a clean caption
     directly beneath the word it annotates — no overlap with the headline. */
  .m-hero h1 .m-hero-note {
    left: 0;
    right: auto;
    top: calc(100% + 0.16em);
    bottom: auto;
    font-size: clamp(0.8rem, 3.6vw, 1.06rem);
    transform: rotate(-3deg);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .m-note-arrow {
    display: none;
  }

  /* make room beneath the headline so the caption never touches the body copy */
  .m-hero-slide[data-hero-stage="1"] p {
    margin-top: 40px;
  }

  .m-hero p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .m-hero-stat {
    margin-bottom: 10px;
    padding: 7px 11px;
    font-size: 0.66rem;
    line-height: 1;
    letter-spacing: 0.16em;
  }

  .m-proof-machine {
    min-height: 0;
    height: min(54svh, 452px);
    border-radius: 16px;
  }

  /* hero flow — tuned for the narrow mobile panel */
  .m-flow {
    padding: 12px;
  }
  .m-flow-spine {
    width: min(220px, 74%);
    gap: clamp(5px, 1vh, 9px);
  }
  .m-flow-eyebrow { font-size: 0.5rem; margin-bottom: 6px; }
  .m-flow-srcs { gap: 6px; }
  .m-flow-src {
    max-width: 78px;
    padding: 7px 4px;
    font-size: 0.64rem;
  }
  .m-flow-pipe { height: clamp(12px, 2.2vh, 22px); }
  .m-flow-node {
    padding: 8px 10px;
    border-radius: 11px;
  }
  .m-flow-node b { font-size: 0.82rem; }
  .m-flow-state { font-size: 0.48rem; }
  .m-flow-ai { font-size: 0.44rem; padding: 2px 6px; top: -7px; right: 9px; }
  .m-flow-out { padding: 9px 10px; }
  .m-flow-out-bad { font-size: 0.56rem; }
  .m-flow-out-bad b { font-size: 1.3rem; }
  .m-flow-out-good { font-size: 0.56rem; gap: 6px; }
  .m-flow-out-boat { font-size: 1rem; }
  .m-flow-count { font-size: 1.3rem; }
  /* the flip-line + gutter spotlight are desktop-only; the node
     state lines carry the short version on the narrow panel */
  .m-flow-caption { display: none; }
  .m-flow-spotlight { display: none; }

  /* keep the reviews return inside the narrow panel; drop the label
     and the "Review!" tag, keep the travelling green dot */
  .m-flow-return { right: -14px; }
  .m-flow-return-label { display: none; }
  .m-flow-review b { display: none; }

  .m-hero-boards {
    inset: 10px;
  }

  .m-board-shell {
    padding: 12px 12px 60px;
    border-radius: 14px;
  }

  .m-board-header {
    gap: 4px;
    margin-bottom: 8px;
  }

  .m-board-header span {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .m-board-header strong {
    font-size: 0.94rem;
  }

  .m-board-connectors {
    inset: 52px 12px 16px;
  }

  .m-board-grid {
    gap: 6px;
  }

  .m-board-grid--operation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .m-board-card--problem {
    min-height: 56px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 2px 8px;
    padding: 8px;
    border-radius: 10px;
  }

  .m-board-card--operation {
    min-height: 42px;
    gap: 2px;
    padding: 8px 8px 8px 30px;
    border-radius: 9px;
  }

  .m-board-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    font-size: 0.62rem;
  }

  .m-board-check {
    left: 7px;
    width: 15px;
    height: 15px;
  }

  .m-board-check::before {
    width: 7px;
    height: 4px;
  }

  .m-board-card strong {
    font-size: 0.74rem;
  }

  .m-board-card--operation strong {
    font-size: 0.72rem;
  }

  .m-board-card small,
  .m-board-card em {
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .m-board-card--operation small {
    display: none;
  }

  /* the "+ saved boats / + financing…" row reads as clutter at phone size —
     the nine lit cards already make the point */
  .m-board-plus-row {
    display: none;
  }

  .m-board-output {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 8px 9px;
    gap: 6px;
    border-radius: 10px;
  }

  .m-board-output span,
  .m-board-output em {
    font-size: 0.36rem;
    letter-spacing: 0.08em;
  }

  .m-board-output strong {
    font-size: 0.98rem;
  }

  .m-board-output--problem i {
    width: 24px;
  }

  .m-board-output--operation {
    justify-content: center;
    flex-wrap: wrap;
  }

  .m-board-output--operation .m-sql-counter {
    min-width: 42px;
    height: 1rem;
  }

  .m-board-context {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    margin: 5px auto 0;
    min-height: 20px;
    padding: 6px 8px 6px 30px;
    font-size: 0.33rem;
    letter-spacing: 0.08em;
  }

  .m-board-context i {
    left: 12px;
    width: 12px;
  }

  .m-website-chaos {
    --intro-y: -104px;
    inset: 10px 10px 128px;
  }

  .m-site-core {
    width: min(220px, 60%);
    border-radius: 14px;
  }

  .m-site-bar {
    padding: 7px 8px;
    font-size: 0.46rem;
  }

  .m-site-body {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 7px;
    padding: 8px;
  }

  .m-site-boat img {
    height: 70px;
  }

  .m-site-boat b,
  .m-site-panel p {
    display: none;
  }

  .m-site-status {
    margin-bottom: 6px;
    padding: 4px 6px;
    font-size: 0.42rem;
  }

  .m-site-panel h3 {
    font-size: 0.72rem;
  }

  .m-site-form {
    gap: 5px;
    margin-top: 8px;
  }

  .m-site-form button {
    height: 12px;
  }

  .m-vendor-node {
    width: 134px;
    min-height: 56px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 3px 7px;
    padding: 8px;
    border-radius: 12px;
  }

  .m-vendor-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .m-vendor-icon svg {
    width: 15px;
    height: 15px;
  }

  .m-vendor-node strong {
    font-size: 0.66rem;
  }

  .m-vendor-node small {
    font-size: 0.38rem;
    letter-spacing: 0.08em;
  }

  .m-hero[data-active-stage="1"] .m-vendor-node small::after {
    font: 700 0.38rem/1.12 var(--m-mono);
    letter-spacing: 0.08em;
  }

  .m-vendor-node--site { --x: -102px; --y: -72px; --ix: -62px; --fx: -98px; --fy: -72px; }
  .m-vendor-node--seo { --x: 102px; --y: -70px; --ix: 62px; --fx: 98px; --fy: -72px; }
  .m-vendor-node--ads { --x: -103px; --y: 76px; --ix: -42px; --fx: -94px; --fy: 78px; }
  .m-vendor-node--social { --x: 103px; --y: 74px; --ix: 42px; --fx: 94px; --fy: 78px; }
  .m-vendor-node--reviews { --x: 0px; --y: -96px; --ix: 0px; --fx: 0px; --fy: -98px; }

  .m-failure-tag {
    padding: 5px 7px;
    font-size: 0.43rem;
  }

  .m-failure-tag--1 { --tx: -46px; --ty: -78px; }
  .m-failure-tag--2 { --tx: 56px; --ty: -58px; }
  .m-failure-tag--3 { --tx: 42px; --ty: 72px; }
  .m-failure-tag--4 { --tx: -62px; --ty: 58px; }

  .m-unify-layer {
    width: min(218px, 70%);
  }

  .m-unify-layer span {
    font-size: 0.54rem;
  }

  .m-unify-layer strong {
    max-width: 142px;
    font-size: 0.98rem;
  }

  .m-lead-context {
    right: 8px;
    bottom: -2px;
    padding: 7px 8px 7px 34px;
    font-size: 0.4rem;
    letter-spacing: 0.1em;
  }

  .m-lead-context i {
    left: -48px;
    width: 72px;
  }

  .m-proof-metrics {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 112px;
  }

  .m-proof-metric {
    padding: 13px;
    gap: 3px 12px;
  }

  .m-proof-metric strong {
    font-size: 1.8rem;
  }

  .m-proof-metric small {
    font-size: 0.78rem;
  }

  .m-proof-metric.m-proof-metric--good strong {
    font-size: clamp(1.24rem, 5.55vw, 1.52rem);
    white-space: nowrap;
  }

  .m-proof-metric.m-proof-metric--good small {
    font-size: clamp(0.64rem, 2.55vw, 0.78rem);
    white-space: nowrap;
  }

  .m-proof-metric--statement {
    gap: 7px;
  }

  .m-proof-metric.m-proof-metric--statement strong {
    font-size: clamp(1.16rem, 4.4vw, 1.48rem);
  }

  .m-proof-metric.m-proof-metric--statement small {
    font-size: 0.8rem;
  }

  .m-hero-next {
    display: none;
  }

  /* mobile act chassis lives in css/de-act.css (≤1100px block) */

  .m-window,
  .m-listing-card,
  .m-ad-dash,
  .m-late-report,
  .m-scoreboard,
  .m-capture-grid,
  .m-dam-proof,
  .m-channel-hub,
  .m-article-card,
  .m-goal-board,
  .m-team-grid,
  .m-funnel-lanes,
  .m-review-system,
  .m-handoff,
  .m-video-shell {
    width: 100%;
    max-width: 100%;
  }

  .m-ticket-list {
    gap: 8px;
    padding: 12px;
  }

  .m-ticket {
    padding: 12px;
    display: grid;
    gap: 8px;
  }

  .m-old-queue-scene {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .m-old-listing-preview {
    gap: 6px;
    padding: 10px;
  }

  .m-old-listing-preview img {
    height: 64px;
  }

  .m-old-listing-stamp {
    font-size: 0.48rem;
  }

  .m-old-listing-preview h3 {
    margin: 5px 0 3px;
    font-size: 1rem;
  }

  .m-old-listing-preview p {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .m-old-queue-board .m-window-bar {
    padding: 8px 10px;
  }

  .m-old-queue-board .m-ticket-list {
    gap: 6px;
    padding: 9px;
  }

  .m-old-queue-board .m-ticket {
    padding: 9px 10px;
  }

  .m-old-queue-board .m-ticket b {
    font-size: 0.9rem;
  }

  .m-ticket em[data-old-ticket-status] {
    margin-top: 5px;
    font-size: 0.5rem;
  }

  .m-old-speed-scene {
    padding-top: 30px;
  }

  .m-old-speed-site {
    padding: 8px;
    padding-right: 42px;
    min-height: 168px;
  }

  .m-old-speed-zone {
    top: 38px;
    right: 8px;
    bottom: 10px;
    width: 28px;
  }

  .m-old-speed-meta strong {
    font-size: 1.05rem;
  }

  .m-old-speed-chrome em {
    font-size: 0.48rem;
  }

  .m-old-sleep-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .m-old-sleep-milestone {
    font-size: 0.46rem;
    padding: 7px 5px;
  }

  .m-old-intent-packet strong {
    font-size: 0.74rem;
  }

  .m-old-form-scene,
  .m-old-sleep-scene,
  .m-old-search-scene,
  .m-old-unify-scene {
    width: 100%;
    max-width: 100%;
  }

  .m-old-unify-scene {
    min-height: 382px;
  }

  .m-old-unify-lines,
  .m-old-unify-labels {
    height: 220px;
    bottom: auto;
  }

  .m-old-unify-ring {
    top: 110px;
    width: min(46%, 164px);
  }

  .m-old-unify-handoff {
    position: absolute;
    top: 238px;
    bottom: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    margin-top: 0;
  }

  .m-old-lead-packet,
  .m-old-sales-inbox {
    width: auto;
    padding: 10px;
  }

  .m-old-lead-packet.is-send {
    transform: translateY(8px) scale(0.96);
    opacity: 0.5;
  }

  .m-old-unify-scene.is-done .m-old-lead-packet.is-arrived {
    position: relative;
    right: auto;
    width: auto;
    margin-bottom: 0;
  }

  .m-old-lead-packet ul {
    gap: 3px;
    font-size: 0.62rem;
  }

  .m-old-sales-inbox strong {
    font-size: 0.84rem;
  }

  .m-old-sales-inbox p {
    font-size: 0.66rem;
  }

  .m-old-unify-label {
    font-size: 0.5rem;
    padding: 5px 7px;
  }

  .m-old-unify-label[data-pos="right-top"] { right: 4%; }
  .m-old-unify-label[data-pos="right"] { right: 4%; }
  .m-old-unify-label[data-pos="right-bottom"] { right: 4%; }
  .m-old-unify-label[data-pos="left-bottom"] { left: 4%; }
  .m-old-unify-label[data-pos="left"] { left: 4%; }

  .de-beat-cap--good {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .m-listing-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .m-listing-card img {
    height: 120px;
  }

  .m-listing-card h3 {
    font-size: 1.18rem;
    margin: 7px 0;
  }

  .m-listing-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .m-bad-tags,
  .m-good-tags,
  .m-article-modules {
    gap: 5px;
    margin-top: 9px;
  }

  .m-bad-tags span,
  .m-good-tags span,
  .m-article-modules span {
    font-size: 0.52rem;
    padding: 5px 7px;
  }

  .m-ad-dash,
  .m-late-report,
  .m-scoreboard,
  .m-article-card {
    padding: 14px;
  }

  .m-bars {
    height: 150px;
    padding: 10px;
    gap: 8px;
  }

  .m-late-report h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .m-late-report strong {
    margin-top: 18px;
    font-size: 1.05rem;
  }

  .m-video-shell {
    padding: 7px;
  }

  .m-video-shell video {
    max-height: 34svh;
    border-radius: 9px;
  }

  .m-scoreboard {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .m-score-ring {
    width: 108px;
  }

  .m-score-ring strong {
    font-size: 2.4rem;
  }

  .m-score-list {
    gap: 6px;
  }

  .m-score-list div {
    padding: 10px;
    font-size: 0.78rem;
  }

  .m-capture-grid,
  .m-goal-board,
  .m-team-grid,
  .m-funnel-lanes,
  .m-review-system {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .m-chat-card,
  .m-goal-board div,
  .m-team-grid div,
  .m-funnel-lanes div,
  .m-review-card,
  .m-handoff-profile,
  .m-handoff-sales {
    padding: 12px;
  }

  .m-chat-card p,
  .m-funnel-lanes p,
  .m-review-card p,
  .m-handoff p {
    margin-top: 7px;
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .m-dam-proof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .m-dam-proof img {
    height: 30svh;
    max-height: 240px;
  }

  .m-dam-proof figcaption {
    padding: 9px;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .m-channel-hub {
    min-height: 330px;
  }

  .m-channel-core {
    width: 102px;
    font-size: 0.82rem;
  }

  .m-channel-card {
    width: 42%;
    padding: 10px;
  }

  .m-channel-card b {
    font-size: 0.82rem;
  }

  .m-article-card h3 {
    font-size: 1.65rem;
  }

  .m-article-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .m-goal-board b,
  .m-team-grid b {
    margin-top: 6px;
    font-size: 0.98rem;
  }

  .m-funnel-lanes div {
    min-height: 0;
  }

  .m-handoff {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .m-handoff-profile b,
  .m-handoff-sales strong {
    font-size: 1.05rem;
  }

  .m-handoff-arrow {
    width: 2px;
    height: 32px;
    justify-self: center;
    background: linear-gradient(180deg, var(--m-good), transparent);
  }

  .m-handoff-arrow::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .m-proof-section,
  .m-offer {
    padding: 86px 0;
  }

  .m-section-inner,
  .m-offer-inner {
    width: min(100% - 32px, 1160px);
  }

  .m-proof-section h2,
  .m-offer h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .m-proof-grid,
  .m-offer-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .m-hero-copy {
    min-height: 236px;
  }

  .m-proof-machine {
    height: min(48svh, 390px);
  }

  .m-hero-boards {
    inset: 8px;
  }

  .m-board-shell {
    padding: 8px;
  }

  .m-board-header {
    gap: 2px;
    margin-bottom: 5px;
  }

  .m-board-header span {
    font-size: 0.38rem;
  }

  .m-board-header strong {
    font-size: 0.76rem;
  }

  .m-board-card--problem {
    min-height: 47px;
    padding: 6px;
  }

  .m-board-card--operation {
    min-height: 26px;
    padding: 5px 5px 5px 23px;
  }

  .m-board-card strong {
    font-size: 0.56rem;
  }

  .m-board-card--operation strong {
    font-size: 0.49rem;
    line-height: 1.05;
  }

  .m-board-card small,
  .m-board-card em {
    font-size: 0.33rem;
    letter-spacing: 0.06em;
  }

  .m-board-plus-row span {
    font-size: 0.3rem;
    min-height: 15px;
    padding: 3px 5px;
  }

  .m-board-output {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 35px;
    padding: 6px 7px;
    gap: 4px;
    border-radius: 9px;
  }

  .m-board-output span,
  .m-board-output em {
    font-size: 0.3rem;
    letter-spacing: 0.06em;
  }

  .m-board-output strong {
    font-size: 0.82rem;
  }

  .m-board-output--operation .m-sql-counter {
    min-width: 36px;
    height: 0.86rem;
  }

  .m-board-context {
    min-height: 16px;
    padding: 4px 6px 4px 25px;
    font-size: 0.3rem;
    margin-top: 4px;
  }

  .m-website-chaos {
    --intro-y: -94px;
    inset: 10px 8px 124px;
  }

  .m-site-core {
    width: min(196px, 58%);
  }

  .m-vendor-node {
    width: 112px;
    min-height: 52px;
  }

  .m-hero[data-active-stage="1"] .m-vendor-node small::after {
    font-size: 0.35rem;
    letter-spacing: 0.07em;
  }

  .m-vendor-node--site { --x: -86px; --y: -70px; --ix: -50px; --fx: -82px; --fy: -70px; }
  .m-vendor-node--seo { --x: 86px; --y: -68px; --ix: 50px; --fx: 82px; --fy: -70px; }
  .m-vendor-node--ads { --x: -86px; --y: 72px; --ix: -34px; --fx: -78px; --fy: 74px; }
  .m-vendor-node--social { --x: 86px; --y: 70px; --ix: 34px; --fx: 78px; --fy: 74px; }
  .m-vendor-node--reviews { --x: 0px; --y: -88px; --ix: 0px; --fx: 0px; --fy: -88px; }

  .de-act-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .de-act-headline {
    font-size: clamp(1.42rem, 7.5vw, 2rem);
  }

  .m-capture-grid .m-chat-card:nth-child(n+3),
  .m-team-grid div:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 380px) {
  .m-old-listing-preview {
    padding: 8px;
  }

  .m-old-listing-preview img {
    height: 46px;
  }

  .m-old-listing-preview .m-mono {
    font-size: 0.52rem;
  }

  .m-old-listing-preview h3 {
    font-size: 0.9rem;
  }

  .m-old-listing-preview p {
    display: none;
  }

  .m-old-queue-board .m-window-bar {
    padding: 7px 9px;
  }

  .m-old-queue-board .m-ticket-list {
    padding: 8px;
  }

  .m-old-queue-board .m-ticket {
    padding: 8px 9px;
  }

  .m-old-queue-board .m-ticket b {
    font-size: 0.82rem;
  }

  .m-old-queue-board .m-ticket:nth-child(3) {
    display: none;
  }

  .m-old-intent-packet {
    padding: 8px 10px;
  }

  .m-old-intent-packet strong {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .m-old-form-card {
    padding: 10px;
  }

  .m-old-form-head {
    margin-bottom: 8px;
    font-size: 0.52rem;
  }

  .m-old-form-fields {
    gap: 6px;
  }

  .m-old-form-field {
    padding: 7px 9px;
  }

  .m-old-form-field input {
    display: none;
  }

  .m-old-form-field span,
  .m-old-form-field.is-error b {
    font-size: 0.5rem;
  }

  .m-old-form-submit {
    margin-top: 8px;
    padding: 9px 12px;
  }

  .m-old-intent-lost span {
    padding: 5px 7px;
    font-size: 0.48rem;
  }

  .m-old-unify-scene {
    min-height: 336px;
  }

  .m-old-unify-lines,
  .m-old-unify-labels {
    height: 188px;
  }

  .m-old-unify-ring {
    top: 94px;
    width: min(44%, 142px);
    padding: 12px;
  }

  .m-old-unify-ring strong {
    font-size: 0.72rem;
  }

  .m-old-unify-handoff {
    top: 204px;
    gap: 8px;
  }

  .m-old-lead-packet,
  .m-old-sales-inbox {
    padding: 8px;
  }

  .m-old-lead-packet ul {
    font-size: 0.56rem;
  }

  .m-old-lead-packet li:nth-child(4) {
    display: none;
  }

  .m-old-sales-inbox strong {
    font-size: 0.76rem;
  }

  .m-old-sales-inbox p {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .de-beat-cap--good {
    font-size: 0.51rem;
    line-height: 1.25;
    padding: 8px 10px;
  }
}

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

/* Website-act morph beats — narrow-screen fit */
@media (max-width: 700px) {
  .m-spine-scene {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
  }
  .m-spine-rail { padding: 16px 0; }
  .m-spine-card { padding: 14px; }
  .m-spine-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .m-spine-body img { height: 118px; }
  .m-spine-content h3 { font-size: 1.02rem; }
  .m-spine-top { flex-wrap: wrap; gap: 4px; }

  /* QUEUED stamp sits over the listing once the scene stacks */
  .m-old-queue-gate {
    top: 22%;
    left: 0;
    width: 100%;
  }
  .m-old-queue-gate span {
    font-size: 0.9rem;
    padding: 7px 14px;
    letter-spacing: 0.2em;
  }

  .m-gen-tickets span,
  .m-gen-inputs span { font-size: 0.62rem; }
  .m-gen-page { padding: 13px 8px; font-size: 0.68rem; }
}

/* ===== Content Beat 3 — raw DAM asset morphs into the on-brand ad ===== */
.m-damx {
  width: min(100%, 660px);
}

.m-damx-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--m-line-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.m-damx-stage.is-branded {
  border-color: rgba(74,222,128,0.5);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.22), 0 30px 90px rgba(0,0,0,0.55);
}

.m-damx-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-damx-img--raw { filter: saturate(0.7) brightness(0.88); }

.m-damx-img--ad {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.7, 0, 0.3, 1);
}

.m-damx-stage.is-branded .m-damx-img--ad {
  clip-path: inset(0 0 0 0);
}

.m-damx-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--m-good);
  box-shadow: 0 0 18px 2px var(--m-good);
  opacity: 0;
  transition: left 1.1s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s ease;
}

.m-damx-stage.is-branded .m-damx-sweep {
  opacity: 1;
  left: 100%;
}

.m-damx-badge {
  position: absolute;
  padding: 6px 10px;
  border-radius: 999px;
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.m-damx-badge--raw {
  top: 12px;
  left: 12px;
  border: 1px solid var(--m-line-strong);
  background: rgba(0,0,0,0.7);
  color: var(--m-dim);
}

.m-damx-badge--ad {
  bottom: 12px;
  right: 12px;
  opacity: 0;
  border: 1px solid rgba(74,222,128,0.5);
  background: rgba(4,36,15,0.78);
  color: var(--m-good);
}

.m-damx-stage.is-branded .m-damx-badge--raw { opacity: 0; }
.m-damx-stage.is-branded .m-damx-badge--ad { opacity: 1; }

/* ===== Content Beat 4 — one asset clones to every channel ===== */
.m-channel-core {
  overflow: hidden;
  flex-direction: column;
  gap: 6px;
}

.m-channel-core img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.m-channel-core span {
  position: relative;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.74);
  border: 1px solid rgba(74,222,128,0.5);
  color: var(--m-good);
  font: 700 0.52rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-channel-card {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.m-channel-card.is-in {
  opacity: 1;
  transform: none;
}

.m-channel-card img {
  display: block;
  width: 100%;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 8px;
}

.m-chan-clone {
  position: absolute;
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.55);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

/* ===== Content Beat 5 — modules snap in, then the rank ladder flips ===== */
.m-rank-scene {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: start;
}

.m-rank-article,
.m-rank-ladder {
  padding: 16px;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  background: var(--m-panel);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-rank-article.is-in,
.m-rank-ladder.is-in {
  opacity: 1;
  transform: none;
}

.m-rank-article h4 {
  margin: 8px 0 12px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.m-rank-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.m-rank-mods span {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.03);
  color: var(--m-dim);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.m-rank-mods span.is-in {
  opacity: 1;
  transform: none;
  color: var(--m-good);
  border-color: rgba(74,222,128,0.35);
  background: rgba(74,222,128,0.08);
}

.m-rank-head {
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.m-rank-rows {
  position: relative;
  height: 230px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.m-rank-guide {
  display: flex;
  align-items: center;
  padding-left: 6px;
  border-top: 1px solid var(--m-line);
  color: var(--m-dim);
  font: 700 0.6rem/1 var(--m-mono);
}

.m-rank-pin {
  position: absolute;
  left: 26px;
  right: 4px;
  top: 4px;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  font: 700 0.74rem/1 var(--m-font);
  border: 1px solid var(--m-line-strong);
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.3, 1), background 0.5s ease, color 0.5s ease, border-color 0.5s ease, opacity 0.5s ease;
}

.m-rank-pin--comp {
  transform: translateY(0);
  background: rgba(255,255,255,0.04);
  color: var(--m-mid);
}

.m-rank-pin--you {
  transform: translateY(138px);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.m-rank-rows.is-ranked .m-rank-pin--comp {
  transform: translateY(138px);
  opacity: 0.5;
}

.m-rank-rows.is-ranked .m-rank-pin--you {
  transform: translateY(0);
  border-color: rgba(74,222,128,0.5);
  background: rgba(74,222,128,0.12);
  color: var(--m-good);
}

.m-rank-rows.is-ranked .m-rank-pin--you::after {
  content: '#1 ▲';
  margin-left: auto;
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.06em;
}

.m-rank-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--m-line);
}

.m-rank-stat strong {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--m-good);
}

.m-rank-stat span {
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Content Beat 6 — AI answer composes in real time ===== */
.m-geo-a p[data-geo-answer] {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--m-mid);
  min-height: 4.2em;
}

.m-geo-a p[data-geo-answer] b {
  color: #fff;
  font-weight: 800;
  background: rgba(74,222,128,0.18);
  padding: 0 5px;
  border-radius: 4px;
}

.m-geo-a p[data-geo-answer].is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--m-good);
  animation: m-geo-caret 0.7s steps(1) infinite;
}

@keyframes m-geo-caret { 50% { opacity: 0; } }

.m-geo-cite[data-geo-cite] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.m-geo-cite[data-geo-cite].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 700px) {
  .m-rank-scene { grid-template-columns: 1fr; gap: 12px; }
  .m-rank-rows { height: 200px; }
  .m-rank-pin--you { transform: translateY(120px); }
  .m-rank-rows.is-ranked .m-rank-pin--comp { transform: translateY(120px); }
  .m-damx-badge { font-size: 0.5rem; padding: 5px 8px; }
}

/* ===== Operation Beat 2 — strategy inputs feed one brief ===== */
.m-strat {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: 1fr auto 0.92fr;
  gap: 14px;
  align-items: center;
}

.m-strat-inputs {
  display: grid;
  gap: 8px;
}

.m-strat-inputs span {
  display: block;
  padding: 11px 13px;
  border: 1px solid var(--m-line-strong);
  border-radius: 11px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font: 700 0.92rem/1.15 var(--m-font);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-strat-inputs span.is-in { opacity: 1; transform: none; }

.m-strat-inputs span em {
  display: block;
  margin-bottom: 3px;
  font: 700 0.5rem/1 var(--m-mono);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m-dim);
}

.m-strat-arrow {
  color: var(--m-good);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.m-strat-arrow.is-in { opacity: 1; }

.m-strat-brief {
  padding: 20px 18px;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  background: var(--m-panel);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.m-strat-brief.is-in {
  opacity: 1;
  transform: none;
  border-color: rgba(74,222,128,0.5);
  box-shadow: 0 0 28px rgba(74,222,128,0.14);
}

.m-strat-brief span {
  display: block;
  margin-bottom: 8px;
  color: var(--m-good);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-strat-brief b { font-size: 1.15rem; line-height: 1.2; }

/* ===== Operation Beat 3 — separate vendors wire into one team ===== */
.m-teamnet {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 460 / 420;
  margin: 0 auto;
}

.m-teamnet-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.m-teamnet-svg line {
  stroke: rgba(74,222,128,0.55);
  stroke-width: 2;
  transition: stroke-dashoffset 0.55s ease;
}

.m-teamnet-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  text-align: center;
  border: 1px solid rgba(74,222,128,0.5);
  background: radial-gradient(circle, rgba(74,222,128,0.2), rgba(0,0,0,0.85));
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.m-teamnet-hub.is-in { opacity: 1; }
.m-teamnet-hub b { color: var(--m-good); font: 800 0.92rem/1 var(--m-mono); letter-spacing: 0.02em; }
.m-teamnet-hub span { color: var(--m-dim); font: 700 0.5rem/1 var(--m-mono); letter-spacing: 0.14em; text-transform: uppercase; }

.m-teamnet-node {
  position: absolute;
  transform: translate(-50%, -50%) scale(0.86);
  width: 116px;
  padding: 9px 10px;
  border-radius: 11px;
  border: 1px solid var(--m-line-strong);
  background: rgba(10,12,13,0.92);
  text-align: center;
  z-index: 2;
  opacity: 0.32;
  filter: grayscale(0.8);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.m-teamnet-node.is-wired {
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(74,222,128,0.45);
  background: rgba(74,222,128,0.08);
}

.m-teamnet-node b { display: block; color: #fff; font: 700 0.78rem/1 var(--m-font); }
.m-teamnet-node.is-wired b { color: var(--m-good); }
.m-teamnet-node em { display: block; margin-top: 3px; font-style: normal; color: var(--m-dim); font: 600 0.52rem/1.1 var(--m-mono); letter-spacing: 0.04em; }

/* ===== Operation Beat 4 — a buyer flows the funnel, gathering context ===== */
.m-flowlane {
  width: min(100%, 680px);
  display: grid;
  gap: 14px;
}

.m-flowlane-lanes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 26px;
}

.m-flowlane-lane {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  opacity: 0.5;
  transition: opacity 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.m-flowlane-lane.is-active {
  opacity: 1;
  border-color: rgba(74,222,128,0.45);
  background: linear-gradient(180deg, rgba(74,222,128,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 22px rgba(74,222,128,0.12);
}

.m-flowlane-lane span { color: var(--m-good); font: 700 0.66rem/1 var(--m-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.m-flowlane-lane p { margin: 8px 0 0; color: var(--m-mid); font-size: 0.82rem; line-height: 1.45; }

.m-flowlane-dot {
  position: absolute;
  top: 6px;
  left: 16.6%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--m-good);
  box-shadow: 0 0 16px var(--m-good);
  transition: left 0.7s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 3;
}

.m-flowlane-ctx {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-height: 30px;
}

.m-flowlane-ctx span {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.03);
  color: var(--m-dim);
  font: 700 0.58rem/1 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.m-flowlane-ctx span.is-in { opacity: 1; transform: none; }

.m-flowlane-ctx span[data-flow-chip]:last-child.is-in {
  color: var(--m-good);
  border-color: rgba(74,222,128,0.5);
  background: rgba(74,222,128,0.12);
}

/* ===== Operation Beat 5 — the rotting reviews get handled, rating climbs ===== */
.m-revfix {
  width: min(100%, 440px);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.m-revfix [data-revfix-step] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.m-revfix [data-revfix-step].is-in { opacity: 1; transform: none; }

.m-revfix-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-dim);
}

.m-revfix-head b { color: var(--m-good); font-size: 0.95rem; letter-spacing: 0; }
.m-revfix-head b i { font-style: normal; font-size: 0.58rem; margin-left: 4px; }

.m-revfix-card {
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(74,222,128,0.05);
}

.m-revfix-card span { display: block; font: 600 0.54rem/1.2 var(--m-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--m-dim); margin-bottom: 7px; }
.m-revfix-card p { margin: 0; font-size: 0.84rem; color: var(--m-mid); line-height: 1.4; }
.m-revfix-card b { display: inline-block; margin-top: 9px; font: 700 0.58rem/1 var(--m-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--m-good); }

/* ===== Operation Beat 6 — Marketing passes the buyer to Sales like a baton ===== */
.m-handoff2 {
  width: min(100%, 700px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1.05fr);
  align-items: center;
  gap: 6px;
}

.m-handoff2-profile,
.m-handoff2-sales {
  padding: 18px;
  border: 1px solid var(--m-line-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.m-handoff2-profile.is-in,
.m-handoff2-sales.is-in { opacity: 1; transform: none; }

.m-handoff2-sales.is-live {
  border-color: rgba(74,222,128,0.5);
  box-shadow: 0 0 28px rgba(74,222,128,0.14);
}

.m-handoff2-profile span,
.m-handoff2-sales span {
  display: block;
  color: var(--m-dim);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-handoff2-profile b { display: block; margin-top: 8px; font-size: 1.4rem; line-height: 1.15; }
.m-handoff2-profile p { margin: 10px 0 0; color: var(--m-mid); font-size: 0.82rem; line-height: 1.5; }
.m-handoff2-sales strong { display: block; margin-top: 8px; font-size: 1.25rem; line-height: 1.18; color: #fff; }
.m-handoff2-sales.is-live strong { color: var(--m-good); }
.m-handoff2-sales p { margin: 10px 0 0; color: var(--m-mid); font-size: 0.82rem; line-height: 1.5; }

.m-handoff2-wire {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(74,222,128,0.5), rgba(74,222,128,0.15));
}

.m-handoff2-wire::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--m-good);
  border-right: 2px solid var(--m-good);
  transform: translateY(-50%) rotate(45deg);
}

.m-handoff2 .m-handoff2-packet {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(4,36,15,0.9);
  border: 1px solid rgba(74,222,128,0.6);
  color: var(--m-good);
  font: 700 0.5rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  margin: 0;
  transition: left 0.8s cubic-bezier(0.45, 0, 0.55, 1), opacity 0.3s ease;
}

.m-handoff2 .m-handoff2-packet.is-travel { opacity: 1; left: 100%; }

@media (max-width: 700px) {
  .m-strat { grid-template-columns: 1fr; gap: 10px; }
  .m-strat-arrow { transform: rotate(90deg); justify-self: center; }
  .m-teamnet { width: min(100%, 360px); }
  .m-teamnet-node { width: 92px; padding: 7px 7px; }
  .m-teamnet-node b { font-size: 0.68rem; }
  .m-teamnet-node em { font-size: 0.46rem; }
  .m-teamnet-hub { width: 86px; }
  .m-teamnet-hub b { font-size: 0.74rem; }
  .m-flowlane-lane { min-height: 150px; padding: 12px; }
  .m-flowlane-lane p { font-size: 0.74rem; }
  .m-handoff2 { grid-template-columns: 1fr; gap: 12px; }
  .m-handoff2-wire { height: 40px; background: linear-gradient(180deg, rgba(74,222,128,0.5), rgba(74,222,128,0.15)); justify-self: center; width: 2px; }
  .m-handoff2-wire::after { right: 50%; top: auto; bottom: 0; transform: translateX(50%) rotate(135deg); }
  .m-handoff2 .m-handoff2-packet { left: 50%; top: 0; transform: translate(-50%, -50%); }
  .m-handoff2 .m-handoff2-packet.is-travel { left: 50%; top: 100%; }
}

/* ===== Operation Beat 1 — the team you can't afford collapses into one system ===== */
.m-roster {
  position: relative;
  width: min(100%, 560px);
  display: grid;
  gap: 14px;
}

.m-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}

.m-roster-grid span {
  padding: 11px 10px;
  text-align: center;
  border: 1px solid rgba(238,58,57,0.28);
  border-radius: 10px;
  background: rgba(238,58,57,0.06);
  color: var(--m-mid);
  font: 700 0.72rem/1.15 var(--m-font);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.m-roster-grid span.is-in { opacity: 1; transform: none; }

.m-roster-cost {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 2px;
}

.m-roster-cost span {
  color: var(--m-dim);
  font: 700 0.6rem/1 var(--m-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.m-roster-cost strong {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--m-bad);
  transition: color 0.5s ease, opacity 0.5s ease;
}

.m-roster-one {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) scale(0.9);
  width: min(78%, 360px);
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(74,222,128,0.5);
  background: radial-gradient(circle, rgba(74,222,128,0.16), rgba(0,0,0,0.92));
  box-shadow: 0 0 36px rgba(74,222,128,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.m-roster-one b { color: var(--m-good); font: 800 1.4rem/1 var(--m-font); letter-spacing: -0.01em; }
.m-roster-one span { color: var(--m-dim); font: 700 0.56rem/1 var(--m-mono); letter-spacing: 0.14em; text-transform: uppercase; }

.m-roster.is-merged .m-roster-grid { opacity: 0.16; filter: grayscale(1); transform: scale(0.96); }
.m-roster.is-merged .m-roster-cost strong { color: var(--m-dim); opacity: 0.5; text-decoration: line-through; }
.m-roster.is-merged .m-roster-one { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ===== Operation Beat 3 — one campaign brief fans out into every asset ===== */
.m-fanout {
  width: min(100%, 700px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 1.3fr);
  gap: 14px;
  align-items: center;
}

.m-fanout-brief {
  padding: 16px;
  border: 1px solid rgba(74,222,128,0.4);
  border-radius: 14px;
  background: rgba(74,222,128,0.07);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.m-fanout-brief.is-in { opacity: 1; transform: none; }
.m-fanout-brief span { display: block; color: var(--m-good); font: 700 0.56rem/1 var(--m-mono); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; }
.m-fanout-brief b { display: block; font-size: 1.15rem; line-height: 1.1; }
.m-fanout-brief em { display: block; margin-top: 6px; font-style: normal; color: var(--m-dim); font: 600 0.62rem/1.3 var(--m-mono); }

.m-fanout-arrow { color: var(--m-good); font-size: 1.5rem; opacity: 0; transition: opacity 0.5s ease; }
.m-fanout-arrow.is-in { opacity: 1; }

.m-fanout-assets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.m-fanout-asset {
  padding: 10px 11px;
  border: 1px solid var(--m-line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  color: #fff;
  font: 700 0.74rem/1.15 var(--m-font);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.m-fanout-asset.is-in { opacity: 1; transform: none; }
.m-fanout-asset em { display: block; margin-bottom: 3px; font-style: normal; color: var(--m-good); font: 700 0.5rem/1 var(--m-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.m-fanout-asset b { display: block; font-weight: 700; line-height: 1.15; }
.m-fanout-asset i {
  display: inline-block;
  margin-top: 7px;
  font-style: normal;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.1);
  color: var(--m-good);
  font: 700 0.44rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Operation Beat 4 — inventory feed → dynamic Google/Meta ads → sold ===== */
.m-invads {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 60px minmax(0, 1.1fr);
  gap: 10px;
  align-items: center;
}

.m-invads-stock {
  border: 1px solid var(--m-line-strong);
  border-radius: 14px;
  padding: 14px;
  background: var(--m-panel);
}

.m-invads-label {
  display: block;
  margin-bottom: 10px;
  color: var(--m-dim);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-invads-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.m-invads-tiles img {
  width: 100%;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.m-invads-tiles img.is-in { opacity: 1; transform: none; }

.m-invads-feed {
  position: relative;
  height: 3px;
  background: rgba(74,222,128,0.15);
  border-radius: 999px;
}

.m-invads-feed span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: var(--m-good);
  font: 700 0.46rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.m-invads-feed::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--m-good) 0 6px, transparent 6px 14px);
  opacity: 0;
  animation: m-invads-flow 0.8s linear infinite;
}

.m-invads.is-flowing .m-invads-feed::before { opacity: 0.9; }

@keyframes m-invads-flow { to { background-position: 14px 0; } }

.m-invads-channels {
  position: relative;
  display: grid;
  gap: 8px;
}

.m-invads-ad {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 'head head' 'img meta';
  gap: 6px 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--m-line-strong);
  border-radius: 12px;
  background: var(--m-panel);
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.m-invads-ad.is-in {
  opacity: 1;
  transform: none;
  border-color: rgba(74,222,128,0.4);
  box-shadow: 0 0 20px rgba(74,222,128,0.1);
}

.m-invads-ad-head { grid-area: head; display: flex; justify-content: space-between; align-items: center; }
.m-invads-ad-head b { color: #fff; font: 800 0.74rem/1 var(--m-font); }
.m-invads-ad-head span { color: var(--m-dim); font: 700 0.5rem/1 var(--m-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.m-invads-ad > img { grid-area: img; width: 64px; height: 42px; object-fit: cover; border-radius: 6px; }
.m-invads-ad-meta { grid-area: meta; min-width: 0; }
.m-invads-ad-meta b { display: block; font-size: 0.72rem; line-height: 1.1; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-invads-ad-meta span { color: var(--m-good); font: 800 0.85rem/1.2 var(--m-font); }

.m-invads-sold {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(74,222,128,0.6);
  background: rgba(4,36,15,0.85);
  color: var(--m-good);
  font: 700 0.62rem/1 var(--m-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.6, 0.64, 1);
}

.m-invads-sold.is-in { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .m-roster-grid { grid-template-columns: repeat(2, 1fr); }
  .m-roster-grid span { font-size: 0.66rem; padding: 9px 7px; }
  .m-roster-cost strong { font-size: 1.4rem; }
  .m-roster-one { width: min(86%, 320px); padding: 18px; }
  .m-roster-one b { font-size: 1.2rem; }

  .m-fanout { grid-template-columns: 1fr; gap: 10px; }
  .m-fanout-arrow { transform: rotate(90deg); justify-self: center; }
  .m-fanout-brief b { font-size: 1.02rem; }

  .m-invads { grid-template-columns: 1fr; gap: 14px; }
  .m-invads-feed { height: 34px; width: 3px; justify-self: center; }
  .m-invads-feed::before { background: repeating-linear-gradient(180deg, var(--m-good) 0 6px, transparent 6px 14px); animation: m-invads-flow-v 0.8s linear infinite; }
  .m-invads-feed span { top: 50%; left: auto; right: -4px; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
  @keyframes m-invads-flow-v { to { background-position: 0 14px; } }
}

/* ===== Website Beat 3 — the thin listing a buyer can't act on (pairs with the spine) ===== */
.m-thin {
  width: min(100%, 560px);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.m-thin-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(238,58,57,0.32);
  border-radius: 16px;
  background: var(--m-panel);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  filter: saturate(0.7);
}

.m-thin-card img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(0,0,0,0.45));
}

.m-thin-body {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.m-thin-body h3 {
  margin: 2px 0 4px;
  font-size: 1.18rem;
  line-height: 1.12;
  color: var(--m-mid);
}

.m-thin-missing {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.m-thin-missing span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(238,58,57,0.3);
  background: rgba(238,58,57,0.08);
  color: rgba(255,150,146,0.95);
  font: 700 0.56rem/1 var(--m-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.m-thin-missing span.is-in { opacity: 1; transform: none; }

.m-thin-bounce {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(238,58,57,0.38);
  background: rgba(238,58,57,0.08);
  color: rgba(255,150,146,0.95);
  font: 700 0.6rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.m-thin-bounce.is-in { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .m-thin-card { grid-template-columns: 1fr; gap: 10px; }
  .m-thin-card img { height: 120px; }
  .m-thin-body h3 { font-size: 1.02rem; }
}

/* ===== Content Beat 5 — the GEO miss (red mirror of the Beat 6 answer) ===== */
.m-geo--miss .m-geo-a { border-color: rgba(238,58,57,0.32); background: rgba(238,58,57,0.05); }
.m-geo--miss .m-geo-a-head { color: rgba(255,150,146,0.95); }
.m-geo--miss .m-geo-ai { background: var(--m-bad); color: #2a0606; }
.m-geo--miss .m-geo-a p[data-geo-answer] b { background: rgba(238,58,57,0.2); color: #fff; }
.m-geo--miss .m-geo-a p[data-geo-answer].is-typing::after { background: var(--m-bad); }
.m-geo--miss .m-geo-cite i { color: rgba(255,150,146,0.95); }

/* ===== Website Beat 2 — speed/update SLA + $200 credit corner badge ===== */
.m-gen-badge {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: grid;
  gap: 3px;
  padding: 8px 12px;
  border: 1px solid rgba(74,222,128,0.5);
  border-radius: 12px;
  background: rgba(4,36,15,0.92);
  box-shadow: 0 0 24px rgba(74,222,128,0.15);
  text-align: right;
  z-index: 4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.m-gen-badge.is-in { opacity: 1; transform: none; }

.m-gen-badge-row {
  color: var(--m-mid);
  font: 700 0.54rem/1 var(--m-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.m-gen-badge-row b { color: var(--m-good); }

.m-gen-badge-credit {
  color: var(--m-good);
  font: 800 0.6rem/1.1 var(--m-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.m-gen-badge-credit b { color: #fff; }

@media (max-width: 700px) {
  .m-gen-badge {
    position: static;
    justify-self: end;
    bottom: auto;
    text-align: right;
    margin-bottom: 2px;
  }
}

/* "Everything included" checklist (#includes) and the before/after
   comparison table (#compare) are shared chassis components now —
   see .de-includes / .de-compare in css/de-act.css. */
