@charset "UTF-8";
:root {
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-red: #FF0026;
  --c-hot-pink: #FF007A;
  --c-yellow: #FFFF00;
  --c-dark-yellow: #FFC700;
  --c-lime: #70DE03;
  --c-mint: #00FFA1;
  --c-orange: #FF8500;
  --c-blue: #2B6CEA;
  --c-teal: #29EAEA;
  --c-vermillion: #FF4229;
  --font-display: "Anton", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-quote: "Antonio", sans-serif;
  --text-base-color: #000000;
  --fs-11: clamp(30px, 4.2vw, 80px);
  --fs-10: clamp(24px, 2vw, 36px);
  --fs-9: clamp(35px, 8vw, 210px);
  --fs-8: clamp(90px, 29.68vw, 570px);
  --fs-7: clamp(70px, 7.08vw, 136px);
  --fs-6: clamp(53px, 6.25vw, 120px);
  --fs-5: clamp(28px, 2.81vw, 54px);
  --fs-4: clamp(24px, 2.5vw, 48px);
  --fs-3: clamp(20px, 1.66vw, 32px);
  --fs-2: clamp(16px, 1.04vw, 20px);
  --fs-1: clamp(14px, 0.93vw, 18px);
  --fs-btn: clamp(24px, 3.46vw - 18.46px, 34px);
  --sb-base-w: 4vw;
  --sb-active-w: 5vw;
  --sb-base-h: 5vh;
  --sb-active-h: 8vh;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: auto !important;
}

#back-to-top svg {
  width: 0.8vw;
  height: auto;
  fill: none;
  stroke: #000;
  stroke-width: 2px;
}

.btn-read-more,
.btn-perspective {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

/* This is the physical line we will inject with JS */
.btn-line-bg {
  position: absolute;
  bottom: -2px; /* Adjust this to move the line closer/further from text */
  left: 0;
  width: 100%;
  height: 2px; /* Thickness of the line */
  background-color: currentColor; /* Matches text color dynamically */
  pointer-events: none;
}

.chapter-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  width: var(--sb-active-w);
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.chapter-sidebar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* Ensure even when inactive, the first tile hint remains visible */
.chapter-item[data-chapter="0"] .chapter-label {
  opacity: 0.3;
  display: block;
}

.chapter-item {
  width: 100%;
  height: var(--sb-base-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  color: black;
  font-family: "Anton", sans-serif;
  border-right: 0px;
}

.chapter-item.active {
  border: solid 1px #3b3a3a;
  border-right: 0px;
}

/* Scaling text based on screen size */
.chapter-label {
  line-height: 1.1;
  padding: 0.5vw;
  text-align: center;
  opacity: 0;
  /* Hidden when collapsed */
}

.chapter-number {
  font-size: 1.5vw;
  display: block;
}

/* Color assignments remain the same */
.chapter-item[data-chapter="0"] {
  background-color: #262626;
  color: white;
}

.chapter-item[data-chapter="1"] {
  background-color: var(--c-lime);
}

.chapter-item[data-chapter="2"] {
  background-color: var(--c-dark-yellow);
}

.chapter-item[data-chapter="3"] {
  background-color: var(--c-red);
}

.chapter-item[data-chapter="4"] {
  background-color: var(--c-hot-pink);
}

.chapter-item[data-chapter="5"] {
  background-color: var(--c-blue);
}

.chapter-item[data-chapter="6"] {
  background-color: var(--c-vermillion);
}

.annual-wrapper {
  /* Utility Font Sizes */
  /* Premium CSS Spinner */
  /* --- Accordion Container --- */
  /* --- Individual Box Styling --- */
  /* --- Active State (First Box Initially) --- */
  /* --- Box Colors --- */
  /* Dark Grey */
  /* --- Typography --- */
  /* Hide number on the first box */
  /* 1. Force the slick track to use Flexbox */
  /* 2. Ensure the slide wrapper allows the inner card to grow */
  /* 3. The actual black box */
  /* Zones: transparent click/hover areas */
  /* Floating circle cursor */
  /* the arrow */
  /* flip arrow for left */
  /* disabled state */
  /* optional: don’t show custom cursor on touch devices */
  /* The main lime container */
  /* The white card sitting on top */
  /* Mobile Adjustments */
  /* .speaker-background::before {
      content: "";
      position: absolute;
      inset: 0;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(0, 0, 0, 0.7); 
      z-index: 2;
      pointer-events: none;

      opacity: var(--blur-opacity);

      -webkit-mask-image: radial-gradient(
          circle at bottom left, 
          black 0%, 
          black var(--blur-size), 
          transparent calc(var(--blur-size) + 15%)
      );
      mask-image: radial-gradient(
          circle at bottom left, 
          black 0%, 
          black var(--blur-size), 
          transparent calc(var(--blur-size) + 15%)
      );
  }

  .speaker-background.from-right::before {
      -webkit-mask-image: radial-gradient(
          circle at bottom right, 
          black 0%, 
          black var(--blur-size), 
          transparent calc(var(--blur-size) + 15%)
      );
      mask-image: radial-gradient(
          circle at bottom right, 
          black 0%, 
          black var(--blur-size), 
          transparent calc(var(--blur-size) + 15%)
      );
  }
   */
}
.annual-wrapper p {
  font-size: var(--fs-2);
  line-height: 1.2;
  text-wrap: pretty;
}
.annual-wrapper h1,
.annual-wrapper h2,
.annual-wrapper h3,
.annual-wrapper h4,
.annual-wrapper h5,
.annual-wrapper h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
}
.annual-wrapper .gsplit-line {
  white-space: nowrap;
}
.annual-wrapper .font-quote {
  font-family: var(--font-quote);
  line-height: 1.2;
  font-weight: 600;
}
.annual-wrapper .font-size-massive {
  font-size: var(--fs-8) !important;
}
.annual-wrapper .font-size-xxxl {
  font-size: var(--fs-9) !important;
}
.annual-wrapper .font-size-xxl {
  font-size: var(--fs-7) !important;
}
.annual-wrapper .font-size-xl {
  font-size: var(--fs-6) !important;
}
.annual-wrapper .font-size-lgl {
  font-size: var(--fs-11) !important;
}
.annual-wrapper .font-size-lg {
  font-size: var(--fs-5) !important;
}
.annual-wrapper .font-size-md {
  font-size: var(--fs-4) !important;
}
.annual-wrapper .font-size-sml {
  font-size: var(--fs-10) !important;
}
.annual-wrapper .font-size-sm {
  font-size: var(--fs-3) !important;
}
.annual-wrapper .font-size-body {
  font-size: var(--fs-2) !important;
}
.annual-wrapper .font-size-xs {
  font-size: var(--fs-1) !important;
}
.annual-wrapper .font-size-btn {
  font-size: var(--fs-btn) !important;
}
.annual-wrapper body,
.annual-wrapper html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--c-white);
  font-family: var(--font-body);
  font-size: var(--fs-2) !important;
}
.annual-wrapper .page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #111111;
  /* Matches your dark aesthetic */
  z-index: 999999;
  /* Ensure it stays above everything, including your modals */
  display: flex;
  justify-content: center;
  align-items: center;
}
.annual-wrapper .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ff3c00;
  /* MOI Vermillion */
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.annual-wrapper [class^=text-moi-],
.annual-wrapper [class*=" text-moi-"] {
  --fill-percent: 0%;
  --moi-color: var(--c-hot-pink);
  background-image: linear-gradient(90deg, var(--moi-color) var(--fill-percent), var(--text-base-color) var(--fill-percent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* --- NEW PROPERTIES TO FIX THE SPLIT --- */
  display: inline !important;
  /* Force inline behavior overriding any framework defaults */
  vertical-align: baseline;
  /* Ensure it sits on the exact same line as plain text */
  line-height: inherit;
  /* Prevent height calculations from creating offsets */
  -webkit-box-decoration-break: clone;
  /* Allows the gradient styling to wrap naturally across lines */
  box-decoration-break: clone;
  padding: 0;
  /* Ensure no padding creates a new "box" context */
}
.annual-wrapper .text-moi-lime {
  --moi-color: var(--c-lime);
}
.annual-wrapper .text-static-lime {
  color: var(--c-lime);
}
.annual-wrapper .text-moi-mint {
  --moi-color: var(--c-mint);
}
.annual-wrapper .text-static-mint {
  color: var(--c-mint);
}
.annual-wrapper .text-moi-red {
  --moi-color: var(--c-red);
}
.annual-wrapper .text-static-red {
  color: var(--c-red);
}
.annual-wrapper .text-moi-pink {
  --moi-color: var(--c-hot-pink);
}
.annual-wrapper .text-static-pink {
  color: var(--c-hot-pink);
}
.annual-wrapper .text-moi-blue {
  --moi-color: var(--c-blue);
}
.annual-wrapper .text-static-blue {
  color: var(--c-blue);
}
.annual-wrapper .text-moi-yellow {
  --moi-color: var(--c-yellow);
}
.annual-wrapper .text-static-yellow {
  color: var(--c-yellow);
}
.annual-wrapper .text-moi-dark-yellow {
  --moi-color: var(--c-dark-yellow);
}
.annual-wrapper .text-static-dark-yellow {
  color: var(--c-dark-yellow);
}
.annual-wrapper .text-moi-orange {
  --moi-color: var(--c-orange);
}
.annual-wrapper .text-moi-black {
  --moi-color: var(--c-black);
}
.annual-wrapper .text-moi-white {
  --moi-color: var(--c-white);
}
.annual-wrapper .text-moi-vermillion {
  --moi-color: var(--c-vermillion);
}
.annual-wrapper .text-moi-teal {
  --moi-color: var(--c-teal);
}
.annual-wrapper .text-black {
  color: #000 !important;
  --text-base-color: #000000;
}
.annual-wrapper .text-white {
  color: #fff;
  --text-base-color: #fff;
}
.annual-wrapper .moi-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.annual-wrapper .animated-heading {
  width: 100%;
  display: block;
  word-wrap: normal;
  white-space: normal;
}
.annual-wrapper .bg-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  /* optional, helps centering */
  align-items: center;
  /* optional */
  position: relative;
  overflow: hidden;
}
.annual-wrapper .bg-section .bg-layer {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom right;
  will-change: transform;
  z-index: 0;
}
.annual-wrapper .bg-section .bg-layer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Black layer at 20% opacity */
  z-index: 1; /* Sits above the video (which is z-index: -1) */
  pointer-events: none; /* Ensures the overlay doesn't block any clicks */
}
.annual-wrapper .header-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
}
.annual-wrapper .bg-section .bg-layer-contain {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  background-size: contain;
  background-position: 50% 50%;
  will-change: transform;
  z-index: 0;
}
.annual-wrapper .bg-section > *:not(.bg-layer) {
  position: relative;
  z-index: 2;
  /* ensure everything is above bg */
}
.annual-wrapper .hero-title span {
  display: block;
}
.annual-wrapper .hero-title .push-right {
  margin-left: 10rem;
}
.annual-wrapper .header-window-stroke-home {
  position: absolute !important;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0%);
  z-index: 0;
  max-height: 95%;
  max-width: 93%;
}
.annual-wrapper .bg-black {
  background-color: #000;
}
.annual-wrapper .bg-grey {
  background-color: #262626;
}
.annual-wrapper .bg-orange {
  background-color: #FF8500;
}
.annual-wrapper .bg-vermillion {
  background-color: #FF4229;
}
.annual-wrapper .bg-vermillion-dark {
  background-color: #E33D27;
}
.annual-wrapper .bg-lime {
  background-color: #70DE03;
}
.annual-wrapper .bg-yellow {
  background-color: #FFC700;
}
.annual-wrapper .bg-red {
  background-color: #FF0026;
}
.annual-wrapper .bg-pink {
  background-color: #FF007A;
}
.annual-wrapper .bg-blue {
  background-color: #2B6CEA;
}
.annual-wrapper .z-index-5 {
  z-index: 5;
  position: relative;
}
.annual-wrapper .rollout {
  display: flex;
}
.annual-wrapper .rollout__cell {
  overflow: hidden;
  position: relative;
}
.annual-wrapper .rollout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.annual-wrapper .book-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  align-self: center;
}
.annual-wrapper .accordion-container {
  display: flex;
  width: 100%;
  /* Set a fixed height for the entire section. Adjust as needed. */
  height: 45vh;
  min-height: 400px;
  background-color: #000;
  /* Matches the section above it */
  overflow: hidden;
  /* Ensures no scrollbars */
  align-items: flex-end;
  /* Aligns collapsed boxes to the bottom */
  gap: 10px;
}
.annual-wrapper .accordion-box {
  position: relative;
  /* Initial State for non-active boxes */
  flex: 1;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Content aligns to bottom */
  padding: 1vw;
  text-decoration: none;
  overflow: hidden;
  /* We let GSAP handle all transitions for smoothness */
}
.annual-wrapper .accordion-box.active {
  flex: 2;
  height: 100%;
}
.annual-wrapper .box-1 {
  background-color: #1a1a1a;
  color: #ffffff;
}
.annual-wrapper .box-2 {
  background-color: var(--c-lime);
  color: #000000;
}
.annual-wrapper .box-3 {
  background-color: var(--c-dark-yellow);
  color: #000000;
}
.annual-wrapper .box-4 {
  background-color: var(--c-red);
  color: #000000;
}
.annual-wrapper .box-5 {
  background-color: var(--c-hot-pink);
  color: #000000;
}
.annual-wrapper .box-6 {
  background-color: var(--c-blue);
  color: #000000;
}
.annual-wrapper .box-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.annual-wrapper .accordion-box h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  /* Crucial: prevents text from reflowing, keeping breaklines fixed. */
  white-space: nowrap;
  /* Initial font size for collapsed state */
  font-size: 1.8vw;
  transform-origin: left bottom;
  opacity: 0.4;
}
.annual-wrapper .accordion-box.active h2 {
  /* Initial font size for active state */
  font-size: 3.8vw;
}
.annual-wrapper .box-number {
  font-family: var(--font-display);
  position: absolute;
  bottom: -0.5vw;
  right: -0.5vw;
  line-height: 0.8;
  opacity: 0.4;
  /* Initial font size for collapsed state */
  font-size: 8vw;
  transform-origin: right bottom;
}
.annual-wrapper .accordion-box.active .box-number {
  /* Initial font size for active state */
  font-size: 14vw;
  opacity: 1;
}
.annual-wrapper .accordion-box.active h2 {
  opacity: 1;
}
.annual-wrapper .box-1 .box-number {
  display: none;
}
.annual-wrapper .speaker-slider .slick-list {
  display: flex;
}
.annual-wrapper .speaker-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.annual-wrapper .speaker-slider .slick-slide {
  display: flex !important;
  height: inherit !important;
}
.annual-wrapper .speaker-slider .slick-slide > div {
  display: flex;
  width: 100%;
}
.annual-wrapper .slick-track .slick-slide:last-child {
  margin-right: 5vw;
}
.annual-wrapper .slick-dotted.slick-slider {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.annual-wrapper .slick-dots {
  position: absolute !important;
  bottom: -50px !important;
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  text-align: center !important;
}
.annual-wrapper .slick-dots li {
  margin: 0 20px !important;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  margin: 0 10px;
}
.annual-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}
.annual-wrapper .slick-dots li button:before {
  font-family: slick !important;
  font-size: 6px !important;
  line-height: 20px !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 0px !important;
  height: 0px !important;
  content: "•" !important;
  text-align: center !important;
  opacity: 0.75 !important;
  color: #fff !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.annual-wrapper .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #FF4229 !important;
}
.annual-wrapper .speaker-slide {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  padding: 0 10px;
}
.annual-wrapper .speaker-card {
  background: #000;
  padding: 30px;
  margin: 0;
  /* Space between cards */
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.annual-wrapper .speaker-card img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}
.annual-wrapper .speaker-slider-wrap {
  position: relative;
}
.annual-wrapper .slider-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: none !important;
  /* hides system cursor in the zone */
  z-index: 5;
}
.annual-wrapper .slider-zone--left {
  left: 0;
}
.annual-wrapper .slider-zone--right {
  right: 0;
}
.annual-wrapper .slider-cursor {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) scale(0.6);
  /* start smaller */
  transform-origin: center;
  width: clamp(44px, 6vw, 96px);
  height: clamp(44px, 6vw, 96px);
  border-radius: 999px;
  background: #FF4229;
  display: grid;
  /* keep it in layout */
  place-items: center;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  /* start hidden */
  visibility: hidden;
  /* fully non-interactive */
}
.annual-wrapper .slider-cursor__icon {
  width: clamp(14px, 2vw, 26px);
  height: clamp(14px, 2vw, 26px);
  display: block;
  background: currentColor;
  color: #fff;
  -webkit-mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSIjMDAwMDAwIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDM0MC4wMzQgMzQwLjAzNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+IDxnPiA8Zz4gPHBvbHlnb24gcG9pbnRzPSIyMjIuODE0LDUyLjc4MyAyMDAuOTAyLDc0LjY4NiAyODAuNzQ4LDE1NC41MjggMCwxNTQuNTI4IDAsMTg1LjUxMyAyODAuNzQ4LDE4NS41MTMgMjAwLjkwMiwyNjUuMzUzIDIyMi44MTQsMjg3LjI1MiAzNDAuMDM0LDE3MC4wMjMgIj48L3BvbHlnb24+IDwvZz4gPC9nPiA8L3N2Zz4g") center/contain no-repeat;
  mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSIjMDAwMDAwIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHdpZHRoPSI4MDBweCIgaGVpZ2h0PSI4MDBweCIgdmlld0JveD0iMCAwIDM0MC4wMzQgMzQwLjAzNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+IDxnPiA8Zz4gPHBvbHlnb24gcG9pbnRzPSIyMjIuODE0LDUyLjc4MyAyMDAuOTAyLDc0LjY4NiAyODAuNzQ4LDE1NC41MjggMCwxNTQuNTI4IDAsMTg1LjUxMyAyODAuNzQ4LDE4NS41MTMgMjAwLjkwMiwyNjUuMzUzIDIyMi44MTQsMjg3LjI1MiAzNDAuMDM0LDE3MC4wMjMgIj48L3BvbHlnb24+IDwvZz4gPC9nPiA8L3N2Zz4g") center/contain no-repeat;
}
.annual-wrapper .slider-cursor.is-left .slider-cursor__icon {
  transform: rotate(180deg);
}
.annual-wrapper .slider-cursor.is-disabled {
  opacity: 0.25;
}
@media (hover: none) {
  .annual-wrapper .slider-zone {
    cursor: auto;
  }
  .annual-wrapper .slider-cursor {
    display: none !important;
  }
}
.annual-wrapper .speaker-feature-group {
  position: relative;
  width: 100%;
  /* No overflow: hidden here, or pinning will break */
  overflow: visible;
}
.annual-wrapper .speaker-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Always exactly viewport height */
  background-size: cover;
  background-position: top center;
  z-index: 1;
}
.annual-wrapper .speaker-content-wrapper {
  position: relative;
  z-index: 2;
  /* This creates the 'Image Only' view. 
  The text starts exactly 1 screen-height down. */
  padding-top: 30vh;
  padding-bottom: 10vh;
  /* Buffer at the bottom */
}
.annual-wrapper .overlap-card-wrapper {
  overflow: hidden;
  /* Clips the left side edges */
  display: flex;
}
.annual-wrapper .overlap-card-radius {
  border-radius: 40px;
  /* Inner card rounding */
}
.annual-wrapper .overlap-inner-card {
  border-radius: 40px;
  /* The "Overlapping" magic happens here */
}
.annual-wrapper .margin-left-5 {
  margin-left: -5%;
}
.annual-wrapper .margin-right-5 {
  margin-right: -5%;
}
.annual-wrapper .margin-top-100 {
  margin-top: -100px;
}
.annual-wrapper .card-border-radius-40 {
  border-radius: 40px;
}
.annual-wrapper .annual-window-turning-heads {
  position: absolute;
  top: 0;
  right: 5%;
  height: 90vh;
  width: auto;
  max-height: 80%;
  max-width: 80%;
  z-index: -1;
}
.annual-wrapper .annual-window-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 120vh;
  width: auto;
  max-height: 80%;
  max-width: 80%;
  z-index: -1;
}
.annual-wrapper .annual-window-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 120vh;
  width: auto;
  max-height: 80%;
  max-width: 80%;
  z-index: -1;
}
.annual-wrapper .annual-window-center {
  position: absolute;
  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);
  right: 0;
  height: 120vh;
  width: auto;
  max-height: 80%;
  max-width: 80%;
  z-index: -1;
}
@media (max-width: 767px) {
  .annual-wrapper .overlap-card-wrapper {
    border-radius: 20px;
  }
  .annual-wrapper .overlap-inner-card {
    border-radius: 20px;
  }
  .annual-wrapper .margin-left-5 {
    margin-left: 0%;
  }
  .annual-wrapper .margin-right-5 {
    margin-right: 0%;
  }
  .annual-wrapper .margin-top-100 {
    margin-top: 0px;
  }
}
.annual-wrapper .z-index-11 {
  z-index: 11;
  position: relative;
}
.annual-wrapper .z-index-12 {
  z-index: 12;
  position: relative;
}
.annual-wrapper .z-index-13 {
  z-index: 13;
  position: relative;
}
.annual-wrapper .z-index-14 {
  z-index: 14;
  position: relative;
}
.annual-wrapper .z-index-15 {
  z-index: 15;
  position: relative;
}
.annual-wrapper .z-index-16 {
  z-index: 16;
  position: relative;
}
.annual-wrapper .z-index-17 {
  z-index: 17;
  position: relative;
}
.annual-wrapper .speaker-background {
  position: relative;
  --blur-size: 0%;
  --blur-opacity: 0;
  /* New variable for initial state */
}
.annual-wrapper .bg-green-grey {
  width: 100%;
  background: linear-gradient(to bottom, #262626 50%, var(--c-lime) 50%);
}
.annual-wrapper .book-video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  align-self: center;
  object-fit: cover;
  pointer-events: none;
}
@media (min-width: 1800px) {
  .annual-wrapper .book-video {
    height: 100%;
  }
}
@media (max-width: 1799px) {
  .annual-wrapper .book-video {
    height: 90%;
  }
}
@media (max-width: 1500px) {
  .annual-wrapper .book-video {
    height: 80%;
  }
}
@media (min-width: 1200px) {
  .annual-wrapper .text-xl-black {
    color: #000 !important;
  }
  .annual-wrapper #back-to-top {
    top: 160px;
  }
}
@media (max-width: 1200px) {
  .annual-wrapper {
    /* 1. Send the zones to the back so they don't block touch/swiping */
    /* 2. Hide the custom cursor entirely on mobile/tablet */
    /* 3. Ensure the slider track is ready for touch */
  }
  .annual-wrapper .slick-track .slick-slide:last-child {
    margin-right: 0%;
  }
  .annual-wrapper .chapter-sidebar {
    display: none;
  }
  .annual-wrapper .overlap-card-wrapper {
    display: block;
  }
  .annual-wrapper .push-right {
    margin-left: 0 !important;
    justify-items: flex-end;
  }
  .annual-wrapper .bg-section {
    min-height: 60vh;
  }
  .annual-wrapper .hero-title {
    width: fit-content;
  }
  .annual-wrapper .accordion-container {
    flex-wrap: wrap;
    height: auto;
    min-height: unset;
    gap: 0;
  }
  .annual-wrapper .accordion-box {
    flex: 0 0 33.333% !important;
    height: 300px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .annual-wrapper .accordion-box h2,
  .annual-wrapper .accordion-box.active h2 {
    opacity: 1 !important;
    white-space: normal;
    font-size: 4.5vw;
  }
  .annual-wrapper .box-number,
  .annual-wrapper .accordion-box.active .box-number {
    opacity: 0.2 !important;
  }
  .annual-wrapper .box-number {
    font-size: 15vw !important;
  }
  .annual-wrapper .speaker-slider .slick-dots {
    bottom: auto !important;
    top: 20px !important;
    z-index: 10 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .annual-wrapper .speaker-slider {
    padding-top: 65px;
  }
  .annual-wrapper .slick-dots li button:before {
    font-size: 10px !important;
    /* Slightly larger for easier tapping on mobile */
    color: #fff !important;
    opacity: 0.5 !important;
  }
  .annual-wrapper .slick-dots li.slick-active button:before {
    color: var(--c-vermillion) !important;
    /* Your brand red */
  }
  .annual-wrapper .slick-dots li {
    margin: 0 10px !important;
    /* Reduce spacing between dots on mobile */
  }
  .annual-wrapper .slider-zone {
    pointer-events: none;
    z-index: -1;
  }
  .annual-wrapper .slider-cursor {
    display: none !important;
  }
  .annual-wrapper .speaker-slider {
    touch-action: pan-y;
    /* Allows vertical scrolling but intercepts horizontal swiping */
    -webkit-tap-highlight-color: transparent;
  }
  .annual-wrapper .card-border-radius-40 {
    border-radius: 15px;
  }
  .annual-wrapper .mb-80 {
    margin-bottom: -80px !important;
  }
  .annual-wrapper .speaker-header-mb {
    position: absolute;
    bottom: -6px;
    left: 25px;
  }
  .annual-wrapper .speaker-header-mb,
  .annual-wrapper .speaker-subhead-mb {
    font-size: 60px !important;
  }
  .annual-wrapper .speaker-content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 0;
  }
  .annual-wrapper .accordion-container {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .annual-wrapper .accordion-box {
    flex: 0 0 50% !important;
    height: 190px !important;
  }
  .annual-wrapper .accordion-box h2,
  .annual-wrapper .accordion-box.active h2 {
    font-size: 8vw !important;
  }
  .annual-wrapper .box-number {
    font-size: 31vw !important;
  }
  .annual-wrapper .speaker-card p {
    font-size: 16px;
  }
  .annual-wrapper .speaker-card {
    padding: 15px;
  }
  .annual-wrapper .speaker-background {
    height: 80vh;
  }
  .annual-wrapper #back-to-top {
    right: 5%;
  }
  .annual-wrapper #back-to-top svg {
    width: 3.8vw;
  }
  .annual-wrapper .annual-window-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80%;
    height: 120vh;
    width: auto;
    /* max-height: 80%; */
    max-width: 150vw;
    z-index: -1;
  }
  .annual-wrapper .annual-window-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80%;
    height: 120vh;
    width: auto;
    /* max-height: 80%; */
    max-width: 150vw;
    z-index: -1;
  }
  .annual-wrapper .annual-window-center {
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(70%, -50%);
    height: 90vh;
    width: auto;
    max-height: 150%;
    max-width: 150%;
    z-index: -1;
  }
  .annual-wrapper .annual-window-turning-heads {
    position: absolute;
    top: 5%;
    right: -65%;
    height: 110vh;
    width: auto;
    max-height: 100%;
    max-width: 110%;
    z-index: -1;
  }
}

/* Form */
.annual-form {
  /* 1. FIX MULTI-COLUMN WONKINESS */
  /* Stack columns evenly on mobile */
  /* 2. WHITE FIELDS & BLACK PLACEHOLDERS */
  /* 4. CHECKBOX LAYOUT (Preserving your custom logic but tweaked for light backgrounds) */
}
.annual-form .hbspt-form form {
  display: block !important;
  /* Reverts your previous flex-column so row grids work */
}
.annual-form .hbspt-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 10px 0;
  max-width: unset !important;
  display: flex;
  /* Turns fieldsets into perfect flexbox rows */
  gap: 10px;
  /* Spacing between your side-by-side fields */
  width: 100%;
}
.annual-form .hbspt-form fieldset:nth-last-child(-n+8) {
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .annual-form .hbspt-form fieldset {
    flex-direction: column;
  }
}
.annual-form .hbspt-form .hs-form-field {
  flex: 1;
  /* Magic bullet: forces all columns to be identically wide */
  width: 100%;
}
.annual-form .hbspt-form form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.annual-form .hbspt-form form textarea,
.annual-form .hbspt-form form select {
  background: #FFFFFF !important;
  color: #000000 !important;
  /* Text color when typing */
  padding: 15px 0px;
  border: none !important;
  outline: 0px;
  text-align: center;
  border-radius: 0px !important;
  width: 100% !important;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}
.annual-form .hbspt-form form input::placeholder,
.annual-form .hbspt-form form textarea::placeholder {
  color: #000000 !important;
  opacity: 1 !important;
}
.annual-form .hbspt-form .hs-button {
  margin-top: 10px !important;
}
.annual-form .hbspt-form form label:not(.hs-form-booleancheckbox-display, .hs-error-msg) {
  display: none;
}
.annual-form .hs-error-msg {
  font-size: 15px;
  color: black;
}
.annual-form .hs-form-booleancheckbox-display .hs-input {
  display: inline-block !important;
}
.annual-form .inputs-list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px !important;
}
.annual-form .input {
  margin-right: 0px !important;
}
.annual-form .hs-form-booleancheckbox-display input.hs-input[type=checkbox] {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.annual-form .hs-form-booleancheckbox-display {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  color: #000000 !important;
  /* Set to black for visibility */
  font-size: 12px;
}
.annual-form .hs-form-booleancheckbox-display::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 2px solid #333;
  background: #FFFFFF;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}
.annual-form .hs-form-booleancheckbox-display input.hs-input[type=checkbox]:checked + span::before {
  content: "✔";
  position: absolute;
  left: 1px;
  top: 40%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 18px;
  border-radius: 4px;
}
.annual-form .hs-form-booleancheckbox-display input.hs-input {
  z-index: 3;
}
.annual-form .btn.form-btn-white {
  background-color: #FFFFFF !important;
  border: none !important;
  color: #000000 !important;
  position: relative;
  /* Required for the magnetic fill */
  overflow: hidden;
}
.annual-form .btn.form-btn-white .cta-text {
  position: relative;
  z-index: 2;
  pointer-events: none;
  /* Allows the mouse to interact with the button underneath */
}
.annual-form .btn.form-btn-white::before {
  background-color: #000000 !important;
}
.annual-form .btn.form-btn-white:hover .cta-text {
  color: #FFFFFF !important;
  transition: color 0.25s ease-out;
}
.annual-form #back-to-top {
  top: 70px;
}

.hs_cos_wrapper {
  z-index: 9999999;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .hbspt-form form {
    display: flex;
    flex-direction: column;
  }
  .hbspt-form .hs-button {
    width: 100%;
    margin-top: 10px;
  }
  /* 2. WHITE FIELDS & BLACK PLACEHOLDERS */
  .hbspt-form form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
  .hbspt-form form textarea,
  .hbspt-form form select {
    padding: 10px 0px;
    font-size: 15px;
  }
  .hbspt-form form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
  .hbspt-form form textarea,
  .hbspt-form form select {
    padding: 10px 0px !important;
  }
}
.modal {
  z-index: 999999;
}

.modal-header {
  border-bottom: none !important;
  align-self: center;
}

.modal-dialog-scrollable .modal-content {
  background-color: var(--c-vermillion);
  padding: 20px;
}

.modal-dialog {
  max-width: 700px;
}

.modal-body {
  padding-top: 10px !important;
}

.modal-header .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

#GetYourCopy,
#intro,
#brand,
#culture,
#influence,
#craft,
#ai,
#annual {
  scroll-margin-top: 100px; /* Adjust this if your header changes size on mobile */
}

.font-size-btn {
  font-size: var(--fs-btn) !important;
}

@media (max-width: 1200px) {
  .chapter-sidebar {
    display: none;
  }
}
#back-to-top {
  position: fixed;
  top: 13vh;
  right: 5%;
  z-index: 9999;
  background: transparent;
  border: none;
  cursor: pointer;
  /* Typography matching the image */
  color: #000;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* buttons.css - Cleaned for Browser Use */
:root {
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-hot-pink: #FF007A;
  --c-yellow: #FFFF00;
  --c-red: #FF0026;
  --c-dark-yellow: #FFCB00;
  --c-lime: #70DE03;
  --c-mint: #00FFA1;
  --c-orange: #FF8500;
  --c-blue: #2B6CEA;
  --c-vermillion: #FF4229;
  --c-purple: #B648FB;
}

body.template-annual {
  /* --- COLOR VARIANTS (Mapped to your HTML :root vars) --- */
  /* RED BUTTON (This is the one in your HTML) */
  /* --- MAGNETIC EFFECT CSS --- */
  /* The expanding circle background */
  /* The Text inside the button */
}
body.template-annual .btn {
  /* Use the font defined in your root, or a fallback */
  font-family: "Antonio", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  /* Fixed 'normal' to 'none' for valid CSS */
  padding: 15px 30px;
  cursor: pointer;
  font-size: clamp(24px, 3.46vw - 18.46px, 34px);
  display: inline-block;
  outline: 0px !important;
  border-radius: 0px;
  color: #000;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  /* Ensure link underlines don't appear */
  border: 0px !important;
}
@media (max-width: 767px) {
  body.template-annual .btn {
    font-size: 21px;
    padding: 15px 20px;
    width: 100%;
  }
}
body.template-annual .btn.btn-red {
  border-color: none;
  color: #000;
  background-color: var(--c-red);
}
body.template-annual .btn.btn-black {
  border-color: var(--c-black);
  color: #fff;
  background-color: var(--c-black);
}
body.template-annual .btn.btn-mint {
  border-color: var(--c-mint);
  color: #000;
  background-color: var(--c-mint);
}
body.template-annual .btn.btn-yellow {
  border-color: var(--c-yellow);
  color: #000;
  background-color: var(--c-yellow);
}
body.template-annual .btn.btn-dark-yellow {
  border-color: var(--c--dark-yellow);
  color: #000;
  background-color: var(--c-dark-yellow);
}
body.template-annual .btn.btn-vermillion {
  border-color: var(--c-vermillion);
  color: #fff;
  background-color: var(--c-vermillion);
}
body.template-annual .btn.btn-orange {
  border-color: var(--c-orange);
  color: #000;
  background-color: var(--c-orange);
}
body.template-annual .btn.btn-purple {
  border-color: var(--c-purple);
  color: #000;
  background-color: var(--c-purple);
}
body.template-annual .btn.btn-lime {
  border-color: var(--c-lime);
  color: #000;
  background-color: var(--c-lime);
}
body.template-annual .btn.btn-pink {
  border-color: var(--c-hot-pink);
  color: #000;
  background-color: var(--c-hot-pink);
}
body.template-annual .btn.btn-blue {
  border-color: var(--c-blue);
  color: #000;
  background-color: var(--c-blue);
}
body.template-annual .btn.magnetic {
  position: relative;
  overflow: hidden;
  /* Initialize CSS variables */
  --fill: 0;
  --origin: 50% 50%;
  /* Ensure z-index allows interaction */
  z-index: 1;
}
body.template-annual .btn.magnetic::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  /* 'inset: 0' works in modern browsers, this is safer fallback */
  background: #fff;
  /* Transformation logic */
  transform: scaleX(var(--fill));
  transform-origin: var(--origin);
  /* Performance */
  pointer-events: none;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.23, 0.13, 0.23, 1);
  z-index: -1;
  /* Move behind the text */
}
body.template-annual .btn.magnetic .cta-text {
  position: relative;
  z-index: 2;
  /* Must be higher than ::before */
  display: inline-block;
  pointer-events: none;
  /* Let mouse pass through to button container */
  transition: color 0.25s ease;
  will-change: transform, color;
  color: inherit;
}
@media (prefers-reduced-motion: reduce) {
  body.template-annual .btn.magnetic::before,
  body.template-annual .btn.magnetic .cta-text {
    transition: none;
  }
}
