/* ============================================================
   ModifyResume — Design System
   Fixed header + scrollable middle + fixed footer
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Colors */
  --accent:         #FF6B35;
  --accent-hover:   #E55A28;
  --accent-soft:    #FFF4EE;
  --ink:            #0F172A;
  --ink-2:          #1E293B;
  --slate-50:       #F8FAFC;
  --slate-100:      #F1F5F9;
  --slate-200:      #E2E8F0;
  --slate-300:      #CBD5E1;
  --slate-400:      #94A3B8;
  --slate-500:      #64748B;
  --slate-600:      #475569;
  --slate-700:      #334155;
  --white:          #FFFFFF;
  --green:          #10B981;
  --green-soft:     #D1FAE5;
  --amber:          #F59E0B;
  --amber-soft:     #FEF3C7;
  --red:            #DC2626;
  --red-soft:       #FEE2E2;
  --reddit:         #FF4500;

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --header-h:     64px;
  --footer-h:     76px;
  --content-max:  920px;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow:       0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15,23,42,0.04);
  --shadow-lg:    0 20px 40px -10px rgba(15, 23, 42, 0.15);

  /* Transitions */
  --ease:         cubic-bezier(.22,.8,.3,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; overflow: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  height: 100dvh;
}

button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--font-mono); font-size: 0.92em; background: var(--slate-100); padding: 2px 6px; border-radius: 4px; color: var(--ink-2); }

img, svg { display: block; max-width: 100%; }

/* ============================================================
   HEADER (fixed)
   ============================================================ */
.mr-header {
  flex: 0 0 auto;
  height: var(--header-h);
  background: var(--ink);
  color: var(--white);
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mr-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mr-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.mr-logo:hover { text-decoration: none; }
.mr-logo-mark { width: 28px; height: 28px; flex-shrink: 0; }
.mr-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }

.mr-progress {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mr-progress-dots {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mr-progress-dot {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 250ms var(--ease);
}
.mr-progress-dot.completed { background: rgba(255, 107, 53, 0.6); }
.mr-progress-dot.current { background: var(--accent); }
.mr-progress-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 0.02em;
}
.mr-progress-text span { color: var(--white); }

.mr-skip-link {
  font-size: 13px;
  color: var(--slate-400);
  font-weight: 500;
}
.mr-skip-link:hover { color: var(--white); text-decoration: none; }

/* ============================================================
   MAIN (scrollable)
   ============================================================ */
.mr-main {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.mr-step {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px 32px 40px;
  animation: stepIn 400ms var(--ease);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mr-canceled-banner {
  max-width: 920px;
  margin: 16px auto 0;
  padding: 12px 20px;
  background: var(--amber-soft);
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  color: #78350F;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mr-close-banner {
  font-size: 16px;
  color: #78350F;
  padding: 4px 8px;
}

/* Step chip (Step X of 8 tag) */
.mr-step-chip {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.mr-step-chip-accent { background: var(--ink); color: var(--white); }
.mr-step-chip-warn { background: var(--red-soft); color: #991B1B; }

/* Titles */
.mr-step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.mr-step-lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-600);
  margin: 0 0 12px;
  max-width: 68ch;
}
.mr-h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 16px;
}
.mr-section-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 48px;
}

/* Hero visuals */
.mr-hero-visual {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 0 0 20px;
  overflow: hidden;
}
.mr-hero-stack { padding: 24px 20px; }
.mr-hero-stack-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-600);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.mr-stack-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mr-stack-tile {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-width: 130px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mr-stack-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background: var(--tile-color, var(--accent));
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.mr-stack-icon svg { width: 22px; height: 22px; }
.mr-stack-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.mr-stack-role { font-size: 12px; color: var(--slate-500); margin-top: 2px; }
.mr-stack-plus {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-400);
}
.mr-stack-equals {
  text-align: center;
  margin-top: 20px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 500;
}

.mr-hero-danger {
  background: var(--red-soft);
  border-color: rgba(220,38,38,0.25);
  padding: 0;
}
.mr-hero-danger svg { width: 100%; height: auto; }

/* Callouts */
.mr-callout {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin: 24px 0;
  border: 1px solid;
  line-height: 1.55;
}
.mr-callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.mr-callout-accent {
  background: var(--accent-soft);
  border-color: rgba(255,107,53,0.25);
  color: var(--ink);
}
.mr-callout-warn {
  background: var(--amber-soft);
  border-color: rgba(245,158,11,0.35);
  color: #78350F;
}

/* Workflow */
.mr-workflow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 32px;
}
.mr-workflow-step {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.mr-workflow-step:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.mr-workflow-num {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mr-workflow-body h3 {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.mr-workflow-body p {
  margin: 0 0 10px;
  color: var(--slate-600);
  font-size: 14.5px;
}

/* Chips */
.mr-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.mr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--slate-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-700);
}
.mr-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Region grid */
.mr-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.mr-region-card {
  padding: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}
.mr-region-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mr-region-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 6px 0;
}
.mr-region-note {
  font-size: 13px;
  color: var(--slate-600);
}

/* Weekly cadence */
.mr-cadence {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 16px 0 32px;
}
.mr-cadence-day {
  text-align: center;
  padding: 12px 4px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.mr-cadence-day.active {
  background: var(--accent-soft);
  border-color: rgba(255,107,53,0.3);
}
.mr-cadence-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}
.mr-cadence-day.active .mr-cadence-label { color: var(--accent); }
.mr-cadence-dot {
  --pct: 100;
  width: 100%;
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
  margin: 8px 0;
  position: relative;
  overflow: hidden;
}
.mr-cadence-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  width: calc(var(--pct) * 1%);
  background: linear-gradient(90deg, var(--accent), #FFA47A);
  border-radius: 3px;
}
.mr-cadence-body {
  font-size: 11px;
  line-height: 1.3;
  color: var(--slate-600);
}

/* Prompts */
.mr-prompts { display: grid; gap: 12px; margin: 16px 0 24px; }
.mr-prompt {
  background: var(--ink);
  color: var(--slate-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.mr-prompt-head {
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.mr-prompt code {
  display: block;
  padding: 14px 16px;
  background: transparent;
  color: #E2E8F0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.55;
}
.mr-reddit-tip {
  padding: 14px 18px;
  background: rgba(255,69,0,0.06);
  border-left: 3px solid var(--reddit);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 16px 0;
}

/* Code block (Step 2) */
.mr-code-block {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0 24px;
  box-shadow: var(--shadow);
}
.mr-code-head {
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  color: var(--slate-400);
  font-size: 12px;
  font-family: var(--font-mono);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mr-dot-r, .mr-dot-y, .mr-dot-g {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
  margin-right: 2px;
}
.mr-dot-r { background: #FF5F57; }
.mr-dot-y { background: #FEBC2E; }
.mr-dot-g { background: #28C840; margin-right: 10px; }
.mr-code-block pre {
  margin: 0;
  padding: 16px 20px;
  color: #E2E8F0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.75;
  overflow-x: auto;
}
.mr-code-block code { background: transparent; padding: 0; color: inherit; }
.c-fn { color: #FF6B35; }
.c-s  { color: #10B981; }

/* Specs grid (Step 2) */
.mr-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 24px;
}
.mr-spec {
  padding: 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}
.mr-spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mr-spec-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* Niche grid */
.mr-niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 16px 0 32px;
}
.mr-niche-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.mr-niche-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.mr-niche-emoji { font-size: 26px; line-height: 1; margin-bottom: 8px; }
.mr-niche-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.mr-niche-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate-600);
}

/* World grid */
.mr-world-grid {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 16px 0;
}
.mr-world-row {
  display: grid;
  grid-template-columns: 40px 200px 1fr;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--slate-200);
}
.mr-world-row:last-child { border-bottom: 0; }
.mr-world-flag { font-size: 20px; }
.mr-world-name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mr-world-boards { color: var(--slate-600); }

/* Bullet list */
.mr-bullet-list {
  margin: 8px 0 24px;
  padding-left: 0;
  list-style: none;
}
.mr-bullet-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.55;
}
.mr-bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   STEP 3 — Risk Cards
   ============================================================ */
.mr-risk-card {
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 16px 0;
  border: 1px solid;
  position: relative;
}
.mr-risk-high {
  background: var(--red-soft);
  border-color: rgba(220,38,38,0.25);
}
.mr-risk-med {
  background: var(--amber-soft);
  border-color: rgba(245,158,11,0.3);
}
.mr-risk-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.mr-risk-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  color: #991B1B;
}
.mr-risk-med .mr-risk-badge { color: #78350F; }
.mr-risk-meta {
  font-size: 12px;
  color: var(--slate-700);
  font-weight: 500;
}
.mr-risk-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
}
.mr-risk-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.mr-risk-stat {
  font-size: 13px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  color: var(--slate-700);
  margin-bottom: 10px;
  line-height: 1.5;
}
.mr-risk-note {
  font-size: 13px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  color: var(--slate-700);
  line-height: 1.5;
}

/* Red flags grid */
.mr-redflags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
  margin: 16px 0 24px;
}
.mr-redflag {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.45;
  align-items: flex-start;
}
.mr-redflag-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
  flex-shrink: 0;
}

/* Privacy list */
.mr-privacy { display: grid; gap: 10px; margin: 16px 0 24px; }
.mr-privacy-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  font-size: 14px;
  line-height: 1.55;
  align-items: flex-start;
}
.mr-privacy-icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 2px; }

/* Pull quote */
.mr-pullquote {
  margin: 24px 0;
  padding: 24px;
  background: #0A66C2;
  color: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
}
.mr-pullquote svg {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.3;
}
.mr-pullquote p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 52px;
}
.mr-pullquote cite {
  display: block;
  padding-left: 52px;
  font-size: 13px;
  font-style: normal;
  opacity: 0.8;
}

/* ============================================================
   STEP 4 — Comparison Table
   ============================================================ */
.mr-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin: 0 0 16px;
  font-size: 13px;
}
.mr-legend-item { display: flex; align-items: center; gap: 8px; }
.mr-dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.mr-dot-safe { background: var(--green); }
.mr-dot-caution { background: var(--amber); }
.mr-dot-risky { background: var(--red); }

.mr-filters {
  display: flex;
  gap: 6px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.mr-filter {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  transition: all 150ms var(--ease);
}
.mr-filter:hover { border-color: var(--slate-400); }
.mr-filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.mr-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.mr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 820px;
}
.mr-table thead {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.mr-table th {
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-600);
}
.mr-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--slate-100);
  vertical-align: top;
}
.mr-table tbody tr:hover { background: var(--slate-50); }
.mr-table tbody tr[data-hidden="1"] { display: none; }
.mr-td-tool {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.mr-tool-dot {
  display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.mr-senti {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}
.mr-senti-1, .mr-senti-2 { background: var(--red-soft); color: #991B1B; }
.mr-senti-3 { background: var(--amber-soft); color: #78350F; }
.mr-senti-4, .mr-senti-5 { background: var(--green-soft); color: #065F46; }

.mr-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mr-badge-safe { background: var(--green-soft); color: #065F46; }
.mr-badge-caution { background: var(--amber-soft); color: #78350F; }
.mr-badge-risky { background: var(--red-soft); color: #991B1B; }

.mr-table-note {
  font-size: 12.5px;
  color: var(--slate-500);
  margin-top: 8px;
}

/* ============================================================
   STEP 5 — Lead Form
   ============================================================ */
.mr-lead-hero {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 8px 0 32px;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #FFE4D3 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mr-pdf-mockup {
  width: 180px;
  background: var(--white);
  border-radius: 8px 8px 10px 10px;
  padding: 0 0 16px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
  transition: transform 300ms var(--ease);
}
.mr-pdf-mockup:hover { transform: rotate(-4deg) translateY(-4px); }
.mr-pdf-2 { transform: rotate(3deg); }
.mr-pdf-2:hover { transform: rotate(3deg) translateY(-4px); }
.mr-pdf-band {
  height: 8px;
  background: var(--accent);
  border-radius: 8px 8px 0 0;
}
.mr-pdf-band-alt { background: var(--ink); }
.mr-pdf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 14px 4px;
  line-height: 1.25;
}
.mr-pdf-sub { padding: 0 14px 12px; font-size: 11px; color: var(--slate-500); }
.mr-pdf-lines, .mr-pdf-checks { padding: 0 14px; }
.mr-pdf-line {
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
  margin-bottom: 6px;
}
.mr-pdf-line.w80 { width: 80%; }
.mr-pdf-line.w90 { width: 90%; }
.mr-pdf-line.w70 { width: 70%; }
.mr-pdf-check {
  font-size: 10.5px;
  color: var(--slate-700);
  padding: 3px 0;
}

.mr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}
.mr-benefits-2col { grid-template-columns: repeat(2, 1fr); }
.mr-benefit {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}
.mr-benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.mr-benefit-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.mr-benefit-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.5;
}

.mr-lead-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin: 20px 0;
}
.mr-lead-form-head { margin-bottom: 18px; }
.mr-lead-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.mr-lead-form-sub {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 2px;
}

.mr-field { display: block; margin-bottom: 14px; }
.mr-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.mr-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.mr-field input[type="email"]:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.mr-field-error {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 13px;
}

.mr-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  color: var(--slate-700);
}
.mr-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.mr-checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: 5px;
  position: relative;
  transition: all 150ms var(--ease);
  margin-top: 1px;
}
.mr-checkbox input:checked + .mr-checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}
.mr-checkbox input:checked + .mr-checkbox-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mr-checkbox input:focus-visible + .mr-checkbox-box {
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}

.mr-btn-block { width: 100%; }
.mr-btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mr-trust-copy {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--slate-500);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mr-lead-success {
  background: var(--green-soft);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  animation: successIn 400ms var(--ease);
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.mr-success-icon { margin: 0 auto 12px; width: 64px; }
.mr-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.mr-success-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 12px;
}
.mr-success-next {
  font-size: 13px;
  color: var(--slate-600);
  margin: 0;
}

/* ============================================================
   STEP 6 & 7 — Product
   ============================================================ */
.mr-product-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 0 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--ink) 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.mr-product-cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--accent) 0%, #CC5325 100%);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.mr-product-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(circle at bottom left, rgba(0,0,0,0.15), transparent 60%);
  pointer-events: none;
}
.mr-product-cover-alt {
  background: linear-gradient(150deg, #0A66C2 0%, #044E9C 100%);
}
.mr-product-cover-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mr-product-cover-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 10px;
}
.mr-product-cover-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: auto;
}
.mr-product-cover-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.mr-product-cover-seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(255,255,255,0.5);
}
.mr-product-pitch { display: flex; flex-direction: column; gap: 10px; }
.mr-product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--white);
}
.mr-product-lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.mr-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 4px 0 6px;
  flex-wrap: wrap;
}
.mr-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.mr-price-upsell { font-size: 38px; }
.mr-price-strike {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.mr-price-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.mr-for-box {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin: 20px 0;
  align-items: flex-start;
}
.mr-for-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 3px;
}
.mr-for-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.mr-guarantee {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin: 20px 0;
  align-items: center;
}
.mr-guarantee-icon {
  width: 48px; height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mr-guarantee strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.mr-guarantee p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--slate-600);
}

.mr-urgency {
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--amber-soft);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #78350F;
}

/* Bundle hero */
.mr-bundle-hero {
  display: grid;
  grid-template-columns: 140px auto 140px auto auto;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  margin: 0 0 28px;
}
.mr-bundle-hero .mr-product-cover { aspect-ratio: 3/4; width: 140px; padding: 14px; }
.mr-bundle-hero .mr-product-cover-title { font-size: 14px; }
.mr-bundle-hero .mr-product-cover-tag { font-size: 8px; }
.mr-bundle-hero .mr-product-cover-sub { font-size: 10px; }
.mr-bundle-plus, .mr-bundle-equals {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
}
.mr-bundle-price { color: var(--white); text-align: center; }
.mr-bundle-was {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.mr-bundle-now {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.mr-bundle-note {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.mr-bundle-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
.mr-bundle-section {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 18px;
}
.mr-bundle-section-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--slate-200);
}
.mr-bundle-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 13.5px;
}
.mr-bundle-list li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: var(--slate-700);
  line-height: 1.45;
}
.mr-bundle-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   STEP 8 — References
   ============================================================ */
.mr-refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.mr-ref-card {
  padding: 14px 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all 150ms var(--ease);
}
.mr-ref-card:hover {
  background: var(--accent-soft);
  border-color: rgba(255,107,53,0.25);
  text-decoration: none;
  transform: translateY(-1px);
}
.mr-ref-handle {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--reddit);
  font-size: 14px;
}
.mr-ref-note {
  font-size: 12px;
  color: var(--slate-600);
  margin-top: 4px;
}
.mr-refs-linklist {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
  columns: 2;
  column-gap: 20px;
}
.mr-refs-linklist li {
  break-inside: avoid;
  padding: 4px 0;
  font-size: 13.5px;
}
.mr-refs-linklist a { word-break: break-word; }

.mr-small { font-size: 13px; color: var(--slate-600); }
.mr-footer-note {
  margin-top: 32px;
  padding: 14px 16px;
  background: var(--slate-50);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.5;
}

/* ============================================================
   FOOTER (fixed)
   ============================================================ */
.mr-footer {
  flex: 0 0 auto;
  height: var(--footer-h);
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.06);
  z-index: 50;
}
.mr-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mr-footer-right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

.mr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 150ms var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.mr-btn:hover { text-decoration: none; }
.mr-btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}
.mr-btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}
.mr-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.mr-btn-secondary {
  background: var(--white);
  color: var(--slate-600);
  border: 1px solid var(--slate-300);
}
.mr-btn-secondary:hover:not(:disabled) {
  border-color: var(--slate-400);
  color: var(--ink);
}
.mr-btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }
.mr-btn-ghost {
  background: transparent;
  color: var(--slate-600);
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
}
.mr-btn-ghost:hover { color: var(--ink); background: var(--slate-100); }
.mr-btn-large { padding: 14px 28px; font-size: 15.5px; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 56px; --footer-h: 72px; }
  .mr-header-inner { padding: 0 14px; gap: 12px; }
  .mr-logo-text { display: none; }
  .mr-progress-dots { gap: 3px; }
  .mr-progress-dot { width: 16px; height: 3px; }
  .mr-skip-link { font-size: 11px; }

  .mr-step { padding: 24px 16px 40px; }
  .mr-step-title { font-size: 26px; }
  .mr-step-lede { font-size: 15px; }
  .mr-h2 { font-size: 18px; margin: 28px 0 12px; }

  .mr-region-grid, .mr-specs-grid { grid-template-columns: 1fr; }
  .mr-cadence { grid-template-columns: repeat(7, 1fr); padding: 10px; gap: 4px; }
  .mr-cadence-day { padding: 8px 2px; }
  .mr-cadence-body { font-size: 9px; line-height: 1.2; }

  .mr-stack-grid { flex-direction: column; }
  .mr-stack-plus { transform: rotate(90deg); }

  .mr-world-row {
    grid-template-columns: 30px 1fr;
    gap: 8px;
  }
  .mr-world-boards {
    grid-column: 1 / -1;
    padding-left: 38px;
    font-size: 13px;
  }

  .mr-benefits-grid, .mr-benefits-2col { grid-template-columns: 1fr; }

  .mr-lead-hero { flex-direction: column; align-items: center; gap: 16px; padding: 20px; }
  .mr-pdf-mockup { width: 160px; }

  .mr-product-hero { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .mr-product-cover { max-width: 200px; margin: 0 auto; }

  .mr-bundle-hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .mr-bundle-hero .mr-product-cover { margin: 0 auto; }
  .mr-bundle-plus, .mr-bundle-equals { text-align: center; font-size: 20px; }
  .mr-bundle-sections { grid-template-columns: 1fr; }

  .mr-refs-linklist { columns: 1; }

  .mr-footer-inner { padding: 0 12px; gap: 8px; }
  .mr-footer-right { gap: 6px; }
  .mr-btn { padding: 10px 14px; font-size: 13px; }
  .mr-btn-large { padding: 12px 18px; font-size: 14px; }
  .mr-btn-ghost { padding: 8px 10px; font-size: 12px; }

  .mr-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .mr-filter { white-space: nowrap; }

  .mr-pullquote p { padding-left: 0; padding-top: 40px; font-size: 16px; }
  .mr-pullquote cite { padding-left: 0; }
}

/* Focus states for accessibility */
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Step transition */
.mr-step[hidden] { display: none; }

/* ============================================================
   V2 COMPONENTS — one-screenful micro-steps
   ============================================================ */

/* Step 3: compact 5-move flow */
.mr-flow-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
}
.mr-flow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.45;
}
.mr-flow-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

/* Step 7: avoid grid (6 tiles) */
.mr-avoid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mr-avoid-tile {
  padding: 12px 14px;
  background: white;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px;
  border-top: 3px solid #DC2626;
}
.mr-avoid-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.mr-avoid-reason {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.4;
}

/* Step 8: red flag hero (3 cards) */
.mr-redflag-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mr-rf-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--red);
  border-radius: 10px;
}
.mr-rf-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.mr-rf-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.2;
}
.mr-rf-sub {
  font-size: 11px;
  color: var(--slate-600);
  margin-top: 2px;
  line-height: 1.3;
}

/* Step 9: pdfs side-by-side hero */
.mr-hero-pdfs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #FFE4D3 100%);
  border: 0;
}
.mr-hero-pdfs .mr-pdf-mockup { width: 150px; }

/* Step 11/12a: product hero (cover + pitch side-by-side) */
.mr-hero-product {
  background: linear-gradient(135deg, var(--ink) 0%, #1E293B 100%);
  border: 0;
  color: white;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
}
.mr-hero-product .mr-product-cover {
  aspect-ratio: 3 / 4;
  width: 180px;
  padding: 14px;
}
.mr-hero-product .mr-product-cover-title { font-size: 15px; }
.mr-hero-product .mr-product-cover-sub { font-size: 10px; }
.mr-hero-product .mr-product-cover-tag { font-size: 9px; }

.mr-product-pitch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mr-product-lede-light {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.mr-product-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}
.mr-product-bullets li {
  position: relative;
  padding: 3px 0 3px 18px;
}
.mr-product-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent);
  font-weight: 700;
}

/* Step 12b: bundle compact (3 elements side by side) */
.mr-hero-bundle {
  background: linear-gradient(135deg, var(--ink) 0%, #1E293B 100%);
  border: 0;
  color: white;
  padding: 20px;
}
.mr-bundle-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.mr-bundle-compact .mr-product-cover {
  width: 120px;
  aspect-ratio: 3 / 4;
  padding: 12px;
}
.mr-bundle-compact .mr-product-cover-title { font-size: 12px; }
.mr-bundle-compact .mr-product-cover-sub { font-size: 9px; }
.mr-bundle-compact .mr-product-cover-tag { font-size: 8px; }
.mr-bundle-compact .mr-bundle-plus,
.mr-bundle-compact .mr-bundle-equals {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}
.mr-bundle-compact .mr-bundle-price {
  color: white;
  text-align: center;
  padding: 0 8px;
}
.mr-bundle-compact .mr-bundle-was {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}
.mr-bundle-compact .mr-bundle-now {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.mr-bundle-compact .mr-bundle-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Condense price-row on v2 product hero */
.mr-hero-product .mr-price-row { margin: 0; gap: 10px; }
.mr-hero-product .mr-price { font-size: 38px; }
.mr-hero-product .mr-price-upsell { font-size: 32px; }

/* Tighten lead form for step 9 */
#step-9 .mr-lead-form {
  margin-top: 8px;
  padding: 16px 18px;
}
#step-9 .mr-field { margin-bottom: 10px; }
#step-9 .mr-checkbox { margin-bottom: 12px; font-size: 13px; }
#step-9 .mr-trust-copy { margin-top: 10px; font-size: 11px; }

/* Mobile — stack the hero grids */
@media (max-width: 768px) {
  .mr-hero-product {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }
  .mr-hero-product .mr-product-cover { margin: 0 auto; }
  .mr-avoid-grid { grid-template-columns: repeat(2, 1fr); }
  .mr-redflag-hero { grid-template-columns: 1fr; }
  .mr-bundle-compact { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .mr-hero-pdfs { flex-direction: column; gap: 12px; }
}

