/* SuperCompress pitch deck — exact brand match (datafruit.css tokens) */

.pitch-body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  height: 100%;
  overflow: hidden;
  background: var(--bg-page);
  color: var(--text-primary);
}

/* Full-page cream background — hide landing page's dark bottom band */
.pitch-body .df-page-bg-bottom {
  display: none;
}
.pitch-body .df-page-bg-top {
  height: 100vh;
  background: var(--bg-page);
}

.pitch-app {
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  z-index: 1;
  background: var(--bg-page);
}

/* Header — matches df-header tone */
.pitch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 0.5px solid var(--card-border);
  background: rgba(251, 251, 248, 0.92);
  backdrop-filter: blur(12px);
}
.pitch-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.pitch-header-logo .df-logo-word {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pitch-header-logo em { font-style: italic; color: var(--brand); }
.pitch-header-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.pitch-header-meta kbd {
  font-family: ui-monospace, monospace;
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
}

/* Progress */
.pitch-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

/* Stage */
.pitch-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 4vw, 56px) clamp(18px, 4vw, 48px);
}

.slide {
  position: absolute;
  inset: clamp(20px, 4vw, 56px) clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(20px) scale(0.985);
  transition:
    opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.55s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-height: 100%;
  overflow: hidden;
}

.slide--split {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.pitch-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.pitch-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.pitch-frame--env {
  width: 100%;
  max-height: min(440px, 72vh);
  background: linear-gradient(165deg, #f0fdf4 0%, #fafafa 55%, #fff 100%);
  border-color: #bbf7d0;
  box-shadow: 0 24px 48px -16px rgba(21, 128, 61, 0.12);
}

.pitch-frame--env img {
  width: 100%;
  height: auto;
  display: block;
}

.slide--split .pitch-bullets {
  max-width: none;
  gap: 8px;
  margin-top: 14px;
}
.slide--split .pitch-bullets li {
  padding: 11px 14px 11px 40px;
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
}
.slide--split .pitch-title {
  margin-bottom: 0;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.slide.is-active .pitch-in {
  animation: pitch-enter 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: calc(var(--d, 0) * 70ms + 80ms);
}

@keyframes pitch-enter {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.slide--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 880px;
  margin: 0 auto;
  left: 50%;
  right: auto;
  width: min(880px, calc(100% - clamp(36px, 8vw, 96px)));
  transform: translateX(-50%) translateY(20px) scale(0.985);
}
.slide--center.is-active {
  transform: translateX(-50%) translateY(0) scale(1);
}

.slide--full { grid-template-columns: 1fr; align-content: start; }
.slide--cover,
.slide--statement,
.slide--solution {
  align-content: center;
}
.slide--cover {
  gap: 0;
}
.pitch-cover-mark {
  margin-bottom: 24px;
}
.pitch-display--brand {
  font-size: clamp(3.4rem, 8vw, 6rem);
  margin-bottom: 14px;
}
.pitch-cover-line {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.pitch-statement-turn {
  font-family: var(--serif);
  color: #15803d;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 4px 0 24px;
}
.slide--solution {
  background: #eef5ff;
  border: 0.5px solid #bfdbfe;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 64px);
  width: min(980px, calc(100% - clamp(36px, 8vw, 96px)));
}
.slide--image {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 20px;
}
.slide--image .pitch-frame--wide {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

/* Tags — match impact-calc-label / df-trust-label */
.pitch-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 14px;
}
.pitch-tag--green { color: #15803d; }
.pitch-tag--muted { color: var(--text-muted); }

/* Type */
.pitch-display {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.pitch-display em { font-style: italic; color: var(--brand); }
.pitch-display .word {
  display: inline-block;
}
.slide.is-active .pitch-display .word {
  animation: pitch-enter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: calc(var(--w, 0) * 90ms + 100ms);
}

.pitch-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pitch-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-body);
  max-width: 52ch;
}
.slide--center .pitch-lead { max-width: 58ch; }

.pitch-agenda {
  list-style: none;
  margin: 20px auto 0;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.pitch-agenda li {
  padding: 12px 16px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-body);
}
.pitch-agenda strong {
  color: var(--text-primary);
  font-weight: 500;
}

.pitch-header-meta #slide-title {
  color: var(--text-primary);
  font-weight: 500;
}

.pitch-stat-hero {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #15803d;
  margin: 8px 0 16px;
  font-variant-numeric: tabular-nums;
}

.pitch-prose {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-body);
  max-width: 62ch;
}
.slide--center .pitch-prose { margin-left: auto; margin-right: auto; }

.pitch-source {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 52ch;
}
.slide--center .pitch-source { margin-left: auto; margin-right: auto; }

.pitch-stat-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 0.5px solid var(--card-border);
  border-bottom: 0.5px solid var(--card-border);
}
.pitch-big-stat {
  min-height: 220px;
  padding: 30px 24px;
  border-right: 0.5px solid var(--card-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pitch-big-stat:last-child { border-right: 0; }
.pitch-big-stat strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.pitch-big-stat--accent strong { color: #15803d; }
.pitch-big-stat span {
  max-width: 19ch;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pitch-repeat-flow {
  display: grid;
  gap: 12px;
  align-content: center;
}
.pitch-repeat-flow > div:not(.pitch-repeat-target) {
  background: #fff;
  border: 0.5px solid var(--card-border);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pitch-repeat-flow span {
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pitch-repeat-flow b {
  font-weight: 500;
  color: var(--text-primary);
}
.pitch-repeat-target {
  background: #111827;
  color: #fff;
  padding: 18px;
  text-align: center;
  font-weight: 500;
}

.pitch-choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.pitch-choice-row article {
  border-top: 2px solid var(--card-border);
  padding: 22px 4px 0;
}
.pitch-choice-row article:nth-child(2) { border-color: #ef4444; }
.pitch-choice-row article:nth-child(3) { border-color: #f59e0b; }
.pitch-choice-row span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pitch-choice-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.pitch-choice-row p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pitch-value-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}
.pitch-value-context {
  border: 0.5px solid var(--card-border);
  background: #fff;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pitch-value-context span,
.pitch-value-context strong {
  flex-basis: 100%;
}
.pitch-value-context span {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pitch-value-context strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.pitch-value-context i {
  width: calc(25% - 6px);
  height: 26px;
  background: #e5e7eb;
}
.pitch-value-context i.is-signal { background: var(--brand); }
.pitch-value-context--after {
  border-color: #93c5fd;
  background: #eff6ff;
}
.pitch-value-context--after i { width: calc(33.333% - 5px); }
.pitch-value-arrow {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pitch-tech-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--card-border);
  margin-top: 22px;
}
.pitch-tech-list div {
  padding: 18px 12px 18px 0;
  border-bottom: 0.5px solid var(--card-border);
}
.pitch-tech-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brand);
}
.pitch-tech-list span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.pitch-bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 720px;
}
.pitch-bullets li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 0.5px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  color: var(--text-body);
}
.pitch-bullets li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.25em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
}
.pitch-bullets--numbered {
  counter-reset: pitch-item;
}
.pitch-bullets--numbered li {
  counter-increment: pitch-item;
  padding-left: 52px;
}
.pitch-bullets--numbered li::before {
  content: counter(pitch-item, decimal-leading-zero);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  top: 14px;
  transform: none;
}
.pitch-bullets--center {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pitch-bullets--compact {
  margin-top: 12px;
  gap: 8px;
}
.pitch-bullets--compact li {
  padding: 10px 14px 10px 40px;
  font-size: 0.9rem;
}

.pitch-charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.pitch-charts-row figcaption {
  padding: 10px 12px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.pitch-body-text {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-body);
}
.pitch-body-text strong { color: var(--text-primary); font-weight: 500; }

.pitch-list {
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
.pitch-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.5;
}
.pitch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* Visual frame — matches hero-frame */
.pitch-frame {
  position: relative;
  border-radius: 10px;
  border: 0.5px solid #d8d8d8;
  background: var(--frame-bg);
  box-shadow: 0 24px 48px -12px rgba(30, 25, 20, 0.12);
  overflow: hidden;
}
.pitch-frame img,
.pitch-frame video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.pitch-frame-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #6b7280;
  background: rgba(251, 251, 248, 0.9);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.pitch-frame--chart {
  border-color: var(--card-border);
  box-shadow: none;
  background: #fafafa;
}
.pitch-frame--fit {
  align-self: center;
}
.pitch-frame figcaption {
  padding: 10px 14px 12px;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: center;
}

/* Stats — match dash-card / impact */
.pitch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.pitch-stats--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .pitch-stats--4 { grid-template-columns: 1fr 1fr; }
}

.pitch-display--closing {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 12px;
}
.pitch-stat {
  border: 0.5px solid var(--card-border);
  border-radius: 6px;
  padding: 18px 14px;
  text-align: center;
  background: #fff;
}
.pitch-stat--green {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.pitch-stat-val {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.pitch-stat--green .pitch-stat-val { color: #15803d; }
.pitch-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.35;
}

/* Steps */
.pitch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.pitch-step {
  border: 0.5px solid var(--card-border);
  border-radius: 6px;
  padding: 20px 16px;
  background: #fff;
}
.pitch-step-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.pitch-step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.pitch-step p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Compare row */
.pitch-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.pitch-compare-card {
  border: 0.5px solid var(--card-border);
  border-radius: 6px;
  padding: 16px;
  background: #fff;
}
.pitch-compare-card--bad { opacity: 0.85; background: var(--card-bg); }
.pitch-compare-card--good {
  background: #fafcff;
  border-color: rgba(37, 99, 235, 0.2);
}
.pitch-compare-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pitch-compare-card .val {
  font-family: var(--serif);
  font-size: 1.75rem;
}

/* CTA */
.pitch-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.pitch-cta .btn-brand { font-size: 14px; padding: 12px 22px; }
.pitch-cta .btn-link-muted { font-size: 14px; margin-left: 0; }
.pitch-cta--final {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.pitch-cta--final .btn-brand--lg {
  font-size: 1.05rem;
  padding: 16px 32px;
  letter-spacing: -0.01em;
}
.pitch-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--card-border);
  max-width: 520px;
}
.pitch-links a {
  font-size: 0.92rem;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.15s;
}
.pitch-links a:hover {
  color: var(--brand);
}
.pitch-links--final {
  margin-top: 10px;
  margin-bottom: 8px;
}

/* Footer nav */
.pitch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 48px);
  border-top: 0.5px solid var(--card-border);
  background: rgba(251, 251, 248, 0.92);
  backdrop-filter: blur(12px);
}
.pitch-dots { display: flex; gap: 6px; flex-wrap: wrap; max-width: 60%; }
.pitch-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: #d4d4d4;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}
.pitch-dots button.is-active {
  background: var(--brand);
  transform: scale(1.25);
}
.pitch-nav { display: flex; gap: 8px; }
.pitch-nav button {
  border: 0.5px solid var(--card-border);
  background: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.15s;
}
.pitch-nav button:hover { border-color: var(--brand); }

/* Notes */
.pitch-notes {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(380px, 92vw);
  background: #fff;
  border-left: 0.5px solid var(--card-border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.06);
}
.pitch-notes.is-open { transform: translateX(0); }
.pitch-notes h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.pitch-notes p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Env panel */
.pitch-env-panel {
  background: linear-gradient(160deg, #f0fdf4 0%, var(--bg-page) 50%);
  border: 0.5px solid #bbf7d0;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 32px);
}
.pitch-env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .pitch-env-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .slide,
  .slide--split { grid-template-columns: 1fr; overflow-y: auto; align-content: start; align-items: start; }
  .pitch-visual { height: auto; margin-top: 8px; }
  .pitch-stats, .pitch-steps { grid-template-columns: 1fr 1fr; }
  .pitch-stat-wall { grid-template-columns: 1fr 1fr; }
  .pitch-big-stat:nth-child(2) { border-right: 0; }
  .pitch-big-stat { min-height: 160px; }
  .pitch-choice-row { grid-template-columns: 1fr; }
  .pitch-value-flow { grid-template-columns: 1fr; }
  .pitch-value-arrow { text-align: center; }
  .pitch-charts-row { grid-template-columns: 1fr; }
  .slide--center { width: calc(100% - 36px); }
}

@media (max-width: 600px) {
  .pitch-value-flow { gap: 10px; margin-top: 12px; }
  .pitch-value-context { padding: 13px; }
  .pitch-value-context strong { margin-bottom: 4px; }
  .pitch-value-context i { height: 16px; }
  .pitch-value-arrow { line-height: 1; }
  .slide:nth-of-type(8) .pitch-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 12px;
  }
  .slide:nth-of-type(8) .pitch-stat { padding: 10px 5px; }
  .slide:nth-of-type(8) .pitch-stat-val { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .slide, .slide.is-active .pitch-in, .pitch-display .word {
    animation: none !important;
    transition: opacity 0.2s;
  }
}
