/* ══════════════════════════════════════════════════════════
   BuyThe200 — CHARLIE MUNGER PAGE
   Scoped to .mnr — inherits .tl variables from theline.css
   ══════════════════════════════════════════════════════════ */

/* ── Page reset ─────────────────────────────────────────── */
.mnr { }
.mnr *, .mnr *::before, .mnr *::after { box-sizing: border-box; }
.mnr p  { margin: 0 0 18px; }
.mnr p:last-child { margin-bottom: 0; }
.mnr em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}

/* ── Shared atoms ───────────────────────────────────────── */
.mnr-rule {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--signal);
  vertical-align: middle;
  margin-right: 14px;
}
.mnr-eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  margin-bottom: 28px;
}
.mnr-section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 24px;
}
.mnr-section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
  letter-spacing: -0.03em;
}
.mnr-section-intro {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 680px;
  margin-bottom: 56px;
}

/* ── HERO ───────────────────────────────────────────────── */
.mnr-hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.mnr-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 25% 60%, var(--signal-glow) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}
.mnr-hero-inner {
  padding: 160px 8vw 80px;
  position: relative;
  z-index: 2;
}
.mnr-hero-kicker {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  margin-bottom: 40px;
}
.mnr-hero-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--bone);
  margin-bottom: 16px;
}
.mnr-hero-dates {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  margin-bottom: 52px;
}
.mnr-hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.38;
  color: var(--bone-2);
  max-width: 580px;
  border-left: 2px solid var(--signal);
  padding-left: 24px;
  margin: 0 0 32px;
}
.mnr-hero-deck {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 540px;
}
.mnr-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--smoke);
  position: relative;
  z-index: 2;
}
.mnr-stat {
  padding: 32px 8vw;
  border-right: 1px solid var(--smoke);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mnr-stat:last-child { border-right: none; }
.mnr-stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--signal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mnr-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mute);
  line-height: 1.5;
}

/* ── BIOGRAPHY ──────────────────────────────────────────── */
.mnr-bio {
  background: var(--smoke);
  padding: 100px 0;
  border-top: 1px solid #222;
}
.mnr-bio-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.mnr-bio-text h2 { margin-bottom: 36px; }
.mnr-bio-text p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--mute-2);
}
.mnr-bio-timeline {
  display: flex;
  flex-direction: column;
}
.mnr-tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #1F1F1F;
}
.mnr-tl-item:last-child { border-bottom: none; }
.mnr-tl-year {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--signal);
}
.mnr-tl-event {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--mute);
}

/* ── FULL-WIDTH PULL QUOTES ─────────────────────────────── */
.mnr-pullquote-full {
  padding: 80px 8vw;
  text-align: center;
  background: var(--ink);
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}
/* Text colour sweep — bone → orange → bone, left to right, fires once */
.mnr-pullquote-glint .mnr-pullquote-text {
  background: linear-gradient(
    90deg,
    #F2EEE5 0%,
    #F2EEE5 33%,
    #E25A1C 50%,
    #F2EEE5 67%,
    #F2EEE5 100%
  );
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mnr-pullquote-glint.mnr-glint-run .mnr-pullquote-text {
  animation: mnr-text-sweep 3s ease-in-out forwards;
}
@keyframes mnr-text-sweep {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}
.mnr-pullquote-alt { background: var(--smoke); }
.mnr-pullquote-full .mnr-pullquote-text {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--bone);
  max-width: 960px;
  margin: 0 auto 20px;
  text-align: center;
}
.mnr-pullquote-full .mnr-pullquote-text em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--signal);
  font-weight: 400;
}
.mnr-pullquote-full cite {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-style: normal;
}

/* ── MENTAL MODELS ──────────────────────────────────────── */
.mnr-models {
  background: var(--ink);
  padding: 100px 0;
  border-top: 1px solid #1A1A1A;
}
.mnr-models-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-inline-quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--mute);
  text-align: center;
  padding: 20px 0;
  margin: 0 auto 56px;
  max-width: 820px;
  background: rgba(226,90,28,0.04);
}
.mnr-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
  margin-bottom: 56px;
}
.mnr-model-card {
  background: var(--ink);
  padding: 32px 24px;
  transition: background 0.25s;
}
.mnr-model-card:hover { background: var(--smoke); }
.mnr-model-icon {
  font-size: 20px;
  color: var(--signal);
  margin-bottom: 14px;
  line-height: 1;
  font-family: var(--mono);
}
.mnr-model-discipline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 14px;
}
.mnr-model-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mnr-model-list li {
  font-family: var(--display);
  font-weight: 300;
  font-size: 12px;
  color: var(--mute);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.mnr-model-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--signal);
  opacity: 0.5;
}
.mnr-models-footer p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--mute);
  max-width: 720px;
}

/* ── FOUR FILTERS ───────────────────────────────────────── */
.mnr-filters {
  background: var(--smoke);
  padding: 100px 0;
  border-top: 1px solid #222;
}
.mnr-filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
}
.mnr-filter-card {
  background: var(--smoke);
  padding: 40px 28px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.mnr-filter-card:hover { background: #202020; }
.mnr-filter-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--signal);
  margin-bottom: 20px;
  opacity: 0.7;
}
.mnr-filter-icon {
  width: 40px; height: 40px;
  color: var(--signal);
  margin-bottom: 20px;
  opacity: 0.7;
}
.mnr-filter-icon svg { width: 100%; height: 100%; }
.mnr-filter-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.mnr-filter-body {
  font-family: var(--display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute);
  margin-bottom: 20px;
  flex: 1;
}
.mnr-filter-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--signal);
  border-top: 1px solid #2A2A2A;
  padding-top: 16px;
  margin-top: 0;
  flex-shrink: 0;
  min-height: 110px;
  opacity: 0.8;
}

/* ── PSYCHOLOGY OF MISJUDGMENT ──────────────────────────── */
.mnr-psych {
  background: var(--ink);
  padding: 100px 0;
  border-top: 1px solid #1A1A1A;
}
.mnr-psych-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-psych-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
  margin-bottom: 48px;
}
.mnr-bias-card {
  background: var(--ink);
  padding: 22px 18px;
  transition: background 0.25s;
}
.mnr-bias-card:hover { background: var(--smoke); }
.mnr-bias-num {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--signal);
  margin-bottom: 8px;
  opacity: 0.6;
}
.mnr-bias-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--bone);
  margin-bottom: 10px;
}
.mnr-bias-desc {
  font-family: var(--display);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
}
.mnr-psych-takeaway {
  border-left: 2px solid var(--signal);
  padding: 28px 32px;
  background: rgba(226,90,28,0.04);
}
.mnr-psych-takeaway p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.8;
  color: var(--mute-2);
  margin: 0;
}

/* ── ON MARKETS ─────────────────────────────────────────── */
.mnr-markets {
  background: var(--smoke);
  padding: 100px 0;
  border-top: 1px solid #222;
}
.mnr-markets-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-markets-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.mnr-markets-text h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--bone);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2A2A2A;
  letter-spacing: -0.02em;
}
.mnr-markets-text p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--mute-2);
}
.mnr-sidebar-card {
  background: var(--ink);
  border: 1px solid #1E1E1E;
  padding: 24px;
  margin-bottom: 16px;
}
.mnr-sidebar-card h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
  font-weight: 400;
}
.mnr-check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mnr-check-list li {
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mute);
  padding-left: 18px;
  position: relative;
}
.mnr-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--signal);
  font-size: 10px;
}
.mnr-check-list--neg li::before { content: '✕'; color: var(--mute); }
.mnr-sidebar-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  border-left: 2px solid var(--signal);
  padding: 14px 18px;
  background: rgba(226,90,28,0.04);
  margin: 0;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════
   THE 200-WEEK MOVING AVERAGE — CHART SECTION
   Matches the homepage "Chart Temple" visual language
   ══════════════════════════════════════════════════════════ */
.mnr-200wma {
  background: var(--ink);
  padding: 100px 0;
  border-top: 1px solid #1A1A1A;
  position: relative;
  overflow: hidden;
}
.mnr-200wma::after {
  content: '';
  position: absolute;
  bottom: 20%; left: 0; right: 0; height: 50%;
  background: radial-gradient(ellipse at 70% 60%, var(--signal-glow) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.mnr-200wma-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
  position: relative;
  z-index: 1;
}
.mnr-200wma-intro {
  max-width: 820px;
  margin-bottom: 60px;
}
.mnr-200wma-lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 24px;
}
.mnr-200wma-intro p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--mute-2);
}

/* Chart wrapper — matches .tl-temple-canvas-wrap aesthetics */
.mnr-chart-wrap {
  background: var(--ink);
  border: 1px solid #1A1A1A;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.mnr-chart-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain, none);
  background-size: 200px 200px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.3;
  z-index: 2;
}
.mnr-chart-header {
  padding: 20px 28px;
  border-bottom: 1px solid #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 3;
}
.mnr-chart-header h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
  font-weight: 400;
}
.mnr-chart-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  background: rgba(10,10,10,0.8);
  padding: 6px 12px;
  border-radius: 3px;
}
.mnr-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mnr-legend-item::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--bone);
}
.mnr-legend-sma::before {
  background: var(--signal);
  height: 2px;
  box-shadow: 0 0 4px var(--signal);
}
.mnr-legend-buy::before {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 6px var(--signal);
}
.mnr-chart-container {
  position: relative;
  z-index: 1;
}
.mnr-chart-svg { width: 100%; height: auto; display: block; }

/* Pulse animation for buy signal dots */
@keyframes mnr-dot-pulse {
  0%   { r: 5; opacity: 0.9; }
  40%  { r: 12; opacity: 0.3; }
  100% { r: 5; opacity: 0; }
}
@keyframes mnr-dot-ring {
  0%   { r: 5;  opacity: 0.6; stroke-width: 1.5; }
  100% { r: 20; opacity: 0;   stroke-width: 0.5; }
}
@keyframes mnr-glint {
  0%   { transform: translateX(-120%); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(960px); opacity: 0; }
}

.mnr-chart-glint {
  animation: mnr-glint 7s ease-in-out infinite;
  animation-delay: 1s;
}
.mnr-buy-dot {
  fill: var(--signal, #E25A1C);
  animation: mnr-dot-pulse 2.4s ease-out infinite;
}
.mnr-buy-dot:nth-child(2) { animation-delay: 0.4s; }
.mnr-buy-dot:nth-child(3) { animation-delay: 0.8s; }
.mnr-buy-ring {
  fill: none;
  stroke: var(--signal, #E25A1C);
  animation: mnr-dot-ring 2.4s ease-out infinite;
}
.mnr-buy-ring:nth-child(2) { animation-delay: 0.4s; }
.mnr-buy-ring:nth-child(3) { animation-delay: 0.8s; }

.mnr-chart-note {
  padding: 12px 28px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--mute);
  border-top: 1px solid #1A1A1A;
  margin: 0;
  opacity: 0.6;
}

/* Explain cards below chart */
.mnr-explain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.mnr-explain-card {
  background: var(--ink);
  padding: 36px 28px;
  transition: background 0.25s;
}
.mnr-explain-card:hover { background: var(--smoke); }
.mnr-explain-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--signal);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.mnr-explain-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: var(--bone);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.mnr-explain-card p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
}

/* ── CHECKLIST ──────────────────────────────────────────── */
.mnr-checklist-sec {
  background: var(--smoke);
  padding: 100px 0;
  border-top: 1px solid #222;
}
.mnr-checklist-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.mnr-checklist-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2A2A2A;
  font-weight: 400;
}
.mnr-cl { list-style: none; padding: 0; margin: 0; }
.mnr-cl-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #1F1F1F;
  align-items: start;
}
.mnr-cl-item:last-child { border-bottom: none; }
.mnr-cl-icon {
  font-size: 12px;
  color: var(--signal);
  line-height: 1.8;
  font-family: var(--mono);
}
.mnr-cl-icon--dim { color: var(--mute); }
.mnr-cl-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.mnr-cl-item p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mute);
  margin: 0;
}

/* ── BOOKS ──────────────────────────────────────────────── */
.mnr-books {
  background: var(--ink);
  padding: 100px 0;
  border-top: 1px solid #1A1A1A;
}
.mnr-books-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
  margin-bottom: 64px;
}
.mnr-book-card {
  background: var(--ink);
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: background 0.25s;
  overflow: hidden;
}
.mnr-book-card:hover { background: var(--smoke); }
.mnr-book-card--primary {
  grid-column: 1 / -1;
  grid-template-columns: 180px 1fr;
}
.mnr-books-grid .mnr-book-card:last-child {
  grid-column: 1 / -1;
}
.mnr-book-cover {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  min-height: 180px;
  position: relative;
}
.mnr-book-cover::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.4));
}
.mnr-book-cover--almanack  { background: linear-gradient(160deg, #1A2510 0%, #0A0F05 100%); }
.mnr-book-cover--seek      { background: linear-gradient(160deg, #1A1008 0%, #0A0805 100%); }
.mnr-book-cover--buffett   { background: linear-gradient(160deg, #0A1020 0%, #050812 100%); }
.mnr-book-cover--intelligence { background: linear-gradient(160deg, #18100A 0%, #0A0805 100%); }
.mnr-book-cover-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  color: var(--bone);
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.mnr-book-cover-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--mute);
  display: block;
}
.mnr-book-info { padding: 24px; }
.mnr-book-info h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--bone);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.mnr-book-author {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--signal);
  margin-bottom: 12px !important;
  opacity: 0.7;
}
.mnr-book-info p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--mute);
}
.mnr-book-verdict strong { color: var(--bone) !important; }

.mnr-speeches h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1A1A1A;
  font-weight: 400;
}
.mnr-speeches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.mnr-speech-card {
  background: var(--ink);
  padding: 24px;
  transition: background 0.25s;
}
.mnr-speech-card:hover { background: var(--smoke); }
.mnr-speech-year {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--signal);
  margin-bottom: 10px;
}
.mnr-speech-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: var(--bone);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.mnr-speech-card p {
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
}

/* ── QUOTES ─────────────────────────────────────────────── */
.mnr-quotes {
  background: var(--smoke);
  padding: 100px 0;
  border-top: 1px solid #222;
}
.mnr-quotes-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
}
.mnr-quote-card {
  background: var(--smoke);
  padding: 32px 24px;
  transition: background 0.25s;
}
.mnr-quote-card:hover { background: #1E1E1E; }
.mnr-quote-card--featured {
  background: var(--ink);
  border-left: 2px solid var(--signal);
}
.mnr-quote-theme {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
  opacity: 0.7;
}
.mnr-quote-card blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--bone-2);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.mnr-quote-card cite {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--mute);
  font-style: normal;
}

/* ── LEGACY ─────────────────────────────────────────────── */
.mnr-legacy {
  background: var(--ink);
  padding: 100px 0;
  border-top: 1px solid #1A1A1A;
}
.mnr-legacy-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8vw;
}
.mnr-legacy-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.mnr-legacy-lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 28px !important;
}
.mnr-legacy-text p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.8;
  color: var(--mute-2);
}
.mnr-compound-viz {
  background: var(--smoke);
  border: 1px solid #222;
  padding: 24px;
  margin-bottom: 24px;
}
.mnr-compound-viz h4 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 4px;
  font-weight: 400;
}
.mnr-compound-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-bottom: 14px !important;
}
.mnr-compound-svg { width: 100%; height: auto; display: block; }
.mnr-munger-nums {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.mnr-mnum {
  background: var(--smoke);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.25s;
}
.mnr-mnum:hover { background: #1E1E1E; }
.mnr-mnum-val {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  color: var(--signal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mnr-mnum-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--mute);
}

/* ── CTA ────────────────────────────────────────────────── */
.mnr-cta {
  background: var(--ink);
  padding: 120px 8vw;
  text-align: center;
  border-top: 1px solid rgba(226,90,28,0.15);
  position: relative;
  overflow: hidden;
}
.mnr-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  opacity: 0.4;
}
.mnr-cta-inner { max-width: 640px; margin: 0 auto; }
.mnr-cta-inner .mnr-eyebrow { justify-content: center; }
.mnr-cta-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 24px;
}
.mnr-cta-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}
.mnr-cta-body {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--mute);
  margin-bottom: 40px;
}
.mnr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  text-decoration: none;
  border: 1px solid rgba(226,90,28,0.4);
  padding: 16px 28px;
  transition: border-color 0.2s, background 0.2s;
}
.mnr-cta-btn:hover {
  border-color: var(--signal);
  background: rgba(226,90,28,0.06);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mnr-models-grid   { grid-template-columns: repeat(2, 1fr); }
  .mnr-filters-grid  { grid-template-columns: repeat(2, 1fr); }
  .mnr-psych-grid    { grid-template-columns: repeat(3, 1fr); }
  .mnr-books-grid    { grid-template-columns: 1fr; }
  .mnr-book-card--primary { grid-template-columns: 150px 1fr; }
  .mnr-speeches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .mnr-bio-inner      { grid-template-columns: 1fr; }
  .mnr-markets-grid   { grid-template-columns: 1fr; }
  .mnr-explain-grid   { grid-template-columns: 1fr; }
  .mnr-checklist-grid { grid-template-columns: 1fr; }
  .mnr-quotes-grid    { grid-template-columns: 1fr 1fr; }
  .mnr-legacy-grid    { grid-template-columns: 1fr; }
  .mnr-hero-stats     { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mnr-hero-title    { font-size: 72px; }
  .mnr-models-grid   { grid-template-columns: 1fr; }
  .mnr-filters-grid  { grid-template-columns: 1fr; }
  .mnr-psych-grid    { grid-template-columns: repeat(2, 1fr); }
  .mnr-books-grid    { grid-template-columns: 1fr; }
  .mnr-book-card     { grid-template-columns: 1fr; }
  .mnr-book-cover    { min-height: 100px; }
  .mnr-speeches-grid { grid-template-columns: 1fr; }
  .mnr-quotes-grid   { grid-template-columns: 1fr; }
}
