/* ============================================================
   myUV — The Office Space OS | Presentation v2
   ============================================================ */

:root {
  --bg:          #ffffff;
  --gold:        #C9A84C;
  --gold-dim:    rgba(201,168,76,0.22);
  --white:       #ffffff;
  --text-muted:  rgba(0,0,0,0.52);
  --text-dim:    rgba(0,0,0,0.35);
  --font:        'Inter', -apple-system, sans-serif;
  --font-display: 'Tinos', Georgia, serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ui-bottom:   52px;
  --safe:        clamp(40px, 5vw, 88px);   /* TV overscan safe zone */

  /* PDF card colours */
  --card-outer:  #f0f0f0;
  --card-header: #0d0d0d;
  --card-row:    #ffffff;
  --card-hi:     #b8b8b8;
  --card-text:   #111111;
  --icon-bg:     #111111;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: #111111;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.logo-inline {
  height: 1.6em;
  width: auto;
  vertical-align: middle;
  display: inline;
  position: relative;
  top: -2px;
}

/* ============================
   BOTTOM BAR
   ============================ */
.ui-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--ui-bottom);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(32px, 4vw, 72px);
  z-index: 200;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
}

.ui-nav { display: flex; align-items: center; gap: 10px; }

.btn-prev, .btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: #111111;
  border-radius: 100px;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, transform 200ms, box-shadow 200ms, opacity 200ms;
  outline: none;
}

.btn-prev svg, .btn-next svg {
  width: 14px;
  height: 14px;
}

.btn-prev:hover:not(:disabled) {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.05);
}

.btn-next {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.btn-next:hover:not(:disabled) {
  background: #d4b55a;
  transform: translateX(2px);
  box-shadow: 0 0 20px rgba(201,168,76,0.35);
}

.btn-prev:disabled, .btn-next:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; }

/* ============================
   PRESENTATION AREA
   ============================ */
.presentation {
  position: fixed;
  inset: 0;
  bottom: var(--ui-bottom);
  overflow: hidden;
}

/* ============================
   SCENES (full-screen slides)
   ============================ */
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--bg);
}

.scene.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: sceneEnter 680ms var(--ease) both;
}

.scene.exit {
  animation: sceneExit 340ms ease forwards;
  visibility: visible;
  pointer-events: none;
}

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

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

/* ============================
   ANIMATE ITEMS (stagger)
   ============================ */
.ai { opacity: 0; }

.scene.active .ai {
  animation: aiEnter 600ms var(--ease) both;
}

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

/* Stagger delays */
.scene.active .ai:nth-child(1) { animation-delay: 200ms; }
.scene.active .ai:nth-child(2) { animation-delay: 340ms; }
.scene.active .ai:nth-child(3) { animation-delay: 480ms; }
.scene.active .ai:nth-child(4) { animation-delay: 620ms; }
.scene.active .ai:nth-child(5) { animation-delay: 760ms; }

/* ============================
   SCENE: INTRO
   ============================ */
.scene--intro {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-logo {
  height: clamp(70px, 9vh, 140px);
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.intro-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.intro-tagline::before,
.intro-tagline::after {
  content: '';
  display: block;
  width: clamp(40px, 5vw, 80px);
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-divider {
  margin: clamp(20px, 3vh, 40px) 0;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-sub {
  font-size: clamp(11px, 1.2vw, 16px);
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 28px;
}

/* ============================
   SCENE: VISION
   ============================ */
.scene--vision {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--safe) clamp(60px, 10vw, 200px);
}

.vision-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.vision-eyebrow {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 48px;
  max-width: 800px;
}

.vision-body {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-body p {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--text-muted);
}

.vision-body strong { color: #111111; font-weight: 500; }

/* ============================
   SCENE: THREE MODULES OVERVIEW
   ============================ */
.scene--three-modules {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vh, 24px);
  padding: clamp(16px, 2.5vh, 40px) clamp(40px, 5vw, 80px);
}

/* Plain headline — no card */
.tmo-headline {
  text-align: center;
}

.tmo-hl-logo {
  height: clamp(26px, 3.5vh, 44px);
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
}

.tmo-hl-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tmo-hl-sub {
  font-size: clamp(10px, 1vw, 13px);
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Three individual module cards */
.tmo-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 1160px;
}

.tmo-col {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 6px 32px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* Column header */
.tmo-col-header {
  background: var(--card-header);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 180ms;
}
.tmo-col-header:hover { background: #1f1f1f; }

.tmo-col-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tmo-col-icon svg { width: 20px; height: 20px; }

.tmo-col-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tmo-col-title {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.tmo-col-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.tmo-col-badge--complete {
  background: rgba(34,197,94,0.18);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.tmo-col-badge--active {
  background: rgba(245,158,11,0.18);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.3);
}

.tmo-col-badge--upcoming {
  background: rgba(148,163,184,0.15);
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.25);
}

/* Feature rows */
.tmo-col-rows {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tmo-row {
  background: var(--white);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 180ms, border-color 180ms;
}
.tmo-row:hover { background: #f5f0e8; border-color: rgba(201,168,76,0.5); }

.tmo-row-icon {
  width: 28px;
  height: 28px;
  background: var(--icon-bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tmo-row-icon svg { width: 14px; height: 14px; }

.tmo-row-name {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 600;
  color: var(--card-text);
  line-height: 1.3;
}

.tmo-more {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  padding: 7px 0 3px;
  letter-spacing: 0.5px;
}

/* ============================
   SCENE: MODULE DETAIL
   ============================ */
.scene--module-detail {
  display: flex;
  flex-direction: column;
}

/* Body: left + right columns */
.md-body {
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
}

/* LEFT COLUMN */
.detail-left {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
}
.detail-left::-webkit-scrollbar { display: none; }

.detail-left-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vh, 20px);
  padding: clamp(20px, 4vh, 60px) clamp(20px, 2.5vw, 40px) clamp(20px, 2vh, 40px) clamp(40px, 5vw, 80px);
  margin: auto 0;
  width: 100%;
  box-sizing: border-box;
}

/* Brand heading above the module card */
.detail-brand {
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 180ms;
}
.detail-brand:hover { opacity: 0.7; }

.detail-brand-logo {
  height: clamp(22px, 3vh, 38px);
  width: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.detail-brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
}

/* MODULE CARD (left panel) */
.pmc {
  display: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  width: 100%;
  max-width: clamp(260px, 26vw, 380px);
}

.pmc.pmc-active { display: block; }

/* Card settle animation (first time module appears) */
.pmc.pmc-settle {
  animation: pmcSettle 700ms var(--ease) both;
}

/* Card switch animations */
.pmc.pmc-exit-left {
  animation: pmcExitLeft 380ms ease forwards;
}

.pmc.pmc-enter-right {
  animation: pmcEnterRight 600ms var(--ease) both;
}

@keyframes pmcSettle {
  from { opacity: 0; transform: translateX(18%) scale(1.04); }
  70%  { transform: translateX(-1%) scale(1.005); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes pmcExitLeft {
  to { opacity: 0; transform: translateX(-50px); }
}

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

/* Card header */
.pmc-header {
  background: var(--card-header);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 180ms;
}
.pmc-header:hover { background: #1f1f1f; }

.pmc-header-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pmc-header-icon svg { width: 17px; height: 17px; }

.pmc-header-title {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Card body */
.pmc-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Feature rows */
.pmc-row {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.25);
  cursor: pointer;
  transition: background 350ms ease, border-color 350ms ease;
}
.pmc-row:not(.pmc-row-hl):hover { background: #f5f0e8; border-color: rgba(201,168,76,0.5); }

.pmc-row.pmc-row-hl {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 2px 8px rgba(201,168,76,0.2);
}

.pmc-row-icon {
  width: 28px;
  height: 28px;
  background: var(--icon-bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pmc-row-icon svg { width: 14px; height: 14px; }

.pmc-row-name {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
}

.pmc-row.pmc-row-hl .pmc-row-name {
  color: #7a5c1e;
  font-weight: 700;
}

/* Others row */
.pmc-others {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  padding: 6px 0 2px;
  letter-spacing: 0.5px;
}

/* RIGHT COLUMN */
.detail-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: safe center;
  padding: clamp(28px, 4vh, 60px) clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.detail-right.dr--feature .detail-content {
  flex: none;
  margin-top: auto;
}

/* Content inner wrapper */
.detail-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dp-feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.detail-content.dp--intro {
  flex: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

/* Right panel animations */
.detail-content.dp-exit {
  animation: dpExit 280ms ease forwards;
}

.detail-content.dp-enter {
  animation: dpEnter 520ms var(--ease) both;
}

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

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

/* Content elements */
.dp-eyebrow {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.dp-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid;
  display: inline-block;
  margin-bottom: 28px;
}

.dp-badge--complete {
  color: var(--gold);
  border-color: rgba(201,168,76,0.38);
  background: rgba(201,168,76,0.07);
}

.dp-badge--active {
  color: #6ee7b7;
  border-color: rgba(110,231,183,0.34);
  background: rgba(110,231,183,0.06);
}

.dp-badge--upcoming {
  color: var(--text-muted);
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
}

.dp-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #111111;
  width: 100%;
  margin-bottom: 28px;
}

.dp-title-sm {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 24px;
}

.dp-divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.dp-desc {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: #111111;
  max-width: 100%;
  margin-bottom: 4px;
}

.dp--intro .dp-desc {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 100%;
  width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  margin-bottom: 0;
}

.dp-impact {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 100%;
  margin-bottom: 16px;
}

.dp-video-wrap {
  position: relative;
  width: clamp(320px, 68%, 580px);
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #ffffff;
  margin-top: 0;
}

.dp-coming-soon {
  width: clamp(320px, 68%, 580px);
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  border: 2px dashed rgba(201,168,76,0.45);
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dp-coming-soon svg {
  width: 46px;
  height: 46px;
  color: var(--gold);
}

.dp-cs-label {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: #111;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.dp-cs-sub {
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.dp-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-watch-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 180ms, box-shadow 180ms;
  white-space: nowrap;
}

.vp-watch-btn:hover {
  background: #a8893c;
  border-color: #a8893c;
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
}

.vp-watch-btn svg { width: 9px; height: 9px; flex-shrink: 0; }

/* ============================
   FEATURE CARD (right panel)
   ============================ */
.fc {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 6px 32px rgba(0,0,0,0.1);
  margin: 18px 0 20px;
  background: #fff;
  flex-shrink: 0;
}

.fc-bar {
  background: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.fc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.fc-dots span:nth-child(1) { background: #ff5f57; }
.fc-dots span:nth-child(2) { background: #febc2e; }
.fc-dots span:nth-child(3) { background: #28c840; }

.fc-bar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}

.fc-bar-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.fc-bar-name {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-img {
  width: 100%;
  display: block;
  max-height: clamp(160px, 24vh, 280px);
  object-fit: cover;
  object-position: top left;
}

.fc-placeholder {
  height: clamp(140px, 20vh, 240px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #f8f8f8;
}

.fc-placeholder .fc-bar-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.6;
}

.fc-placeholder span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
}

.fc-placeholder-sub {
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold) !important;
  opacity: 0.7;
}


/* ============================
   SCENE: FUTURE PHASES
   ============================ */
.scene--future {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--safe) clamp(60px, 8vw, 140px);
  text-align: center;
}

.future-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.future-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.future-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 52px;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 780px;
  width: 100%;
  margin-bottom: 52px;
}

.future-pillar {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.future-pillar-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--gold);
}
.future-pillar-icon svg {
  width: 100%;
  height: 100%;
}

.future-pillar-text {
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0,0,0,0.78);
}

.future-closing {
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  max-width: 720px;
}

/* ============================
   ADOPTION SLIDE
   ============================ */
.scene--adoption {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adoption-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vh, 64px);
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(32px, 5vw, 80px);
  box-sizing: border-box;
}

.adoption-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.adoption-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
  line-height: 1.05;
  text-align: center;
  margin-top: -10px;
}

/* ── Primary row ── */
.adoption-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}

.apc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: clamp(10px, 1.2vh, 20px) clamp(16px, 2.2vw, 40px);
}

.apc-divider {
  width: 1px;
  height: clamp(48px, 6vh, 80px);
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.9) 50%, transparent);
  flex-shrink: 0;
}

.apc-number {
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
}

.apc-label {
  font-size: clamp(12px, 1.15vw, 17px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.apc-sub {
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 500;
  color: #555;
}

/* ── Horizontal rule ── */
.adoption-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.9) 50%, transparent);
}

/* ── Secondary row ── */
.adoption-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}

.asc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: clamp(8px, 1vh, 16px) clamp(12px, 1.5vw, 24px);
}

.asc-divider {
  width: 1px;
  height: clamp(36px, 4.5vh, 60px);
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.9) 50%, transparent);
  flex-shrink: 0;
}

.asc-number {
  font-size: clamp(26px, 3.1vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
}

.asc-label {
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

/* ============================
   VIDEO MODAL
   ============================ */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.vmodal.vmodal--open {
  opacity: 1;
  pointer-events: auto;
}
.vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.vmodal-box {
  position: relative;
  width: min(96vw, calc(92vh * 16 / 9));
  max-width: 1600px;
  z-index: 1;
}
.vmodal-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 92vh;
  border-radius: 14px;
  background: #000;
  outline: none;
}
.vmodal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms;
  z-index: 2;
}
.vmodal-close:hover { background: rgba(0,0,0,0.75); }
.vmodal-close svg { width: 18px; height: 18px; }

.future-closing strong {
  color: #111111;
  font-weight: 600;
  font-style: normal;
}

/* Special stagger overrides for future scene */
.scene--future.active .future-eyebrow  { animation-delay: 160ms; }
.scene--future.active .future-heading  { animation-delay: 300ms; }
.scene--future.active .future-grid     { animation-delay: 460ms; }
.scene--future.active .future-closing  { animation-delay: 820ms; }
