/* ═══════════════════════════════════════════════════════════
   AI PRODUCTIVITY PITCH DECK — DESIGN SYSTEM
   Palette: Volcanic Glass — #0D0D0D / #1A1A1A / #F0F0EE / #B8FF3C
   Typography: Bricolage Grotesque + Space Grotesk
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #0D0D0D;
  --bg-card:    #141414;
  --bg-surface: #1C1C1C;
  --bg-raised:  #242424;
  --border:     rgba(255,255,255,0.07);
  --border-md:  rgba(255,255,255,0.12);
  --text-primary: #F0F0EE;
  --text-secondary: rgba(240,240,238,0.55);
  --text-tertiary:  rgba(240,240,238,0.32);
  --accent:     #B8FF3C;
  --accent-dim: rgba(184,255,60,0.15);
  --accent-glow: rgba(184,255,60,0.25);
  --red:        #FF4D4D;
  --blue:       #4D9EFF;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 100;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ── SLIDE COUNTER ── */
.slide-counter {
  position: fixed;
  top: 28px; right: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}
#currentSlide { color: var(--accent); }
.counter-sep {
  width: 20px; height: 1px;
  background: var(--border-md);
}

/* ── NAV BUTTONS ── */
.nav-btn {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 100;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(12px);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,255,60,0.08);
}
.nav-btn:disabled { opacity: 0.2; pointer-events: none; }
.nav-prev { left: 20px; }
.nav-next { right: 20px; }

/* ── SLIDE DOTS ── */
.slide-dots {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ── SLIDE BASE ── */
.slide {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 60px 72px 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.4s var(--ease-in-out), transform 0.4s var(--ease-in-out);
}

.slide-label {
  position: absolute;
  top: 28px; left: 72px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ── TYPOGRAPHY SYSTEM ── */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.section-headline em {
  font-style: normal;
  color: var(--accent);
}
.section-headline-sm {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.section-headline-sm em {
  font-style: normal;
  color: var(--accent);
}
.section-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 340px;
  margin-top: 20px;
}

/* ══════════════════════════════════════════
   SLIDE 1 — COVER
══════════════════════════════════════════ */
.slide-cover {
  background: var(--bg-deep);
  justify-content: center;
  align-items: flex-start;
}

.cover-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.cover-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.cover-tag {
  position: absolute;
  top: 28px; left: 72px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cover-headline {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.cover-line-1 {
  display: flex;
  align-items: baseline;
  gap: 24px;
  line-height: 1;
}
.cover-line-2 {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
}

.word-ai {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 80px rgba(184,255,60,0.3);
}
.word-prod {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}
.word-tools {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
}

.cover-accent-block {
  display: flex;
  flex-direction: column;
  background: var(--accent);
  padding: 10px 20px 12px;
  border-radius: 6px;
  line-height: 1;
  gap: 2px;
}
.accent-inner {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--bg-deep);
  letter-spacing: -0.04em;
}
.accent-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.6);
}

.cover-sub {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}

.cover-meta {
  position: absolute;
  bottom: 60px; left: 72px;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}
.meta-item:first-child { padding-left: 0; }
.meta-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.meta-key {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border-md);
}

.cover-scroll-hint {
  position: absolute;
  bottom: 60px; right: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-tertiary);
  z-index: 2;
}

/* ══════════════════════════════════════════
   SLIDE 2 — MARKET SIZE
══════════════════════════════════════════ */
.slide-market {
  background: var(--bg-deep);
  padding-top: 72px;
}

.market-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  height: 100%;
  align-items: center;
}

.cagr-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,60,0.25);
  border-radius: 8px;
}
.cagr-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.cagr-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 20px;
}
.chart-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.bar-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.bar {
  width: 100%;
  height: var(--h);
  background: var(--bg-raised);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s var(--ease-out);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}
.bar.bar-accent {
  background: var(--accent);
}
.bar-val {
  position: absolute;
  top: -22px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.bar.bar-accent .bar-val { color: var(--accent); }
.bar-label {
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.market-stats-row {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mstat {
  flex: 1;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mstat:last-child { border-right: none; }
.mstat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.mstat-label {
  font-size: 10px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   SLIDE 3 — COMPETITORS
══════════════════════════════════════════ */
.slide-competitors {
  background: var(--bg-deep);
  padding-top: 72px;
}

.comp-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 24px;
}

.comp-header {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.comp-intro {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 380px;
  padding-bottom: 4px;
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.comp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.comp-card:hover {
  border-color: var(--border-md);
  background: var(--bg-surface);
}
.comp-card--primary {
  border-color: rgba(184,255,60,0.2);
  background: rgba(184,255,60,0.04);
}
.comp-card--emerging {
  border-style: dashed;
  border-color: var(--border-md);
}

.comp-icon { font-size: 18px; line-height: 1; }
.comp-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.comp-moat {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.comp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}
.tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--bg-raised);
  color: var(--text-tertiary);
  border: 1px solid var(--border);
}
.comp-stat {
  margin-top: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* ══════════════════════════════════════════
   SLIDE 4 — PAIN POINTS
══════════════════════════════════════════ */
.slide-pain {
  background: var(--bg-deep);
  padding-top: 72px;
}

.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  height: 100%;
  align-items: center;
}

.pain-quote {
  margin-top: 28px;
  padding: 20px 20px 20px 24px;
  border-left: 2px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}
.pain-quote p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.pain-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

.pain-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pain-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 2px;
  min-width: 24px;
}
.pain-content { flex: 1; }
.pain-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pain-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.pain-bar {
  height: 3px;
  background: var(--bg-raised);
  border-radius: 2px;
  overflow: hidden;
}
.pain-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent) 0%, rgba(184,255,60,0.5) 100%);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

/* ══════════════════════════════════════════
   SLIDE 5 — OPPORTUNITY
══════════════════════════════════════════ */
.slide-opportunity {
  background: var(--bg-deep);
  padding-top: 72px;
}

.opp-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  height: 100%;
  align-items: center;
}

.opp-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--accent);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.opp-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.opp-big-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  color: var(--bg-deep);
  letter-spacing: -0.05em;
  line-height: 1;
}
.opp-big-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(13,13,13,0.7);
  line-height: 1.4;
}
.opp-source {
  font-size: 10px;
  font-weight: 500;
  color: rgba(13,13,13,0.45);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.opp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease;
}
.opp-card:hover { border-color: rgba(184,255,60,0.3); }
.opp-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,60,0.2);
  display: flex; align-items: center; justify-content: center;
}
.opp-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.opp-card-body {
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   SLIDE 6 — TAKEAWAYS
══════════════════════════════════════════ */
.slide-takeaway {
  background: var(--bg-deep);
  padding-top: 72px;
}

.takeaway-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  height: 100%;
  align-items: center;
}

.takeaway-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: center;
}

.takeaway-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.tk-item {
  display: flex;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.tk-item:last-child { border-bottom: none; }
.tk-item:hover { background: var(--bg-card); }

.tk-marker {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 1px;
  min-width: 20px;
}
.tk-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tk-body {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.takeaway-footer {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.tf-stat {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tf-stat:last-child { border-right: none; }
.tf-stat--accent { background: var(--accent-dim); }
.tf-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.tf-stat--accent .tf-num { color: var(--accent); }
.tf-label {
  font-size: 10px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slide.active .cover-headline { animation: fadeUp 0.7s var(--ease-out) 0.1s both; }
.slide.active .cover-sub      { animation: fadeUp 0.7s var(--ease-out) 0.25s both; }
.slide.active .cover-meta     { animation: fadeUp 0.7s var(--ease-out) 0.35s both; }
.slide.active .cover-scroll-hint { animation: fadeUp 0.7s var(--ease-out) 0.45s both; }

.slide.active .market-left    { animation: fadeUp 0.7s var(--ease-out) 0.1s both; }
.slide.active .market-right   { animation: slideInRight 0.7s var(--ease-out) 0.2s both; }

.slide.active .comp-header    { animation: fadeUp 0.6s var(--ease-out) 0.1s both; }
.slide.active .comp-card      { animation: scaleIn 0.5s var(--ease-out) both; }
.slide.active .comp-card:nth-child(1) { animation-delay: 0.15s; }
.slide.active .comp-card:nth-child(2) { animation-delay: 0.22s; }
.slide.active .comp-card:nth-child(3) { animation-delay: 0.29s; }
.slide.active .comp-card:nth-child(4) { animation-delay: 0.36s; }
.slide.active .comp-card:nth-child(5) { animation-delay: 0.43s; }
.slide.active .comp-card:nth-child(6) { animation-delay: 0.50s; }

.slide.active .pain-left      { animation: fadeUp 0.7s var(--ease-out) 0.1s both; }
.slide.active .pain-item      { animation: fadeUp 0.5s var(--ease-out) both; }
.slide.active .pain-item:nth-child(1) { animation-delay: 0.15s; }
.slide.active .pain-item:nth-child(2) { animation-delay: 0.25s; }
.slide.active .pain-item:nth-child(3) { animation-delay: 0.35s; }
.slide.active .pain-item:nth-child(4) { animation-delay: 0.45s; }

.slide.active .opp-hero       { animation: scaleIn 0.7s var(--ease-out) 0.1s both; }
.slide.active .opp-card       { animation: fadeUp 0.5s var(--ease-out) both; }
.slide.active .opp-card:nth-child(1) { animation-delay: 0.2s; }
.slide.active .opp-card:nth-child(2) { animation-delay: 0.3s; }
.slide.active .opp-card:nth-child(3) { animation-delay: 0.4s; }
.slide.active .opp-card:nth-child(4) { animation-delay: 0.5s; }

.slide.active .takeaway-left  { animation: fadeUp 0.7s var(--ease-out) 0.1s both; }
.slide.active .tk-item        { animation: slideInRight 0.5s var(--ease-out) both; }
.slide.active .tk-item:nth-child(1) { animation-delay: 0.15s; }
.slide.active .tk-item:nth-child(2) { animation-delay: 0.25s; }
.slide.active .tk-item:nth-child(3) { animation-delay: 0.35s; }
.slide.active .tk-item:nth-child(4) { animation-delay: 0.45s; }
.slide.active .takeaway-footer { animation: fadeUp 0.6s var(--ease-out) 0.55s both; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 2px; }