/* =========================================================
   GLOBAL SITE STYLES
========================================================= */

:root {
  --ColorDeepNavy: #111827;
  --ColorInkBlue: #1E1B4B;
  --ColorRoyalBlue: #2563EB;
  --ColorElectricBlue: #3B82F6;
  --ColorOrange: #F97316;
  --ColorCoral: #FF5E5B;
  --ColorGoldenYellow: #FFC145;

  --ColorWarmCream: #FFF4E8;
  --ColorSoftPeach: #FFE3D4;
  --ColorSoftBlue: #DDEBFF;
  --ColorSoftLavender: #E8E4FF;
  --ColorSoftYellow: #FFF1B8;

  --ColorDarkSection: #06142E;
  --ColorTextDark: #111827;
  --ColorTextMuted: #3F4A5A;
  --ColorTextLight: #F8FAFC;

  --SiteMaxWidth: 1180px;

  --ShadowSoft: 0 22px 60px rgba(17, 24, 39, 0.12);
  --ShadowCard: 0 14px 34px rgba(17, 24, 39, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ColorWarmCream);
  color: var(--ColorTextDark);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.SitePageWrapper {
  width: 100%;
  overflow-x: clip;
}



/* =========================================================
   HEADER SECTION
========================================================= */

.HeaderSection {
  width: 100%;
  position: relative;
  z-index: 50;
  padding: 22px 24px 0;
}

.HeaderInner {
  width: 100%;
  max-width: var(--SiteMaxWidth);
  margin: 0 auto;
  min-height: 76px;
  padding: 14px 18px 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: 999px;
  background: rgba(255, 244, 232, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.HeaderLogoLink {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.HeaderLogoImage {
  width: 96px;
  height: auto;
  display: block;
}

.HeaderNavigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.HeaderDropdownWrapper {
  position: relative;
  padding: 18px 8px;
}

.HeaderNavigationButton {
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ColorDeepNavy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.HeaderNavigationButton:hover,
.HeaderDropdownWrapper.HeaderDropdownIsOpen .HeaderNavigationButton {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ColorOrange);
}

.HeaderNavigationButtonIcon {
  font-size: 15px;
  line-height: 1;
  transition: transform 260ms ease;
}

.HeaderDropdownWrapper.HeaderDropdownIsOpen .HeaderNavigationButtonIcon {
  transform: rotate(180deg);
}



/* =========================================================
   HEADER DROPDOWN BASE
========================================================= */

.HeaderDropdownPanel {
  width: 360px;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(18px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.HeaderDropdownPanel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 32px;
}

.HeaderDropdownContent {
  position: relative;
  z-index: 3;
  padding: 22px;
}

.HeaderDropdownEyebrow {
  margin: 0 0 14px;
  color: var(--ColorRoyalBlue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.HeaderDropdownItem {
  display: block;
  border-radius: 18px;
  padding: 14px 15px;
  color: var(--ColorDeepNavy);
  transition:
    background 220ms ease,
    transform 220ms ease,
    color 220ms ease;
}

.HeaderDropdownItem:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(4px);
}

.HeaderDropdownItemTitle {
  display: block;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
}

.HeaderDropdownItemDescription {
  display: block;
  margin-top: 5px;
  color: var(--ColorTextMuted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.HeaderDropdownWrapper.HeaderDropdownIsOpen .HeaderDropdownPanel {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.HeaderDropdownWrapper.HeaderDropdownIsClosing .HeaderDropdownPanel {
  pointer-events: none;
  visibility: visible;
}



/* =========================================================
   HEADER DROPDOWN ANIMATIONS
========================================================= */

.HeaderWorkDropdown {
  background:
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.18) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff3e7 0%, #e8f1ff 100%);
}

.HeaderWorkDropdownWrapper .HeaderWorkDropdown {
  transform: translateX(-50%) translateY(18px) rotateX(-8deg);
  transform-origin: top center;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms linear 360ms;
}

.HeaderWorkDropdownWrapper.HeaderDropdownIsOpen .HeaderWorkDropdown {
  transform: translateX(-50%) translateY(0) rotateX(0);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms;
}

.HeaderWorkDropdownWrapper.HeaderDropdownIsClosing .HeaderWorkDropdown {
  opacity: 0;
  transform: translateX(-50%) translateY(18px) rotateX(-8deg);
  transition:
    opacity 220ms ease,
    transform 280ms ease,
    visibility 0ms linear 280ms;
}

.HeaderResourcesDropdown {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 193, 69, 0.30) 0 18%, transparent 19%),
    linear-gradient(135deg, #f0f7ff 0%, #fff4c9 100%);
}

.HeaderResourcesDropdownWrapper .HeaderResourcesDropdown {
  transform: translateX(-50%) scale(0.92);
  transform-origin: top center;
  transition:
    opacity 240ms ease,
    transform 340ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms linear 340ms;
}

.HeaderResourcesDropdownWrapper.HeaderDropdownIsOpen .HeaderResourcesDropdown {
  transform: translateX(-50%) scale(1);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms;
}

.HeaderAboutDropdown {
  width: 330px;
  background:
    linear-gradient(135deg, #f3efff 0%, #fff0e4 100%);
}

.HeaderAboutDropdownWrapper .HeaderAboutDropdown {
  transform: translateX(-50%) translateY(16px) rotate(-2deg);
  transform-origin: top center;
  transition:
    opacity 240ms ease,
    transform 340ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms linear 340ms;
}

.HeaderAboutDropdownWrapper.HeaderDropdownIsOpen .HeaderAboutDropdown {
  transform: translateX(-50%) translateY(0) rotate(0);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(.2,.9,.2,1),
    visibility 0ms;
}



/* =========================================================
   HEADER DROPDOWN SHAPES
========================================================= */

.HeaderDropdownArtwork {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.HeaderMotionShape {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.HeaderMotionShape > span {
  position: absolute;
  display: block;
  will-change: transform;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
}

.HeaderWorkMotionShapeOne {
  right: -26px;
  top: 34px;
  width: 140px;
  height: 14px;
  animation: HeaderFloatWorkOne 5.4s ease-in-out infinite;
}

.HeaderWorkMotionShapeTwo {
  right: -18px;
  top: 64px;
  width: 110px;
  height: 14px;
  animation: HeaderFloatWorkTwo 6.2s ease-in-out infinite;
}

.HeaderWorkMotionShapeThree {
  left: -18px;
  bottom: -16px;
  width: 58px;
  height: 58px;
  animation: HeaderFloatWorkThree 5.8s ease-in-out infinite;
}

.HeaderWorkArtworkLineOne {
  inset: 0;
  border-radius: 999px;
  background: var(--ColorRoyalBlue);
  transform: rotate(-18deg);
}

.HeaderWorkArtworkLineTwo {
  inset: 0;
  border-radius: 999px;
  background: var(--ColorOrange);
  transform: rotate(-18deg);
}

.HeaderWorkArtworkDot {
  inset: 0;
  border-radius: 50%;
  background: var(--ColorGoldenYellow);
}

.HeaderResourcesMotionShapeOne {
  right: -34px;
  top: -20px;
  width: 92px;
  height: 92px;
  animation: HeaderFloatResourcesOne 6.8s ease-in-out infinite;
}

.HeaderResourcesMotionShapeTwo {
  left: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  animation: HeaderFloatResourcesTwo 5.6s ease-in-out infinite;
}

.HeaderResourcesMotionShapeThree {
  left: 92px;
  bottom: 42px;
  width: 18px;
  height: 18px;
  animation: HeaderFloatResourcesThree 4.8s ease-in-out infinite;
}

.HeaderResourcesArtworkCircleOne,
.HeaderResourcesArtworkCircleTwo,
.HeaderResourcesArtworkCircleThree {
  inset: 0;
  border-radius: 50%;
}

.HeaderResourcesArtworkCircleOne {
  background: rgba(37, 99, 235, 0.16);
}

.HeaderResourcesArtworkCircleTwo {
  background: rgba(249, 115, 22, 0.22);
}

.HeaderResourcesArtworkCircleThree {
  background: var(--ColorRoyalBlue);
}

.HeaderAboutMotionShapeOne {
  right: -24px;
  top: 28px;
  width: 92px;
  height: 70px;
  animation: HeaderFloatAboutOne 6.4s ease-in-out infinite;
}

.HeaderAboutMotionShapeTwo {
  right: 18px;
  top: 52px;
  width: 82px;
  height: 62px;
  animation: HeaderFloatAboutTwo 5.2s ease-in-out infinite;
}

.HeaderAboutArtworkCardOne,
.HeaderAboutArtworkCardTwo {
  inset: 0;
  border-radius: 18px;
  transform: rotate(-10deg);
}

.HeaderAboutArtworkCardOne {
  background: rgba(249, 115, 22, 0.22);
}

.HeaderAboutArtworkCardTwo {
  background: rgba(37, 99, 235, 0.18);
}

@keyframes HeaderFloatWorkOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  35% { transform: translate3d(-12px, 9px, 0) rotate(4deg); }
  70% { transform: translate3d(8px, -10px, 0) rotate(-5deg); }
}

@keyframes HeaderFloatWorkTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  40% { transform: translate3d(10px, -8px, 0) rotate(-6deg); }
  75% { transform: translate3d(-9px, 7px, 0) rotate(5deg); }
}

@keyframes HeaderFloatWorkThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(12px, -12px, 0) scale(1.08); }
  80% { transform: translate3d(-8px, 7px, 0) scale(0.96); }
}

@keyframes HeaderFloatResourcesOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(-12px, 14px, 0) scale(1.12); }
  75% { transform: translate3d(9px, -8px, 0) scale(0.95); }
}

@keyframes HeaderFloatResourcesTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40% { transform: translate3d(11px, -9px, 0) scale(1.08); }
  78% { transform: translate3d(-10px, 10px, 0) scale(0.96); }
}

@keyframes HeaderFloatResourcesThree {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -10px, 0); }
}

@keyframes HeaderFloatAboutOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  40% { transform: translate3d(-10px, 10px, 0) rotate(5deg); }
  75% { transform: translate3d(12px, -8px, 0) rotate(-4deg); }
}

@keyframes HeaderFloatAboutTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  35% { transform: translate3d(10px, -12px, 0) rotate(-5deg); }
  72% { transform: translate3d(-9px, 8px, 0) rotate(4deg); }
}



/* =========================================================
   HEADER CONTACT BUTTON
========================================================= */

.HeaderButtonOne {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ColorOrange);
  color: white;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.22);
  white-space: nowrap;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.HeaderButtonOne:hover {
  transform: translateY(-2px);
  background: var(--ColorCoral);
  box-shadow: 0 16px 34px rgba(255, 94, 91, 0.24);
}

.HeaderButtonOneArrow {
  font-size: 18px;
  line-height: 1;
}



/* =========================================================
   HERO SECTION
========================================================= */

.HeroSection {
  width: 100%;
  padding: 44px 24px 88px;
}

.HeroInner {
  width: 100%;
  max-width: var(--SiteMaxWidth);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 56px;
}

.HeroContentColumn {
  position: relative;
}

.HeroEyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--ColorRoyalBlue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.HeroHeadline {
  margin: 0;
  max-width: 700px;
  color: var(--ColorDeepNavy);
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 0.95;
  font-weight: 950;
}

.HeroHeadlineMain {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.HeroHeadlineAccent {
  display: block;
  margin-top: 10px;
  color: var(--ColorDeepNavy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.HeroHeadlineScript {
  color: var(--ColorRoyalBlue);
  font-style: italic;
}

.HeroHeadlineRhythm {
  color: var(--ColorOrange);
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.HeroDescription {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--ColorTextMuted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
}

.HeroButtonGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.HeroButtonOne,
.HeroButtonTwo {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.HeroButtonOne {
  background: var(--ColorOrange);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
}

.HeroButtonOne:hover {
  transform: translateY(-2px);
  background: var(--ColorCoral);
}

.HeroButtonTwo {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ColorDeepNavy);
  border: 2px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.HeroButtonTwo:hover {
  transform: translateY(-2px);
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.22);
}

.HeroButtonOneArrow,
.HeroButtonTwoArrow {
  font-size: 18px;
  line-height: 1;
}

.HeroQuickInfoRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.HeroQuickInfoCard {
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.HeroQuickInfoLabel {
  display: block;
  margin-bottom: 6px;
  color: var(--ColorTextMuted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.HeroQuickInfoValue {
  display: block;
  color: var(--ColorDeepNavy);
  font-size: 15px;
  font-weight: 900;
}



/* =========================================================
   HERO IMAGE COLUMN
========================================================= */

.HeroImageColumn {
  position: relative;
}

.HeroImageFrame {
  position: relative;
  min-height: 620px;
}

.HeroImageBackgroundBlock {
  position: absolute;
  inset: 26px 22px 22px 36px;
  border-radius: 38px;
  background: linear-gradient(135deg, #dcebff 0%, #e8e4ff 52%, #fff1b8 100%);
  box-shadow: var(--ShadowSoft);
}

.HeroImageCard {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  z-index: 4;
}

.HeroMainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* =========================================================
   HERO FOREGROUND / BACKGROUND SHAPES
========================================================= */

.HeroMotionShape {
  --HeroShapeScrollAmount: 0;
  --HeroShapeMouseX: 0px;
  --HeroShapeMouseY: 0px;

  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transition: transform 180ms ease-out;
}

.HeroImageShapeOne {
  width: 160px;
  height: 160px;
  top: -18px;
  right: -18px;
  border-radius: 32px;
  background: var(--ColorOrange);
  transform:
    translate3d(
      calc(var(--HeroShapeMouseX) * 1),
      calc((var(--HeroShapeScrollAmount) * -34px) + var(--HeroShapeMouseY)),
      0
    )
    scale(calc(1 + (var(--HeroShapeScrollAmount) * 0.22)))
    rotate(calc(12deg + (var(--HeroShapeScrollAmount) * 8deg)));
  animation: HeroShapeFloatOne 7s ease-in-out infinite;
}

.HeroImageShapeTwo {
  width: 140px;
  height: 140px;
  left: -22px;
  bottom: 54px;
  border-radius: 50%;
  background: var(--ColorRoyalBlue);
  opacity: 0.92;
  transform:
    translate3d(
      calc(var(--HeroShapeMouseX) * 0.85),
      calc((var(--HeroShapeScrollAmount) * 30px) + var(--HeroShapeMouseY)),
      0
    )
    scale(calc(1 + (var(--HeroShapeScrollAmount) * 0.18)));
  animation: HeroShapeFloatTwo 8s ease-in-out infinite;
}

.HeroImageShapeThree {
  width: 180px;
  height: 42px;
  left: -10px;
  top: 60px;
  border-radius: 999px;
  background: var(--ColorGoldenYellow);
  transform:
    translate3d(
      calc((var(--HeroShapeScrollAmount) * -28px) + var(--HeroShapeMouseX)),
      calc((var(--HeroShapeScrollAmount) * -18px) + var(--HeroShapeMouseY)),
      0
    )
    scaleX(calc(1 + (var(--HeroShapeScrollAmount) * 0.32)))
    rotate(calc(-15deg - (var(--HeroShapeScrollAmount) * 7deg)));
  animation: HeroShapeFloatThree 6.5s ease-in-out infinite;
}

.HeroImageDotPattern {
  width: 150px;
  height: 150px;
  right: -24px;
  bottom: 84px;
  background-image: radial-gradient(rgba(17, 24, 39, 0.18) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.7;
  transform:
    translate3d(
      calc((var(--HeroShapeScrollAmount) * 24px) + var(--HeroShapeMouseX)),
      calc((var(--HeroShapeScrollAmount) * 20px) + var(--HeroShapeMouseY)),
      0
    )
    scale(calc(1 + (var(--HeroShapeScrollAmount) * 0.20)));
  animation: HeroShapeFloatFour 9s ease-in-out infinite;
}

@keyframes HeroShapeFloatOne {
  0%, 100% { translate: 0 0; }
  50% { translate: 8px -10px; }
}

@keyframes HeroShapeFloatTwo {
  0%, 100% { translate: 0 0; }
  50% { translate: -10px 8px; }
}

@keyframes HeroShapeFloatThree {
  0%, 100% { translate: 0 0; }
  50% { translate: 12px 6px; }
}

@keyframes HeroShapeFloatFour {
  0%, 100% { translate: 0 0; }
  50% { translate: -8px -8px; }
}



/* =========================================================
   HERO FLOATING BADGES
========================================================= */

.HeroFloatingBadge {
  position: absolute;
  z-index: 6;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(12px);
}

.HeroFloatingBadgeTop {
  top: 26px;
  left: -58px;
}

.HeroFloatingBadgeBottom {
  right: -42px;
  bottom: 26px;
}

.HeroFloatingBadgeLabel {
  display: block;
  margin-bottom: 6px;
  color: var(--ColorTextMuted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.HeroFloatingBadgeValue {
  display: block;
  color: var(--ColorDeepNavy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}



/* =========================================================
   PINNED JOURNEY SECTION
========================================================= */

.PinnedJourneySection {
  --PinnedJourneyActiveColor: var(--ColorOrange);
  --PinnedJourneyBackgroundOne: #fff4e8;
  --PinnedJourneyBackgroundTwo: #e8f1ff;

  display: block;
  position: relative;
  height: 800vh;
  min-height: 800vh;
  overflow: visible;
  background: var(--PinnedJourneyBackgroundOne);
}

.PinnedJourneyStickyPanel {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 36px 24px;
  background:
    radial-gradient(circle at 8% 16%, rgba(249, 115, 22, 0.16) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--PinnedJourneyBackgroundOne) 0%, var(--PinnedJourneyBackgroundTwo) 100%);
  transition: background 520ms ease;
  z-index: 2;
}

.PinnedJourneyInner {
  width: 100%;
  max-width: var(--SiteMaxWidth);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 4;
}



/* =========================================================
   PINNED JOURNEY BACKGROUND COLOR STATES
========================================================= */

.PinnedJourneySection[data-pinned-active="0"] {
  --PinnedJourneyActiveColor: var(--ColorOrange);
  --PinnedJourneyBackgroundOne: #fff4e8;
  --PinnedJourneyBackgroundTwo: #e8f1ff;
}

.PinnedJourneySection[data-pinned-active="1"] {
  --PinnedJourneyActiveColor: var(--ColorRoyalBlue);
  --PinnedJourneyBackgroundOne: #ddebff;
  --PinnedJourneyBackgroundTwo: #fff4e8;
}

.PinnedJourneySection[data-pinned-active="2"] {
  --PinnedJourneyActiveColor: var(--ColorCoral);
  --PinnedJourneyBackgroundOne: #ffe3d4;
  --PinnedJourneyBackgroundTwo: #e8e4ff;
}

.PinnedJourneySection[data-pinned-active="3"] {
  --PinnedJourneyActiveColor: var(--ColorGoldenYellow);
  --PinnedJourneyBackgroundOne: #fff1b8;
  --PinnedJourneyBackgroundTwo: #ddebff;
}

.PinnedJourneySection[data-pinned-active="4"] {
  --PinnedJourneyActiveColor: #7c3aed;
  --PinnedJourneyBackgroundOne: #e8e4ff;
  --PinnedJourneyBackgroundTwo: #fff4e8;
}

.PinnedJourneySection[data-pinned-active="5"] {
  --PinnedJourneyActiveColor: #14b8a6;
  --PinnedJourneyBackgroundOne: #d9fff8;
  --PinnedJourneyBackgroundTwo: #fff1b8;
}

.PinnedJourneySection[data-pinned-active="6"] {
  --PinnedJourneyActiveColor: var(--ColorDeepNavy);
  --PinnedJourneyBackgroundOne: #f2eaff;
  --PinnedJourneyBackgroundTwo: #ddebff;
}

.PinnedJourneySection[data-pinned-active="7"] {
  --PinnedJourneyActiveColor: var(--ColorOrange);
  --PinnedJourneyBackgroundOne: #06142e;
  --PinnedJourneyBackgroundTwo: #1e1b4b;
}



/* =========================================================
   PINNED JOURNEY BACKGROUND SHAPES
========================================================= */

.PinnedJourneyBackgroundShapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.PinnedJourneyShape,
.PinnedJourneyDotPattern {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.PinnedJourneyShapeOne {
  width: 190px;
  height: 190px;
  left: 4%;
  top: 110%;
  border-radius: 44px;
  background: rgba(249, 115, 22, 0.24);
}

.PinnedJourneyShapeTwo {
  width: 150px;
  height: 150px;
  right: 18%;
  top: 120%;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
}

.PinnedJourneyShapeThree {
  width: 230px;
  height: 54px;
  left: 12%;
  top: 130%;
  border-radius: 999px;
  background: rgba(255, 193, 69, 0.34);
  transform: rotate(-16deg);
}

.PinnedJourneyShapeFour {
  width: 130px;
  height: 130px;
  right: 4%;
  top: 145%;
  border-radius: 30px;
  background: rgba(255, 94, 91, 0.18);
  transform: rotate(12deg);
}

.PinnedJourneyDotPattern {
  width: 140px;
  height: 140px;
  opacity: 0.56;
  background-image: radial-gradient(rgba(17, 24, 39, 0.22) 2px, transparent 2px);
  background-size: 14px 14px;
}

.PinnedJourneyDotPatternOne {
  left: 24%;
  top: 118%;
}

.PinnedJourneyDotPatternTwo {
  right: 26%;
  top: 155%;
}



/* =========================================================
   PINNED JOURNEY CONTENT
========================================================= */

.PinnedJourneyContentColumn {
  position: relative;
  z-index: 5;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.PinnedJourneyPanels {
  position: relative;
  min-height: 560px;
}

.PinnedJourneyPanel {
  position: absolute;
  inset: 0;
  max-width: 680px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px) scale(0.985);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    visibility 420ms ease,
    transform 520ms cubic-bezier(.2,.9,.2,1);
}

.PinnedJourneyPanel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.PinnedJourneyEyebrow,
.PinnedJourneyStepNumber {
  margin: 0 0 14px;
  color: var(--PinnedJourneyActiveColor);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.PinnedJourneyHeadline {
  margin: 0;
  color: var(--ColorDeepNavy);
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.PinnedJourneySection[data-pinned-active="7"] .PinnedJourneyHeadline {
  color: var(--ColorTextLight);
}

.PinnedJourneyHeadlineAccent {
  display: block;
  color: var(--PinnedJourneyActiveColor);
}

.PinnedJourneyDescription {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ColorTextMuted);
  font-size: 18px;
  line-height: 1.74;
  font-weight: 650;
}

.PinnedJourneySection[data-pinned-active="7"] .PinnedJourneyDescription {
  color: rgba(248, 250, 252, 0.78);
}



/* =========================================================
   PINNED JOURNEY PILLS
========================================================= */

.PinnedJourneyPillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.PinnedJourneyPill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--ColorDeepNavy);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 380ms ease,
    transform 420ms cubic-bezier(.2,.9,.2,1);
}

.PinnedJourneyPanel.is-active .PinnedJourneyPill {
  opacity: 1;
  transform: translateY(0);
}

.PinnedJourneyPanel.is-active .PinnedJourneyPill:nth-child(1) { transition-delay: 90ms; }
.PinnedJourneyPanel.is-active .PinnedJourneyPill:nth-child(2) { transition-delay: 150ms; }
.PinnedJourneyPanel.is-active .PinnedJourneyPill:nth-child(3) { transition-delay: 210ms; }
.PinnedJourneyPanel.is-active .PinnedJourneyPill:nth-child(4) { transition-delay: 270ms; }



/* =========================================================
   PINNED JOURNEY PREVIEW GRID
========================================================= */

.PinnedJourneyPreviewGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.PinnedJourneyPreviewCard {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 380ms ease,
    transform 420ms cubic-bezier(.2,.9,.2,1),
    box-shadow 220ms ease;
}

.PinnedJourneyPanel.is-active .PinnedJourneyPreviewCard {
  opacity: 1;
  transform: translateY(0);
}

.PinnedJourneyPanel.is-active .PinnedJourneyPreviewCard:nth-child(1) { transition-delay: 100ms; }
.PinnedJourneyPanel.is-active .PinnedJourneyPreviewCard:nth-child(2) { transition-delay: 180ms; }
.PinnedJourneyPanel.is-active .PinnedJourneyPreviewCard:nth-child(3) { transition-delay: 260ms; }

.PinnedJourneyPreviewImage {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(249, 115, 22, 0.16));
}

.PinnedJourneyPreviewLabel {
  display: block;
  padding: 12px 14px 14px;
  color: var(--ColorDeepNavy);
  font-size: 13px;
  font-weight: 900;
}



/* =========================================================
   PINNED JOURNEY BUTTONS
========================================================= */

.PinnedJourneyButtonRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.PinnedJourneyButtonOne,
.PinnedJourneyButtonTwo {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 950;
}

.PinnedJourneyButtonOne {
  background: var(--ColorOrange);
  color: #ffffff;
}

.PinnedJourneyButtonTwo {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}



/* =========================================================
   PINNED JOURNEY WAVE
========================================================= */

.PinnedJourneyWaveColumn {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.PinnedJourneyWaveFrame {
  width: 220px;
  height: 92vh;
  min-height: 720px;
  max-height: 980px;
  position: relative;
}

.PinnedJourneyWaveSvg {
  width: 100%;
  height: 100%;
  display: block;
}

.PinnedJourneyWavePath {
  fill: none;
  stroke: rgba(17, 24, 39, 0.18);
  stroke-width: 8;
  stroke-linecap: round;
}

.PinnedJourneySection[data-pinned-active="7"] .PinnedJourneyWavePath {
  stroke: rgba(248, 250, 252, 0.18);
}



/* =========================================================
   PINNED JOURNEY MARKER
========================================================= */

.PinnedJourneyMarker {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 8;
}

.PinnedJourneyMarkerInner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--PinnedJourneyActiveColor);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
  color: #ffffff;
  font-size: 0;
  font-weight: 950;
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.PinnedJourneyMarker.is-stop .PinnedJourneyMarkerInner {
  transform: scale(1.08);
}



/* =========================================================
   FOOTER SECTION
========================================================= */

.FooterSection {
  background: var(--ColorDarkSection);
  color: var(--ColorTextLight);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.FooterLogoMark {
  font-weight: 950;
  letter-spacing: -0.08em;
}

.FooterCopyright {
  margin: 0;
  color: rgba(248, 250, 252, 0.76);
  font-size: 14px;
}



/* =========================================================
   RESPONSIVE STYLES
========================================================= */

@media (max-width: 980px) {
  .HeroInner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .HeroImageFrame {
    min-height: 560px;
    max-width: 520px;
  }

  .PinnedJourneyInner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .PinnedJourneyWaveColumn {
    position: absolute;
    right: 8px;
    top: 4vh;
    opacity: 0.28;
  }

  .PinnedJourneyContentColumn {
    min-height: 620px;
  }

  .PinnedJourneyPanels {
    min-height: 600px;
  }
}

@media (max-width: 900px) {
  .HeaderInner {
    border-radius: 30px;
    flex-wrap: wrap;
  }

  .HeaderNavigation {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .HeaderDropdownPanel {
    width: min(360px, calc(100vw - 42px));
  }
}

@media (max-width: 680px) {
  .HeroSection {
    padding: 28px 18px 68px;
  }

  .HeroHeadline {
    font-size: 48px;
  }

  .HeroDescription,
  .PinnedJourneyDescription {
    font-size: 16px;
  }

  .HeroQuickInfoRow {
    gap: 10px;
  }

  .HeroQuickInfoCard {
    min-width: 0;
    flex: 1 1 100%;
  }

  .HeroImageFrame {
    min-height: 460px;
  }

  .HeroImageBackgroundBlock {
    inset: 18px 14px 14px 18px;
  }

  .HeroImageShapeOne {
    width: 110px;
    height: 110px;
  }

  .HeroImageShapeTwo {
    width: 92px;
    height: 92px;
    left: -10px;
  }

  .HeroImageShapeThree {
    width: 120px;
    height: 28px;
    top: 40px;
  }

  .HeroImageDotPattern {
    width: 92px;
    height: 92px;
    right: -8px;
    bottom: 72px;
  }

  .HeroFloatingBadgeTop {
    top: 12px;
    left: 12px;
  }

  .HeroFloatingBadgeBottom {
    right: 12px;
    bottom: 12px;
  }

  .PinnedJourneyStickyPanel {
    padding: 26px 18px;
  }

  .PinnedJourneyHeadline {
    font-size: 44px;
  }

  .PinnedJourneyPreviewGrid {
    grid-template-columns: 1fr;
  }

  .PinnedJourneyWaveColumn {
    display: none;
  }

  .PinnedJourneyContentColumn {
    min-height: 680px;
  }

  .PinnedJourneyPanels {
    min-height: 660px;
  }
}

@media (max-width: 620px) {
  .HeaderSection {
    padding: 14px 14px 0;
  }

  .HeaderInner {
    padding: 14px;
    gap: 14px;
  }

  .HeaderLogoImage {
    width: 82px;
  }

  .HeaderNavigation {
    gap: 0;
  }

  .HeaderNavigationButton {
    padding: 9px 12px;
    font-size: 13px;
  }

  .HeaderButtonOne {
    width: 100%;
  }
}



/* =========================================================
   ACCESSIBILITY: REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .HeaderMotionShape,
  .HeroMotionShape,
  .PinnedJourneyShape,
  .PinnedJourneyDotPattern {
    animation: none !important;
    transition: none !important;
  }

  .HeaderMotionShape > span {
    transition: none !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}