/* =======================================================
   Möller-Vogel — anti-agency analytics one-pager
   ======================================================= */

:root {
  /* Defaults — overridden by JS palette switcher */
  --bg: #00555a;
  --fg: #ffc94b;
  --soft: #f5e6d3;
  --ink: #1a1a1a;

  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --t: 600ms cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--t), color var(--t);
  overflow-x: hidden;
}

body { cursor: none; }
@media (hover: none) { body { cursor: auto; } }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

::selection { background: var(--fg); color: var(--bg); }

/* ---------- Cursor blob ---------- */
.mv-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--fg);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.18);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), background var(--t);
  z-index: 9999;
  will-change: transform;
}
.mv-cursor.hover { transform: translate(-50%, -50%) scale(0.55); }
.mv-cursor.click { transform: translate(-50%, -50%) scale(0.9); }
@media (hover: none) { .mv-cursor { display: none; } }

/* ---------- Layout primitives ---------- */
.mv-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.mv-rule {
  border: 0;
  border-top: 1px solid currentColor;
  margin: 0;
  opacity: 0.5;
}

/* ---------- Nav ---------- */
.mv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--fg) 25%, transparent);
  transition: background var(--t), border-color var(--t);
}
.mv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mv-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mv-logo-dot {
  width: 10px;
  height: 10px;
  background: var(--fg);
  border-radius: 50%;
  display: inline-block;
  animation: mvPulse 2.4s ease-in-out infinite;
}
@keyframes mvPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}
.mv-nav-links {
  display: none;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 880px) {
  .mv-nav-links { display: flex; }
}
.mv-nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.mv-nav-links a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.mv-nav-links a:hover::before { transform: scaleX(1); }

.mv-nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 200ms ease, color 200ms ease;
}
.mv-nav-cta:hover { background: var(--fg); color: var(--bg); }

/* ---------- Palette switcher ---------- */
.mv-palette-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.mv-palette-rail button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--fg) 40%, transparent);
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}
.mv-palette-rail button:hover { transform: scale(1.15); }
.mv-palette-rail button.active {
  border-color: var(--fg);
  outline: 1px solid var(--fg);
  outline-offset: 2px;
}
.mv-palette-rail button::after {
  content: attr(data-name);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--fg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.mv-palette-rail button:hover::after { opacity: 1; }
@media (max-width: 700px) { .mv-palette-rail { display: none; } }

/* ---------- Hero ---------- */
.mv-hero {
  padding: 140px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-hero-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  opacity: 0.7;
  gap: 16px;
  flex-wrap: wrap;
}
.mv-hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin: 0;
}
.mv-hero-headline .strike {
  text-decoration: line-through;
  text-decoration-thickness: 0.06em;
  opacity: 0.5;
}
.mv-hero-headline em {
  font-style: italic;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.mv-hero-headline .underline {
  position: relative;
  display: inline-block;
}
.mv-hero-headline .underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.04em;
  height: 0.06em;
  background: var(--fg);
  transform-origin: left;
  animation: mvUnderline 1.2s 0.6s cubic-bezier(0.7, 0, 0.3, 1) both;
}
@keyframes mvUnderline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.mv-hero-foot {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .mv-hero-foot { grid-template-columns: 1.2fr 1fr; align-items: end; }
}
.mv-hero-lede {
  font-family: var(--mono);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0;
}
.mv-hero-lede strong { font-weight: 700; }

.mv-hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (min-width: 880px) {
  .mv-hero-cta-row { align-items: flex-end; }
}

/* Big arrow CTA */
.mv-cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px 18px 32px;
  border: 1.5px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 240ms ease;
}
.mv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform 320ms cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.mv-cta:hover { color: var(--bg); }
.mv-cta:hover::before { transform: translateY(0); }
.mv-cta .arrow { transition: transform 280ms ease; }
.mv-cta:hover .arrow { transform: translateX(6px); }

/* Hero variant: split */
.mv-hero[data-variant="split"] .mv-hero-headline {
  display: grid;
  grid-template-columns: 1fr;
}
.mv-hero[data-variant="split"] .mv-hero-headline > span {
  display: block;
}
.mv-hero[data-variant="split"] .indent { padding-left: 12vw; }

/* Hero variant: stacked numerals */
.mv-hero[data-variant="numerals"] .mv-hero-headline {
  font-size: clamp(64px, 16vw, 280px);
}
.mv-hero[data-variant="numerals"] .mv-hero-headline em {
  display: block;
  font-size: 0.55em;
  margin-top: -0.1em;
}

/* ---------- Marquee ---------- */
.mv-marquee {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  overflow: hidden;
  padding: 18px 0;
  background: var(--fg);
  color: var(--bg);
  transition: background var(--t), color var(--t);
}
.mv-marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  animation: mvMarquee 28s linear infinite;
  will-change: transform;
}
.mv-marquee-track.reverse { animation-direction: reverse; }
.mv-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.mv-marquee-star {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.7em;
  opacity: 0.6;
}
@keyframes mvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section heads ---------- */
.mv-section {
  padding: 120px 0;
  position: relative;
}
.mv-section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.mv-section h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 56px;
  text-wrap: balance;
  max-width: 18ch;
}
.mv-section h2 em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Services ---------- */
.mv-services {
  border-top: 1px solid currentColor;
}
.mv-service {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 20px;
  border-bottom: 1px solid currentColor;
  position: relative;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease;
}
@media (min-width: 700px) {
  .mv-service {
    display: grid;
    grid-template-columns: 100px 1.2fr 1fr 1fr;
    gap: 24px;
    padding: 36px 24px;
    align-items: start;
  }
}
.mv-service:hover { background: var(--fg); color: var(--bg); }
.mv-service-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.mv-service-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.mv-service-blurb {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  max-width: 38ch;
  opacity: 0.85;
}
.mv-service-tags {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.mv-service-tags span::before { content: "/ "; opacity: 0.5; }

/* ---------- Process ---------- */
.mv-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .mv-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (min-width: 1100px) {
  .mv-process-grid { grid-template-columns: repeat(4, 1fr); }
}
.mv-step {
  border: 1px solid currentColor;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
  position: relative;
}
.mv-step:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-4px);
}
.mv-step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.mv-step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.mv-step-blurb {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.85;
  margin: 0;
  margin-top: auto;
}

/* ---------- Pricing ---------- */
.mv-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
@media (min-width: 880px) {
  .mv-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.mv-price {
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: background 240ms ease, color 240ms ease;
}
.mv-price:hover { background: var(--fg); color: var(--bg); }
.mv-price-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.mv-price-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.mv-price-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mv-price-amount small {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: 8px;
}
.mv-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}
.mv-price-list li {
  padding-left: 18px;
  position: relative;
}
.mv-price-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
}
.mv-price-list li.no::before { content: "–"; opacity: 0.4; }
.mv-price-list li.no { opacity: 0.45; text-decoration: line-through; }
.mv-price-cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- FAQ ---------- */
.mv-faq {
  border-top: 1px solid currentColor;
}
.mv-faq-item {
  border-bottom: 1px solid currentColor;
  padding: 22px 0;
  cursor: pointer;
}
.mv-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  width: 100%;
  text-align: left;
}
.mv-faq-q .mark {
  font-family: var(--mono);
  font-size: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}
.mv-faq-a {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  max-width: 70ch;
  margin: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}
.mv-faq-a > div {
  overflow: hidden;
  min-height: 0;
}
.mv-faq-a > div > p { margin: 16px 0 0; }
.mv-faq-item.open .mv-faq-a { grid-template-rows: 1fr; }

/* ---------- Contact / final CTA ---------- */
.mv-contact {
  padding: 140px 0 100px;
  text-align: left;
  border-top: 1px solid currentColor;
}
.mv-contact-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 24px;
}
.mv-contact-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 48px;
  text-wrap: balance;
}
.mv-contact-headline em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.mv-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.mv-contact-email {
  font-family: var(--mono);
  font-size: 14px;
  opacity: 0.8;
}
.mv-contact-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ---------- Footer ---------- */
.mv-footer {
  border-top: 1px solid currentColor;
  padding: 32px 0;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mv-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  opacity: 0.75;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

body[data-anim="low"] .reveal,
body[data-anim="off"] .reveal {
  transition-duration: 0ms;
  opacity: 1;
  transform: none;
}
body[data-anim="off"] .mv-marquee-track { animation: none; }
body[data-anim="off"] .mv-cursor { display: none; }
body[data-anim="off"] { cursor: auto; }

/* ---------- Section lede ---------- */
.mv-section-lede {
  font-family: var(--mono);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
  margin: -32px 0 56px;
  opacity: 0.85;
}

/* ---------- Services foot ---------- */
.mv-service-foot {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--fg) 30%, transparent);
}

/* ---------- Process step meta ---------- */
.mv-step-meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin: -8px 0 0;
}

/* ---------- Not-for-you grid ---------- */
.mv-notfor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
@media (min-width: 700px) {
  .mv-notfor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .mv-notfor-grid { grid-template-columns: repeat(3, 1fr); }
}
.mv-notfor-item {
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 240ms ease, color 240ms ease;
}
.mv-notfor-item:hover { background: var(--fg); color: var(--bg); }
.mv-notfor-x {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  opacity: 0.7;
}
.mv-notfor-t {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.mv-notfor-s {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
}

/* ---------- Diagnostic banner (above pricing grid) ---------- */
.mv-diagnostic {
  border: 1.5px solid currentColor;
  padding: 36px 32px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  transition: background 240ms ease, color 240ms ease;
}
.mv-diagnostic:hover { background: var(--fg); color: var(--bg); }
.mv-diagnostic-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.mv-diagnostic-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 12px 0 0;
}
.mv-diagnostic-suffix {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin: 12px 0 0;
}
.mv-diagnostic-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 6.5vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.mv-diagnostic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 32px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.5;
}
@media (min-width: 700px) {
  .mv-diagnostic-list { grid-template-columns: repeat(2, 1fr); }
}
.mv-diagnostic-list li {
  padding-left: 22px;
  position: relative;
}
.mv-diagnostic-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  opacity: 0.6;
}
.mv-diagnostic-cta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Pricing 'then' divider ---------- */
.mv-pricing-then {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}
.mv-pricing-then-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ---------- Pricing blurb + highlight ---------- */
.mv-price-blurb {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
  margin: -8px 0 0;
  opacity: 0.85;
}
.mv-price.highlight {
  background: color-mix(in srgb, var(--fg) 10%, transparent);
  position: relative;
}
.mv-price.highlight:hover {
  background: var(--fg);
  color: var(--bg);
}
.mv-price.highlight::before {
  content: "POPULAR";
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 6px 10px;
}
.mv-price.highlight:hover::before {
  background: var(--bg);
  color: var(--fg);
}
.mv-pricing-foot {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 70ch;
}

/* ---------- Tweaks panel polish ---------- */
.mv-tweaks-hint {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 40;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  pointer-events: none;
}

/* =======================================================
   Mobile overrides — palette rail, cursor, tightening
   ======================================================= */

/* Disable cursor blob on touch / narrow screens */
@media (hover: none), (max-width: 700px) {
  body { cursor: auto; }
  .mv-cursor { display: none; }
}

/* Palette rail: horizontal floating pill, bottom-center on mobile */
@media (max-width: 700px) {
  .mv-palette-rail {
    display: flex !important;
    flex-direction: row;
    top: auto;
    bottom: 14px;
    right: 50%;
    transform: translateX(50%);
    gap: 14px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    border: 1px solid color-mix(in srgb, var(--fg) 30%, transparent);
    border-radius: 999px;
  }
  .mv-palette-rail button {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .mv-palette-rail button::after { display: none; }
}

/* Hide tweaks-hint on smaller screens (toolbar handles it) */
@media (max-width: 880px) {
  .mv-tweaks-hint { display: none; }
}

/* Tighter section padding + hero on mobile */
@media (max-width: 700px) {
  .mv-section { padding: 80px 0; }
  .mv-hero { padding: 110px 0 80px; min-height: auto; }
  .mv-contact { padding: 80px 0 140px; } /* extra bottom for the palette pill */
  .mv-section-num { margin-bottom: 36px; }
  .mv-section h2 { margin-bottom: 36px; }
  .mv-section-lede { margin: -20px 0 36px; }
}

/* Nav CTA shrinks on tiny screens, drops the arrow */
@media (max-width: 520px) {
  .mv-nav-cta {
    padding: 8px 12px;
    font-size: 11px;
  }
  .mv-nav-cta span:last-child { display: none; }
  .mv-nav { padding: 10px 0; }
  .mv-logo { font-size: 16px; }
}

/* Hero headline tightening on tiny screens */
@media (max-width: 520px) {
  .mv-hero-headline { font-size: clamp(48px, 16vw, 90px); }
  .mv-hero-meta { font-size: 10px; margin-bottom: 28px; }
  .mv-hero-foot { margin-top: 40px; gap: 24px; }
  .mv-cta {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* Diagnostic banner: stack the amount under the head on mobile */
@media (max-width: 520px) {
  .mv-diagnostic { padding: 24px 20px; }
  .mv-diagnostic-amount { font-size: 56px; }
  .mv-diagnostic-name { font-size: 32px; }
  .mv-diagnostic-list { font-size: 12.5px; }
}

/* Service rows tighten on mobile */
@media (max-width: 700px) {
  .mv-service { padding: 22px 18px; gap: 12px; }
  .mv-service-title { font-size: clamp(24px, 7vw, 32px); }
  .mv-service-blurb { font-size: 13px; max-width: none; }
  .mv-service-tags { font-size: 10.5px; }
  .mv-service-num { font-size: 10.5px; opacity: 0.6; }
}

/* Process cards — slightly less tall on mobile */
@media (max-width: 700px) {
  .mv-step { min-height: auto; padding: 20px; gap: 12px; }
  .mv-step-num { font-size: 56px; }
}

/* Pricing — more breathing room on mobile, kill min-height feel */
@media (max-width: 700px) {
  .mv-price { padding: 28px 24px; gap: 18px; }
  .mv-price-name { font-size: 32px; }
  .mv-price-amount { font-size: 44px; }
  .mv-price.highlight::before {
    font-size: 9px;
    padding: 5px 8px;
  }
}

/* FAQ tighter on mobile */
@media (max-width: 520px) {
  .mv-faq-q { font-size: 18px; gap: 12px; }
  .mv-faq-q .mark { font-size: 12px; }
  .mv-faq-a { font-size: 13px; }
}

/* Contact headline — keep it readable on tiny screens */
@media (max-width: 520px) {
  .mv-contact-headline { font-size: clamp(44px, 14vw, 80px); margin-bottom: 32px; }
}

/* Marquee tighter on mobile */
@media (max-width: 520px) {
  .mv-marquee { padding: 12px 0; }
  .mv-marquee-track { gap: 40px; font-size: 22px; }
  .mv-marquee-track span { gap: 22px; }
}

/* Footer: stack instead of justify */
@media (max-width: 700px) {
  .mv-footer-inner { gap: 6px; line-height: 1.6; }
  .mv-footer-inner span { flex-basis: 100%; }
}

/* Not-for-you items: less padding on small */
@media (max-width: 520px) {
  .mv-notfor-item { padding: 22px 20px 28px; }
  .mv-notfor-x { font-size: 32px; }
}

/* Gutter shrinks on very small screens for a bit more breathing room */
@media (max-width: 480px) {
  :root { --gutter: 18px; }
}
