/* vision.min-1920.css */
/* 1920px+ restores original desktop behavior */

/* Header becomes absolute and overlaid */
.vision__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 120px;
  z-index: 10;
}
.vision__header .section-title {
  font-size: 3.5rem;
}
.vision__header .section-subtitle {
  font-size: 1.2rem;
}

/* Horizontal pin + sticky viewport */
.vision-pin {
  height: 400vh;
}
.vision-sticky {
  height: 100vh;
  width: 100vw;
  position: sticky;
  top: 0;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

/* Horizontal track */
.vision-horizontal {
  padding-top: 200px;
  padding-bottom: 100px;
  height: 100%;
  width: 500vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  animation: visionHorizontalScroll linear both;
  animation-timeline: --vision-pin;
  animation-range: contain 0% contain 100%;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Slide sizing */
.vision-slide {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-lg);
}
.vision-slide__content {
  gap: 2rem;
}
.vision-slide__top {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.vision-slide__text h3 {
  font-size: 4rem;
}
.vision-slide__text h4 {
  font-size: 2rem;
}

/* Ensure content fits within viewport height considering 200+100 paddings */
.vision-slide__content.glass-panel {
  max-height: calc(100vh - 300px);
}

/* Geometries */
.vision__geometric {
  width: 300px;
  height: 300px;
}

/* Progress bar becomes fixed inside section bottom */
.vision-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 10;
}
.vision-progress__container {
  padding: 20px;
}
.vision-progress__bar {
  height: 6px;
  margin-bottom: 16px;
}
.vision-progress__marker {
  font-size: 0.9rem;
}
.vision-progress__marker::before {
  top: -20px;
  width: 8px;
  height: 8px;
}
