/* ===================================================================
   AI & Media — Pitch Deck
   Mawroth design system — Cinematic editorial treatment
   =================================================================== */

@import url("assets/colors_and_type.css");

/* ---- Cinematic layer on top of Mawroth teal-mode ---- */
:root {
  --night-900: #03262a;    /* deeper than teal-900, cinematic */
  --night-800: #053236;
  --night-700: #0b4f4f;    /* mawroth teal-700 */
  --night-grain: 
     radial-gradient(ellipse at 20% 10%, rgba(214,147,97,0.08), transparent 60%),
     radial-gradient(ellipse at 90% 90%, rgba(4,60,64,0.5), transparent 60%);
  --copper: #d69361;
  --copper-bright: #e2a773;
  --camel: #d4bfae;
  --ivory: #ffffff;
  --cream: #fbf8f4;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: #000; }

/* ---- Slide base ---- */
.slide {
  position: relative;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--night-800);
  letter-spacing: -0.003em;
}

.slide--dark {
  background: var(--night-800);
  background-image: var(--night-grain);
  color: var(--ivory);
}

.slide--ivory {
  background: var(--cream);
  color: var(--mawroth-teal-900);
}

.slide--teal {
  background: var(--mawroth-teal-700);
  color: var(--ivory);
}

.slide--noir {
  background: linear-gradient(180deg, #020f11 0%, #03262a 60%, #053236 100%);
  color: var(--ivory);
}

/* Film-grain overlay — universal cinematic texture */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.25) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4) 0 1px, transparent 1px 2px);
  background-size: 3px 3px, 5px 5px;
  z-index: 50;
}

/* Vignette */
.vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 40;
}

/* Print: strip decorative overlays that rasterize as a pink/magenta cast
   in Chrome's PDF pipeline. mix-blend-mode: overlay composites warm grain
   against dark teal into a pinkish tint when flattened. The deck still
   carries full visual identity via gradients, type, and color on slides. */
@media print {
  .grain::after,
  .vignette::before {
    display: none !important;
  }
}

/* ---- Frame chrome (top + bottom of every slide) ---- */
.chrome {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}
.chrome__top, .chrome__bot {
  position: absolute;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.chrome--ivory .chrome__top, .chrome--ivory .chrome__bot {
  color: rgba(4,60,64,0.55);
}
.chrome__top { top: 48px; }
.chrome__bot { bottom: 48px; }

.chrome__rule {
  position: absolute;
  left: 80px;
  right: 80px;
  height: 1px;
  background: rgba(255,255,255,0.16);
}
.chrome--ivory .chrome__rule { background: rgba(4,60,64,0.14); }
.chrome__rule--top { top: 80px; }
.chrome__rule--bot { bottom: 80px; }

/* ---- Mawroth mark in chrome (replaces the text dot) ---- */
.mawroth-mark-chrome {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  vertical-align: -5px;
  opacity: 0.85;
}
.chrome--ivory .mawroth-mark-chrome { opacity: 0.75; }

/* ---- Mawroth mark hero (cover + closing) ---- */
.mawroth-mark-hero {
  opacity: 0.95;
}

/* ---- Generic icon helpers ---- */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--copper);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 56px; height: 56px; stroke-width: 1.25; }
.icon--md { width: 36px; height: 36px; }
.icon--sm { width: 24px; height: 24px; }
.icon--ivory { color: var(--ivory); }
.icon--teal { color: var(--mawroth-teal-900); }
.icon--burgundy { color: var(--mawroth-burgundy); }

/* ---- Arabic calligraphy watermark (decorative) ---- */
.calli-watermark {
  position: absolute;
  pointer-events: none;
  font-family: var(--font-display-arabic, serif);
  color: var(--copper);
  opacity: 0.05;
  font-size: 800px;
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.calli-watermark--right { right: -120px; bottom: -220px; }
.calli-watermark--ivory { color: var(--mawroth-teal-900); opacity: 0.04; }

/* ---- Platform row (distribution) ---- */
.platform-icon-wrap {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(214,147,97,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-icon-wrap .icon { color: var(--copper); width: 32px; height: 32px; }

.chrome__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display-latin);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.chrome__wordmark .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
}

/* ---- Eyebrow / section title ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
}
.eyebrow__num {
  font-family: var(--font-display-latin);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.5);
}
.slide--ivory .eyebrow__num { color: rgba(4,60,64,0.45); }

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ---- Display type ---- */
.display {
  font-family: var(--font-display-latin);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.display--xxl { font-size: 180px; }
.display--xl  { font-size: 128px; }
.display--l   { font-size: 92px; }
.display--m   { font-size: 68px; }
.display--s   { font-size: 52px; }

.ital { font-style: italic; }

.lede {
  font-family: var(--font-display-latin);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: rgba(255,255,255,0.78);
  max-width: 1100px;
  text-wrap: pretty;
}
.slide--ivory .lede { color: rgba(4,60,64,0.72); }

.body {
  font-family: var(--font-body);
  font-size: 26px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 780px;
}
.slide--ivory .body { color: rgba(4,60,64,0.82); }

.body--sm { font-size: 22px; line-height: 1.5; }
.body--xs { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.55); }

.arabic {
  font-family: var(--font-display-arabic);
  font-weight: 400;
  direction: rtl;
  line-height: 1.75;
}

/* ---- Content frame — the authored inner rectangle ---- */
.frame {
  position: absolute;
  left: 120px;
  right: 120px;
  top: 160px;
  bottom: 160px;
}

/* ---- KPI / stat blocks ---- */
.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat__num {
  font-family: var(--font-display-latin);
  font-weight: 400;
  font-size: 140px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ivory);
}
.slide--ivory .stat__num { color: var(--mawroth-teal-900); }

.stat__num--copper { color: var(--copper); }
.stat__rule {
  width: 48px; height: 1px;
  background: var(--copper);
  margin: 6px 0 4px;
}
.stat__label {
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
}
.slide--ivory .stat__label { color: rgba(4,60,64,0.82); }

.stat__source {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
}
.slide--ivory .stat__source { color: rgba(4,60,64,0.45); }

/* ---- Divider ---- */
.hrule {
  height: 1px;
  background: rgba(255,255,255,0.14);
  width: 100%;
}
.slide--ivory .hrule { background: rgba(4,60,64,0.14); }

/* ---- Tabular ---- */
.ledger {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 22px;
  color: rgba(255,255,255,0.92);
}
.slide--ivory .ledger { color: rgba(4,60,64,0.92); }
.ledger th, .ledger td {
  text-align: left;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ledger--compact th, .ledger--compact td {
  padding: 2px 14px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}
.ledger--compact tr.total td {
  padding-top: 8px !important;
  padding-bottom: 4px !important;
  font-size: 20px !important;
}
.ledger--compact th {
  padding-top: 0 !important;
  padding-bottom: 8px !important;
  font-size: 11px !important;
}
.slide--ivory .ledger th, .slide--ivory .ledger td {
  border-bottom: 1px solid rgba(4,60,64,0.1);
}
.ledger th {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 14px;
  padding-top: 0;
}
.slide--ivory .ledger th {
  color: rgba(4,60,64,0.5);
  border-bottom-color: rgba(4,60,64,0.3);
}
.ledger td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }
.ledger td.tag {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}
.ledger tr.total td {
  font-family: var(--font-display-latin);
  font-size: 32px;
  color: var(--copper);
  border-top: 1px solid var(--copper);
  border-bottom: none;
  padding-top: 26px;
}

/* ---- Pill / chip ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* ---- Live ticker ---- */
.ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(214,147,97,0.5); }
  50% { opacity: 0.6; transform: scale(0.9); box-shadow: 0 0 0 8px rgba(214,147,97,0); }
}

/* ---- Animated counters ---- */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ---- Entry animations per slide ---- */
[data-deck-active] .fadein  { animation: fadein 900ms var(--ease-standard, cubic-bezier(.2,.7,.2,1)) both; }
[data-deck-active] .riseup  { animation: riseup 1000ms cubic-bezier(.2,.7,.2,1) both; }
[data-deck-active] .sweep   { animation: sweep 1100ms cubic-bezier(.2,.7,.2,1) both; }
[data-deck-active] .grow    { animation: grow 900ms cubic-bezier(.4,0,.2,1) both; transform-origin: left center; }

.d-1 { animation-delay: 150ms !important; }
.d-2 { animation-delay: 300ms !important; }
.d-3 { animation-delay: 450ms !important; }
.d-4 { animation-delay: 600ms !important; }
.d-5 { animation-delay: 750ms !important; }
.d-6 { animation-delay: 900ms !important; }
.d-7 { animation-delay: 1050ms !important; }

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes riseup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sweep {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ---- Grid helpers ---- */
.g-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.g-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; }
.g-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.flex { display: flex; }
.col  { display: flex; flex-direction: column; }
.gap-s { gap: 16px; } .gap-m { gap: 32px; } .gap-l { gap: 56px; }
.between { justify-content: space-between; }
.center { align-items: center; justify-content: center; }
.mt-a { margin-top: auto; }
.mb-a { margin-bottom: auto; }

/* ---- Image placeholder (striped warm) ---- */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(214,147,97,0.12) 0 2px,
      transparent 2px 14px),
    linear-gradient(180deg, rgba(4,60,64,0.6), rgba(3,38,42,0.8));
  border: 1px solid rgba(214,147,97,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}

/* ---- Sponsor cards / interactive ---- */
.sponsor-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  gap: 0;
  margin-bottom: 48px;
}
.slide--ivory .sponsor-tabs { border-bottom-color: rgba(4,60,64,0.14); }

.sponsor-tab {
  flex: 1;
  padding: 24px 20px;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-display-latin);
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  text-align: left;
  transition: color 240ms, border-color 240ms;
  margin-bottom: -1px;
  letter-spacing: -0.01em;
}
.sponsor-tab:hover { color: rgba(255,255,255,0.85); }
.sponsor-tab.is-active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.sponsor-tab__cat {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.sponsor-tab.is-active .sponsor-tab__cat { color: rgba(214,147,97,0.75); }

.sponsor-panel {
  display: none;
  animation: fadein 400ms cubic-bezier(.2,.7,.2,1);
}
.sponsor-panel.is-active { display: grid; }

/* ---- Revenue projector ---- */
.proj-controls {
  display: flex;
  gap: 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.proj-knob {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.proj-knob__label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.proj-knob__value {
  font-family: var(--font-display-latin);
  font-size: 28px;
  color: var(--copper);
  letter-spacing: 0;
}
.proj-knob input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
}
.proj-knob input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(214,147,97,0.18);
}
.proj-knob input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--copper); border: 0; cursor: pointer;
  box-shadow: 0 0 0 4px rgba(214,147,97,0.18);
}

.proj-out {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding-top: 40px;
}
.proj-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 200px;
  margin-top: 32px;
}
.proj-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--copper), rgba(214,147,97,0.3));
  transition: height 600ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.proj-bar span {
  position: absolute;
  bottom: -26px;
  left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* ---- Crown/logo treatment for title ---- */
.cover-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.cover-art__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(214,147,97,0.16), transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(3,38,42,0.95), transparent 60%),
    linear-gradient(180deg, #020f11 0%, #03262a 100%);
}

/* orbit rings for hero */
.orbit {
  position: absolute;
  border: 1px solid rgba(214,147,97,0.22);
  border-radius: 50%;
  pointer-events: none;
}

/* Timeline ---- */
.tl {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 56px;
}
/* The horizontal axis line sits at the vertical midpoint via the dot row */
.tl__axis { display: none; } /* replaced by inline border */
.tl__node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
/* Label above the dot */
.tl__label--above {
  height: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 14px;
  text-align: center;
}
/* Label below the dot */
.tl__label--below {
  height: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 14px;
  text-align: center;
}
/* Dot row */
.tl__dot-row {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
/* Single full-width axis line across the whole timeline */
.tl::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(4,60,64,0.25);
  z-index: 0;
  top: 50%;
}
.tl__dot {
  width: 12px; height: 12px;
  border: 1px solid var(--copper);
  background: var(--night-800);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.tl__dot--filled {
  background: var(--copper);
}

/* ---- Section-intro transitions (full-bleed sweep) ---- */
[data-deck-active].slide--section-intro .display {
  animation: titleSweep 1500ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes titleSweep {
  0% { opacity: 0; transform: translateY(40px); filter: blur(14px); letter-spacing: 0.04em; }
  60% { opacity: 1; transform: translateY(0); filter: blur(0); letter-spacing: -0.025em; }
  100% { opacity: 1; }
}

/* ---- Cover-specific ---- */
.cover-logo-wrap {
  position: absolute;
  left: 120px;
  bottom: 160px;
  max-width: 900px;
}
.cover-masthead-logo {
  position: absolute;
  top: 56px;
  right: 120px;
  width: 260px;
  height: auto;
  z-index: 11;
}

/* Ivory brand mark watermark — small + pale, corner placement */
.deck-watermark {
  position: absolute;
  right: 120px;
  top: 110px;
  width: 110px;
  height: auto;
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.cover-meta {
  position: absolute;
  right: 120px;
  bottom: 160px;
  text-align: right;
}

/* Gold text highlight */
.gold { color: var(--copper); }
.ivory { color: var(--ivory); }

/* Uppercase small utility */
.sc {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.slide--ivory .sc { color: rgba(4,60,64,0.55); }

/* Badge card */
.badge-card {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  transition: border-color 300ms, background 300ms;
}
.badge-card:hover {
  border-color: rgba(214,147,97,0.4);
  background: rgba(214,147,97,0.04);
}
.badge-card__n {
  font-family: var(--font-display-latin);
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
}
.badge-card__t {
  font-family: var(--font-display-latin);
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.badge-card__b {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

/* Sponsor wordmark (typographic) */
.wordmark {
  font-family: var(--font-display-latin);
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.wordmark--small { font-size: 32px; }

/* Quote */
.quote {
  font-family: var(--font-display-latin);
  font-style: italic;
  font-size: 44px;
  line-height: 1.25;
  color: var(--ivory);
  max-width: 1100px;
  text-wrap: pretty;
}
.quote__attr {
  margin-top: 32px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Distribution channel card */
.channel {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: all 400ms;
  position: relative;
  overflow: hidden;
}
.channel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.channel:hover::before { transform: scaleY(1); }
.channel__name {
  font-family: var(--font-display-latin);
  font-size: 56px;
  letter-spacing: -0.02em;
}
.channel__cat {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}
.channel__b {
  font-size: 20px;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  margin-top: auto;
}

/* ---- Desert Princess card ---- */
.dp-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(201,162,74,0.25);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ---- Slide number badge in chrome ---- */
.idx {
  font-family: var(--font-display-latin);
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0;
  text-transform: none;
}
.slide--ivory .idx { color: rgba(4,60,64,0.4); }
