/* Cover Slide - full size image */
.cover-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Spark — "The Problem" slide (two images side-by-side) */
.problem-slide-safe {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.6vh, 8px);
  padding: clamp(2px, 0.6vh, 8px) clamp(2px, 0.6vw, 8px);
  align-items: center;
  max-width: calc(var(--slide-width) - 8px);
  max-height: calc(var(--slide-height) - 8px);
  width: 100%;
}

.reveal .problem-title {
  margin: 0;
  font-size: clamp(28px, 5vh, 52px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  line-height: 1.15;
}

.problem-slide-safe > .stack-body {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.problem-image-row {
  display: flex;
  gap: clamp(4px, 0.8vw, 10px);
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.problem-image-frame {
  flex: 1 1 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.problem-image-frame.single {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  align-self: stretch;
}

.problem-video {
  display: block;
  width: 100%;
  height: auto;
  min-height: min(50vh, 360px);
  max-height: calc(var(--slide-height) - 160px);
  background: #000;
  object-fit: contain;
}

/* Full-bleed video slides (wired by script.js) */
.reveal .slides section:has(.video-slide-full) {
  padding: 0 !important;
  height: 100%;
}

section:has(.video-slide-full) .slide-center {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
}

.video-slide-full.slide-safe {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden;
  flex: 1 1 auto;
}

.video-slide-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  background: #207bb5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slide-player {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: transparent;
  object-fit: contain;
  object-position: center center;
}

.video-slide-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: clamp(14px, 2.2vh, 22px) clamp(18px, 3vw, 36px) clamp(28px, 4vh, 40px);
  background: linear-gradient(
    180deg,
    #207bb5 0%,
    #207bb5 28%,
    #207bb5e8 45%,
    #207bb5b3 62%,
    #207bb566 78%,
    #207bb500 100%
  );
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-slide-stage.is-playing .video-slide-banner {
  opacity: 0;
  transform: translateY(-110%);
  pointer-events: none;
}

.video-slide-title {
  margin: 0;
  font-size: clamp(28px, 5vh, 52px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Spark — category list slide (2-column rows: name | number) */
.category-list {
  list-style: none;
  margin: 0 auto;
  padding: clamp(8px, 1.5vh, 18px) clamp(10px, 1.8vw, 22px);
  width: min(100%, 780px);
  max-width: 780px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vh, 6px);
}

.category-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(4px, 0.7vh, 8px) clamp(6px, 1vw, 12px);
  border-bottom: 1px solid rgba(32, 123, 181, 0.18);
  font-size: clamp(14px, 2.1vh, 22px);
  line-height: 1.25;
}

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

.category-row.category-header {
  border-bottom: 2px solid #207bb5;
  padding-bottom: clamp(6px, 1vh, 10px);
  margin-bottom: clamp(2px, 0.4vh, 6px);
  font-size: clamp(13px, 1.9vh, 19px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-row.category-header .category-name,
.category-row.category-header .category-num {
  color: #207bb5;
  font-weight: 800;
}

.category-name {
  color: #1f2937;
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.category-num {
  color: #207bb5;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  min-width: 2ch;
  text-align: right;
}

/* Spark — Data Retention slide */
.retention-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(10px, 1.6vw, 22px);
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.retention-layout--no-image {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.retention-image-frame {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.retention-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.retention-points {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 12px);
  min-width: 0;
  min-height: 0;
}

.retention-intro {
  margin: 0;
  font-size: clamp(13px, 1.9vh, 19px);
  line-height: 1.35;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: clamp(6px, 1vh, 10px) clamp(8px, 1.2vw, 14px);
  border-radius: 10px;
}

.retention-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(8px, 1.2vw, 14px);
  align-items: start;
  background: #fff;
  border-radius: 12px;
  padding: clamp(8px, 1.2vh, 14px) clamp(10px, 1.4vw, 16px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.retention-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 4.2vh, 40px);
  height: clamp(28px, 4.2vh, 40px);
  border-radius: 50%;
  background: #207bb5;
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 2.2vh, 20px);
}

.retention-text {
  min-width: 0;
}

.retention-text h3 {
  margin: 0 0 clamp(2px, 0.4vh, 5px) 0;
  color: #207bb5;
  font-size: clamp(14px, 2.1vh, 20px);
  font-weight: 800;
  line-height: 1.2;
}

.retention-text p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(12px, 1.85vh, 18px);
  line-height: 1.35;
}

/* Spark — Training-data slide additions */
.training-answer {
  background: #fff;
  border-left: 6px solid #009944;
  border-radius: 12px;
  padding: clamp(10px, 1.4vh, 16px) clamp(12px, 1.6vw, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vh, 6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.training-answer-badge {
  align-self: flex-start;
  background: #009944;
  color: #fff;
  font-size: clamp(10px, 1.4vh, 13px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}

.training-answer-text {
  margin: 0;
  font-size: clamp(13px, 2vh, 19px);
  line-height: 1.35;
  color: #1f2937;
}

.training-exceptions-label {
  margin: clamp(2px, 0.6vh, 6px) 0 clamp(0px, 0.2vh, 4px);
  color: #fff;
  font-size: clamp(12px, 1.85vh, 18px);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.training-footnote {
  margin: 0;
  font-size: clamp(11px, 1.6vh, 15px);
  line-height: 1.35;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  padding: clamp(6px, 1vh, 10px) clamp(8px, 1.2vw, 14px);
  border-radius: 10px;
}

.data-protection-slide .retention-points {
  gap: clamp(8px, 1.2vh, 14px);
}

.data-protection-note {
  margin-top: clamp(4px, 0.6vh, 8px) !important;
  font-size: clamp(11px, 1.55vh, 15px) !important;
  line-height: 1.35 !important;
}

.data-protection-summary {
  margin: clamp(10px, 1.4vh, 16px) 0 0;
  padding: clamp(10px, 1.4vh, 16px) clamp(12px, 1.6vw, 18px);
  background: #fff;
  border-left: 6px solid #009944;
  border-radius: 12px;
  font-size: clamp(13px, 2vh, 19px);
  line-height: 1.35;
  color: #1f2937;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Spark — Patience chart slide */
.patience-slide-safe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.patience-chart-frame {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(58vw, 780px);
  max-height: min(62vh, 560px);
}

.patience-chart {
  display: block;
  width: 100%;
  height: auto;
  max-width: min(58vw, 780px);
  max-height: min(62vh, 560px);
  object-fit: contain;
}

/* Spark — Adding Files to Claude in Excel */
.files-slide .stack-body {
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.files-slide-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 14px);
  width: 100%;
  min-height: 0;
}

.files-slide-image {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 44vh;
}

.files-slide-image .problem-image {
  max-height: 40vh;
}

.files-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  flex-shrink: 0;
}

.files-menu-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: clamp(10px, 1.4vh, 16px) clamp(12px, 1.4vw, 18px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.files-menu-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(4px, 0.6vh, 8px);
}

.files-menu-tag {
  background: #207bb5;
  color: #fff;
  font-size: clamp(11px, 1.5vh, 15px);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.files-menu-subtitle {
  color: #6b7280;
  font-size: clamp(10px, 1.3vh, 13px);
  font-weight: 600;
  font-style: italic;
}

.files-menu-card p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(10px, 1.35vh, 14px);
  line-height: 1.4;
}

/* Spark — Bloom's Taxonomy slide (inline HTML card) */
.bloom-html-slide {
  max-width: calc(var(--slide-width) - 32px);
  max-height: calc(var(--slide-height) - 32px);
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4px, 1vh, 12px);
}

/* Spark — Student Assignment Example intro */
.assignment-intro-slide .assignment-intro-title {
  margin-bottom: 0;
}

.assignment-intro-subtitle {
  margin: 0 0 clamp(4px, 0.8vh, 10px);
  font-size: clamp(14px, 2vh, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.assignment-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.assignment-intro-copy {
  background: #fff;
  border-radius: 12px;
  padding: clamp(18px, 2.6vh, 28px) clamp(18px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.reveal .assignment-intro-copy h3.assignment-proposed-label {
  margin: 0 0 clamp(14px, 2vh, 22px);
  font-size: clamp(20px, 3vh, 30px);
  line-height: 1.2;
  font-weight: 900;
  color: #01506e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.assignment-proposed-list {
  margin: 0;
  padding-left: 1.35em;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vh, 18px);
}

.assignment-proposed-list li {
  font-size: clamp(15px, 2.35vh, 22px);
  line-height: 1.4;
  color: #1f2937;
  font-weight: 600;
}

.assignment-intro-bloom {
  display: flex;
  align-items: stretch;
  min-height: 0;
  min-width: 0;
}

.assignment-bloom-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

.assignment-bloom-card-header {
  background: linear-gradient(135deg, #01506e, #207bb5);
  color: #fff;
  padding: clamp(10px, 1.4vh, 16px) clamp(12px, 1.6vw, 18px);
}

.reveal .assignment-bloom-card-header h3.assignment-bloom-card-title {
  margin: 0;
  font-size: clamp(14px, 1.9vh, 20px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.assignment-bloom-card-body {
  background: #fff;
  padding: clamp(8px, 1.2vh, 14px);
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assignment-bloom-svg {
  width: 100%;
  height: auto;
  max-height: min(48vh, calc(var(--slide-height) - 200px));
  display: block;
}

.problem-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* The Problem — side-by-side compare with hover zoom */
.problem-compare-slide {
  overflow: visible;
}

.problem-compare-slide > .stack-body {
  position: relative;
  overflow: hidden;
  min-height: calc(var(--slide-height) - 72px);
}

.problem-compare-slide .problem-image-row {
  gap: clamp(10px, 1.6vw, 18px);
  min-height: calc(var(--slide-height) - 88px);
  height: 100%;
}

.problem-compare-slide .problem-image-frame {
  min-height: calc(var(--slide-height) - 96px);
  cursor: zoom-in;
  transition:
    opacity 0.28s ease,
    box-shadow 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-compare-slide .problem-image-frame .problem-image {
  max-height: calc(var(--slide-height) - 104px);
}

.problem-compare-slide .problem-image-row:has(.problem-image-frame--zoom:hover) .problem-image-frame:not(:hover),
.problem-compare-slide .problem-image-row:has(.problem-image-frame--zoom:focus-within) .problem-image-frame:not(:focus-within) {
  opacity: 0.2;
  transform: scale(0.96);
}

.problem-compare-slide .problem-image-frame--zoom:hover,
.problem-compare-slide .problem-image-frame--zoom:focus-within {
  position: absolute;
  inset: 0;
  z-index: 30;
  flex: none;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: clamp(6px, 1vh, 10px);
  cursor: zoom-out;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: none;
  opacity: 1;
}

.problem-compare-slide .problem-image-frame--zoom:hover .problem-image,
.problem-compare-slide .problem-image-frame--zoom:focus-within .problem-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Spark — session title slide (replaces cover image) */
.spark-title-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(10px, 1.8vh, 20px);
  padding: clamp(24px, 4vh, 56px) clamp(20px, 4vw, 48px);
  min-height: min(100%, calc(var(--slide-height) - 100px));
}

.spark-title-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.5vw, 60px);
  margin-top: clamp(20px, 3.5vh, 40px);
  flex-wrap: wrap;
}

.spark-title-logo {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.spark-title-logo--maxwell {
  height: clamp(70px, 10vh, 110px);
  width: auto;
  max-width: min(480px, 52vw);
}

.spark-title-logo--eden {
  height: clamp(70px, 10vh, 110px);
  width: auto;
  max-width: min(120px, 18vw);
  background: #fff;
  border-radius: 12px;
  padding: clamp(8px, 1.2vh, 14px);
  box-sizing: content-box;
}

.spark-title-logo--aaa {
  height: clamp(80px, 11vh, 120px);
  width: auto;
  max-width: min(160px, 22vw);
  background: #fff;
  border-radius: 12px;
  padding: clamp(8px, 1.2vh, 14px);
  box-sizing: content-box;
}

.spark-title-author {
  margin: 0;
  font-size: clamp(16px, 2.2vh, 26px);
  font-weight: 700;
  color: #e9dc12;
  letter-spacing: 0.03em;
}

.spark-title-kicker {
  margin: 0;
  font-size: clamp(22px, 3.4vh, 38px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e9dc12;
}

.spark-title-type {
  margin: 0;
  font-size: clamp(17px, 2.4vh, 24px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.spark-title-duration {
  margin: 0;
  font-size: clamp(15px, 2vh, 21px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.reveal .spark-title-main {
  margin: clamp(8px, 1.5vh, 16px) 0 0;
  max-width: 18em;
  font-size: clamp(20px, 3.6vh, 40px);
  font-weight: 900;
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

/* AI goal spectrum slide */
.ai-goal-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 48px);
  padding: clamp(16px, 3vh, 32px) clamp(20px, 4vw, 48px);
  min-height: min(100%, calc(var(--slide-height) - 80px));
}

.ai-goal-title {
  margin: 0;
  max-width: 16em;
  font-size: clamp(24px, 4.2vh, 42px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.ai-goal-spectrum {
  width: min(92%, 920px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
}

.ai-goal-line-wrap {
  padding: clamp(12px, 2vh, 18px) 0;
}

.ai-goal-track {
  position: relative;
  height: clamp(10px, 1.4vh, 14px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  touch-action: none;
  transform-origin: center center;
}

.ai-goal-track-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 214, 74, 0.95) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
  pointer-events: none;
}

.ai-goal-thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: clamp(22px, 2.8vh, 30px);
  height: clamp(22px, 2.8vh, 30px);
  margin: 0;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #ffd64a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  cursor: grab;
  z-index: 2;
  touch-action: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ai-goal-thumb:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
}

.ai-goal-thumb.is-ready,
.ai-goal-thumb.is-dragging {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.ai-goal-thumb.is-dragging,
.ai-goal-thumb:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Entrance animation */
.ai-goal-spectrum:not(.is-visible) .ai-goal-animate-line {
  opacity: 0;
}

.ai-goal-spectrum:not(.is-visible) .ai-goal-track {
  transform: scaleX(0);
}

.ai-goal-spectrum.is-visible .ai-goal-animate-line {
  animation: aiGoalLineFade 0.35s ease-out forwards;
}

.ai-goal-spectrum.is-visible .ai-goal-track {
  animation: aiGoalTrackGrow 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ai-goal-spectrum.is-visible .ai-goal-thumb {
  animation: aiGoalThumbPop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1) 0.55s forwards;
}

.ai-goal-spectrum:not(.is-visible) .ai-goal-animate-labels {
  opacity: 0;
  transform: translateY(14px);
}

.ai-goal-spectrum.is-visible .ai-goal-animate-labels {
  animation: aiGoalLabelsUp 0.55s ease-out 0.7s forwards;
}

@keyframes aiGoalLineFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes aiGoalTrackGrow {
  from { transform: scaleX(0); opacity: 0.4; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes aiGoalThumbPop {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes aiGoalLabelsUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-goal-spectrum.is-visible .ai-goal-animate-line,
  .ai-goal-spectrum.is-visible .ai-goal-track,
  .ai-goal-spectrum.is-visible .ai-goal-thumb,
  .ai-goal-spectrum.is-visible .ai-goal-animate-labels {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .ai-goal-spectrum.is-visible .ai-goal-thumb {
    transform: translate(-50%, -50%) scale(1);
  }
}

.ai-goal-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(12px, 2vw, 24px);
}

.ai-goal-midpoint-label {
  margin: 0;
  justify-self: center;
  max-width: 12em;
  padding: clamp(10px, 1.6vh, 14px) clamp(16px, 2.4vw, 24px);
  font-size: clamp(16px, 2.2vh, 22px);
  font-weight: 800;
  line-height: 1.25;
  color: #1a4d7a;
  text-align: center;
  background: rgba(255, 214, 74, 0.45);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ai-goal-midpoint-label.is-active {
  background: #ffd64a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: scale(1.04);
}

.ai-goal-end {
  margin: 0;
  font-size: clamp(14px, 2vh, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease, transform 0.2s ease;
}

.ai-goal-end.is-active {
  color: #fff;
  transform: scale(1.03);
}

.ai-goal-end--left {
  text-align: left;
  max-width: 9em;
}

.ai-goal-end--right {
  justify-self: end;
  text-align: right;
  max-width: 14em;
}

/* AI goal — contextual panels */
.ai-goal-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  min-height: 80px;
}

.ai-goal-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ai-goal-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 18px);
  align-items: center;
}

.ai-goal-panel-list li {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: clamp(16px, 2.4vh, 26px);
  font-weight: 700;
  padding: clamp(10px, 1.5vh, 16px) clamp(20px, 3vw, 36px);
  border-radius: 10px;
  text-align: center;
}

/* Copilot vs Claude comparison slide */
.copilot-compare-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.8vh, 12px);
  padding: clamp(6px, 0.8vh, 12px) clamp(12px, 1.5vw, 24px);
  max-width: calc(var(--slide-width) - 32px);
  max-height: calc(var(--slide-height) - 16px);
  height: calc(var(--slide-height) - 16px);
  width: 100%;
  overflow: hidden;
}

.copilot-compare-title {
  margin: 0;
  font-size: clamp(18px, 3vh, 32px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.comparison-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.comparison-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th {
  background: #f3f7fb;
  color: #207bb5;
  font-size: clamp(14px, 2.1vh, 21px);
  font-weight: 800;
  padding: clamp(6px, 0.9vh, 11px) clamp(8px, 1vw, 14px);
  text-align: center;
  border-bottom: 3px solid #d7e6f0;
}

.comparison-table th.col-feature {
  text-align: left;
  width: 22%;
}

.comparison-table td {
  font-size: clamp(13px, 1.8vh, 18px);
  line-height: 1.3;
  padding: clamp(6px, 1.1vh, 14px) clamp(8px, 1vw, 14px);
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  text-align: center;
  color: #111827;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 800;
  color: #111827;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check {
  color: #16a34a;
  font-size: clamp(13px, 1.8vh, 17px);
  font-weight: 900;
  display: inline;
  margin-right: 3px;
}

.xmark {
  color: #dc2626;
  font-size: clamp(13px, 1.8vh, 17px);
  font-weight: 900;
  display: inline;
  margin-right: 3px;
}

.mixed,
.neutral {
  color: #f59e0b;
  font-size: clamp(13px, 1.8vh, 17px);
  font-weight: 900;
  display: inline;
  margin-right: 3px;
}

.small-note {
  font-size: clamp(11px, 1.4vh, 14px);
  color: #4b5563;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

.role-label {
  display: inline-block;
  color: #fff;
  background: #207bb5;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: clamp(10px, 1.2vh, 13px);
  font-weight: 800;
  margin-bottom: 4px;
}

.copilot-compare-takeaway {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: clamp(6px, 0.8vh, 10px) clamp(12px, 1.5vw, 18px);
  box-sizing: border-box;
  border-left: 6px solid #16a34a;
  text-align: center;
  font-size: clamp(12px, 1.6vh, 16px);
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.copilot-compare-takeaway strong {
  color: #111827;
  margin-right: 4px;
}

.blue-text {
  color: #207bb5;
  font-weight: 800;
}

/* Summary Guide iframe slide */
.summary-guide-slide-center {
  place-items: stretch !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}

.summary-guide-safe {
  width: 100%;
  height: 100%;
  max-width: var(--slide-width);
  max-height: var(--slide-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(8px, 1vh, 14px) clamp(20px, 2.5vw, 40px) clamp(8px, 1vh, 14px);
  gap: clamp(6px, 0.8vh, 10px);
  box-sizing: border-box;
  align-self: stretch;
  justify-self: stretch;
}

.summary-guide-header {
  font-size: clamp(18px, 2.8vh, 28px);
  font-weight: 900;
  color: #134c6f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  flex-shrink: 0;
}

.summary-guide-frame {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  background: #faf7f0;
  display: block;
}

/* Today's Goal slide */
.todays-goal-slide .stack-body {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.todays-goal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 24px);
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.todays-goal-card {
  background: #fff;
  border-radius: 14px;
  padding: clamp(16px, 2.4vh, 24px) clamp(18px, 2.4vw, 26px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
  gap: clamp(12px, 1.8vh, 18px);
  min-width: 0;
}

.todays-goal-card .todays-goal-card-title {
  margin: 0;
  font-size: clamp(15px, 2.2vh, 21px);
  font-weight: 800;
  line-height: 1.3;
  color: #207bb5;
}

.todays-goal-card-detail {
  margin: 0;
  font-size: clamp(14px, 2vh, 19px);
  line-height: 1.45;
  color: #1a1a1a;
}

.todays-goal-card .todays-goal-list {
  margin: 0;
  padding-left: 1.35em;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 12px);
  font-size: clamp(14px, 2vh, 19px);
  line-height: 1.45;
  color: #1a1a1a;
}

.todays-goal-card .todays-goal-list li {
  font-weight: 600;
  color: #1a1a1a;
}

.todays-goal-list--numbered {
  list-style-type: decimal;
}

.todays-goal-list li::marker {
  color: #207bb5;
  font-weight: 800;
}

/* Claude for Excel slide */
.claude-excel-slide .stack-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.claude-excel-slide .retention-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  height: auto;
  max-height: calc(var(--slide-height) - 120px);
}

.claude-excel-slide .retention-image-frame {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-height: calc(var(--slide-height) - 160px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 14px;
  box-shadow: none;
}

.claude-excel-slide .retention-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(var(--slide-height) - 160px);
  object-fit: contain;
  object-position: center top;
}

.claude-advantages-heading {
  margin: 0 0 clamp(4px, 0.6vh, 8px);
  font-size: clamp(16px, 2.2vh, 22px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.claude-excel-slide .retention-text p {
  margin: 0;
  font-size: clamp(13px, 1.85vh, 18px);
  line-height: 1.35;
  color: #1a1a1a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --stroke: #FFFFFF;
  --text: #000000;
  --accent: #e9dc12;
  --cta: #207bb5;
  --secondary: #85556A;
  --tertiary: #009944;
}

.reveal .slides section {
  padding: 40px;
}

.title {
  font-size: clamp(32px, 6vw, 72px);
  margin-bottom: 8px;
}

.subtitle {
  opacity: .85;
  margin-bottom: 16px;
}

.hint {
  opacity: .75;
  margin-top: 12px;
}

h2 {
  margin-bottom: 16px;
}

.caption {
  opacity: .85;
  margin-bottom: 16px;
}

.bullet {
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.45;
}

.bullet.big li {
  margin: 10px 0;
}

.steps {
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.45;
}

.steps li {
  margin: 10px 0;
  transition: transform 180ms ease, text-shadow 180ms ease;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
}

.callout-list {
  display: grid;
  gap: 12px;
}

.callout {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-left: 6px solid var(--accent);
  border-radius: 10px;
}

.callout.warn {
  border-left-color: var(--accent);
}

.hover-list li {
  transition: transform 180ms ease, text-shadow 180ms ease;
}

.hover-list li:hover {
  transform: scale(1.03);
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.takeaway-container {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.text-line {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(24px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  -webkit-text-stroke: 2px var(--stroke);
  line-height: 1.35;
  margin-bottom: 18px;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 220ms ease, text-shadow 220ms ease, opacity 220ms ease;
}

/* Typewriter states */
.text-line.typing {
  opacity: 1;
  overflow: hidden;
  border-right: 4px solid var(--text);
  white-space: nowrap;
  width: 0;
  animation: typewriter 1.2s steps(50, end) forwards, blinkCursor 1s infinite;
}

.text-line.complete {
  opacity: 1;
  border-right: none;
  animation: none;
  width: auto;
}

/* Hover and click "pop" */
.pop:hover,
.pop.pinned {
  transform: scale(1.06);
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.hover-pop:hover,
.hover-pop.pinned {
  transform: scale(1.06);
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Mouse proximity emphasis (words grow as the cursor gets closer) */
.cursor-prox-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.prox-word {
  background: rgba(233, 220, 18, 0.15);
  padding: 10px 14px;
  border-radius: 12px;
  transition: transform 120ms linear, box-shadow 120ms linear;
  will-change: transform;
}

/* CTA reveal */
.cta {
  margin-top: 16px;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  color: #fff;
  background: var(--cta);
  cursor: pointer;
}

.prompt.hidden {
  display: none;
}

.prompt {
  margin-top: 14px;
  background: rgba(255,255,255,0.06);
  color: #ddd;
  padding: 12px;
  border-radius: 12px;
  white-space: pre-wrap;
}

/* Animations */
@keyframes typewriter {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blinkCursor {
  0%, 50% { border-right-color: var(--text); }
  51%, 100% { border-right-color: transparent; }
}

/* AI Usage Gap Analysis Styles */
.ai-gap-container {
  background: #4B556A;
  border-radius: 15px;
  padding: clamp(18px, 3vh, 28px);
  max-width: calc(var(--slide-width) - 40px);
  max-height: calc(var(--slide-height) - 40px);
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gap-main-title {
  color: #e9dc12;
  text-align: center;
  margin-bottom: clamp(14px, 2.2vh, 22px);
  font-size: clamp(20px, 3.4vh, 28px);
  font-weight: 900;
  animation: fadeInDown 1s ease-out 0.5s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.stats-battle {
  display: flex;
  justify-content: space-between;
  margin: 0;
  gap: clamp(12px, 2vh, 20px);
  align-items: center;
  flex: 1;
}

.stat-card {
  flex: 1;
  padding: clamp(16px, 2.4vh, 24px);
  border-radius: 12px;
  text-align: center;
  animation: slideUp 0.8s ease-out var(--delay) both;
  animation-delay: var(--delay);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-height: clamp(150px, 20vh, 210px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.total-usage {
  --delay: 1s;
  background: #0099d4;
  color: white;
}

.daily-usage {
  --delay: 1.5s;
  background: #01506e;
  color: white;
}

.stat-value {
  font-size: clamp(1.8em, 6.4vh, 3em);
  font-weight: 900;
  margin: clamp(8px, 1.6vh, 12px) 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.stat-label {
  font-size: clamp(0.9em, 2.1vh, 1.1em);
  font-weight: 600;
  margin: clamp(4px, 1.2vh, 8px) 0;
  flex-shrink: 0;
}

.stat-description {
  font-size: clamp(0.75em, 1.8vh, 0.95em);
  opacity: 0.9;
  line-height: 1.3;
  flex-shrink: 0;
}

.vs-symbol {
  font-size: 2.5em;
  color: #e9dc12;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Desktop-optimized for webinar presentation */
@media (max-width: 768px) {
  .text-line {
    -webkit-text-stroke: 1.2px var(--stroke);
  }
}

/* -------- GLOBAL SAFETIES -------- */
* { box-sizing: border-box; }

.reveal .slides section { padding: 0; }

.reveal-viewport,
.reveal {
  background-color: #207bb5;
}

/* reveal provides --slide-width/--slide-height on <body> */
.slide-center {
  display: grid;
  place-items: start center;   /* top-align the stack */
  width: 100%;
  height: 100%;
  min-height: 0;               /* critical for nested scroll areas */
}

.slide-safe {
  max-width: calc(var(--slide-width) - 80px);
  max-height: calc(var(--slide-height) - 80px);
  width: 100%;
  margin: 0 auto;
  min-height: 0;               /* avoid 100% height traps */
  overflow: visible;           /* never clip headings */
}

/* -------- STACK PATTERN: header (fixed) + body (scroll) -------- */
.stack {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.6vh, 16px);
  max-height: calc(var(--slide-height) - 80px);
  min-height: 0;
}

.stack > .stack-body {
  min-height: 0;
  overflow: auto;              /* only the body scrolls when needed */
  -webkit-overflow-scrolling: touch;
}

/* -------- HEADINGS ALWAYS VISIBLE -------- */
.reveal h1, .reveal h2, .reveal h3 {
  position: relative;
  z-index: 2;                  /* sit above cards/decorations */
  margin: 0 0 clamp(8px, 1.5vh, 16px);
  line-height: 1.12;
}

.reveal h1 { font-size: clamp(28px, 6vh, 64px); }
.reveal h2 { font-size: clamp(22px, 4.8vh, 40px); }
.reveal h3 { font-size: clamp(18px, 3.8vh, 28px); }

/* -------- DO NOT CLIP HEADERS -------- */
.concerns-container,
.script-container,
.privacy-container,
.ai-gap-container { 
  overflow: visible; 
  position: relative; 
  min-height: 0; 
}

/* Decorative/boxed areas sit below headings */
.message-card,
.concern-card,
.solution-section,
.recipe-example,
.code-example,
.privacy-comparison,
.key-message {
  position: relative;
  z-index: 1;
}

/* Optional: if a card itself can overflow, allow internal scroll */
.card-scroll { overflow: auto; min-height: 0; }

/* About Me Slide Styles */
.about-slide-safe {
  max-width: calc(var(--slide-width) - 32px);
  max-height: calc(var(--slide-height) - 32px);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(6px, 1vh, 10px);
}

.about-container {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  grid-template-rows: auto 1fr;
  gap: clamp(8px, 1.2vh, 14px) clamp(16px, 2.5vw, 32px);
  padding: clamp(4px, 0.8vh, 10px) clamp(8px, 1.2vw, 14px);
  max-width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.about-title {
  font-size: clamp(28px, 5vh, 48px);
  font-weight: 900;
  color: white;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  grid-column: 1 / -1;
  grid-row: 1;
}

.about-photo {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 6px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  align-self: center;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 440px);
  border-radius: 12px;
  object-fit: cover;
}

.credential-timeline {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.6vh, 18px);
  overflow: hidden;
}

.credential-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
  animation: fadeInScale 1s ease-out var(--timeline-delay, 0s) both;
}

.credential-item:nth-child(1) { --timeline-delay: 0.3s; }
.credential-item:nth-child(2) { --timeline-delay: 0.6s; }
.credential-item:nth-child(3) { --timeline-delay: 0.9s; }
.credential-item:nth-child(4) { --timeline-delay: 1.2s; }

.credential-marker {
  flex-shrink: 0;
  background: #e9dc12;
  color: #207bb5;
  width: clamp(52px, 7.5vh, 68px);
  height: clamp(52px, 7.5vh, 68px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 2.2vh, 17px);
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
  z-index: 2;
}

/* Change color for the 90+ circle (second credential item) */
.credential-item:nth-child(2) .credential-marker {
  background: #207bb5;
  color: #e9dc12;
  box-shadow: 0 4px 15px rgba(32, 123, 181, 0.3);
}

/* Logo placed to the right of a marker when present */
.credential-logo {
  position: absolute;
  left: calc(50% + clamp(70px, 10vh, 90px) + 40px);
  transform: translateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-logo img {
  height: clamp(56px, 7vh, 80px);
  width: auto;
  max-width: min(240px, 30vw);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.credential-card-logo {
  display: block;
  margin-top: clamp(6px, 1vh, 10px);
  height: clamp(26px, 3.8vh, 36px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.credential-content {
  background: white;
  padding: clamp(10px, 1.6vh, 16px) clamp(12px, 1.8vw, 18px);
  border-radius: 12px;
  flex: 1;
  min-width: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.credential-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}


.credential-title {
  font-size: clamp(18px, 3vh, 28px);
  font-weight: 800;
  color: #207bb5;
  margin: 0 0 clamp(4px, 0.6vh, 8px) 0;
  line-height: 1.2;
}

.credential-description {
  font-size: clamp(16px, 2.5vh, 24px);
  color: #4B556A;
  line-height: 1.4;
  margin: 0;
}

.highlight-score {
  background: #e9dc12;
  color: #207bb5;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.highlight-business {
  background: #e9dc12;
  color: #207bb5;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.highlight-students {
  background: #e9dc12;
  color: #207bb5;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.about-outcome {
  background: #009944;
  color: white;
  padding: clamp(20px, 3vh, 30px);
  border-radius: 15px;
  text-align: center;
  animation: fadeInUp 1s ease-out 2s both;
  box-shadow: 0 12px 30px rgba(0, 153, 68, 0.3);
  border: 3px solid #e9dc12;
  position: relative;
  z-index: 1;
}

.about-outcome .outcome-text {
  font-size: clamp(16px, 2.5vh, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* What I Do Slide Styles */
.services-container {
  display: flex;
  gap: clamp(25px, 4vh, 40px);
  padding: clamp(15px, 2.5vh, 25px);
  max-width: 100%;
  min-height: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
  align-items: stretch;
}

.services-title {
  font-size: clamp(24px, 4.5vh, 42px);
  font-weight: 900;
  color: white;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 1;
  z-index: 100;
  position: relative;
}

.service-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: clamp(25px, 4vh, 40px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #e9dc12;
  text-align: center;
  animation: fadeInUp 1s ease-out var(--service-delay, 0s) both;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(15px, 2.5vh, 20px);
}

.service-card.online-course { --service-delay: 0.5s; }
.service-card.tutoring { --service-delay: 0.8s; }

.service-icon {
  font-size: clamp(32px, 5vh, 48px);
  font-weight: 900;
  margin-bottom: clamp(10px, 1.5vh, 15px);
  background: #e9dc12;
  color: #2c3e50;
  width: clamp(80px, 10vh, 100px);
  height: clamp(80px, 10vh, 100px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(233, 220, 18, 0.3);
  border: 3px solid #207bb5;
}

.service-title {
  font-size: clamp(20px, 3.5vh, 28px);
  font-weight: 800;
  color: #207bb5;
  margin: 0;
  line-height: 1.2;
}

.service-subtitle {
  font-size: clamp(16px, 2.8vh, 22px);
  font-weight: 700;
  color: #009944;
  margin: 0;
  line-height: 1.3;
}

.service-description {
  font-size: clamp(14px, 2.2vh, 18px);
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    gap: clamp(20px, 3vh, 30px);
  }
}

/* Maxwell Method Carousel Styles */
.course-preview-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 20px);
  max-height: calc(var(--slide-height) - 20px);
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
}

.carousel-header {
  background: linear-gradient(135deg, #0056d3 0%, #0041a3 100%);
  color: white;
  padding: clamp(15px, 2vh, 25px) clamp(15px, 2vh, 20px);
  text-align: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.carousel-header h2 {
  font-size: clamp(20px, 4vh, 32px);
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  flex: 1;
  min-height: 0;
}

.carousel-container.dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: clamp(20px, 3vh, 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.slide-header {
  display: none;
}

.slide-header h3 {
  font-size: clamp(18px, 3.5vh, 28px);
  font-weight: 700;
  margin: 0 0 clamp(6px, 1vh, 12px) 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.slide-subtitle {
  font-size: clamp(14px, 2.2vh, 18px);
  color: #0056d3;
  margin: 0 0 clamp(4px, 0.8vh, 8px) 0;
  font-weight: 600;
}

.slide-description {
  font-size: clamp(12px, 2vh, 16px);
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.stats-highlight {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0056d3, #0041a3);
  color: white;
  padding: clamp(4px, 1vh, 8px) clamp(8px, 1.5vh, 16px);
  border-radius: 25px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vh, 20px);
  margin: clamp(8px, 1.5vh, 16px) 0;
  box-shadow: 0 4px 12px rgba(0, 86, 211, 0.3);
}

.media-container {
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fa;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: clamp(300px, 45vh, 450px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin: 0 auto;
}

.media-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.media-container img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.media-container:hover img {
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  padding: clamp(10px, 1.5vh, 20px) clamp(10px, 1.5vh, 15px);
  gap: 12px;
  flex-shrink: 0;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  background: #bbb;
  transform: scale(1.1);
}

.dot.active {
  background: #0056d3;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(0, 86, 211, 0.2);
}

.carousel-nav {
  display: none;
}

.progress-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #0056d3;
  transition: width 0.4s ease;
  border-radius: 0 2px 0 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-slide.active {
  animation: slideInUp 0.6s ease-out;
}

/* YouTube Success Slide Styles - FULL SCREEN */
.youtube-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
}

.youtube-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 10px);
  max-height: calc(var(--slide-height) - 10px);
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  animation: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: white;
  transition: none;
}

.youtube-image:hover {
  transform: none;
}

/* How I Started With Vibe Coding Slide Styles */
.story-container {
  background: white;
  border-radius: 20px;
  padding: clamp(25px, 3.5vh, 40px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  overflow: visible;
  position: relative;
  min-height: 0;
}

.story-title {
  color: #2c3e50;
  font-size: clamp(22px, 4.8vh, 40px);
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0 0 clamp(8px, 1.5vh, 16px);
  line-height: 1.12;
  position: relative;
  z-index: 2;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 35px);
  margin-bottom: clamp(25px, 4vh, 40px);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(15px, 2.5vh, 25px);
  animation: slideInLeft 0.8s ease-out;
  animation-delay: var(--timeline-delay);
  animation-fill-mode: both;
  position: relative;
  z-index: 1;
}

.timeline-item:nth-child(1) { --timeline-delay: 0.5s; }
.timeline-item:nth-child(2) { --timeline-delay: 1s; }
.timeline-item:nth-child(3) { --timeline-delay: 1.5s; }

.timeline-marker {
  font-size: clamp(18px, 2.5vh, 24px);
  background: #e9dc12;
  color: #2c3e50;
  width: clamp(50px, 6vh, 70px);
  height: clamp(50px, 6vh, 70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(233, 220, 18, 0.3);
  flex-shrink: 0;
  border: 3px solid #207bb5;
  font-weight: 900;
}

.timeline-content {
  flex: 1;
  background: #85556A;
  color: white;
  padding: clamp(15px, 2.5vh, 25px);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(133, 85, 106, 0.3);
  border: 2px solid #e9dc12;
}

.timeline-title {
  font-size: clamp(16px, 2.4vh, 24px);
  font-weight: 700;
  margin-bottom: clamp(8px, 1.2vh, 12px);
  color: #e9dc12;
}

.timeline-description {
  font-size: clamp(14px, 2vh, 18px);
  line-height: 1.4;
  font-weight: 500;
}

.highlight-event {
  background: #009944;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.1em;
  animation: gentlePulse 3s ease-in-out infinite;
  animation-delay: 2s;
}

.highlight-challenge {
  background: #e9dc12;
  color: #2c3e50;
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.1em;
  animation: gentlePulse 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.highlight-time {
  background: #207bb5;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.1em;
  animation: gentlePulse 3s ease-in-out infinite;
  animation-delay: 3s;
}

.story-outcome {
  background: #009944;
  color: white;
  padding: clamp(20px, 3vh, 30px);
  border-radius: 15px;
  text-align: center;
  animation: fadeInUp 1s ease-out 2s both;
  box-shadow: 0 12px 30px rgba(0, 153, 68, 0.3);
  border: 3px solid #e9dc12;
  position: relative;
  z-index: 1;
}

.outcome-text {
  font-size: clamp(16px, 2.4vh, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Poster Display Slide Styles - FULL SCREEN */
.poster-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
}

.poster-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 10px);
  max-height: calc(var(--slide-height) - 10px);
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-title {
  display: none;
}

.poster-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  animation: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: white;
  transition: none;
}

.poster-image:hover {
  transform: none;
}

.poster-caption {
  display: none;
}

.caption-text {
  display: none;
}

/* Big message card that stays inside the slide */
.message-card {
  background: white;
  color: #2c3e50;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  padding: clamp(16px, 3.5vh, 40px);
  /* never let the card exceed safe area */
  max-width: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
  min-height: 0; /* allow inner text to shrink */
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.5s both, 
             subtleFloat 4s ease-in-out infinite;
  animation-delay: 0.5s, 2s;
}

.message-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 220, 18, 0.1), transparent);
  animation: shimmer 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* Fluid headline that respects vertical space */
.message-text {
  text-align: center;
  line-height: 1.18;
  /* vh term is what prevents vertical cut-off */
  font-size: clamp(22px, 5.2vh, 64px);
  font-weight: 800;
  letter-spacing: 0.2px;
  overflow-wrap: anywhere;
  hyphens: auto;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Optional emphasis word */
.highlight-word {
  background: #e9dc12;
  color: #2c3e50;
  display: inline-block;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  font-weight: 800;
  border: 3px solid #e9dc12;
  margin: 0 0.2em;
  animation: gentlePulse 2.5s ease-in-out infinite;
  animation-delay: 4s;
  transform: translateZ(0);
}

/* Hover "pop" that won't change layout height */
.hover-pop { 
  transition: transform .18s ease, filter .18s ease; 
}
.hover-pop:hover { 
  transform: scale(1.04); 
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(233, 220, 18, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(233, 220, 18, 0.4);
  }
}

/* Data Privacy Slide Styles */
.privacy-container {
  background: white;
  border-radius: 20px;
  padding: clamp(20px, 3vh, 35px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
  animation: fadeIn 1s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.privacy-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: clamp(8px, 1vh, 12px);
  font-size: clamp(28px, 4vh, 48px);
  font-weight: 900;
  animation: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 1;
  z-index: 100;
  position: relative;
}

.privacy-subtitle {
  color: #207bb5;
  text-align: center;
  margin-bottom: clamp(15px, 2vh, 25px);
  font-size: clamp(20px, 2.8vh, 32px);
  font-weight: 700;
  animation: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 1;
  z-index: 100;
  position: relative;
}

.privacy-comparison {
  display: flex;
  justify-content: space-between;
  margin: clamp(20px, 3vh, 35px) 0;
  gap: clamp(20px, 2.5vh, 30px);
  align-items: stretch;
}

.privacy-card {
  flex: 1;
  padding: clamp(15px, 2.5vh, 25px);
  border-radius: 15px;
  text-align: center;
  animation: slideUp 0.8s ease-out;
  animation-delay: var(--delay);
  animation-fill-mode: both;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secure-local {
  --delay: 1s;
  background: #009944;
  color: white;
  border: 3px solid #e9dc12;
}

.risky-upload {
  --delay: 1.5s;
  background: #85556A;
  color: white;
}

.card-title {
  font-size: clamp(16px, 2.2vh, 24px);
  font-weight: 700;
  margin-bottom: clamp(8px, 1.5vh, 15px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-subtitle {
  font-size: clamp(14px, 1.8vh, 20px);
  font-weight: 600;
  margin-bottom: clamp(10px, 1.8vh, 18px);
  opacity: 0.9;
}

.card-description {
  font-size: clamp(12px, 1.5vh, 16px);
  line-height: 1.4;
  margin-bottom: clamp(8px, 1.2vh, 12px);
}

.security-icon {
  font-size: clamp(24px, 3vh, 40px);
  margin-bottom: clamp(8px, 1.2vh, 15px);
  animation: gentleFloat 3s ease-in-out infinite;
  animation-delay: var(--float-delay);
}

.secure-local .security-icon {
  --float-delay: 2.5s;
}

.risky-upload .security-icon {
  --float-delay: 3s;
}

.privacy-comparison .vs-symbol {
  font-size: clamp(20px, 2.5vh, 32px);
  color: #207bb5;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideIn 0.8s ease-out 2s both;
}

.key-message {
  background: #e9dc12;
  color: #2c3e50;
  padding: clamp(15px, 2.5vh, 25px);
  border-radius: 15px;
  margin-top: clamp(15px, 2vh, 25px);
  text-align: center;
  animation: fadeInUp 1s ease-out 2.5s both;
  box-shadow: 0 12px 30px rgba(233, 220, 18, 0.3);
  border: 2px solid #207bb5;
}

.key-message .message-text {
  font-size: clamp(16px, 2.2vh, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.key-message .highlight-word {
  background: #009944;
  color: white;
  padding: 0.2em 0.4em;
  border-radius: 0.3em;
  font-weight: 800;
  display: inline-block;
  margin: 0 0.1em;
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Vibe Coding Slide Styles */
.vibe-coding-header {
  position: relative;
  z-index: 2;
  font-size: 1.4em;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.45em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #ffffff, #e9dc12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vibe-coding-container {
  background: white;
  border-radius: 25px;
  padding: 0.7em;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 60%;
  margin: 0 auto;
  font-size: 0.7em; /* ~30% shrink of all inner typography */
}

.vibe-coding-definition {
  text-align: center;
  margin-bottom: 1.2em;
}

.definition-text {
  font-size: 0.74em;
  line-height: 1.3;
  color: #2c3e50;
  font-weight: 500;
  margin: 0;
  padding: 0.6em;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #207bb5;
}

.vibe-coding-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  flex-wrap: wrap;
}

.instruction-box, .code-box {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 0.5em;
  flex: 1;
  min-width: 140px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.instruction-box:hover, .code-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #207bb5;
}

.instruction-box {
  border-left: 5px solid #27ae60;
}

.code-box {
  border-left: 5px solid #e74c3c;
}

.instruction-icon, .code-icon {
  font-size: 1.1em;
  margin-bottom: 0.4em;
}

.instruction-content h4, .code-content h4 {
  color: #2c3e50;
  font-size: 0.8em;
  font-weight: 700;
  margin: 0 0 0.4em 0;
}

.instruction-content p, .code-content p {
  color: #5a6c7d;
  font-size: 0.7em;
  line-height: 1.3;
  margin: 0;
  font-style: italic;
}

.arrow-transform {
  font-size: 1.1em;
  color: #207bb5;
  font-weight: 900;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* AI Orchestra Conductor Slide Styles */
.orchestra-main-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.2em; /* Further reduction from 1.44em */
  text-align: center;
  margin-bottom: 0.4em;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.orchestra-stage-container {
  background: white;
  border-radius: 25px;
  padding: 0.6em; /* Reduced from 0.7em */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 60%;
  margin: 0 auto;
  font-size: 0.6em; /* Further reduction from 0.68em */
}

.orchestra-stage-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #e9dc12, #00b894, #e9dc12);
}

.orchestra-roles-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.1em;
  align-items: center;
}

.orchestra-role-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1em;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid;
}

.orchestra-role-card:hover {
  transform: translateY(-10px);
}

.conductor-card {
  border-left-color: #e9dc12;
}

.orchestra-card {
  border-left-color: #207bb5;
}

.orchestra-icon-container {
  display: none; /* hide icons */
}

.conductor-icon, .orchestra-icon {
  font-size: 2em;
}

.orchestra-role-title {
  font-size: 1.1em; /* Reduced from 1.2em */
  font-weight: 700;
  color: #207bb5;
  margin-bottom: 0.3em; /* Reduced from 0.4em */
}

.orchestra-role-subtitle {
  font-size: 0.85em; /* Reduced from 0.95em */
  color: #4B556A;
  font-weight: 600;
  margin-bottom: 0.6em; /* Reduced from 0.8em */
}

.orchestra-role-description {
  font-size: 0.75em; /* Reduced from 0.8em */
  color: #4B556A;
  line-height: 1.4; /* Reduced from 1.5 */
}

.orchestra-equals-sign {
  font-size: 2em;
  color: white;
  font-weight: 700;
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

/* Direct Execute Review Workflow Slide Styles */
.workflow-header {
  position: relative;
  z-index: 2;
  font-size: 1.8em; /* restore readable size */
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0.6em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.workflow-container {
  background: white;
  border-radius: 20px;
  padding: 1em;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em; /* tighter spacing between steps */
  font-size: 0.8em; /* restore inner typography */
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 0.8em;
  width: 100%;
  max-width: 520px;
  padding: 0.8em;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.workflow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.direct-step {
  background: linear-gradient(135deg, #e9dc12, #f1e650);
  border-left: 6px solid #d4c20a;
}

.execute-step {
  background: linear-gradient(135deg, #00b894, #00d2a0);
  border-left: 6px solid #009975;
}

.review-step {
  background: linear-gradient(135deg, #207bb5, #2691d9);
  border-left: 6px solid #1a6699;
}

.step-number {
  font-size: 1.6em;
  font-weight: 900;
  color: white;
  background: none;
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.1em;
  font-weight: 800;
  color: white;
  margin-bottom: 0.4em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* No body text for simplified steps */
.step-description { display: none; }

.step-icon {
  font-size: 1.5em;
  align-self: flex-start;
}

.step-description p {
  font-size: 0.85em;
  color: white;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.example-text {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  padding: 0.6em;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.8em;
  border-left: 3px solid rgba(0, 0, 0, 0.2);
}

.workflow-arrow {
  font-size: 2em;
  color: #207bb5;
  font-weight: 900;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Simplified Privacy Slide Styles */
.privacy-simple-content {
  text-align: center;
  padding: 1.2em;
}

.privacy-simple-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.privacy-simple-icon {
  font-size: 1.9em;
  margin: 0.5em 0;
  display: block;
}

.privacy-simple-subtitle {
  font-size: 1.05em;
  font-weight: 600;
  color: #000000;
  margin: 0.5em 0 0.4em 0;
  line-height: 1.3;
}

/* Force black headings on privacy simple card */
.privacy-simple-card .privacy-simple-title,
.privacy-simple-card .privacy-simple-subtitle {
  color: #000 !important;
}

.privacy-simple-text {
  font-size: 0.9em;
  color: #4B556A;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-stat-footnote {
  margin-top: 10px;
  font-size: 0.85em;
  color: #2c3e50;
}

.privacy-stat-footnote a {
  color: #207bb5;
  text-decoration: underline;
}

/* Smaller variant for the privacy simple card so it stays within bounds */
.privacy-simple-card {
  padding: 0.7em !important;
  max-height: calc(var(--slide-height) - 140px);
  overflow: hidden;
}


/* Privacy Protection Slide Styles */
.privacy-header {
  position: relative;
  z-index: 2;
  font-size: 2.2em;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-protection-container {
  background: white;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  margin: 0 auto;
}

.concern-highlight {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 2em;
  padding: 1.5em;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #e74c3c;
}

.concern-icon {
  font-size: 3em;
  flex-shrink: 0;
}

.concern-text h3 {
  color: #2c3e50;
  font-size: 1.4em;
  font-weight: 700;
  margin: 0 0 0.5em 0;
}

.concern-text p {
  color: #5a6c7d;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}

.protection-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  margin-bottom: 2em;
}

.method-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5em;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #207bb5;
}

.method-icon {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.method-card h4 {
  color: #2c3e50;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 0.5em 0;
}

.method-card p {
  color: #5a6c7d;
  font-size: 0.95em;
  line-height: 1.4;
  margin: 0;
}

.privacy-assurance {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 15px;
  padding: 1.5em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.assurance-text {
  color: white;
  font-size: 1.3em;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concerns-title {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  animation: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 1;
  position: relative;
  z-index: 100;
}

.concern-card {
  background: linear-gradient(135deg, #85556A, #207bb5);
  color: white;
  padding: 20px;
  border-radius: 20px;
  margin: 15px 0;
  animation: fadeInUp 1s ease-out 1s both;
  box-shadow: 0 15px 40px rgba(133, 85, 106, 0.3);
  border: 3px solid #e9dc12;
}

.concern-icon {
  font-size: 32px;
  margin-bottom: 12px;
  animation: gentleFloat 3s ease-in-out infinite;
  animation-delay: 2s;
}

.concern-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-concern {
  background: #e9dc12;
  color: #2c3e50;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  font-weight: 800;
  display: inline-block;
  margin: 0 0.2em;
  animation: gentlePulse 2.5s ease-in-out infinite;
  animation-delay: 3s;
}

.solution-section {
  margin-top: 20px;
  animation: fadeInUp 1s ease-out 2.5s both;
}

.solution-arrow {
  font-size: clamp(32px, 4vh, 48px);
  color: #009944;
  font-weight: 900;
  margin: clamp(15px, 2vh, 25px) 0;
  animation: bounce 2s ease-in-out infinite;
  animation-delay: 4s;
}

.solution-title {
  font-size: clamp(22px, 3.2vh, 32px);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: clamp(15px, 2vh, 25px);
}

.solution-highlight {
  background: #009944;
  color: white;
  padding: clamp(20px, 3vh, 35px);
  border-radius: 15px;
  margin: clamp(15px, 2vh, 25px) 0;
  box-shadow: 0 12px 30px rgba(0, 153, 68, 0.3);
  border: 3px solid #e9dc12;
}

.solution-word {
  font-size: clamp(32px, 5vh, 56px);
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: gentlePulse 2.5s ease-in-out infinite;
  animation-delay: 5s;
}

.solution-explanation {
  font-size: clamp(16px, 2.2vh, 24px);
  font-weight: 600;
  color: #85556A;
  line-height: 1.4;
  margin-top: clamp(15px, 2vh, 25px);
  animation: fadeIn 1s ease-out 6s both;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* What's a Script Slide Styles */
.script-container {
  background: white;
  border-radius: 20px;
  padding: clamp(20px, 3vh, 35px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  animation: fadeIn 1s ease-out;
  text-align: center;
}

.script-title {
  color: #2c3e50;
  font-size: clamp(32px, 4.5vh, 56px);
  font-weight: 900;
  margin-bottom: clamp(20px, 3vh, 35px);
  animation: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 1;
  position: relative;
  z-index: 100;
}

.analogy-section {
  background: #e9dc12;
  color: #2c3e50;
  padding: clamp(20px, 3vh, 30px);
  border-radius: 15px;
  margin: clamp(15px, 2vh, 20px) 0;
  animation: fadeInUp 1s ease-out 1s both;
  box-shadow: 0 12px 30px rgba(233, 220, 18, 0.3);
  border: 3px solid #009944;
}

.analogy-text {
  font-size: clamp(18px, 2.8vh, 28px);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.recipe-example {
  background: #85556A;
  color: white;
  padding: clamp(20px, 3vh, 30px);
  border-radius: 15px;
  margin: clamp(15px, 2vh, 20px) 0;
  animation: fadeInUp 1s ease-out 2s both;
  box-shadow: 0 12px 30px rgba(133, 85, 106, 0.3);
  text-align: left;
}

.recipe-title {
  font-size: clamp(16px, 2.2vh, 24px);
  font-weight: 700;
  margin-bottom: clamp(15px, 2vh, 20px);
  text-align: center;
  color: #e9dc12;
}

.recipe-steps {
  list-style: none;
  font-size: clamp(12px, 1.6vh, 16px);
  line-height: 1.4;
}

.recipe-steps li {
  margin-bottom: clamp(8px, 1.2vh, 12px);
  padding: clamp(10px, 1.5vh, 15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 3px solid #009944;
  animation: slideInStep 0.6s ease-out;
  animation-delay: calc(2.5s + var(--step-delay));
  animation-fill-mode: both;
}

.recipe-steps li:nth-child(1) { --step-delay: 0.1s; }
.recipe-steps li:nth-child(2) { --step-delay: 0.2s; }
.recipe-steps li:nth-child(3) { --step-delay: 0.3s; }
.recipe-steps li:nth-child(4) { --step-delay: 0.4s; }
.recipe-steps li:nth-child(5) { --step-delay: 0.5s; }
.recipe-steps li:nth-child(6) { --step-delay: 0.6s; }

.code-example {
  background: #2c3e50;
  color: white;
  padding: clamp(20px, 3vh, 30px);
  border-radius: 15px;
  margin: clamp(15px, 2vh, 20px) 0;
  animation: fadeInUp 1s ease-out 4s both;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.3);
  font-family: 'Courier New', monospace;
  border: 3px solid #e9dc12;
}

.code-title {
  font-size: clamp(16px, 2.2vh, 24px);
  font-weight: 700;
  margin-bottom: clamp(15px, 2vh, 20px);
  text-align: center;
  color: #e9dc12;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.code-block {
  background: #1a1a1a;
  padding: clamp(10px, 1.5vh, 15px);
  border-radius: 8px;
  margin: clamp(8px, 1.2vh, 12px) 0;
  border-left: 3px solid #009944;
  animation: slideInCode 0.6s ease-out;
  animation-delay: calc(4.5s + var(--code-delay));
  animation-fill-mode: both;
  overflow-x: auto;
  font-size: clamp(10px, 1.3vh, 14px);
}

.code-block:nth-child(2) { --code-delay: 0.1s; }
.code-block:nth-child(3) { --code-delay: 0.2s; }
.code-block:nth-child(4) { --code-delay: 0.3s; }

.code-comment { color: #7f8c8d; font-style: italic; }
.code-keyword { color: #3498db; font-weight: bold; }
.code-string { color: #e74c3c; }
.code-function { color: #e9dc12; }

.analogy-section .highlight-word {
  background: #009944;
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  font-weight: 800;
  display: inline-block;
  margin: 0 0.2em;
  animation: gentlePulse 2.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes slideInStep {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInCode {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Desktop-only - no mobile responsive needed */

/* Enhanced Concerns Slide Styles */
.concerns-enhanced-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  max-width: calc(var(--slide-width) - 60px);
  max-height: calc(var(--slide-height) - 80px);
  min-height: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
  height: auto;
  margin: 0 auto;
}

.problem-section {
  text-align: center;
}

.problem-card {
  background: white;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4em;
  font-weight: 600;
  color: #4B556A;
  animation: fadeInUp 1s ease-out 0.3s both;
  max-width: 85%;
}

.warning-icon {
  font-size: 1.5em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.highlight-yellow {
  background: #e9dc12;
  color: #207bb5;
  padding: clamp(4px, 1vh, 8px) clamp(12px, 2vh, 20px);
  border-radius: 12px;
  font-weight: 700;
}

.divider {
  text-align: center;
  position: relative;
}

.arrow-down {
  font-size: 2.5em;
  color: white;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

.solution-section {
  text-align: center;
}

.solution-title {
  color: white;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.solution-card {
  background: linear-gradient(135deg, #009944 0%, #00cec9 100%);
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.8s both;
  margin: 0 auto;
  max-width: 80%;
}

.solution-card::before {
  content: '</>';
  position: absolute;
  font-size: clamp(8em, 20vh, 15em);
  color: rgba(255,255,255,0.08);
  right: clamp(-20px, -3vh, -40px);
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.solution-card h2 {
  font-size: 2.8em;
  color: white;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.solution-description {
  font-size: 1.1em;
  color: white;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
}

.icon-lock, .icon-code {
  display: inline-block;
  margin: 0 clamp(4px, 1vh, 8px);
  font-size: 0.9em;
}

/* Kyle Demo GIF Slide Styles - FULL SCREEN */
.gif-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
}

.gif-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 10px);
  max-height: calc(var(--slide-height) - 10px);
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: none;
}

.gif-image:hover {
  transform: none;
}

/* Bridge Slide Styles - COMPACT FOR DESKTOP */
.bridge-container {
  padding: 10px;
}

.flow-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  position: relative;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.bridge-box {
  background: white;
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  max-width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: floatUpDown 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.bridge-box:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.bridge-box:nth-child(1) {
  animation-delay: 0s;
}

.bridge-box:nth-child(3) {
  animation-delay: 1s;
}

.bridge-box:nth-child(5) {
  animation-delay: 2s;
}

.script-bridge-box {
  background: #e9dc12;
  border: 6px solid #207bb5;
  transform: scale(1.05);
}

.script-bridge-box:hover {
  transform: scale(1.13) translateY(-5px);
  box-shadow: 0 20px 40px rgba(233, 220, 18, 0.4);
}

.bridge-icon-img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
}

.bridge-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #207bb5;
  margin-bottom: 12px;
}

.bridge-description {
  font-size: 0.9em;
  color: #4B556A;
  line-height: 1.4;
  margin-bottom: 12px;
}

.script-bridge-box .bridge-description {
  color: #207bb5;
  font-weight: 500;
}

.bridge-badge {
  background: #207bb5;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9em;
  font-weight: 600;
}

.script-bridge-badge {
  background: #00b894;
  font-size: 1em;
  padding: 8px 18px;
}

.bridge-arrow {
  font-size: 2.5em;
  color: white;
  align-self: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Script GIF Slide Styles - FULL SCREEN */
.script-gif-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
}

.script-gif-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 10px);
  max-height: calc(var(--slide-height) - 10px);
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.script-gif-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.script-gif-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: none;
}

.script-gif-image:hover {
  transform: none;
}

/* What's a Script? - IMPROVED SLIDE STYLES */
.script-improved-title {
  color: white;
  font-size: 0.3em; /* keep modest increase for this slide */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 1;
  z-index: 100;
  position: relative;
}

.script-improved-container {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 0.3em; /* keep modest increase */
  max-width: 80%; /* reduce slide width */
  margin: 0 auto;
}

.analogy-box-improved {
  background: #e9dc12;
  border: 3px solid #00b894;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.analogy-text-improved {
  font-size: 1.4em;
  color: #207bb5;
  font-weight: 600;
  line-height: 1.4;
}

.highlight-word-improved {
  background: #00b894;
  color: white;
  padding: 6px 15px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
}

.example-section-improved {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.example-title-improved {
  color: #e9dc12;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: #207bb5;
  padding: 6px 8px;
  border-radius: 10px;
}

.recipe-steps-improved {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recipe-step-improved {
  background: #f8f9fa;
  padding: 6px 10px;
  border-radius: 8px;
  border-left: 4px solid #00b894;
  font-size: 1em;
  color: #4B556A;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.recipe-step-improved:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-left-color: #207bb5;
}

.step-number-improved {
  background: #00b894;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7em;
  flex-shrink: 0;
}

.step-text-improved {
  flex: 1;
  line-height: 1.5;
}

/* Excel Example Slide Styles */
.example-title {
  color: white;
  font-size: 2.2em; /* restore original example title size */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 1;
  z-index: 100;
  position: relative;
}

.example-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.excel-image-frame {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.excel-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

/* OpenAI GIF Slide Styles - FULL SCREEN */
.openai-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
}

.openai-container {
  width: 100%;
  height: 100%;
  max-width: calc(var(--slide-width) - 10px);
  max-height: calc(var(--slide-height) - 10px);
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.openai-frame {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.openai-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: none;
}

/* Cursor.com Slide Styles */
.cursor-slide-safe {
  max-width: calc(var(--slide-width) - 5px) !important;
  max-height: calc(var(--slide-height) - 5px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.cursor-title {
  font-size: clamp(2em, 4vh, 3em);
  color: white;
  text-align: center;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: 700;
}

.cursor-url {
  margin-bottom: 20px;
  text-align: center;
}

.cursor-url a {
  color: #e9dc12;
  font-size: 1.5em;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.cursor-url a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.cursor-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Main Takeaways Slide Styles */
.takeaways-slide-safe {
  max-width: calc(var(--slide-width) - 40px) !important;
  max-height: calc(var(--slide-height) - 40px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.takeaways-title {
  color: white;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.takeaways-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  width: 100%;
}

.takeaway-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.takeaway-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.takeaway-text {
  font-size: 1.2em;
  line-height: 1.5;
  color: #2c3e50;
  text-align: center;
  width: 100%;
}

.takeaway-text strong {
  color: #207bb5;
  font-weight: 700;
}

.takeaway-subtext {
  font-size: 0.8em;
  color: #666;
  margin-top: 8px;
  display: block;
}

/* Applications Slide Styles */
.applications-slide-safe {
  padding: 20px;
  max-width: 100%;
  max-height: 100vh;
  overflow: hidden;
}

.applications-title {
  color: white;
  font-size: clamp(1.2em, 3vw, 1.8em);
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.applications-subtitle {
  color: #e9dc12;
  font-size: clamp(0.6em, 1.5vw, 0.9em);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
}

.applications-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.use-case {
  background: white;
  border-radius: 6px;
  padding: 6px;
  border-left: 3px solid #0099d4;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.use-case h3 {
  color: #207bb5;
  font-size: clamp(0.6em, 1.8vw, 0.8em);
  margin-bottom: 3px;
}

.use-case p {
  color: #4B556A;
  font-size: clamp(0.5em, 1.3vw, 0.65em);
  line-height: 1.2;
}

.tag {
  display: inline-block;
  background: #e9dc12;
  color: #01506e;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: clamp(0.5em, 1.2vw, 0.65em);
  font-weight: bold;
  margin-bottom: 5px;
}

/* Contact Me Slide Styles */
.contact-slide-safe {
  max-width: calc(var(--slide-width) - 40px) !important;
  max-height: calc(var(--slide-height) - 40px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-title {
  color: white;
  font-size: clamp(32px, 5vh, 56px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-logo {
  margin-top: 40px;
  text-align: center;
}

.contact-logo-image {
  max-height: 120px !important;
  height: 120px !important;
  width: auto !important;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  width: 100%;
}

.contact-item {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-text {
  text-align: center;
}

.contact-text a {
  color: #000 !important;
  font-size: clamp(20px, 3.2vh, 32px) !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: none !important;
}

.contact-text a:hover {
  color: #e9dc12;
  text-decoration: underline;
}

/* Python slide styles */
.python-slide-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: clamp(30px, 4vh, 50px);
}

.python-url {
  text-align: center;
}

.python-url a {
  font-size: clamp(1.4em, 2.8vh, 2.2em);
  color: #e9dc12;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: bold;
}

.python-url a:hover {
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.python-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.python-image {
  max-width: 80%;
  max-height: 60vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* First Time Use slide styles */
.first-time-slide-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: clamp(20px, 3vh, 30px);
}

.first-time-title {
  font-size: clamp(2.2em, 4.5vh, 3.2em);
  color: white;
  text-align: center;
  margin-bottom: clamp(15px, 2.5vh, 25px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.first-time-container {
  display: flex;
  gap: clamp(20px, 3vh, 40px);
  width: 100%;
  max-width: 90%;
  height: 70vh;
}

.left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vh, 25px);
}

.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(20px, 3vh, 40px);
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border-radius: 10px;
  padding: clamp(10px, 1.5vh, 20px);
}

.run-image {
  max-width: 110%;
  max-height: 110%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Make run3.png bigger in the right column */
.right-column .run-image {
  max-width: 120%;
  max-height: 120%;
  transform: scale(1.2);
}

/* Guide slide styles */
.guide-slide-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: clamp(15px, 2vh, 25px);
}

.guide-title {
  font-size: clamp(2.2em, 4.5vh, 3.2em);
  color: white;
  text-align: center;
  margin-bottom: clamp(10px, 1.5vh, 20px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.guide-container {
  width: 90%;
  height: 80vh;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}

.guide-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Effective Prompting slide styles */
.prompting-slide-safe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: clamp(12px, 2vh, 18px);
}

.prompting-title {
  font-size: clamp(1.4em, 2.8vh, 2em);
  color: white;
  text-align: center;
  margin-bottom: clamp(6px, 1vh, 8px);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.prompting-container {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vh, 15px);
}

.prompting-structure {
  display: flex;
  justify-content: space-between;
  gap: clamp(8px, 1.2vh, 12px);
}

.prompting-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: clamp(8px, 1.5vh, 12px);
  backdrop-filter: blur(10px);
}

.step-number {
  width: clamp(25px, 3.5vh, 35px);
  height: clamp(25px, 3.5vh, 35px);
  background: none;
  color: #01506e;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1em, 2vh, 1.4em);
  font-weight: bold;
  margin-bottom: clamp(4px, 0.8vh, 6px);
}

.step-content h3 {
  color: white;
  font-size: clamp(0.85em, 1.6vh, 1.2em);
  margin-bottom: clamp(3px, 0.6vh, 4px);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.step-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.65em, 1.2vh, 0.9em);
  line-height: 1.2;
}

.example-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: clamp(8px, 1.5vh, 12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.example-title {
  color: #01506e !important;
  font-size: clamp(0.9em, 1.8vh, 1.3em);
  margin-bottom: clamp(6px, 1vh, 8px);
  text-align: left;
}

.example-box {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 8px);
}

.example-item {
  background: #f8f9fa;
  border-left: 4px solid #207bb5;
  padding: clamp(6px, 1vh, 8px);
  border-radius: 5px;
  font-size: clamp(0.7em, 1.3vh, 0.95em);
  line-height: 1.3;
  color: #333 !important;
  text-align: left;
}

.example-item-block .example-prompt-line {
  margin: clamp(4px, 0.6vh, 6px) 0 0;
  font-size: clamp(0.72em, 1.35vh, 0.95em);
  line-height: 1.35;
  color: #374151;
}

.example-item-block .example-prompt-line:first-of-type {
  margin-top: clamp(6px, 0.8vh, 8px);
}

.example-item strong {
  color: #01506e !important;
}

/* Example slide titles - white and centered */
.example-title {
  color: white !important;
  text-align: center !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

/* EDEN — platform content slides (large type, minimal chrome) */
section:has(.eden-slide) .slide-center {
  place-items: center center;
}

.eden-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vh, 36px);
  width: 100%;
  max-width: calc(var(--slide-width) - 48px);
  min-height: calc(var(--slide-height) - 48px);
  max-height: calc(var(--slide-height) - 48px);
}

.eden-lead {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 3.8vh, 40px);
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.eden-topic-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.8vh, 20px) clamp(20px, 3vw, 40px);
  flex: 1 1 auto;
  align-content: center;
}

.eden-topic-item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  color: #fff;
  font-size: clamp(18px, 3.2vh, 34px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  min-width: 0;
}

.eden-topic-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 5.5vh, 56px);
  height: clamp(36px, 5.5vh, 56px);
  border-radius: 50%;
  background: #e9dc12;
  color: #207bb5;
  font-size: clamp(16px, 2.6vh, 28px);
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.eden-analytics-heading {
  margin: 0 0 clamp(12px, 2vh, 24px);
  color: #e9dc12;
  font-size: clamp(24px, 4vh, 44px);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.reveal ul.eden-analytics-list,
.reveal ul.eden-analytics-list li {
  list-style: none;
}

.eden-analytics-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vh, 40px);
  flex: 1 1 auto;
  justify-content: center;
}

.eden-analytics-list li {
  position: relative;
  padding-left: clamp(28px, 4vw, 44px);
  color: #fff;
  font-size: clamp(20px, 3.5vh, 38px);
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eden-analytics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: clamp(12px, 1.8vh, 18px);
  height: clamp(12px, 1.8vh, 18px);
  border-radius: 50%;
  background: #e9dc12;
  transform: translateY(-50%);
}

.eden-analytics-list strong {
  color: #e9dc12;
}

.eden-analytics-list li.eden-analytics-label {
  padding-left: 0;
  margin-top: clamp(28px, 4.5vh, 52px);
  color: #e9dc12;
  font-size: clamp(18px, 2.8vh, 30px);
  font-weight: 800;
}

.eden-analytics-list li.eden-analytics-label::before {
  display: none;
}

.eden-hook-slide {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eden-hook-question {
  margin: 0;
  max-width: 22em;
  text-align: center;
  font-size: clamp(24px, 4.2vh, 48px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.eden-goal-callout {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 3.8vh, 40px);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.eden-followup-points {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vh, 40px);
  flex: 1 1 auto;
  justify-content: center;
}

.eden-followup-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
}

.eden-followup-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 6.5vh, 68px);
  height: clamp(44px, 6.5vh, 68px);
  border-radius: 50%;
  background: #e9dc12;
  color: #207bb5;
  font-weight: 900;
  font-size: clamp(20px, 3.2vh, 34px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.eden-followup-point p {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3.5vh, 38px);
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eden-followup-point strong {
  color: #e9dc12;
}

.eden-backend-slide .problem-title {
  font-size: clamp(34px, 6vh, 64px);
}

.eden-backend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5.8vh, 68px);
  flex: 1 1 auto;
  justify-content: center;
}

.eden-backend-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  min-width: 0;
}

.eden-backend-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 8.5vh, 88px);
  height: clamp(56px, 8.5vh, 88px);
  border-radius: 50%;
  background: #e9dc12;
  color: #207bb5;
  font-weight: 900;
  font-size: clamp(26px, 4.2vh, 42px);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.eden-backend-icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 17vh, 190px);
  height: clamp(120px, 17vh, 190px);
  flex-shrink: 0;
}

.eden-backend-icon {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.eden-backend-icon--wordmark {
  width: 96%;
  height: auto;
  max-height: 52%;
}

.eden-backend-icon--mark {
  width: auto;
  height: 58%;
  max-width: 58%;
}

.eden-backend-item p {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4.8vh, 52px);
  line-height: 1.3;
  min-width: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eden-backend-item strong {
  color: #e9dc12;
}

.eden-adapt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  flex: 1 1 auto;
  align-content: center;
}

.eden-adapt-card h3 {
  margin: 0 0 clamp(10px, 1.6vh, 18px);
  font-size: clamp(22px, 3.8vh, 40px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eden-adapt-card--hard h3 {
  color: #fca5a5;
}

.eden-adapt-card--easy h3 {
  color: #86efac;
}

.eden-adapt-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3.5vh, 38px);
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eden-adapt-callout {
  margin-top: clamp(16px, 2.5vh, 28px);
}

.eden-download-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vh, 14px);
  margin-top: clamp(16px, 2.5vh, 28px);
}

.eden-download-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.4vh, 14px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.eden-download-qr canvas,
.eden-download-qr img {
  display: block;
  width: clamp(120px, 16vh, 180px) !important;
  height: clamp(120px, 16vh, 180px) !important;
}

.eden-download-qr-label {
  margin: 0;
  color: #e9dc12;
  font-size: clamp(18px, 2.6vh, 30px);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
