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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #1a1614;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Initial state — sections start slightly below and invisible */
.page-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* Visible state — triggered by IntersectionObserver */
.page-section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.passion {
  color: #9f197e;
}

.sun {
  color: #f8e200;
}

nav.masternav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.masternav-logo {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.masternav-logo span {
  color: #3ab3e5;
}

.masternav-links {
  display: flex;
}

.masternav-link {
  font-size: 13px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  margin-right: 36px;
  transition: color 0.25s;
}

.masternav-link:last-child {
  margin-right: 0;
}

.masternav-link:hover {
  color: #3ab3e5;
}

.masternav-link.active {
  color: #fff;
}

.masternav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f8e200;
}

.masternav-dashboard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  padding: 8px 20px;
  background: #f8e200;
  color: #1a1614;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

.masternav-dashboard-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.masternav-dashboard-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a1614;
  flex-shrink: 0;
}

/* ===== SECTION: landing ===== */
#sec-landing {
  --cocoa-landing: #39302d;
  --med-landing: #3ab3e5;
  --sky-landing: #e4032c;
  --sun-landing: #f8e200;
  --passion-landing: #9f197e;
  --coral-landing: #00a8a9;
  --txt-major-landing: rgba(57, 48, 45, 0.9);
  --txt-minor-landing: rgba(57, 48, 45, 0.6);
  --txt-major-inv-landing: rgba(255, 255, 255, 0.9);
  --txt-minor-inv-landing: rgba(255, 255, 255, 0.6);
}

#sec-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sec-landing {
  scroll-behavior: smooth;
}

#sec-landing {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #1a1614;
  color: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
}

#sec-landing a {
  text-decoration: none;
  color: inherit;
}

#sec-landing .depth-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#sec-landing .depth-shard {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--med-landing);
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
  will-change: transform;
}

#sec-landing .depth-shard.s1 {
  top: 6%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: var(--med-landing);
  opacity: 0.05;
}

#sec-landing .depth-shard.s2 {
  top: 18%;
  right: 10%;
  width: 260px;
  height: 260px;
  background: var(--sun-landing);
  opacity: 0.04;
}

#sec-landing .depth-shard.s3 {
  top: 46%;
  left: 38%;
  width: 340px;
  height: 340px;
  background: var(--passion-landing);
  opacity: 0.05;
}

#sec-landing .depth-shard.s4 {
  top: 68%;
  right: 18%;
  width: 200px;
  height: 200px;
  background: var(--coral-landing);
  opacity: 0.06;
}

#sec-landing .depth-shard.s5 {
  top: 84%;
  left: 14%;
  width: 180px;
  height: 180px;
  background: var(--med-landing);
  opacity: 0.05;
}

#sec-landing .depth-progress {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

#sec-landing .depth-progress .pf-shard {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
  transition:
    background 0.3s,
    transform 0.3s;
}

#sec-landing .depth-progress .pf-shard.active {
  background: var(--sun-landing);
  transform: scale(1.4);
}

#sec-landing .depth-progress .pf-line {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

#sec-landing nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(26, 22, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


#sec-landing .nav-logo img {
  height: 26px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

#sec-landing .navlinks {
  display: flex;
}

#sec-landing .navlinks a {
  font-size: 13px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  margin-right: 36px;
  transition: color 0.25s;
}

#sec-landing .navlinks a:last-child {
  margin-right: 0;
}

#sec-landing .navlinks a:hover {
  color: var(--med-landing);
}

#sec-landing .navlinks a.active {
  color: #fff;
}

#sec-landing .navlinks a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sun-landing);
}

#sec-landing .marquee-wrap {
  background: #0f0c0b;
  overflow: hidden;
  border-bottom: 2px solid var(--sun-landing);
  position: relative;
  padding: 22px 0;
}

#sec-landing .marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollMarquee-landing 18s linear infinite;
}

#sec-landing .marquee-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 44px;
  font-size: 26px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 6px;
}

#sec-landing .marquee-item .shard {
  margin-right: 8px;
}

#sec-landing .marquee-item b {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 34px;
  letter-spacing: -0.5px;
}

#sec-landing .marquee-item.highlight b {
  color: var(--sun-landing);
}

#sec-landing .shard {
  width: 18px;
  height: 18px;
  background: var(--med-landing);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.7;
  flex-shrink: 0;
}

@keyframes scrollMarquee-landing {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* #sec-landing .hero {
  position: relative;
  padding: 100px 48px 64px;
  background: transparent;
  overflow: hidden;
  z-index: 1;
} */

/* Unified landing layout — 2 columns, 2 rows */
#sec-landing .landing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  padding: 0 40px 40px;
}

/* TOP ROW — hero text left */
#sec-landing .hero {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
}

/* TOP ROW — video panel right */
#sec-landing .panel-video {
  grid-column: 2;
  grid-row: 1;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

/* BOTTOM ROW — featured initiative left */
#sec-landing .panel-initiative {
  grid-column: 1;
  grid-row: 2;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

/* BOTTOM ROW — storyhub right, same height as initiative */
#sec-landing .panel-headlines {
  grid-column: 2;
  grid-row: 2;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: visible;
  height: auto;
  display: flex;
  flex-direction: column;
}


/* Banner fills remaining space */
#sec-landing .storyhub-banner {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  min-height: 160px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  padding: 24px 22px;
  flex-shrink: 0;
}

/* Gradient background — dark cocoa into passion */
#sec-landing .storyhub-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(159, 25, 126, 0.45) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 90%,
      rgba(58, 179, 229, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #1a1614 0%, #2a1520 100%);
  pointer-events: none;
}

/* Crosshatch texture overlay */
#sec-landing .storyhub-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.015) 0 1px,
    transparent 1px 12px
  );
  pointer-events: none;
}

#sec-landing .storyhub-banner-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

#sec-landing .storyhub-banner .dash-btn {
  /* flex-shrink: 0;               never shrinks, stays full size */
  /* align-self: flex-end;         pins to the bottom of the banner */
  /* white-space: nowrap; */
  font-size: 12px;
  padding: 10px 20px;
}

#sec-landing .storyhub-banner-actions {
  display: flex;
  justify-content: flex-end;   /* pushes button to the right */
  margin-top: 2px;
}

#sec-landing .storyhub-banner-eyebrow {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

#sec-landing .storyhub-banner-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Each letter gets its brand colour */
#sec-landing .storyhub-r { color: var(--coral-landing); }
#sec-landing .storyhub-e { color: var(--sun-landing); }
#sec-landing .storyhub-a { color: var(--med-landing); }

#sec-landing .storyhub-banner-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 260px;
  margin-top: 4px;
}


/* 2026 watermark — stays in hero, left side */
#sec-landing .hero-bg-year {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 300px;
  font-weight: bold;
  color: #fff;
  opacity: 0.04;
  line-height: 1;
  letter-spacing: -10px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Remove the old grid-wrap since it's no longer needed */
#sec-landing .grid-wrap { display: contents; }


#sec-landing .hero-content {
  position: relative;
  z-index: 1;
}

#sec-landing .hero-eyebrow {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-landing);
  margin-bottom: 18px;
}

#sec-landing .hero h1 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: bold;
  color: #fff;
  max-width: 680px;
  letter-spacing: -0.5px;
}

#sec-landing .hero h1 .accent {
  color: var(--med-landing);
}

#sec-landing .hero p.sub {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.6;
}



#sec-landing .panel {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

#sec-landing .panel-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 20px 0;
}

/* #sec-landing .panel-initiative {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
} */

#sec-landing .panel-initiative .panel-label {
  color: var(--sun-landing);
  opacity: 0.9;
}

#sec-landing .initiative-art {
  margin: 16px 20px 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(58, 179, 229, 0.25), rgba(159, 25, 126, 0.2)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 14px
    );
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec-landing .initiative-art .facet {
  width: 100px;
  height: 100px;
  background: var(--sun-landing);
  opacity: 0.8;
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
}

#sec-landing .initiative-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#sec-landing .initiative-body h3 {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
}

#sec-landing .initiative-body p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 420px;
}

#sec-landing .stat-row {
  display: flex;
  margin-bottom: 22px;
}

#sec-landing .stat {
  margin-right: 30px;
}

#sec-landing .stat .num {
  font-size: 24px;
  font-weight: bold;
  color: var(--med-landing);
}

#sec-landing .stat .lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#sec-landing .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  border-bottom: 2px solid var(--med-landing);
  padding-bottom: 4px;
  width: fit-content;
}

/* #sec-landing .panel-video {
  grid-column: 2;
  grid-row: 1;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 260px;
  display: flex;
  flex-direction: column;
} */

#sec-landing .panel-video .panel-label {
  color: var(--sun-landing);
  opacity: 0.9;
}

#sec-landing .video-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin: 14px 0 0;
}

#sec-landing .video-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

#sec-landing .video-slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

#sec-landing .video-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

#sec-landing .video-play:hover {
  transform: scale(1.08);
}

#sec-landing .video-play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #1a1614;
  margin-left: 3px;
}

#sec-landing .video-meta {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

#sec-landing .video-meta .tag {
  font-size: 10px;
  color: var(--sun-landing);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

#sec-landing .video-meta h4 {
  font-size: 16px;
  font-weight: bold;
}

#sec-landing .video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
  border: none;
}

#sec-landing .video-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

#sec-landing .video-nav.prev {
  left: 12px;
}

#sec-landing .video-nav.next {
  right: 12px;
}

#sec-landing .video-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 14px;
}

#sec-landing .video-dots .vdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s;
  cursor: pointer;
}

#sec-landing .video-dots .vdot.active {
  background: var(--sun-landing);
}

/* #sec-landing .panel-headlines {
  grid-column: 2;
  grid-row: 2;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
} */

#sec-landing .panel-headlines .panel-label {
  color: var(--passion-landing);
}

/* REPLACE with */
#sec-landing .headline-list {
  padding: 14px 20px 18px;
  max-height: none;
  overflow-y: visible;
}

#sec-landing .headline-list::-webkit-scrollbar {
  display: none;
}

#sec-landing .headline-list::-webkit-scrollbar-thumb {
  background: var(--passion-landing);
  border-radius: 3px;
  opacity: 0.5;
}

#sec-landing .headline-list::-webkit-scrollbar-track {
  background: transparent;
}

#sec-landing .headline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

#sec-landing .headline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#sec-landing .headline-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--passion-landing);
  margin-top: 7px;
  flex-shrink: 0;
}

#sec-landing .headline-item .htext .sec {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral-landing);
  margin-bottom: 3px;
}

#sec-landing .headline-item .htext h5 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
}

#sec-landing .headline-item .htext p {
  display: none;
}

#sec-landing .resolution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px 80px;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}

#sec-landing .scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#sec-landing .scroll-cue .chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob-landing 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  #sec-landing .scroll-cue .chevron {
    animation: none;
  }
}

@keyframes bob-landing {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

#sec-landing .dash-btn {
  background: var(--sun-landing);
  color: #1a1614;
  font-weight: bold;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

#sec-landing .dash-btn:hover {
  background: #fff;
}

#sec-landing .dash-btn .dot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cocoa-landing);
}

@media (max-width: 900px) {
  #sec-landing .depth-progress {
    display: none;
  }

  #sec-landing nav {
    padding: 14px 20px;
  }

  #sec-landing .navlinks {
    display: none;
  }

  #sec-landing .hero {
    padding: 64px 20px 48px;
  }

  #sec-landing .hero h1 {
    font-size: 34px;
  }

  #sec-landing .hero-bg-year {
    font-size: 160px;
    top: -10px;
  }

  #sec-landing .grid-wrap {
    padding: 8px 20px 48px;
  }


  #sec-landing .panel-initiative {
    grid-column: 1;
    grid-row: auto;
  }

  #sec-landing .panel-video {
    grid-column: 1;
    grid-row: auto;
  }

  #sec-landing .panel-headlines {
    grid-column: 2;
    grid-row: 2;
    background: #0f0c0b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
    height: auto;
  }


  #sec-landing .resolution {
    padding: 8px 20px 56px;
    flex-direction: column;
    align-items: flex-start;
  }
}

#sec-landing {
  overflow: hidden;
}

#sec-landing .initiative-art {
  position: relative;
  overflow: hidden;
}

#sec-landing .initiative-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec-landing .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#sec-landing .marquee-wrap:hover .marquee {
  animation-play-state: paused;
}

.highlight-section {
  position: relative;
  overflow: hidden;
  animation: none;
}

.highlight-section.sparkle-active {
  animation: sparkle-zoom 2s ease forwards;
  overflow: visible;
  box-shadow:
    0 0 0 2px rgba(248, 226, 0, 0),
    0 0 0 0px rgba(248, 226, 0, 0);
}

@keyframes sparkle-zoom {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 2px rgba(248, 226, 0, 0),
      0 0 0px 0px rgba(248, 226, 0, 0);
  }

  20% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 2px rgba(248, 226, 0, 0.9),
      0 0 24px 6px rgba(248, 226, 0, 0.25);
  }

  60% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 2px rgba(248, 226, 0, 0.7),
      0 0 32px 10px rgba(248, 226, 0, 0.15);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 2px rgba(248, 226, 0, 0),
      0 0 0px 0px rgba(248, 226, 0, 0);
  }
}

.highlight-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 80px;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(248, 226, 0, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 80%
  );
  animation: sparkle 1.8s ease forwards;
  pointer-events: none;
  z-index: 10;
  filter: blur(4px);
}

@keyframes sparkle {
  0% {
    left: -150%;
    opacity: 0;
    transform: skewX(-15deg) scaleY(1);
  }

  10% {
    opacity: 1;
  }

  50% {
    left: 60%;
    opacity: 1;
    transform: skewX(-15deg) scaleY(1.4);
  }

  80% {
    opacity: 0.6;
  }

  100% {
    left: 150%;
    opacity: 0;
    transform: skewX(-15deg) scaleY(1);
  }
}

/* ===== SECTION: reastory ===== */
#sec-reastory {
  --cocoa-reastory: #39302d;
  --med-reastory: #3ab3e5;
  --sky-reastory: #e4032c;
  --sun-reastory: #f8e200;
  --passion-reastory: #9f197e;
  --coral-reastory: #00a8a9;
  --txt-major-reastory: rgba(57, 48, 45, 0.9);
  --txt-minor-reastory: rgba(57, 48, 45, 0.6);
  --txt-major-inv-reastory: rgba(255, 255, 255, 0.9);
  --txt-minor-inv-reastory: rgba(255, 255, 255, 0.6);
}

#sec-reastory * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sec-reastory {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #fff;
  color: var(--txt-major-reastory);
  overflow-x: hidden;
}

#sec-reastory a {
  text-decoration: none;
  color: inherit;
}

#sec-reastory nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(57, 48, 45, 0.1);
}

#sec-reastory .nav-logo img {
  height: 26px;
  opacity: 0.85;
}

#sec-reastory .navlinks {
  display: flex;
}

#sec-reastory .navlinks a {
  font-size: 13px;
  font-weight: bold;
  color: var(--txt-minor-reastory);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  margin-right: 36px;
  transition: color 0.25s;
}

#sec-reastory .navlinks a:last-child {
  margin-right: 0;
}

#sec-reastory .navlinks a:hover {
  color: var(--med-reastory);
}

#sec-reastory .navlinks a.active {
  color: var(--cocoa-reastory);
  opacity: 0.9;
}

#sec-reastory .navlinks a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sun-reastory);
}

#sec-reastory .axis-label {
  cursor: pointer;
  transition: color 0.2s;
}

#sec-reastory .axis-label:hover {
  color: var(--med-reastory);
}

#sec-reastory .axis-label.active {
  color: var(--cocoa-reastory);
  font-weight: bold;
}

#sec-reastory .ax-pip {
  cursor: pointer;
}

#sec-reastory .slim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(57, 48, 45, 0.08);
}

#sec-reastory .slim-eyebrow {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-reastory);
}

#sec-reastory .slim-axis {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt-minor-reastory);
}

#sec-reastory .slim-axis .ax-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(57, 48, 45, 0.2);
}

#sec-reastory .slim-axis .ax-pip.lit {
  background: var(--med-reastory);
}

#sec-reastory .stage-spacer {
  position: relative;
}

#sec-reastory .stage {
  position: relative;
  min-height: 500px;
  height: auto;
  overflow: visible;
  margin: 0 48px 56px;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(57, 48, 45, 0.06);
}

#sec-reastory .stage-track {
  display: flex;
  height: auto;
  flex-direction: column;
  width: 100%;
  will-change: transform;
  /* transition: transform 0.05s linear; */
  transform: none !important;
}

#sec-reastory .stage-panel {
  flex: none;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 64px;
  position: relative;
}

#sec-reastory .panel-rea {
  background: #fff;
}

#sec-reastory .stage-progress,
#sec-reastory .slim-axis,
#sec-reastory #stageLeft-reastory,
#sec-reastory #stageRight-reastory {
  display: none;
}


#sec-reastory .panel-section-label {
  grid-column: 1 / -1;        /* spans both columns */
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--med-reastory);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(57, 48, 45, 0.08);
  margin-bottom: 8px;
}

#sec-reastory .panel-rea .panel-section-label {
  color: var(--cocoa-reastory);    /* darker for the light REA panel */
}

#sec-reastory .panel-bpm .panel-section-label {
  color: var(--med-reastory);      /* teal for the BPM panel */
}
/* Add inside your existing #sec-reastory styles */

/* Make BPM photo container identical to REA photo container */
/* Override BPM panel grid to add a bottom row for stream cards */
#sec-reastory .panel-bpm {
  background: #fff;
  grid-template-rows: 1fr auto;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 28px;
}

/* Dots inside BPM panel flow naturally after stream strip */
#sec-reastory .panel-bpm .bpm-progress {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
}

/* Stream strip spans both columns */
#sec-reastory .stream-strip {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(57, 48, 45, 0.1);
}

/* Individual card */
#sec-reastory .stream-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(57, 48, 45, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  cursor: default;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

#sec-reastory .stream-card:hover {
  border-color: var(--med-reastory);
  box-shadow: 0 2px 10px rgba(58, 179, 229, 0.15);
}

#sec-reastory .stream-card .stream-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--med-reastory);
  margin-bottom: 8px;
}

#sec-reastory .stream-card .stream-name {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt-major-reastory);
}

/* Tooltip */
#sec-reastory .stream-card .stream-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #39302d;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11.5px;
  line-height: 1.55;
  padding: 10px 13px;
  border-radius: 8px;
  width: 190px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 20;
}

/* Tooltip downward arrow */
#sec-reastory .stream-card .stream-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #39302d;
}

#sec-reastory .stream-card:hover .stream-tooltip {
  opacity: 1;
}

#sec-reastory .panel-bpm {
  padding-bottom: 80px;
  /* clears the dots at bottom: 36px */
}

#sec-reastory .panel-bpm .photo {
  border-radius: 18px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec-reastory .panel-bpm .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Constrain the REA video to stay inside its photo container */
#sec-reastory .panel-rea .photo {
  border-radius: 18px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec-reastory .panel-rea .photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sec-reastory .panel-rea .photo::before {
  content: "";
  position: absolute;
  inset: 0;
}

#sec-reastory .panel-rea .photo .facet {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 1;
  background: var(--sun-reastory);
  opacity: 0.9;
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
}

#sec-reastory .panel-rea .copy {
  padding-right: 40px;
}

#sec-reastory .panel-rea .copy .tag {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral-reastory);
  margin-bottom: 16px;
}

#sec-reastory .panel-rea .copy h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--txt-major-reastory);
}

#sec-reastory .panel-rea .copy p {
  font-size: 15px;
  color: var(--txt-minor-reastory);
  line-height: 1.7;
  max-width: 440px;
}



#sec-reastory .panel-bpm .copy {
  padding-right: 40px;
}

#sec-reastory .panel-bpm .copy .tag {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--passion-reastory);
  margin-bottom: 16px;
}

#sec-reastory .panel-bpm .copy h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--txt-major-reastory);
}

#sec-reastory .panel-bpm .copy p {
  font-size: 15px;
  color: var(--txt-minor-reastory);
  line-height: 1.7;
  max-width: 440px;
}

#sec-reastory .panel-bpm .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#sec-reastory .team-card {
  background: #fff;
  border: 1px solid rgba(57, 48, 45, 0.1);
  border-radius: 12px;
  padding: 18px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 1px 3px rgba(57, 48, 45, 0.04);
}

#sec-reastory .team-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--med-reastory),
    var(--passion-reastory)
  );
  margin-bottom: 36px;
  opacity: 0.9;
}

#sec-reastory .team-card .name {
  font-size: 13px;
  font-weight: bold;
  color: var(--txt-major-reastory);
}

#sec-reastory .team-card .role {
  font-size: 11px;
  color: var(--txt-minor-reastory);
  margin-top: 2px;
}

#sec-reastory .pending-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a6d00;
  background: rgba(248, 226, 0, 0.18);
  border: 1px solid rgba(248, 226, 0, 0.5);
  padding: 5px 10px;
  border-radius: 20px;
}

#sec-reastory .stage-progress {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

#sec-reastory .stage-progress .sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(57, 48, 45, 0.18);
  transition:
    background 0.3s,
    transform 0.3s;
}

#sec-reastory .stage-progress .sdot.active {
  background: var(--med-reastory);
  transform: scale(1.3);
}

#sec-reastory .stage-axis-label {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt-minor-reastory);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

#sec-reastory .stage-axis-label .ax-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(57, 48, 45, 0.2);
}

#sec-reastory .stage-axis-label .ax-pip.lit {
  background: var(--med-reastory);
}

@media (max-width: 900px) {
  #sec-reastory nav {
    padding: 14px 20px;
  }

  #sec-reastory .navlinks {
    display: none;
  }

  #sec-reastory .slim-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 8px;
  }

  #sec-reastory .slim-axis {
    display: none;
  }

  #sec-reastory .stage-panel {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 24px;
  }

  #sec-reastory .panel-rea .photo {
    height: 240px;
  }

  #sec-reastory .panel-rea .copy,
  #sec-reastory .panel-bpm .copy {
    padding-right: 0;
  }

  #sec-reastory .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* #sec-reastory .stage-track {
  transition: transform 0.5s ease;
} */

#sec-reastory .stage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(57, 48, 45, 0.15);
  color: var(--cocoa-reastory);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 2px 10px rgba(57, 48, 45, 0.14);
}

#sec-reastory .stage-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: #fff;
}

#sec-reastory .stage-arrow.left {
  left: 18px;
}

#sec-reastory .stage-arrow.right {
  right: 18px;
}

#sec-reastory .stage-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

#sec-reastory .stage-progress .sdot {
  cursor: pointer;
}

@media (max-width: 900px) {
  #sec-reastory .stage {
    height: auto !important;
    overflow: visible;
    margin: 0 20px 32px;
  }

  #sec-reastory .stage-track {
    flex-direction: column;
    width: 100% !important;
    transform: none !important;
  }

  #sec-reastory .stage-panel {
    flex: 0 0 auto;
    height: auto;
    width: 100%;
  }

  #sec-reastory .stage-arrow,
  #sec-reastory .stage-progress {
    display: none;
  }
}

/* ===== SECTION: innovation ===== */
#sec-innovation {
  --cocoa-innovation: #39302d;
  --med-innovation: #3ab3e5;
  --sky-innovation: #e4032c;
  --sun-innovation: #f8e200;
  --passion-innovation: #9f197e;
  --coral-innovation: #00a8a9;
}

#sec-innovation * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sec-innovation {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #1a1614;
  color: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
}

#sec-innovation a {
  text-decoration: none;
  color: inherit;
}

#sec-innovation .depth-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#sec-innovation .depth-shard {
  position: absolute;
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
  will-change: transform;
}

#sec-innovation .depth-shard.s1 {
  top: 8%;
  left: 6%;
  width: 160px;
  height: 160px;
  background: var(--med-innovation);
  opacity: 0.05;
}

#sec-innovation .depth-shard.s2 {
  top: 24%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: var(--sun-innovation);
  opacity: 0.04;
}

#sec-innovation .depth-shard.s3 {
  top: 52%;
  left: 34%;
  width: 320px;
  height: 320px;
  background: var(--passion-innovation);
  opacity: 0.05;
}

#sec-innovation .depth-shard.s4 {
  top: 74%;
  right: 16%;
  width: 200px;
  height: 200px;
  background: var(--coral-innovation);
  opacity: 0.06;
}

#sec-innovation .depth-shard.s5 {
  top: 90%;
  left: 12%;
  width: 170px;
  height: 170px;
  background: var(--med-innovation);
  opacity: 0.05;
}

#sec-innovation .depth-progress {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

#sec-innovation .depth-progress .pf-shard {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}

#sec-innovation .depth-progress .pf-shard.active {
  background: var(--sun-innovation);
  transform: scale(1.4);
}

#sec-innovation .depth-progress .pf-line {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

#sec-innovation nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(26, 22, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#sec-innovation .nav-logo img {
  height: 26px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

#sec-innovation .navlinks {
  display: flex;
}

#sec-innovation .navlinks a {
  font-size: 13px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  margin-right: 36px;
  transition: color 0.25s;
}

#sec-innovation .navlinks a:last-child {
  margin-right: 0;
}

#sec-innovation .navlinks a:hover {
  color: var(--med-innovation);
}

#sec-innovation .navlinks a.active {
  color: #fff;
}

#sec-innovation .navlinks a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sun-innovation);
}

#sec-innovation .slim-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 10px;
}

#sec-innovation .slim-eyebrow {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-innovation);
}

#sec-innovation .slim-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

#sec-innovation .row {
  position: relative;
  z-index: 1;
  padding: 48px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#sec-innovation .row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 48px;
  margin-bottom: 22px;
}

#sec-innovation .row-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

#sec-innovation .row-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-top: 4px;
}

#sec-innovation .row-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  text-align: right;
}

/* Hide scrollbars on all three shelves but keep scroll behaviour */
/* Hide scrollbars on shelf — keep existing layout intact */
#sec-innovation .shelf-scroll {
  display: flex;
  gap: 18px;
  padding: 0 48px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#sec-innovation .shelf-scroll::-webkit-scrollbar {
  display: none;
}

#sec-innovation .shelf-row {
  position: relative;
}

#sec-innovation .shelf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffc400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

#sec-innovation .shelf-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

#sec-innovation .shelf-arrow.arrow-left {
  left: 12px;
}
#sec-innovation .shelf-arrow.arrow-right {
  right: 12px;
}

#sec-innovation .shelf-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/* Keep poster-grid as horizontal scroll, not a CSS grid */
#sec-innovation .poster-grid {
  display: flex;
  gap: 16px;
  padding: 0 48px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#sec-innovation .poster-grid::-webkit-scrollbar {
  display: none;
}

#sec-innovation .poster-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: transform 0.2s;
}

/* Keep soon-grid as horizontal scroll */
#sec-innovation .soon-grid {
  display: flex;
  gap: 16px;
  padding: 0 48px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#sec-innovation .soon-grid::-webkit-scrollbar {
  display: none;
}

#sec-innovation .soon-grid .soon-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

/* Dots */
#sec-innovation .scroll-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 4px;
}

#sec-innovation .scroll-dots .sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
  flex-shrink: 0;
}

#sec-innovation .scroll-dots .sdot.active {
  background: var(--coral-innovation);
  transform: scale(1.4);
}

#sec-innovation .shelf-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  padding-left: 44px;
  isolation: isolate;
}

#sec-innovation .shelf-rank {
  font-size: 110px;
  font-weight: bold;
  color: #1a1614;
  -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.85);
  line-height: 0.7;
  position: absolute;
  bottom: 52px;
  left: 0px;
  z-index: -1;
  letter-spacing: -8px;
  pointer-events: none;
  width: 60px;
  overflow: visible;
}

#sec-innovation .shelf-art {
  border-radius: 14px;
  height: 180px;
  background:
    linear-gradient(135deg, rgba(58, 179, 229, 0.28), rgba(159, 25, 126, 0.22)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 14px
    );
  background-color: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#sec-innovation .shelf-card:hover .shelf-art {
  transform: scale(1.03);
}

/* Hover overlay for shelf cards and poster cards */
#sec-innovation .shelf-card,
#sec-innovation .poster-card {
  position: relative;
}

#sec-innovation .card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.55);
  backdrop-filter: blur(3px);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
  pointer-events: none;
}

#sec-innovation .card-hover-overlay span {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
}

#sec-innovation .shelf-card:hover .card-hover-overlay,
#sec-innovation .poster-card:hover .card-hover-overlay {
  opacity: 1;
}

#sec-innovation .shelf-art .facet {
  width: 54px;
  height: 54px;
  background: var(--sun-innovation);
  opacity: 0.8;
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
}

#sec-innovation .shelf-body {
  position: relative;
  z-index: 1;
  padding-top: 12px;
  padding-left: 20px;
}

#sec-innovation .shelf-body h4 {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

#sec-innovation .shelf-stats {
  display: flex;
  gap: 14px;
}

#sec-innovation .shelf-stats > div {
  margin-right: 14px;
}

#sec-innovation .shelf-stats > div:last-child {
  margin-right: 0;
}

#sec-innovation .shelf-stats .s-num {
  font-size: 14px;
  font-weight: bold;
  color: var(--med-innovation);
}

#sec-innovation .shelf-stats .s-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* #sec-innovation .poster-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 16px;
      padding: 0 48px 28px;
    } */

#sec-innovation .poster-card {
  border-radius: 12px;
  overflow: hidden;
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: transform 0.2s;
}

#sec-innovation .poster-card:hover {
  transform: translateY(-3px);
}

#sec-innovation .poster-art {
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(0, 168, 169, 0.16),
    rgba(58, 179, 229, 0.12)
  );
}

#sec-innovation .poster-text {
  padding: 12px 14px;
}

#sec-innovation .poster-text h5 {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}

#sec-innovation .soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 0 48px 28px;
}

#sec-innovation .soon-card {
  border-radius: 12px;
  overflow: hidden;
  background: #161311;
  border: 1px dashed rgba(159, 25, 126, 0.4);
  position: relative;
}

#sec-innovation .soon-art {
  height: 110px;
  background: linear-gradient(
    135deg,
    rgba(159, 25, 126, 0.2),
    rgba(248, 226, 0, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec-innovation .soon-art .soon-tag {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--passion-innovation);
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 10px;
  border-radius: 20px;
}

#sec-innovation .soon-text {
  padding: 14px;
}

#sec-innovation .soon-text h5 {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

#sec-innovation .soon-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

#sec-innovation .video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 0 48px 48px;
}

#sec-innovation .vid-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0f0c0b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#sec-innovation .vid-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#sec-innovation .vid-card:hover .vid-play {
  transform: scale(1.1);
}

#sec-innovation .vid-play::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #1a1614;
  margin-left: 2px;
}

#sec-innovation .vid-meta {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #fff;
}

#sec-innovation .vid-meta .tag {
  font-size: 9px;
  color: var(--sun-innovation);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#sec-innovation .vid-meta h6 {
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

#sec-innovation .video-zoom-spacer {
  position: relative;
  z-index: 1;
  padding: 100px 0 140px;
  background: linear-gradient(to bottom, #1a1614 0%, #100d0b 100%);
}

#sec-innovation .video-zoom-stage {
  display: flex;
  justify-content: center;
}

#sec-innovation .video-zoom-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 48px;
  transform-origin: center center;
  will-change: transform, opacity;
}

#sec-innovation .video-zoom-inner .row-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

#sec-innovation .video-zoom-inner .row-note {
  text-align: center;
  margin-top: 6px;
  max-width: 360px;
}

#sec-innovation .video-zoom-title {
  font-size: 38px;
}

#sec-innovation .video-shelf-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--coral-innovation) transparent;
  padding-bottom: 8px;
}

#sec-innovation .video-shelf-scroll::-webkit-scrollbar {
  height: 6px;
}

#sec-innovation .video-shelf-scroll::-webkit-scrollbar-thumb {
  background: var(--coral-innovation);
  border-radius: 3px;
  opacity: 0.5;
}

#sec-innovation .vid-card-lg {
  flex: 0 0 520px;
  scroll-snap-align: start;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #161311, #0f0c0b);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

#sec-innovation .vid-card-lg:hover {
  transform: scale(1.02);
}

#sec-innovation .vid-play-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#sec-innovation .vid-card-lg:hover .vid-play-lg {
  transform: scale(1.08);
}

#sec-innovation .vid-play-lg::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #1a1614;
  margin-left: 4px;
}

.vid-card-lg {
  background: #000;
}

.vid-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.vid-card-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0) 55%
  );
  pointer-events: none;
}

#sec-innovation .vid-meta-lg {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: #fff;
}

#sec-innovation .vid-meta-lg .tag {
  font-size: 11px;
  color: var(--sun-innovation);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#sec-innovation .vid-meta-lg h6 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 4px;
}

@media (max-width: 900px) {
  #sec-innovation .video-zoom-spacer {
    padding: 60px 0 80px;
  }

  #sec-innovation .video-zoom-inner {
    padding: 0 20px;
  }

  #sec-innovation .vid-card-lg {
    flex: 0 0 280px;
  }

  #sec-innovation .vid-play-lg {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 900px) {
  #sec-innovation .depth-progress {
    display: none;
  }

  #sec-innovation nav {
    padding: 14px 20px;
  }

  #sec-innovation .navlinks {
    display: none;
  }

  #sec-innovation .slim-header {
    padding: 16px 20px;
  }

  #sec-innovation .row-head {
    padding: 0 20px;
  }

  #sec-innovation .shelf-scroll {
    padding: 0 20px 28px;
  }

  #sec-innovation .poster-grid,
  #sec-innovation .soon-grid,
  #sec-innovation .video-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 28px;
  }
}

#sec-innovation {
  overflow: hidden;
}

#sec-innovation .shelf-art {
  position: relative;
  overflow: hidden;
}

#sec-innovation .shelf-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#sec-innovation .poster-art {
  position: relative;
  overflow: hidden;
}

#sec-innovation .poster-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec-innovation .soon-art {
  position: relative;
  overflow: hidden;
}

#sec-innovation .soon-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

#sec-innovation .soon-art .soon-tag {
  position: relative;
  z-index: 1;
}

/* ===== SECTION: spotlight ===== */
#sec-spotlight {
  --cocoa-spotlight: #39302d;
  --med-spotlight: #3ab3e5;
  --sky-spotlight: #e4032c;
  --sun-spotlight: #f8e200;
  --passion-spotlight: #9f197e;
  --coral-spotlight: #00a8a9;
  --txt-major-spotlight: rgba(57, 48, 45, 0.9);
  --txt-minor-spotlight: rgba(57, 48, 45, 0.6);
}

#sec-spotlight * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sec-spotlight,
#sec-spotlight {
  height: 100%;
}

#sec-spotlight {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(159, 25, 126, 0.28) 0%,
      rgba(159, 25, 126, 0.08) 40%,
      #1a1614 70%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(159, 25, 126, 0.15) 0%,
      #1a1614 50%
    ),
    #1a1614;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

#sec-spotlight a {
  text-decoration: none;
  color: inherit;
}

#sec-spotlight button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

#sec-spotlight .depth-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#sec-spotlight #spotlight-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#sec-spotlight .depth-shard {
  position: absolute;
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
}

#sec-spotlight .depth-shard.s1 {
  top: 10%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: var(--med-spotlight);
  opacity: 0.05;
}

#sec-spotlight .depth-shard.s2 {
  top: 62%;
  right: 10%;
  width: 240px;
  height: 240px;
  background: var(--sun-spotlight);
  opacity: 0.04;
}

#sec-spotlight .depth-shard.s3 {
  top: 30%;
  right: 30%;
  width: 200px;
  height: 200px;
  background: var(--passion-spotlight);
  opacity: 0.05;
}

#sec-spotlight .spotlight-shell {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#sec-spotlight .sl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  flex-shrink: 0;
  z-index: 30;
  position: relative;
}

#sec-spotlight .sl-logo img {
  height: 24px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

#sec-spotlight .sl-exit {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

#sec-spotlight .sl-exit:hover {
  color: #fff;
}

#sec-spotlight .sl-eyebrow-fixed {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral-spotlight);
  z-index: 30;
}

#sec-spotlight .sl-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
  z-index: 1;
}

#sec-spotlight .sl-act {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

#sec-spotlight .sl-act.active {
  opacity: 1;
  pointer-events: auto;
}

#sec-spotlight .sl-split-left {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}

#sec-spotlight .sl-split-left-inner {
  text-align: center;
  max-width: 340px;
}

#sec-spotlight .sl-act-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#sec-spotlight .sl-act-title {
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
}

#sec-spotlight .sl-act-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

#sec-spotlight .sl-split-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 56px 0 0;
}

#sec-spotlight .testi-viewport {
  width: 100%;
  height: 78%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

#sec-spotlight .testi-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 4s linear;
}

#sec-spotlight .testi-card {
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 26px;
  flex-shrink: 0;
}

#sec-spotlight .testi-mark {
  font-size: 34px;
  font-weight: bold;
  color: var(--med-spotlight);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 4px;
}

#sec-spotlight .testi-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 14px;
}

#sec-spotlight .testi-person {
  display: flex;
  align-items: center;
}

#sec-spotlight .testi-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--med-spotlight),
    var(--coral-spotlight)
  );
  margin-right: 10px;
  flex-shrink: 0;
}

#sec-spotlight .testi-name {
  font-size: 12.5px;
  font-weight: bold;
  color: #fff;
}

#sec-spotlight .testi-role {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
}

#sec-spotlight .testi-hint {
  position: absolute;
  bottom: 0;
  right: 56px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#sec-spotlight .testi-hint .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral-spotlight);
  animation: pulse-spotlight 1.6s ease-in-out infinite;
}

@keyframes pulse-spotlight {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* People grid — all cards visible at once */
#sec-spotlight .sl-act[data-act="1"] .sl-split-right {
  align-items: stretch;       /* stretch instead of center */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* people-grid-wrap fills the right column height and scrolls */
#sec-spotlight .people-grid-wrap {
  width: 100%;
  height: 100%;               /* fill the stretched sl-split-right */
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(228, 3, 44, 0.4) transparent;
}

#sec-spotlight .people-grid-wrap::-webkit-scrollbar {
  width: 4px;
}

#sec-spotlight .people-grid-wrap::-webkit-scrollbar-thumb {
  background: rgba(228, 3, 44, 0.4);
  border-radius: 2px;
}

#sec-spotlight .people-grid-wrap::-webkit-scrollbar-track {
  background: transparent;
}

#sec-spotlight .people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  width: 100%;
  padding: 8px 0;
}

#sec-spotlight .people-card {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;         /* clips content to the aspect ratio box */
}

#sec-spotlight .people-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

#sec-spotlight .people-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--coral-spotlight),
    var(--passion-spotlight)
  );
  flex-shrink: 0;
}

#sec-spotlight .people-name-lg {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}

#sec-spotlight .people-contribution-lg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  flex: 1;
}

#sec-spotlight .people-tag-lg {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(228, 3, 44, 0.12);
  border: 1px solid rgba(228, 3, 44, 0.25);
  color: var(--coral-spotlight);
  align-self: flex-start;
}



#sec-spotlight .sl-vert-nav {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

#sec-spotlight .sl-vert-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
}

#sec-spotlight .sl-vert-btn:hover {
  background: #221d1a;
}

#sec-spotlight .sl-vert-btn:active {
  transform: scale(0.93);
}

#sec-spotlight .sl-vert-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

#sec-spotlight .sl-vert-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#sec-spotlight .sl-vert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition:
    background 0.3s,
    transform 0.3s;
}

#sec-spotlight .sl-vert-dot.active {
  background: var(--coral-spotlight);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  #sec-spotlight .sl-act {
    flex-direction: column;
  }

  #sec-spotlight .sl-split-left {
    flex: 0 0 auto;
    padding: 32px 24px 12px;
  }

  #sec-spotlight .sl-split-right {
    flex: 1;
    padding: 0 24px 24px;
  }

  #sec-spotlight .sl-act-title {
    font-size: 32px;
  }

  #sec-spotlight .people-arrow.right {
    right: 24px;
  }

  #sec-spotlight .testi-hint {
    right: 24px;
  }

  #sec-spotlight .ideas-header .sl-act-title {
    font-size: 34px;
  }

  #sec-spotlight .sl-vert-nav {
    right: 16px;
  }
}

#sec-spotlight {
  overflow: hidden;
}

#sec-spotlight .spotlight-shell {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#sec-spotlight .sl-exit {
  display: none;
}

#sec-spotlight .sl-arrow-hint {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 16px;
}

#sec-spotlight .people-arrow,
#sec-spotlight .ideas-arrow {
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

#sec-spotlight .people-arrow:hover,
#sec-spotlight .ideas-arrow:hover {
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== SECTION: whatsnew ===== */
#sec-whatsnew {
  --cocoa-whatsnew: #39302d;
  --med-whatsnew: #3ab3e5;
  --sky-whatsnew: #e4032c;
  --sun-whatsnew: #f8e200;
  --passion-whatsnew: #9f197e;
  --coral-whatsnew: #00a8a9;
  --txt-major-whatsnew: rgba(57, 48, 45, 0.9);
  --txt-minor-whatsnew: rgba(57, 48, 45, 0.6);
}

#sec-whatsnew * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sec-whatsnew {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  background: #fff;
  color: var(--txt-major-whatsnew);
  overflow-x: hidden;
}

#sec-whatsnew a {
  text-decoration: none;
  color: inherit;
}

#sec-whatsnew button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

#sec-whatsnew nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(57, 48, 45, 0.1);
}

/* DYK-style buzz cards */
#sec-whatsnew .buzz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

#sec-whatsnew .buzz-card {
  position: relative;
  background: #f7f5f3;
  border: 1px solid rgba(57, 48, 45, 0.1);
  border-radius: 20px;
  padding: 28px 22px 24px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#sec-whatsnew .buzz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(57, 48, 45, 0.08);
}

/* 3px accent bar at top — cycles through brand colours */
#sec-whatsnew .buzz-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--buzz-accent, #3ab3e5);
}

/* Ghost number in the corner */
#sec-whatsnew .buzz-card .buzz-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 56px;
  font-weight: 800;
  color: rgba(57, 48, 45, 0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

#sec-whatsnew .buzz-body {
  font-size: 13px;
  color: var(--txt-minor-whatsnew);
  line-height: 1.7;
}

#sec-whatsnew .buzz-benefits {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin-top: 4px;
}

#sec-whatsnew .buzz-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--txt-minor-whatsnew);
}

#sec-whatsnew .buzz-benefit::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 168, 169, 0.12);
  border: 1.5px solid #00a8a9;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300A8A9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

#sec-whatsnew .buzz-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--txt-minor-whatsnew);
  margin-bottom: 4px;
}

#sec-whatsnew .buzz-meta .pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

#sec-whatsnew .buzz-meta .pulse.new {
  background: var(--coral-whatsnew);
}

#sec-whatsnew .buzz-headline {
  font-size: 13.5px;
  font-weight: bold;
  color: var(--txt-major-whatsnew);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

#sec-whatsnew .nav-logo img {
  height: 26px;
  opacity: 0.85;
}

#sec-whatsnew .navlinks {
  display: flex;
}

#sec-whatsnew .navlinks a {
  font-size: 13px;
  font-weight: bold;
  color: var(--txt-minor-whatsnew);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  margin-right: 36px;
  transition: color 0.25s;
}

#sec-whatsnew .navlinks a:last-child {
  margin-right: 0;
}

#sec-whatsnew .navlinks a:hover {
  color: var(--med-whatsnew);
}

#sec-whatsnew .navlinks a.active {
  color: var(--cocoa-whatsnew);
  opacity: 0.9;
}

#sec-whatsnew .navlinks a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sun-whatsnew);
}

#sec-whatsnew .slim-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 48px 8px;
  flex-wrap: wrap;
  gap: 10px;
}

#sec-whatsnew .slim-eyebrow {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-whatsnew);
}

#sec-whatsnew .slim-sub {
  font-size: 13px;
  color: var(--txt-minor-whatsnew);
  font-style: italic;
}

#sec-whatsnew .page-wrap {
  padding: 0 48px 8px;
}

#sec-whatsnew .spot-card {
  margin-top: 18px;
  border-radius: 20px;
  background: linear-gradient(120deg, #1a1614 0%, #2b2420 100%);
  position: relative;
  overflow: hidden;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

#sec-whatsnew .spot-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  opacity: 0.06;
  background: var(--sun-whatsnew);
  clip-path: polygon(50% 0%, 90% 25%, 100% 70%, 60% 100%, 15% 90%, 0% 40%);
}

#sec-whatsnew .spot-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sun-whatsnew);
  margin-bottom: 16px;
}

#sec-whatsnew .spot-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun-whatsnew);
  animation: blink-whatsnew 1.6s ease-in-out infinite;
}

@keyframes blink-whatsnew {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

#sec-whatsnew .spot-body {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

#sec-whatsnew .spot-body h2 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

#sec-whatsnew .spot-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

#sec-whatsnew .spot-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 13px 26px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}

#sec-whatsnew .spot-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

#sec-whatsnew .buzz-row-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txt-minor-whatsnew);
  margin: 36px 0 16px;
}

#sec-whatsnew .buzz-card:hover {
  transform: translateY(-2px);
}

#sec-whatsnew .buzz-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--txt-minor-whatsnew);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

#sec-whatsnew .buzz-meta .pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

#sec-whatsnew .buzz-meta .pulse.new {
  background: var(--coral-whatsnew);
}

#sec-whatsnew .buzz-headline {
  font-size: 13.5px;
  font-weight: bold;
  color: var(--txt-major-whatsnew);
  line-height: 1.35;
}

#sec-whatsnew .footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 0 56px;
}

#sec-whatsnew .footer-cta-text {
  font-size: 13px;
  color: var(--txt-minor-whatsnew);
}

#sec-whatsnew .dash-btn {
  background: var(--cocoa-whatsnew);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

#sec-whatsnew .dash-btn:hover {
  background: var(--med-whatsnew);
}

#sec-whatsnew .dash-btn .dot2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun-whatsnew);
}

@media (max-width: 1100px) {
  #sec-whatsnew .buzz-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  #sec-whatsnew nav {
    padding: 14px 20px;
  }

  #sec-whatsnew .navlinks {
    display: none;
  }

  #sec-whatsnew .slim-header {
    padding: 20px 20px 4px;
  }

  #sec-whatsnew .page-wrap {
    padding: 0 20px 8px;
  }

  #sec-whatsnew .spot-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }

  #sec-whatsnew .buzz-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Overlay */
.card-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 7, 0.82);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(6px);
}

.card-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.card-modal {
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  width: 520px;
  max-width: 90vw;
  overflow: hidden;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.card-modal-overlay.open .card-modal {
  transform: scale(1);
}

/* Close button */
.card-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(10, 8, 7, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.card-modal-close:hover {
  background: rgba(10, 8, 7, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Image */
.card-modal-art {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #0f0c0b;
}

.card-modal-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body */
.card-modal-body {
  padding: 24px 28px 28px;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 179, 229, 0.4) transparent;
}

.card-modal-body::-webkit-scrollbar {
  width: 4px;
}

.card-modal-body::-webkit-scrollbar-thumb {
  background: rgba(58, 179, 229, 0.4);
  border-radius: 2px;
}

.card-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.card-modal-tag {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a8a9;
  margin-bottom: 10px;
}

.card-modal-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
}

.card-modal-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
}

/* Stats row — only shown for initiatives with stats */
.card-modal-stats {
  display: flex;
  gap: 24px;
}

.card-modal-stat-val {
  font-size: 22px;
  font-weight: bold;
  color: #3ab3e5;
}

.card-modal-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* =====================================================================
   MOBILE RESPONSIVENESS PATCH
   Append this AFTER the existing stylesheet. It only targets gaps that
   were missing mobile handling — it doesn't touch anything that already
   had working @media (max-width: 900px) rules.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Global masternav — had zero mobile handling at all.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  nav.masternav {
    padding: 14px 20px;
  }

  .masternav-links {
    display: none;
  }

  .masternav-dashboard-btn {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* ---------------------------------------------------------------------
   2. #sec-innovation — video-grid was left out of the existing mobile
      grid-column fix, and shelf-card / video-zoom-title had no mobile
      sizing.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  #sec-innovation .video-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 28px;
    gap: 12px;
  }

  #sec-innovation .shelf-card {
    flex: 0 0 260px;
    padding-left: 32px;
  }

  #sec-innovation .shelf-rank {
    font-size: 76px;
    bottom: 44px;
  }

  #sec-innovation .shelf-art {
    height: 140px;
  }

  #sec-innovation .row-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  #sec-innovation .row-note {
    text-align: left;
    max-width: 100%;
  }

  #sec-innovation .video-zoom-title {
    font-size: 26px;
  }

  #sec-innovation .video-zoom-inner {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  #sec-innovation .poster-grid,
  #sec-innovation .soon-grid,
  #sec-innovation .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------
   3. #sec-spotlight — vertical nav overlaps content on narrow screens,
      ideas-card is a fixed 320px (wider than most phones), split-left
      text should shrink further, testi/people arrows need repositioning.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  #sec-spotlight .ideas-card {
    flex: 0 0 260px;
    height: 200px;
    padding: 18px;
  }

  #sec-spotlight .sl-vert-nav {
    right: 12px;
    gap: 10px;
  }

  #sec-spotlight .sl-vert-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  #sec-spotlight .sl-eyebrow-fixed {
    top: 16px;
    font-size: 10px;
  }

  #sec-spotlight .sl-topbar {
    padding: 16px 20px;
  }

  #sec-spotlight .testi-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  #sec-spotlight .sl-act-title {
    font-size: 26px;
  }

  #sec-spotlight .ideas-header .sl-act-title {
    font-size: 28px;
  }

  #sec-spotlight .ideas-card {
    flex: 0 0 220px;
    height: 180px;
  }
}

/* ---------------------------------------------------------------------
   4. #sec-whatsnew — buzz-grid collapses to 3 cols at 1100px but never
      reaches 1 col on phones; spot-card CTA/text need tightening.
   --------------------------------------------------------------------- */
@media (max-width: 640px) {
  #sec-whatsnew .buzz-grid {
    grid-template-columns: 1fr;
  }

  #sec-whatsnew .spot-body h2 {
    font-size: 22px;
  }

  #sec-whatsnew .spot-cta {
    padding: 11px 20px;
    font-size: 12px;
  }

  #sec-whatsnew .footer-cta {
    flex-direction: column;
    gap: 10px;
    padding: 28px 20px 44px;
    text-align: center;
  }
}

/* ---------------------------------------------------------------------
   5. Card modal — fixed 520px width overflows small phones; image
      height and padding need to scale down.
   --------------------------------------------------------------------- */
@media (max-width: 560px) {
  .card-modal {
    width: 92vw;
  }

  .card-modal-art {
    height: 160px;
  }

  .card-modal-body {
    padding: 18px 18px 20px;
    max-height: 45vh;
  }

  .card-modal-title {
    font-size: 18px;
  }

  .card-modal-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* ---------------------------------------------------------------------
   6. #sec-landing hero — hero-bg-year giant watermark can push layout
      wider than viewport on very small phones; stat-row can wrap badly.
   --------------------------------------------------------------------- */
@media (max-width: 480px) {
  #sec-landing .hero-bg-year {
    font-size: 100px;
  }

  #sec-landing .stat-row {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  #sec-landing .initiative-body h3 {
    font-size: 21px;
  }
}

/* ---------------------------------------------------------------------
   7. #sec-reastory — stream-strip cards can get too cramped on phones;
      stack them instead of forcing a row.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  #sec-reastory .stream-strip {
    flex-direction: column;
    gap: 8px;
  }

  #sec-reastory .team-grid {
    grid-template-columns: 1fr;
  }

  #sec-reastory .panel-bpm {
    padding-bottom: 32px;
  }
}

/* ---------------------------------------------------------------------
   8. #sec-landing — the 900px breakpoint alone still leaves things
      squeezed on real phones (~360–480px): marquee text is too big for
      the viewport, panels keep desktop-scale min-heights/padding, and
      headings/buttons don't shrink further. Adds a 480px tier and
      loosens a few 900px values that were still tight.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  #sec-landing .marquee-item {
    font-size: 18px;
    padding: 0 24px;
    gap: 10px;
  }

  #sec-landing .marquee-item b {
    font-size: 24px;
  }

  #sec-landing .hero-eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  #sec-landing .hero p.sub {
    font-size: 15px;
    margin-top: 16px;
  }

  #sec-landing .initiative-art {
    min-height: 150px;
  }

  #sec-landing .initiative-body {
    padding: 20px 22px 24px;
  }

  #sec-landing .initiative-body h3 {
    font-size: 22px;
  }

  #sec-landing .panel-video {
    min-height: 200px;
  }

  #sec-landing .video-slide {
    min-height: 160px;
  }

  #sec-landing .resolution {
    padding: 8px 20px 56px;
  }

  #sec-landing .dash-btn {
    padding: 13px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  #sec-landing .scroll-cue {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #sec-landing .hero {
    padding: 48px 16px 36px;
  }

  #sec-landing .hero h1 {
    font-size: 26px;
    letter-spacing: -0.2px;
  }

  #sec-landing .hero-bg-year {
    font-size: 80px;
    top: -6px;
    right: -10px;
  }

  #sec-landing .grid-wrap {
    padding: 8px 16px 40px;
  }



  #sec-landing .marquee-item {
    font-size: 15px;
    padding: 0 18px;
  }

  #sec-landing .marquee-item b {
    font-size: 20px;
  }

  #sec-landing .initiative-art {
    margin: 12px 16px 0;
    min-height: 120px;
  }

  #sec-landing .initiative-art .facet {
    width: 64px;
    height: 64px;
  }

  #sec-landing .initiative-body {
    padding: 16px 18px 20px;
  }

  #sec-landing .initiative-body h3 {
    font-size: 19px;
  }

  #sec-landing .initiative-body p {
    font-size: 13px;
  }

  #sec-landing .stat .num {
    font-size: 20px;
  }

  #sec-landing .video-slide {
    min-height: 140px;
  }

  #sec-landing .video-meta h4 {
    font-size: 14px;
  }

  #sec-landing .headline-item .htext h5 {
    font-size: 13px;
  }

  #sec-landing .resolution {
    padding: 8px 16px 48px;
  }
}

/* ---------------------------------------------------------------------
   9. #sec-landing bb-grid — .panel-headlines was still pinned to
      grid-column: 2 inside the original 900px block even though
      .bb-grid collapses to a single 1fr column there. That's what kept
      the featured initiative, the video panel, and "around storyhub"
      from stacking full-width — switch to a flex column so all three
      panels stack in source order at full width.
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  /* #sec-landing .bb-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  } */

  #sec-landing .panel-initiative,
  #sec-landing .panel-video,
  #sec-landing .panel-headlines {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTRACTED FROM index.html — add to styles.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CAMPAIGN LOADER ─────────────────────────────────────────────────────── */
.campaign-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #090814;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.loader-mount {
  width: 100%;
  height: 100%;
}

/* ── NAV LOGO ────────────────────────────────────────────────────────────── */
.masternav-logo img {
  height: 32px;
}

.masternav-logo p {
  padding-left: 16px;
}

.masternav-logo p span {
  color: #3ab3e5;
}

/* ── SPOTLIGHT ACT LABELS ────────────────────────────────────────────────── */
#sec-spotlight .sl-act[data-act="0"] .sl-act-label {
  color: var(--med-spotlight);
}

#sec-spotlight .sl-act[data-act="1"] .sl-act-label {
  color: var(--coral-spotlight);
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(135deg, #1a1614, #2a1520);
  border-top: 1px solid rgba(159, 25, 126, 0.3);
  padding: 64px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

#sec-footer .footer-logo {
  height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

#sec-footer .footer-copy {
  flex: 1;
  min-width: 200px;
}

#sec-footer .footer-headline {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

#sec-footer .footer-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

#sec-footer .footer-cta {
  padding: 12px 28px;
  border-radius: 30px;
  background: #f8e200;
  color: #1a1614;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

#sec-footer .footer-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

#sec-footer .footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#sec-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

#sec-footer .footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}


/* ── CAMPAIGN POPUP SYSTEM ───────────────────────────────────────────────── */

/* Shared backdrop */
.cp-backdrop {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(10, 8, 7, 0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cp-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Shared close button */
.cp-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s;
}

.cp-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Shared dismiss × button (smaller, top-right of teaser/toast) */
.cp-dismiss-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}

.cp-dismiss-x {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
}

/* Contextual lightbox */
.cp-lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.94);
  z-index: 8001;
  width: min(560px, 90vw);
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cp-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cp-lightbox-img {
  width: 100%;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: #0f0c0b;
}

.cp-lightbox-caption {
  padding: 16px 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Section teaser */
.cp-teaser {
  position: fixed;
  bottom: 100px;
  right: -340px;
  z-index: 7000;
  width: 300px;
  background: #1a1614;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.cp-teaser.visible {
  right: 24px;
}

.cp-teaser-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cp-teaser-label {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-landing);
}

.cp-teaser-text {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

.cp-teaser-cta {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky, #3ab3e5);
  text-decoration: none;
}

/* Exit-intent banner */
.cp-exit-banner {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 7000;
  background: linear-gradient(135deg, #1a1614, #2a1520);
  border-top: 1px solid rgba(159, 25, 126, 0.3);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: bottom 0.4s ease;
}

.cp-exit-banner.visible {
  bottom: 0;
}

.cp-exit-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.cp-exit-body {
  flex: 1;
  cursor: pointer;
}

.cp-exit-headline {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

.cp-exit-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.cp-exit-cta {
  padding: 10px 22px;
  border-radius: 30px;
  background: #f8e200;
  color: #1a1614;
  font-size: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.2s;
}

.cp-exit-cta:hover {
  background: #fff;
}

/* Milestone toast */
.cp-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 7000;
  width: 280px;
  background: #1a1614;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease,
              transform 0.35s ease,
              border-color 0.2s ease;
  cursor: pointer;
}

.cp-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cp-toast-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cp-toast-body {
  flex: 1;
}

.cp-toast-title {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3px;
}

.cp-toast-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.cp-toast-close {
  position: static;   /* override .cp-dismiss-btn absolute */
  flex-shrink: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* Campaign ad modal */
.cp-ad-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(10, 8, 7, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cp-ad-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cp-ad-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.94);
  z-index: 9101;
  width: min(600px, 92vw);
  background: #161311;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cp-ad-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cp-ad-img {
  width: 100%;
  display: block;
  max-height: 55vh;
  object-fit: cover;
  background: #0f0c0b;
}

.cp-ad-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-ad-label {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun-landing, #f8e200);
}

.cp-ad-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}

.cp-ad-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 2px;
}

.cp-ad-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 11px 26px;
  border-radius: 30px;
  background: var(--sun-landing, #f8e200);
  color: #1a1614;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}

.cp-ad-cta:hover {
  background: #fff;
}