/* Mr Manual landing — FullMC cyber manifest */
:root {
  --wmm-accent: #4ade80;
  --wmm-accent-hot: #22c55e;
  --wmm-accent-dim: rgba(74, 222, 128, 0.35);
  --wmm-danger: #f87171;
  --wmm-text: #e5e7eb;
  --wmm-muted: #94a3b8;
  --wmm-card: rgba(8, 14, 24, 0.92);
  --wmm-font-display: "Orbitron", "Segoe UI", system-ui, sans-serif;
  --wmm-font-mono: "Share Tech Mono", ui-monospace, monospace;
}

html.page-whoismrmanual {
  scroll-behavior: smooth;
}

html.theme-cyber.page-whoismrmanual {
  background-color: #020617;
  background-image:
    url("/assets/training-hex-grid.svg"),
    radial-gradient(ellipse 120vw 80vh at 50% -10%, rgba(34, 197, 94, 0.14), transparent 55%),
    linear-gradient(180deg, #000 0%, #030a06 45%, #000 100%);
  background-size: 224px calc(224px * 168 / 193.99), 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
}

body.page-whoismrmanual {
  margin: 0;
  color: var(--wmm-text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.wmm-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px 72px;
}

/* ─── HERO ─── */
.wmm-hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 20px 48px;
  margin: 0 -16px 36px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  border-bottom: 1px solid var(--wmm-accent-dim);
}

.wmm-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.wmm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.94) 100%),
    url("/assets/cyber-stadium-night.png") center 25% / cover no-repeat;
  animation: wmm-hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes wmm-hero-zoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

.wmm-hero-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(74, 222, 128, 0.025) 3px,
    rgba(74, 222, 128, 0.025) 4px
  );
  pointer-events: none;
  opacity: 0.7;
}

.wmm-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(74, 222, 128, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 20%, transparent 85%);
  pointer-events: none;
}

.wmm-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.wmm-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--wmm-accent-dim);
  background: rgba(0, 32, 16, 0.55);
  font-family: var(--wmm-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #86efac;
}

.wmm-hero-pre {
  display: block;
  margin-bottom: 4px;
  font-family: var(--wmm-font-mono);
  font-size: clamp(0.72rem, 2.5vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wmm-muted);
}

.wmm-hero-name {
  display: block;
  font-family: var(--wmm-font-display);
  font-size: clamp(2.6rem, 12vw, 4.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wmm-accent);
  text-shadow:
    0 0 24px rgba(74, 222, 128, 0.55),
    0 0 64px rgba(34, 197, 94, 0.22);
}

.wmm-hero-lead {
  margin: 14px 0 18px;
  font-size: clamp(1rem, 3.2vw, 1.22rem);
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 34rem;
}

.wmm-terminal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 22px;
  padding: 12px 14px;
  max-width: 36rem;
  border-radius: 12px;
  border: 1px solid var(--wmm-accent-dim);
  background: rgba(0, 14, 8, 0.72);
  font-family: var(--wmm-font-mono);
  font-size: clamp(0.68rem, 2.2vw, 0.82rem);
  line-height: 1.5;
  color: #bbf7d0;
  box-shadow: inset 0 0 32px rgba(0, 40, 20, 0.4);
}

.wmm-terminal-prompt {
  color: var(--wmm-accent);
  flex-shrink: 0;
}

.wmm-terminal-cursor {
  animation: wmm-cursor 0.75s step-end infinite;
  color: var(--wmm-accent);
}

@keyframes wmm-cursor {
  50% { opacity: 0; }
}

.wmm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.wmm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.32), rgba(6, 78, 59, 0.38));
  color: #ecfdf5;
  font-family: var(--wmm-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.22);
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}

.wmm-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.8);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.35);
}

.wmm-btn--ghost {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  box-shadow: none;
}

.wmm-btn--ghost:hover {
  border-color: var(--wmm-accent-dim);
  color: #bbf7d0;
}

.wmm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.wmm-stat {
  flex: 1 1 100px;
  min-width: 90px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(74, 222, 128, 0.22);
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(6px);
}

.wmm-stat dt {
  margin: 0 0 4px;
  font-family: var(--wmm-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wmm-muted);
}

.wmm-stat dd {
  margin: 0;
  font-family: var(--wmm-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wmm-accent);
  line-height: 1;
}

.wmm-stat-suf {
  font-size: 0.85rem;
  opacity: 0.85;
}

.wmm-stat-label {
  font-size: 1.1rem !important;
  letter-spacing: 0.12em;
}

.wmm-scroll-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--wmm-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(148, 163, 184, 0.75);
  animation: wmm-bounce 2.2s ease-in-out infinite;
}

@keyframes wmm-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ─── SECTIONS ─── */
.wmm-section {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wmm-section.wmm-visible {
  opacity: 1;
  transform: none;
}

.wmm-section-head {
  margin-bottom: 20px;
}

.wmm-section-head--center {
  text-align: center;
}

.wmm-section-head h2 {
  margin: 6px 0 8px;
  font-family: var(--wmm-font-display);
  font-size: clamp(1.25rem, 3.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
}

.wmm-section-head p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--wmm-muted);
}

.wmm-section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.wmm-kicker {
  display: inline-block;
  font-family: var(--wmm-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wmm-accent);
}

/* ─── COMPARE ─── */
.wmm-compare-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 320px;
  margin: 0 auto 18px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
}

.wmm-compare-tab {
  position: relative;
  z-index: 2;
  padding: 11px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: var(--wmm-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wmm-muted);
  cursor: pointer;
  transition: color 0.25s;
}

.wmm-compare-tab.is-active {
  color: #ecfdf5;
}

.wmm-compare-tab--auto.is-active {
  color: #fecaca;
}

.wmm-compare-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.45), rgba(6, 78, 59, 0.55));
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.35s;
  pointer-events: none;
}

.wmm-compare-stage[data-wmm-active="auto"] .wmm-compare-slider,
.wmm-compare-toggle:has(.wmm-compare-tab--auto.is-active) .wmm-compare-slider {
  transform: translateX(100%);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(69, 10, 10, 0.55));
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.wmm-compare-stage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--wmm-accent-dim);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 197, 94, 0.08), transparent 70%),
    var(--wmm-card);
  transition: border-color 0.35s;
}

.wmm-compare-stage[data-wmm-active="auto"] {
  border-color: rgba(239, 68, 68, 0.35);
}

.wmm-pitch {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(74, 222, 128, 0.2);
  background: #041208;
  min-height: 200px;
}

.wmm-pitch-svg {
  display: block;
  width: 100%;
  height: auto;
}

.wmm-pitch-grass {
  fill: url(#wmm-grass-grad);
  fill: #0a2e14;
}

.wmm-pitch-line {
  stroke: rgba(74, 222, 128, 0.35);
  stroke-width: 1.5;
  fill: none;
}

.wmm-player {
  fill: #64748b;
}

.wmm-player--you {
  fill: #4ade80;
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.8));
}

.wmm-player--mate {
  fill: #38bdf8;
}

.wmm-player--foe {
  fill: #f87171;
}

.wmm-pass {
  stroke-width: 2.5;
  stroke-dasharray: 6 4;
  opacity: 0;
  transition: opacity 0.4s;
}

.wmm-pass--auto {
  stroke: #f87171;
}

.wmm-pass--manual {
  stroke: #4ade80;
  stroke-dasharray: none;
}

.wmm-pitch-label {
  font-family: var(--wmm-font-display);
  font-size: 18px;
  font-weight: 900;
  text-anchor: middle;
  opacity: 0;
  transition: opacity 0.4s;
}

.wmm-pitch-label--auto { fill: #fca5a5; }
.wmm-pitch-label--manual { fill: #86efac; }

.wmm-compare-stage[data-wmm-active="auto"] .wmm-pass--auto,
.wmm-compare-stage[data-wmm-active="auto"] .wmm-pitch-label--auto,
.wmm-compare-stage[data-wmm-active="auto"] .wmm-player--auto-target {
  opacity: 1;
}

.wmm-compare-stage[data-wmm-active="auto"] .wmm-pass--manual,
.wmm-compare-stage[data-wmm-active="auto"] .wmm-pitch-label--manual,
.wmm-compare-stage[data-wmm-active="auto"] .wmm-player--manual-target {
  opacity: 0.25;
}

.wmm-compare-stage[data-wmm-active="manual"] .wmm-pass--manual,
.wmm-compare-stage[data-wmm-active="manual"] .wmm-pitch-label--manual,
.wmm-compare-stage[data-wmm-active="manual"] .wmm-player--manual-target {
  opacity: 1;
}

.wmm-compare-stage[data-wmm-active="manual"] .wmm-pass--auto,
.wmm-compare-stage[data-wmm-active="manual"] .wmm-pitch-label--auto,
.wmm-compare-stage[data-wmm-active="manual"] .wmm-player--auto-target {
  opacity: 0.25;
}

.wmm-pass--auto,
.wmm-pass--manual {
  opacity: 0;
}

.wmm-compare-stage[data-wmm-active="auto"] .wmm-pass--auto { opacity: 1; }
.wmm-compare-stage[data-wmm-active="manual"] .wmm-pass--manual { opacity: 1; }

.wmm-compare-stage[data-wmm-active="auto"] .wmm-pitch-label--auto { opacity: 1; }
.wmm-compare-stage[data-wmm-active="manual"] .wmm-pitch-label--manual { opacity: 1; }

.wmm-pitch-hud {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--wmm-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.35s;
}

.wmm-pitch-hud--auto {
  background: rgba(69, 10, 10, 0.85);
  color: #fecaca;
}

.wmm-pitch-hud--manual {
  background: rgba(6, 78, 59, 0.85);
  color: #bbf7d0;
}

.wmm-compare-stage[data-wmm-active="auto"] .wmm-pitch-hud--auto { opacity: 1; }
.wmm-compare-stage[data-wmm-active="manual"] .wmm-pitch-hud--manual { opacity: 1; }

.wmm-compare-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wmm-compare-note {
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s, transform 0.35s, border-color 0.35s;
  pointer-events: none;
}

.wmm-compare-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wmm-compare-note span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--wmm-muted);
}

.wmm-compare-note--auto strong { color: #fca5a5; }
.wmm-compare-note--manual strong { color: #86efac; }

.wmm-compare-stage[data-wmm-active="auto"] .wmm-compare-note--auto {
  opacity: 1;
  transform: none;
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(69, 10, 10, 0.25);
  pointer-events: auto;
}

.wmm-compare-stage[data-wmm-active="manual"] .wmm-compare-note--manual {
  opacity: 1;
  transform: none;
  border-color: var(--wmm-accent-dim);
  background: rgba(6, 78, 59, 0.2);
  pointer-events: auto;
}

/* ─── HUD ─── */
.wmm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.wmm-card {
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid var(--wmm-accent-dim);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 197, 94, 0.1), transparent 70%),
    var(--wmm-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.wmm-card h2 {
  margin: 6px 0 10px;
  font-family: var(--wmm-font-display);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
}

.wmm-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--wmm-muted);
}

.wmm-card p + p {
  margin-top: 10px;
}

.wmm-hud-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--wmm-accent-dim);
  background:
    url("/assets/cyber-pitch-pcb-bg.svg") center / cover no-repeat,
    rgba(2, 8, 6, 0.92);
}

.wmm-gamepad {
  width: 100%;
  max-width: 260px;
}

.wmm-pad-body {
  fill: rgba(15, 23, 42, 0.9);
  stroke: rgba(74, 222, 128, 0.35);
  stroke-width: 2;
}

.wmm-stick-base {
  fill: rgba(6, 78, 59, 0.35);
  stroke: rgba(74, 222, 128, 0.45);
  stroke-width: 1.5;
}

.wmm-stick-knob {
  fill: #4ade80;
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.7));
  transition: cx 0.08s linear, cy 0.08s linear;
}

.wmm-stick-trail {
  stroke: rgba(74, 222, 128, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.wmm-power-meter {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.wmm-power-label {
  font-family: var(--wmm-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--wmm-muted);
}

.wmm-power-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(74, 222, 128, 0.25);
  overflow: hidden;
}

.wmm-power-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #4ade80, #bbf7d0);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
  transition: width 0.08s linear;
}

.wmm-power-value {
  font-family: var(--wmm-font-mono);
  font-size: 0.72rem;
  color: var(--wmm-accent);
  min-width: 2.5em;
  text-align: right;
}

.wmm-hud-readout {
  margin-top: 10px;
  text-align: center;
  font-family: var(--wmm-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #bbf7d0;
}

/* ─── RADAR ─── */
.wmm-radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  border-radius: 22px;
  border: 1px solid var(--wmm-accent-dim);
  background: var(--wmm-card);
}

.wmm-radar-grid polygon,
.wmm-radar-grid line {
  fill: none;
  stroke: rgba(74, 222, 128, 0.15);
  stroke-width: 1;
}

.wmm-radar-shape {
  fill: rgba(34, 197, 94, 0.25);
  stroke: var(--wmm-accent);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.4));
  transform-origin: 160px 160px;
  transform: scale(0.3);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
}

.wmm-radar-block.wmm-visible .wmm-radar-shape {
  transform: scale(1);
  opacity: 1;
}

.wmm-radar-labels text {
  font-family: var(--wmm-font-mono);
  font-size: 9px;
  fill: var(--wmm-muted);
  letter-spacing: 0.06em;
}

.wmm-radar {
  width: min(100%, 320px);
  height: auto;
}

.wmm-radar-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--wmm-muted);
}

.wmm-radar-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wmm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wmm-accent);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.wmm-dot--dim {
  background: #64748b;
  box-shadow: none;
}

/* ─── MANIFESTO ─── */
.wmm-manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.wmm-manifesto-card {
  padding: 20px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.88);
  transition: border-color 0.25s, transform 0.25s;
}

.wmm-manifesto-card:hover {
  border-color: var(--wmm-accent-dim);
  transform: translateY(-3px);
}

.wmm-manifesto-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.wmm-manifesto-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--wmm-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wmm-manifesto-card h3 {
  margin: 0 0 8px;
  font-family: var(--wmm-font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.wmm-manifesto-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--wmm-muted);
}

/* ─── PATH ─── */
.wmm-path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(74, 222, 128, 0.25);
  margin-left: 18px;
}

.wmm-path-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 0 0 28px 20px;
  position: relative;
}

.wmm-path-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--wmm-accent);
  background: #020617;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.45);
}

.wmm-path-num {
  font-family: var(--wmm-font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(74, 222, 128, 0.35);
  line-height: 1;
}

.wmm-path-step strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--wmm-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.wmm-path-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--wmm-muted);
}

/* ─── VISION ─── */
.wmm-vision {
  position: relative;
  padding: 36px 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--wmm-accent-dim);
  text-align: center;
}

.wmm-vision-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.92)),
    url("/assets/entrance-gate.png") center / cover no-repeat;
  transform: scale(1.05);
  animation: wmm-hero-zoom 28s ease-in-out infinite alternate;
}

.wmm-vision-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.wmm-vision h2 {
  margin: 8px 0 12px;
  font-family: var(--wmm-font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.wmm-vision p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.9);
}

/* ─── FINAL ─── */
.wmm-final {
  position: relative;
  text-align: center;
  padding: 40px 22px;
  border-radius: 24px;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: var(--wmm-card);
  overflow: hidden;
}

.wmm-final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 110%, rgba(34, 197, 94, 0.22), transparent 65%);
  pointer-events: none;
}

.wmm-final h2 {
  position: relative;
  margin: 0 0 10px;
  font-family: var(--wmm-font-display);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wmm-accent);
  text-shadow: 0 0 28px rgba(74, 222, 128, 0.35);
}

.wmm-final > p {
  position: relative;
  margin: 0 0 22px;
  color: var(--wmm-muted);
  font-size: 0.92rem;
}

.wmm-final .wmm-hero-cta {
  position: relative;
  justify-content: center;
}

.wmm-final-tag {
  position: relative;
  margin: 20px 0 0 !important;
  font-family: var(--wmm-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.65) !important;
}

.wmm-versions {
  position: relative;
  margin: 12px 0 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--wmm-muted) !important;
}

.wmm-versions a {
  color: #86efac;
  text-decoration: none;
}

.wmm-versions a:hover {
  text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 760px) {
  .wmm-compare-stage,
  .wmm-split,
  .wmm-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .wmm-hero {
    min-height: 92vh;
    padding-bottom: 52px;
  }

  .wmm-btn {
    width: 100%;
  }

  .wmm-compare-toggle {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wmm-hero::before,
  .wmm-vision-bg,
  .wmm-scroll-hint,
  .wmm-section,
  .wmm-radar-shape,
  .wmm-terminal-cursor {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .wmm-radar-shape {
    opacity: 1;
    transform: scale(1);
  }
}
