/* ═══════════════════════════════════════════════════════════
   NEON HARBOUR — Design System
   Hong Kong & Macau Destination Training Presentation
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy:       #0A0E1A;
  --navy-mid:   #111827;
  --navy-light: #1E2A3A;
  --jade:       #00D4AA;
  --jade-dim:   #00A882;
  --gold:       #F5C842;
  --gold-dim:   #C9A030;
  --cream:      #EEE8DC;
  --cream-dim:  #C8BFB0;
  --white:      #FFFFFF;
  --red-warn:   #FF5A5A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --slide-w: 100vw;
  --slide-h: 100vh;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   DECK & SLIDE SYSTEM
═══════════════════════════════════════════════════════════ */

.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
  pointer-events: none;
  overflow: hidden;
}

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

.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
}

/* Background image */
.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide__bg { transform: scale(1); }

/* Overlays */
.slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide__overlay--dark {
  background: linear-gradient(135deg, rgba(10,14,26,0.82) 0%, rgba(10,14,26,0.55) 100%);
}
.slide__overlay--dark-heavy {
  background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.75) 100%);
}
.slide__overlay--gradient-left {
  background: linear-gradient(90deg, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.7) 50%, rgba(10,14,26,0.3) 100%);
}
.slide__overlay--gradient-bottom {
  background: linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.92) 100%);
}

/* Slide content wrapper */
.slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 48px 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Decorative slide number */
.slide__deco-number {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL UI CHROME
═══════════════════════════════════════════════════════════ */

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  z-index: 100;
  transition: width 0.5s var(--ease-out-expo);
  box-shadow: 0 0 12px rgba(0,212,170,0.6);
}

/* Slide counter */
.slide-counter {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(238,232,220,0.5);
  text-transform: uppercase;
}

/* Nav dots */
.nav-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(238,232,220,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.nav-dot.active {
  background: var(--jade);
  box-shadow: 0 0 8px rgba(0,212,170,0.7);
  transform: scale(1.4);
}
.nav-dot:hover { background: rgba(238,232,220,0.6); }

/* Arrow navigation */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.nav-arrow:hover {
  background: rgba(0,212,170,0.15);
  border-color: var(--jade);
  color: var(--jade);
}
.nav-prev { left: 20px; }
.nav-next { right: 48px; }

/* Shared labels */
.slide-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--jade);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.slide-title em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 01 — HERO
═══════════════════════════════════════════════════════════ */

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--jade);
}
.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.5s forwards;
}
.hero-title__line1 {
  display: block;
  font-size: clamp(72px, 10vw, 140px);
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-title__amp {
  display: block;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--jade);
  font-style: italic;
  margin: -8px 0;
}
.hero-title__line2 {
  display: block;
  font-size: clamp(72px, 10vw, 140px);
  color: var(--gold);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.7s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.9s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.hero-stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-unit {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--jade);
  margin-left: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(238,232,220,0.2);
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(238,232,220,0.4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 1.1s forwards;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 02 — WHY
═══════════════════════════════════════════════════════════ */

.why-content {
  justify-content: center;
  max-width: 900px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.why-card:hover {
  border-color: rgba(0,212,170,0.3);
  background: rgba(0,212,170,0.05);
}
.why-card--featured {
  grid-column: 1 / -1;
  background: rgba(0,212,170,0.07);
  border-color: rgba(0,212,170,0.2);
}
.why-card__icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.why-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
}
.why-card strong { color: var(--gold); font-weight: 600; }
.card-note {
  display: block;
  font-size: 11px;
  color: rgba(238,232,220,0.5);
  margin-top: 4px;
}

.par-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  flex-wrap: wrap;
}
.par-callout__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.par-callout__link {
  font-size: 12px;
  color: var(--cream);
  text-decoration: none;
  font-family: monospace;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  word-break: break-all;
}
.par-callout__link:hover { color: var(--jade); }
.par-callout__note {
  font-size: 11px;
  color: rgba(238,232,220,0.5);
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 03 — CUSTOMER
═══════════════════════════════════════════════════════════ */

.customer-content { justify-content: center; }

.customer-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.segment {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(8px);
}
.segment--family { border-color: rgba(0,212,170,0.2); }
.segment--mice   { border-color: rgba(245,200,66,0.2); }
.segment--food   { border-color: rgba(0,212,170,0.15); }

.segment__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.segment__emoji { font-size: 28px; }
.segment__header h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.segment__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: var(--cream-dim);
  border: 1px solid rgba(255,255,255,0.1);
}
.tag--gold  { background: rgba(245,200,66,0.15); color: var(--gold); border-color: rgba(245,200,66,0.3); }
.tag--green { background: rgba(0,212,170,0.12); color: var(--jade); border-color: rgba(0,212,170,0.25); }

.segment__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.segment__list li {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.segment__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--jade);
  font-size: 11px;
}
.segment__list strong { color: var(--white); font-weight: 500; }
.segment__list em { color: var(--gold); font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 04 — TIMING
═══════════════════════════════════════════════════════════ */

.timing-content { justify-content: center; }

.timing-headline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.timing-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0,212,170,0.15);
  color: var(--jade);
  border: 1px solid rgba(0,212,170,0.3);
  white-space: nowrap;
}
.timing-headline p {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dim);
}

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.cal-block {
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cal-block--best {
  background: rgba(0,212,170,0.08);
  border-color: rgba(0,212,170,0.25);
}
.cal-block--great {
  background: rgba(245,200,66,0.06);
  border-color: rgba(245,200,66,0.2);
}
.cal-block--avoid {
  background: rgba(255,90,90,0.05);
  border-color: rgba(255,90,90,0.15);
}

.cal-months {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.cal-block--best .cal-months { color: var(--jade); }
.cal-block--great .cal-months { color: var(--gold); }
.cal-block--avoid .cal-months { color: var(--red-warn); }

.cal-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.cal-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.5;
}
.cal-desc strong { color: var(--white); font-weight: 500; }
.cal-rating {
  font-size: 12px;
  margin-top: 4px;
}

.typhoon-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
}
.typhoon-icon { font-size: 22px; flex-shrink: 0; }
.typhoon-note strong { color: var(--white); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 05 — HK ATTRACTIONS
═══════════════════════════════════════════════════════════ */

.attractions-content { justify-content: center; }

.attractions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.attraction-featured {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.attraction-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.attraction-featured__content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  flex: 1;
}
.attraction-featured__content h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.attraction-item:last-child { border-bottom: none; }
.attraction-icon { font-size: 18px; flex-shrink: 0; }
.attraction-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.duration-badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--jade);
  background: rgba(0,212,170,0.1);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,212,170,0.2);
  margin-top: 2px;
  display: inline-block;
}

.attraction-tour-block,
.attraction-cruise-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
}
.attraction-tour-block { border-color: rgba(245,200,66,0.2); }
.attraction-cruise-block { border-color: rgba(0,212,170,0.15); }

.tour-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,200,66,0.15);
}
.attraction-cruise-block .tour-label { color: var(--jade); border-color: rgba(0,212,170,0.15); }

.tour-items { display: flex; flex-direction: column; gap: 8px; }
.tour-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
}
.tour-item span { font-size: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 06 — MACAU
═══════════════════════════════════════════════════════════ */

.macau-content { justify-content: center; max-width: 1000px; }

.macau-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.macau-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
}
.macau-col--day  { border-color: rgba(245,200,66,0.2); }
.macau-col--night { border-color: rgba(0,212,170,0.2); }

.macau-col__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.macau-col__header h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.time-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.time-badge--day   { background: rgba(245,200,66,0.15); color: var(--gold); border: 1px solid rgba(245,200,66,0.3); }
.time-badge--night { background: rgba(0,212,170,0.12); color: var(--jade); border: 1px solid rgba(0,212,170,0.25); }

.macau-items { display: flex; flex-direction: column; gap: 12px; }

.macau-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.macau-item--night { border-color: rgba(0,212,170,0.1); }

.macau-item__icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.macau-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.macau-item span {
  font-size: 11px;
  font-weight: 300;
  color: var(--cream-dim);
}

.macau-casino-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(0,212,170,0.06);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
}
.macau-casino-note span { font-size: 18px; flex-shrink: 0; }
.macau-casino-note strong { color: var(--jade); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 07 — TRANSPORT
═══════════════════════════════════════════════════════════ */

.transport-content { justify-content: center; }

.transport-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: start;
}

.transport-route {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
}

.route-cities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.route-city {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.route-city__flag { font-size: 36px; }
.route-city__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.route-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
  padding: 8px 0;
}
.route-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--jade), transparent);
}
.route-line:last-child { background: linear-gradient(180deg, transparent, var(--jade)); }

.route-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 12px 0;
}

.route-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.route-option--primary {
  background: rgba(0,212,170,0.08);
  border-color: rgba(0,212,170,0.2);
}
.route-option--secondary {
  background: rgba(245,200,66,0.06);
  border-color: rgba(245,200,66,0.15);
}
.route-option__icon { font-size: 22px; flex-shrink: 0; }
.route-option strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.route-option span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.5;
}
.route-option__note {
  color: var(--gold) !important;
  font-weight: 500 !important;
  margin-top: 3px;
}

.bridge-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 14px;
  padding: 22px;
}
.bridge-feature__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bridge-icon { font-size: 28px; }
.bridge-feature__header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.bridge-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.bridge-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bridge-desc strong { color: var(--jade); font-weight: 500; }

.bridge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bridge-stat {
  text-align: center;
  padding: 10px;
  background: rgba(0,212,170,0.06);
  border-radius: 8px;
  border: 1px solid rgba(0,212,170,0.12);
}
.bridge-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--jade);
}
.bridge-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 08 — CLOSING
═══════════════════════════════════════════════════════════ */

.closing-content { justify-content: center; }

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.takeaway {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.takeaway:hover {
  border-color: rgba(0,212,170,0.25);
  background: rgba(0,212,170,0.04);
}

.takeaway__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: rgba(0,212,170,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.takeaway__content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.takeaway__content p {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
}
.takeaway__content strong { color: var(--gold); font-weight: 500; }

.closing-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.closing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.closing-brand__hk  { color: var(--jade); }
.closing-brand__sep { color: rgba(255,255,255,0.2); }
.closing-brand__mac { color: var(--gold); }
.closing-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dim);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */

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

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

/* Staggered entry for non-hero slides */
.slide.active .slide-label    { animation: fadeUp 0.6s var(--ease-out-expo) 0.1s both; }
.slide.active .slide-title    { animation: fadeUp 0.7s var(--ease-out-expo) 0.2s both; }
.slide.active .why-grid       { animation: fadeUp 0.7s var(--ease-out-expo) 0.35s both; }
.slide.active .par-callout    { animation: fadeUp 0.6s var(--ease-out-expo) 0.5s both; }
.slide.active .customer-segments { animation: fadeUp 0.7s var(--ease-out-expo) 0.3s both; }
.slide.active .timing-headline   { animation: fadeUp 0.6s var(--ease-out-expo) 0.3s both; }
.slide.active .calendar-strip    { animation: fadeUp 0.7s var(--ease-out-expo) 0.4s both; }
.slide.active .typhoon-note      { animation: fadeUp 0.6s var(--ease-out-expo) 0.55s both; }
.slide.active .attractions-layout { animation: fadeUp 0.7s var(--ease-out-expo) 0.3s both; }
.slide.active .macau-layout      { animation: fadeUp 0.7s var(--ease-out-expo) 0.3s both; }
.slide.active .transport-layout  { animation: fadeUp 0.7s var(--ease-out-expo) 0.3s both; }
.slide.active .takeaways-grid    { animation: fadeUp 0.7s var(--ease-out-expo) 0.3s both; }
.slide.active .closing-footer    { animation: fadeUp 0.6s var(--ease-out-expo) 0.5s both; }

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,212,170,0.3); border-radius: 2px; }