@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #060d1b;
  --surface: #0d1526;
  --surface-2: #141e33;
  --surface-3: #1c2a45;
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --accent: #10b981;
  --accent-light: #34d399;
  --warn: #f59e0b;
  --danger: #ef4444;
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --muted: #64748b;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 80px rgba(59, 130, 246, 0.08);
  --glass: rgba(13, 21, 38, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 900px at 15% 5%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 85% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* ── Topbar ── */
.topbar, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(6, 13, 27, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  z-index: 10;
}

.footer {
  border-top: 1px solid var(--glass-border);
  border-bottom: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

#deckTitle {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
}

.topbar-actions { display: flex; gap: 8px; }

button {
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  background: rgba(20, 30, 51, 0.6);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
button:hover {
  border-color: var(--primary);
  color: var(--text);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* ── Slides container ── */
.slides {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

/* ── Individual slide ── */
.slide {
  position: absolute;
  inset: 16px;
  max-width: 1440px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(20, 30, 51, 0.92), rgba(13, 21, 38, 0.96));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--shadow-glow);
  padding: clamp(28px, 4vw, 64px);
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  align-content: start;
  gap: 20px;
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-3) transparent;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.2), transparent);
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* ── Typography ── */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

p, li {
  line-height: 1.65;
  font-weight: 400;
  color: var(--text-secondary);
}

.subtitle {
  color: var(--text-secondary);
  max-width: 72ch;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  font-weight: 400;
}

/* ── Kicker badge ── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Grid layouts ── */
.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── Cards ── */
.card {
  background: rgba(20, 30, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before { opacity: 1; }

.card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(28, 42, 69, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card.ok {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.06);
}
.card.ok::before {
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
}

.card.accent {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
}
.card.accent::before {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  opacity: 1;
}

.card.warn {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.06);
}

.card h3 {
  color: var(--text);
}

.card ul {
  padding-left: 18px;
  margin: 0;
}
.card ul li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.card ul li::marker {
  color: var(--primary-light);
}

.card.ok ul li::marker {
  color: var(--accent-light);
}

/* ── Card icon ── */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.card.ok .card-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ── Number badge in cards ── */
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* ── Timeline ── */
.timeline {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  counter-reset: step;
}

.timeline li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px auto;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(20, 30, 51, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  align-items: start;
}

.timeline li:hover {
  background: rgba(28, 42, 69, 0.5);
  border-color: rgba(59, 130, 246, 0.15);
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline li .step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline.with-notes li {
  padding-right: 16px;
}
.timeline.with-notes span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
}
.timeline strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Checklist ── */
.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 30, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 18px;
  transition: var(--transition);
  font-size: 0.95rem;
}
.checklist li:hover {
  background: rgba(28, 42, 69, 0.5);
  border-color: rgba(16, 185, 129, 0.15);
}
.checklist .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--accent-light);
}

/* ── Hero layout (cover slide) ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 45%);
  gap: 24px;
  align-items: stretch;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.04));
  padding: 18px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.metric:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}
.metric strong {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 400;
}

/* ── Visual / hero image ── */
.visual-hero {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 250px;
}
.visual-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.visual-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 13, 27, 0.5) 100%);
  border-radius: var(--radius);
}

/* ── Inline visual (within slide) ── */
.slide-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}
.slide-visual img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  display: block;
}
.slide-visual.short { max-height: 180px; }
.slide-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 13, 27, 0.4) 100%);
}

/* ── Feature split ── */
.feature-split .card {
  min-height: 180px;
}
.value-grid .card {
  min-height: 160px;
}

/* Cols-2 with timeline + visual */
.cols-2 > .slide-visual {
  align-self: start;
  border-radius: var(--radius);
  max-height: 420px;
}
.cols-2 > .slide-visual img {
  border-radius: var(--radius);
}

/* ── Slide-specific: cover ── */
.slide[data-title="Cover"] {
  background:
    linear-gradient(160deg, rgba(20, 30, 51, 0.95), rgba(6, 13, 27, 0.97));
}

/* ── Progress bar ── */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 3px 0 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Animate-in for slide content ── */
.slide.active h1,
.slide.active h2 {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}
.slide.active .subtitle {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.slide.active .kicker {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}
.slide.active .card,
.slide.active .metric {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .card:nth-child(1),
.slide.active .metric:nth-child(1) { animation-delay: 0.15s; }
.slide.active .card:nth-child(2),
.slide.active .metric:nth-child(2) { animation-delay: 0.25s; }
.slide.active .card:nth-child(3),
.slide.active .metric:nth-child(3) { animation-delay: 0.35s; }
.slide.active .card:nth-child(4) { animation-delay: 0.45s; }

.slide.active .timeline li {
  animation: fadeInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .timeline li:nth-child(1) { animation-delay: 0.1s; }
.slide.active .timeline li:nth-child(2) { animation-delay: 0.18s; }
.slide.active .timeline li:nth-child(3) { animation-delay: 0.26s; }
.slide.active .timeline li:nth-child(4) { animation-delay: 0.34s; }
.slide.active .timeline li:nth-child(5) { animation-delay: 0.42s; }
.slide.active .timeline li:nth-child(6) { animation-delay: 0.5s; }

.slide.active .checklist li {
  animation: fadeInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.slide.active .checklist li:nth-child(1) { animation-delay: 0.1s; }
.slide.active .checklist li:nth-child(2) { animation-delay: 0.18s; }
.slide.active .checklist li:nth-child(3) { animation-delay: 0.26s; }
.slide.active .checklist li:nth-child(4) { animation-delay: 0.34s; }
.slide.active .checklist li:nth-child(5) { animation-delay: 0.42s; }

.slide.active .visual-hero,
.slide.active .slide-visual {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.slide.active .hero-layout {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Slide number indicator inside slide ── */
.slide-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.5;
}

/* ── Quote/highlight block ── */
.highlight-block {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}

/* ── Metric Interaction ── */
.metric.clickable {
  cursor: pointer;
  position: relative;
}
.metric.clickable:hover {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.08));
}
.metric.clickable::after {
  content: 'Bấm xem chi tiết →';
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary-light);
  opacity: 0;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.metric.clickable:hover::after {
  opacity: 1;
  transform: translateX(-4px);
}

/* ── Overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.overlay-content {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  position: relative;
  box-shadow: var(--shadow);
  padding: 40px;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay.active .overlay-content {
  transform: scale(1) translateY(0);
}
.close-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.close-overlay:hover {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

#overlayBody h2 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overlay-grid {
  display: grid;
  gap: 16px;
}

.overlay-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.overlay-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

.overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.overlay-text h4 {
  margin: 0 0 4px 0;
  color: var(--text);
  font-size: 1.05rem;
}
.overlay-text p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 600px) {
  .overlay-content { padding: 24px; }
  .overlay-item { flex-direction: column; gap: 8px; }
}

.hint { opacity: 0.7; }
.checklist-link {
  color: var(--primary-light);
  text-decoration: none;
  border-bottom: 2px solid rgba(59, 130, 246, 0.3);
  transition: var(--transition);
}
.checklist-link:hover {
  border-bottom-color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
}

/* ── QR Section ── */
.qr-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius);
}
.qr-box {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.qr-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.qr-info h3 {
  color: var(--text);
  margin-bottom: 6px;
}
.qr-info p {
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .qr-section { flex-direction: column; text-align: center; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .cols-3 { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .topbar { gap: 8px; flex-direction: column; align-items: flex-start; }
  .topbar-actions { width: 100%; flex-wrap: wrap; }
  .slide { inset: 8px; border-radius: 16px; padding: 20px; }
  .cols-2, .cards-grid, .cards-grid.two, .hero-points { grid-template-columns: 1fr; }
  .footer { font-size: 0.8rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
}

/* ── Print ── */
@media print {
  @page { size: A4 landscape; margin: 10mm; }
  body { background: #fff; color: #111; }
  body::before { display: none; }
  .no-print { display: none !important; }
  .slides { padding: 0; overflow: visible; }
  .slide {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    page-break-after: always;
    min-height: 175mm;
    color: #111;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    margin-bottom: 8mm;
    animation: none !important;
  }
  .slide::before { display: none; }
  .subtitle { color: #475569; }
  .card, .metric { background: #f8fafc; border-color: #e2e8f0; }
  .card:hover { transform: none; }
  .timeline li { background: #f8fafc; }
  .timeline li::before { background: #e2e8f0; color: #3b82f6; }
  .checklist li { background: #f8fafc; }
}
