img {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

/* SECTION - ABOUT HERO */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--space-xl);
  overflow: hidden;
  padding: 160px 40px 60px;
  background: var(--color-background);
}

.about--hero-content,
.about-users-color-container {
  width: 50%;
}

.about-greeting {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.about-company-name {
  font-family: var(--font-family-helvetica);
  font-size: var(--hero-title-size);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  position: relative;
  cursor: default;
}

.about-company-name span {
  display: inline-block;
  transition: all var(--transition-1);
}

.about-company-name:hover span {
  transform: translateY(-5px);
  transition-delay: calc(var(--i) * 0.05s);
}

.about-description {
  font-size: var(--font-size-base);
  font-family: var(--font-family-helvetica);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.about-users-color-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about-item {
  max-width: 200px;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1),
    inset 0px 2px 2px var(--color-border);
  animation: fadeIn 0.5s linear 1 forwards;
  animation-delay: calc(0.2s * var(--i));
  opacity: 0;
}

.about-item:nth-child(1) {
  background-color: #67d7e1;
  border-radius: 50% 50% 0 50%;
}

.about-item:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.about-item:nth-child(3) {
  background-color: #6cc164;
  border-radius: 50%;
}

.about-item:nth-child(4) {
  border-radius: 0 0 0 50%;
}

.about-item:nth-child(5) {
  border-radius: 0 50% 50% 0;
}

.about-item:nth-child(6) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 50%;
}

.about-item:nth-child(7) {
  border-radius: 50% 50% 0 50%;
}

.about-item:nth-child(8) {
  background-color: #fe7519;
  border-radius: 50% 0 0 50%;
}

.about-item:nth-child(9) {
  background-color: #f5bec3;
  border-radius: 0 50% 50% 0;
}

.about-item:nth-child(10) {
  border-radius: 50%;
}

.about-item:nth-child(11) {
  background-color: #fcd659;
  border-radius: 50% 0 50% 50%;
}

.about-item:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .about-hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 160px 40px 20px;
    gap: 60px;
  }

  .about--hero-content {
    order: 1;
  }

  .about-users-color-container {
    order: 2;
  }

  .about--hero-content,
  .about-users-color-container {
    width: 100%;
  }

  .about-description {
    max-width: 100%;
  }

  .about-hero .btn {
    margin-inline: auto;
  }
}

/* Mobile devices (up to 575px) */
@media (max-width: 575px) {
  .about-hero {
    padding: 160px 40px 20px;
  }

  .about--hero-content {
    order: 1;
  }

  .about-users-color-container {
    order: 2;
  }

  .about-description {
    width: 100%;
  }

  .about-hero .btn {
    margin-inline: auto;
  }
}

/* ============================================================================== */
/* gcs help section */

/* Neural network canvas */
.gcs-help-neural-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.gcs-helps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 60px;
  position: relative;
  z-index: 1;
}

.gcs-helps-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: headerReveal 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.gcs-helps-header h1 {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  margin-bottom: 30px;
  line-height: 0.9;
  position: relative;
  overflow: hidden;
}

.gcs-helps-header h1 span {
  font-family: "Dancing Script", cursive;
}

.gcs-helps-header h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) rotateX(90deg);
  animation: charReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}

.gcs-helps-subtitle {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-normal);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1.5s forwards;
}

.gcs-helps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.gcs-helps-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100px) rotateX(45deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(20px);
  will-change: transform;
}

.gcs-helps-card:nth-child(1) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.gcs-helps-card:nth-child(2) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}

.gcs-helps-card:nth-child(3) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.4s forwards;
}

.gcs-helps-card:nth-child(4) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.6s forwards;
}

.gcs-helps-card:nth-child(5) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.8s forwards;
}

.gcs-helps-card:nth-child(6) {
  animation: cardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 3s forwards;
}

/* Enhanced holographic effect */
/* .gcs-helps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      transparent 30%,
      var(--card-border) 50%,
      transparent 70%);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
  will-change: transform;
}

.gcs-helps-card:hover::before {
  transform: translateX(100%) skewX(-15deg);
} */

/* Optimized hover effects */
.gcs-helps-card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(5deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 100px var(--card-border),
    inset 0 1px 0 var(--card-border);
}

/* Enhanced icon container */
.gcs-helps-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-black), var(--color-black));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-2);
  box-shadow: 0 20px 40px var(--card-border);
  will-change: transform;
}

.gcs-helps-icon-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg,
      var(--color-text),
      var(--color-text-secondary),
      var(--color-text),
      var(--color-text-secondary),
      var(--color-text));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: rotateGlow 3s linear infinite;
  transition: opacity 0.3s ease;
}

.gcs-helps-card:hover .gcs-helps-icon-container::before {
  opacity: 1;
}

.gcs-helps-card:hover .gcs-helps-icon-container {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 30px 60px var(--card-border);
}

.gcs-helps-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gcs-helps-card:hover .gcs-helps-icon {
  transform: scale(1.2) rotateY(180deg);
}

.gcs-helps-card-title {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  transition: all var(--transition-1);
  position: relative;
}

.gcs-helps-card:hover .gcs-helps-card-title {
  transform: translateY(-5px);
}

.gcs-helps-card-description {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  transition: all var(--transition-1);
  font-weight: var(--font-weight-normal);
}

.gcs-helps-card:hover .gcs-helps-card-description {
  color: var(--color-emphasis);
  transform: translateY(-2px);
}

/* Enhanced border effect */
.gcs-helps-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg,
      var(--card-border),
      var(--card-emphasis),
      var(--card-border));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity var(--transition-1);
}

.gcs-helps-card:hover::after {
  opacity: 1;
}

/* Optimized keyframe animations */
@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  50% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Enhanced responsive design */
@media (max-width: 768px) {

  .gcs-helps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .gcs-helps-card {
    padding: var(--space-lg) var(--space-md);
  }

  .gcs-helps-card:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

@media (max-width: 480px) {

  .gcs-helps-card {
    padding: var(--space-md) var(--space-sm);
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced click effects */
.gcs-helps-card:active {
  transform: translateY(-15px) rotateX(2deg) rotateY(2deg) scale(0.98);
  transition-duration: 0.1s;
}

/* ========================================================================== */

.advanced-partner-marquee {
  /* Prefixed */
  position: relative;
  padding: 60px 0px 60px;
  max-width: 100%;
  margin: 0 auto;
}

.apm-header-section {
  /* Prefixed */
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.apm-header-badge {
  /* Prefixed */
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  color: var(--color-text-secondary);
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-normal);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: apm-badgePulse 3s ease-in-out infinite;
  /* Prefixed animation */
}

@keyframes apm-badgePulse {

  /* Prefixed animation name */
  0%,
  100% {
    box-shadow: 0 0 10px var(--badge-shadow-color);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 15px var(--badge-shadow-hover-color);
    transform: scale(1.05);
  }
}

.apm-main-title {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  animation: apm-titleGlow 4s ease-in-out infinite;
  position: relative;
}

.apm-main-title span {
  /* Scope to prefixed parent */
  background: linear-gradient(135deg,
      var(--color-text) 0%,
      var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes apm-titleGlow {

  /* Prefixed animation name */
  0%,
  100% {
    filter: drop-shadow(0 0 5px var(--apm-glow-color));
  }

  50% {
    filter: drop-shadow(0 0 10px var(--apm-glow-color));
  }
}

.apm-subtitle {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  max-width: 800px;
  padding: 1rem 0 2rem;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

.apm-marquee-ecosystem {
  /* Prefixed */
  position: relative;
}

.apm-marquee-row {
  /* Prefixed */
  position: relative;
  overflow: hidden;
  height: 130px;
  display: flex;
  align-items: center;
}

.apm-marquee-track {
  display: flex;
  animation: apm-marqueeFlow var(--apm-marquee-speed) linear infinite;
  will-change: transform;
}

.apm-marquee-row:nth-child(even) .apm-marquee-track {
  animation-direction: reverse;
  animation-delay: calc(var(--apm-marquee-speed) / -3);
}

@keyframes apm-marqueeFlow {

  /* Prefixed animation name */
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.apm-logo-card {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  margin: 0 var(--space-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.apm-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
  z-index: 1;
}

.apm-logo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      var(--apm-glow-color) 50%,
      transparent 100%);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.apm-logo-card:hover {
  transform: translateY(var(--apm-hover-lift)) scale(var(--apm-interaction-scale)) rotateX(3deg);
  z-index: 10;
}

.apm-logo-card:hover::before {
  border-color: var(--color-emphasis-hover);
  box-shadow: var(--apm-shadow-glow);
}

.apm-logo-card:hover::after {
  opacity: 0.7;
}

.apm-logo-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  z-index: 3;
  transition: all 0.4s ease;
}

.apm-logo-card:hover .apm-logo-content {
  transform: translateZ(15px);
}

.apm-logo-image {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.4s ease;
}

.apm-logo-card:hover .apm-logo-image {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .apm-logo-card {
    width: 150px;
    height: 90px;
    margin: 0 var(--space-sm);
  }

  /* Prefixed */
  .apm-header-section {
    margin-bottom: var(--space-xl);
  }

  /* Prefixed */
  .apm-marquee-row {
    /* Prefixed */
    height: 130px;
    margin: var(--space-md) 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .apm-marquee-track,
  /* Prefixed */
  .apm-header-badge,
  /* Target by class for animation */
  .apm-main-title,
  /* Target by class for animation */
  body::before {
    /* body::before is global but its animation apm-gradientShift is prefixed */
    animation: none !important;
  }

  .apm-logo-card {
    transition: none !important;
  }

  /* Prefixed */
}

.apm-logo-card:focus-visible {
  outline: 2px solid var(--color-emphasis);
  outline-offset: 2px;
}

/* Assuming [data-aos] is a global library attribute, not prefixing */
[data-aos] {
  transition-property: transform, opacity;
}

/* ============================================================================================================ */
/* --- "What We Do" Section --- */

.wtd-section {
  padding: 100px 10px 60px;
  color: var(--color-text);
}

.wtd-container {
  max-width: 1100px;
  margin: 0 auto;
}

.wtd-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.wtd-header h1 {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.wtd-header h1 em {
  font-family: "Dancing Script", cursive;
  font-weight: var(--font-weight-normal);
}

.wtd-header p {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;

}

.wtd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.wtd-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wtd-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wtd-item:nth-child(even) .wtd-number {
  order: -1;
}

.wtd-content h2 {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  margin: 0 0 var(--space-xs) 0;
}

.wtd-content .wtd-separator {
  width: 50px;
  height: 3px;
  background-color: var(--color-emphasis);
  margin-bottom: var(--space-lg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wtd-content p {
  font-family: var(--font-family-helvetica);
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
}

.wtd-item .wtd-content>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.wtd-item.is-visible .wtd-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.wtd-item.is-visible .wtd-content .wtd-separator {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
  transform: scaleX(1);
}

.wtd-item.is-visible .wtd-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.wtd-number {
  font-family: var(--font-family-montserrat);
  font-size: clamp(180px, 35vw, 300px);
  font-weight: var(--font-weight-normal);
  line-height: 1;
  text-align: center;
  position: relative;
  background-image: url("https://images.pexels.com/photos/11839512/pexels-photo-11839512.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 130%;
  background-position: center;
  animation: wtd-ken-burns 30s infinite alternate ease-in-out;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wtd-item:hover .wtd-number {
  transform: scale(1.05);
}

.wtd-number::before {
  content: attr(data-text);
}

@keyframes wtd-ken-burns {
  from {
    background-size: 130%;
    background-position: 50% 50%;
  }

  to {
    background-size: 100%;
    background-position: 20% 80%;
  }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .wtd-item {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .wtd-item .wtd-number,
  .wtd-item:nth-child(even) .wtd-number {
    order: 1;
  }

  .wtd-item .wtd-content,
  .wtd-item:nth-child(even) .wtd-content {
    order: 2;
  }

  .wtd-content .wtd-separator {
    margin-left: auto;
    margin-right: auto;
    transform-origin: center;
  }
}

/* ============================================= */
/* --- Our Journey --- */

.journey-header {
  text-align: center;
  padding: 60px 10px;
}

.journey-title {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin: 0;
  color: var(--color-text);
}

.journey-subtitle {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-md);
  margin-top: var(--space-sm);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* --- 3. DESKTOP HORIZONTAL TIMELINE --- */

/* The scrollable area that determines the scroll length */
.journey-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  /* ============= */
}

/* The "Window" - Pinned to the screen, hides overflow */
.timeline-container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* The "Film Strip" - The oversized element that moves */
.timeline-track {
  display: flex;
  align-items: center;
  position: relative;
  gap: 25vw;
  padding: 0 50vw 0 50vw;
  min-width: max-content;
  height: 100%;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-border);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  gap: 5rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: column-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-bottom: var(--space-xl);
  margin-top: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-top: var(--space-xl);
  margin-bottom: 0;
}

.timeline-year {
  font-family: var(--font-family-montserrat);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  color: var(--color-text);
  opacity: 0.9;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-text);
  border-radius: 50%;
  border: 4px solid var(--color-background);
  box-shadow: 0 0 0 2px var(--color-text);
}

.timeline-content {
  text-align: center;
  max-width: 280px;
}

.timeline-content h3 {
  font-family: var(--font-family-helvetica);
  font-weight: var(--font-weight-medium);
  letter-spacing: 2px;
  margin: 0 0 var(--space-md) 0;
  text-transform: uppercase;
  font-size: var(--font-size-md);
}

.timeline-content p {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin: 0;
}

/* --- 4. SMALL SCREEN ADJUSTMENTS (Font Size and Spacing Only) --- */
@media (max-width: 768px) {

  /* Spacing Adjustments */
  .journey-header {
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
  }

  .journey-subtitle {
    margin-top: var(--space-xs);
  }

  .timeline-track {
    gap: 15vw;
    padding: 0 20vw 0 20vw;
  }

  .timeline-item {
    height: 70%;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-bottom: var(--space-md);
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-top: var(--space-md);
  }

  .timeline-content h3 {
    margin: 0 0 var(--space-sm) 0;
  }
}