/* === Design Tokens === */
:root {
  --bg: #1C1E1F;
  --mint: #7CFFC4;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.7);
  --dim: rgba(255, 255, 255, 0.2);
  --font: 'Space Grotesk', system-ui, sans-serif;
  --slide-transition: 400ms ease-out;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* === Lucide Icons === */
[data-lucide] { display: inline-block; vertical-align: middle; }

/* === Slide Container === */
.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 6rem 4rem;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* --- Transitions --- */
.slide--enter {
  animation: slideEnter var(--slide-transition) forwards;
}

.slide--exit-left {
  animation: slideExitLeft var(--slide-transition) forwards;
  z-index: 0;
}

.slide--exit-right {
  animation: slideExitRight var(--slide-transition) forwards;
  z-index: 0;
}

.slide--enter-right {
  transform: translateX(60px);
  opacity: 0;
}

.slide--enter-left {
  transform: translateX(-60px);
  opacity: 0;
}

@keyframes slideEnter {
  from { opacity: 0; transform: translateX(0); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes slideExitRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(60px); }
}

/* === Typography === */
.slide__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.slide__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 255, 196, 0.5), transparent);
  margin: 0.75rem auto 0;
}

.slide__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 48rem;
  text-align: center;
}

.slide__subtitle strong {
  color: var(--mint);
  font-weight: 600;
}

/* === Entrance Animations === */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.anim--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Title Slide === */
.title-slide {
  text-align: center;
  overflow: hidden;
}

.title-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 196, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -55%) scale(1); }
  50%      { opacity: 0.6; transform: translate(-50%, -55%) scale(1.08); }
}

/* --- Title Brands Layout --- */
.title-brands {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 56rem;
}

.title-brand svg {
  width: 100%;
  height: auto;
  display: block;
}

.title-brand--bs {
  width: clamp(180px, 24vw, 320px);
  color: var(--white);
  justify-self: end;
}

.title-brand--ec {
  width: clamp(180px, 24vw, 320px);
  color: var(--white);
  justify-self: start;
}

.title-x {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
}

.title-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  margin: 0 auto 1.5rem;
}

.title-slide .tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--muted);
}

/* === Collaboration Layout === */
.collab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 52rem;
  width: 100%;
}

.collab__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.collab__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collab__card {
  padding: 1.6rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.collab__card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.collab__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.collab__card ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0.8rem;
  position: relative;
}

.collab__card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.collab__card--accent {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.05);
}

.collab__card--accent ul li::before {
  background: var(--mint);
  opacity: 0.5;
}

.collab__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  min-width: 200px;
}

.collab__bridge svg {
  width: 200px;
  overflow: visible;
}

.collab__bridge svg text {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 10px;
}

.collab__bridge svg line,
.collab__bridge svg path {
  stroke: var(--dim);
  stroke-width: 1.5;
}

.collab__bridge svg marker path {
  fill: var(--dim);
  stroke: none;
}

/* Vertical dashed lines */
.collab__vline {
  width: 2px;
  flex: 1;
  min-height: 20px;
  align-self: center;
}

.collab__vline line {
  stroke: var(--dim);
  stroke-width: 1.5;
}

/* Output boxes */
.collab__output {
  padding: 1rem 1.4rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.collab__output ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.collab__output ul li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  padding-left: 0.8rem;
  position: relative;
}

.collab__output ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.collab__icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  color: var(--muted);
}

.collab__tiktok-icon {
  display: block;
  flex-shrink: 0;
}

.collab__output--owned {
  border-color: var(--mint);
}

.collab__output .collab__icons {
  margin-bottom: 0.25rem;
}

/* Auto-publish arrow at bottom */
.collab__auto-publish {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
}

.collab__auto-publish svg {
  width: 100%;
  max-width: 48rem;
  height: 50px;
  overflow: visible;
}

.collab__auto-publish svg text {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 10px;
}

.collab__auto-publish svg path {
  stroke: var(--dim);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  fill: none;
}

.collab__auto-publish svg marker path {
  fill: var(--dim);
  stroke: none;
  stroke-dasharray: none;
}

/* === Benefits Grid === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 56rem;
  width: 100%;
}

.benefit-card {
  padding: 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--mint);
}

.benefit-card__icon {
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.benefit-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.benefit-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === Revenue Split Visual === */
.revenue-split__item {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.revenue-split__item--highlight {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.04);
}

.revenue-split__bar {
  display: flex;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.revenue-split__segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.revenue-split__segment--bs {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.revenue-split__segment--ec {
  background: rgba(124, 255, 196, 0.2);
  color: var(--mint);
}

.revenue-split__label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.revenue-split__detail {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === Roadmap / Phases === */
.roadmap {
  display: flex;
  align-items: stretch;
  max-width: 56rem;
  width: 100%;
}

.roadmap__phase {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.roadmap__phase--active {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.04);
}

.roadmap__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.roadmap__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--dim);
  color: var(--muted);
}

.roadmap__phase--active .roadmap__badge {
  border-color: var(--mint);
  color: var(--mint);
}

.roadmap__year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.roadmap__phase--active .roadmap__year {
  color: var(--white);
}

.roadmap__phase-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.roadmap__phase--active .roadmap__phase-title {
  color: var(--mint);
}

.roadmap__items {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.roadmap__phase--active .roadmap__items {
  color: rgba(255, 255, 255, 0.85);
}

.roadmap__items li {
  padding-left: 0.85rem;
  position: relative;
}

.roadmap__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.roadmap__phase--active .roadmap__items li::before {
  background: var(--mint);
}

.roadmap__connector {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.roadmap__connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--dim);
}

.roadmap__connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--dim);
}

/* === Options Grid === */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 52rem;
  width: 100%;
}

.option-card {
  padding: 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.option-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  background: rgba(124, 255, 196, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.option-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.option-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.option-card__split {
  margin-bottom: 0.75rem;
}

.option-card__split-bar {
  display: flex;
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
}

.option-card__split-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.option-card__split-segment--bs {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.option-card__split-segment--ec {
  background: rgba(124, 255, 196, 0.2);
  color: var(--mint);
}

.option-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-card__points li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 0.8rem;
  position: relative;
  line-height: 1.6;
}

.option-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

/* === Steps List === */
.steps-list {
  max-width: 40rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}

.step-item:hover {
  border-color: var(--mint);
}

.step-item__number {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(124, 255, 196, 0.1);
  color: var(--mint);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(124, 255, 196, 0.3);
}

.step-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.step-item__text strong {
  font-size: 1rem;
  color: var(--white);
}

.step-item__text span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* === SVG Draw Path === */
.draw-path {
  stroke: var(--dim);
  stroke-width: 1.5;
  fill: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .slide { padding: 2rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .roadmap { flex-direction: column; gap: 1rem; }
  .roadmap__connector { width: auto; height: 24px; flex-direction: column; }
  .roadmap__connector::before { width: 1px; height: 100%; }
  .roadmap__connector::after { display: none; }
  .collab__row { grid-template-columns: 1fr; gap: 1.5rem 0; }
  .collab__bridge { min-width: unset; }
  .collab__bridge svg { width: 160px; }
  .content-formats { grid-template-columns: 1fr; }
  .content-bottom { grid-template-columns: 1fr; }
  .chapter-divider { padding: 0 2rem 3rem; }
  .chapter-divider__ghost { font-size: clamp(8rem, 20vw, 14rem); }
  .conclusion__links { flex-direction: column; align-items: center; }
  .title-brands { grid-template-columns: 1fr; justify-items: center; gap: 1rem; }
  .title-brand--bs { justify-self: center; }
  .title-brand--ec { justify-self: center; }
  .title-x { margin: 0; }
}

@media (max-width: 480px) {
  .slide { padding: 1.5rem 1rem; }
}

/* === Chapter Bar (top nav) === */
.chapter-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  height: 32px;
}

.chapter-segment {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.chapter-segment__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.chapter-segment--future .chapter-segment__label {
  color: rgba(255, 255, 255, 0.15);
}

.chapter-segment--past .chapter-segment__label {
  color: rgba(124, 255, 196, 0.4);
}

.chapter-segment--active .chapter-segment__label {
  color: var(--mint);
}

.chapter-segment__track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.chapter-segment__fill {
  height: 100%;
  width: 0%;
  border-radius: 0 1px 1px 0;
  transition: width 0.4s ease-out, background 0.3s ease;
}

.chapter-segment--past .chapter-segment__fill {
  width: 100%;
  background: rgba(124, 255, 196, 0.3);
}

.chapter-segment--active .chapter-segment__fill {
  background: var(--mint);
  box-shadow: 0 0 8px rgba(124, 255, 196, 0.5);
}

.chapter-segment--future .chapter-segment__fill {
  width: 0%;
  background: transparent;
}

/* === Chapter Divider Slide === */
.chapter-divider {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 6rem 6rem;
}

.chapter-divider__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14rem, 30vw, 24rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(124, 255, 196, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.chapter-divider__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chapter-divider__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mint);
  opacity: 0.7;
}

.chapter-divider__rule {
  width: 48px;
  height: 2px;
  background: var(--mint);
  opacity: 0.5;
}

.chapter-divider__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.chapter-divider__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 30rem;
}

.chapter-divider .anim {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* === Content Strategy === */
.content-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 56rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.content-format {
  padding: 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.content-format__icon {
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.content-format__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.content-format__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.content-format__list {
  list-style: none;
  margin-top: 0.2rem;
}

.content-format__list li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 0.8rem;
  position: relative;
}

.content-format__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.content-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.content-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  width: 100%;
}

.content-section {
  padding: 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.content-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

.content-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.partner-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--dim);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.content-section__note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.sponsor-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.sponsor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.sponsor__logo {
  color: var(--white);
  flex-shrink: 0;
}

.sponsor__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.content-connectors {
  width: 100%;
  max-width: 56rem;
  height: 32px;
  margin: -0.25rem 0;
}

.content-connectors__svg {
  width: 100%;
  height: 100%;
}

/* === Revenue inline (within benefits slide) === */
.revenue-inline {
  max-width: 56rem;
  width: 100%;
  margin-top: 1.5rem;
}

/* === Process Flow === */
.process-flow {
  max-width: 40rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-connector {
  display: flex;
  justify-content: center;
  height: 24px;
}

.process-connector__line {
  width: 1px;
  height: 100%;
  background: var(--dim);
  position: relative;
}

.process-connector__line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--dim);
}

.collab-note {
  max-width: 40rem;
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* === Conclusion Slide === */
.conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.conclusion__signal {
  margin-bottom: 0.5rem;
}

.conclusion__email {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.conclusion__email:hover {
  text-decoration: underline;
}

.conclusion__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.conclusion__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dim);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.conclusion__link:hover {
  border-color: var(--mint);
  color: var(--white);
  background: rgba(124, 255, 196, 0.05);
}

.conclusion__link svg,
.conclusion__link i {
  color: var(--mint);
}

/* === Utility === */
.mt-1 { margin-top: 0.5rem; }
