  /* ===== SLIDE 10: POSITION ===== */
  .position-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    width: 100%;
  }

  .position-hero {
    background: #1E1E1E;
    border: 2px solid var(--blue);
    border-radius: 0;
    padding: 1.5rem 1.75rem;
    box-shadow: none;
  }

  .comp-table {
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }

  .comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr 0.7fr 0.7fr;
    border-bottom: 1px solid var(--border);
  }

  .comp-row:last-child { border-bottom: none; }

  .comp-cell {
    padding: 0.6rem 0.7rem;
    font-size: 0.72rem;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
  }

  .comp-cell:last-child { border-right: none; }

  .comp-row.header .comp-cell {
    font-weight: 700;
    background: #1A1A1A;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comp-row.tehiru-row {
    border-left: 3px solid #C8A86A;
  }
  .comp-row.tehiru-row .comp-cell {
    background: rgba(200,168,106,0.10);
    font-weight: 700;
    color: #C8A86A;
  }

  .check { color: var(--green); font-weight: 700; }
  .cross { color: var(--red); font-weight: 700; }

/* ===== SLIDE 10: MARKET VALIDATION ===== */

/* $1.5B total callout — gold, prominent */
.mv-total-callout {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  background: rgba(184,168,138,0.10);
  border: 1px solid rgba(184,168,138,0.45);
  border-left: 4px solid var(--blue);
  padding: 0.55rem 1.2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 0.8rem;
}

.mv-total-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

.mv-total-label {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Cards grid */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 0.8rem;
}

.mv-card {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mv-card--alt {
  background: #1E1E1E;
  border-color: #3A3836;
}

/* Flag label — text + larger emoji */
.mv-flag-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
}

.mv-flag-emoji {
  font-size: 1.4rem;
  line-height: 1;
}

/* Card body text — was 0.8rem, now bigger */
.mv-card-desc {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E8E4E0;
  line-height: 1.3;
}

/* Dollar amounts */
.mv-card-amount {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: #C8A86A;
  line-height: 1;
}

/* Italic description / quote — was 0.68rem */
.mv-card-detail {
  font-size: 0.75rem;
  color: #E8E4E0;
  line-height: 1.4;
  font-style: italic;
}

/* Breakdown list (DoD card) — was 0.62rem */
.mv-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.7rem;
  color: #E8E4E0;
}

.mv-breakdown-num {
  color: var(--blue);
  font-weight: 600;
}

/* Source citation — was 0.48rem / barely visible */
.mv-source {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #AAAAAA;
  border-top: 1px solid var(--border);
  padding-top: 0.45rem;
  letter-spacing: 0.04em;
}

/* Bottom quote box — more padding, lighter bg, bigger text */
.mv-quote-box {
  max-width: 1100px;
  width: 100%;
  background: #222836;
  border: 1px solid rgba(184,168,138,0.4);
  border-left: 3px solid var(--blue);
  padding: 1rem 1.4rem;
  margin: 0 auto 0.55rem;
}

.mv-quote-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}

.mv-quote-source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #AAAAAA;
}

/* Tehiru connection line */
.mv-tehiru-line {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
  padding: 0.4rem 1rem;
  border-top: 1px solid rgba(184,168,138,0.25);
  margin: 0 auto 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-cards { grid-template-columns: 1fr !important; }
  .mv-total-num { font-size: 1.5rem; }
}
