body {
    margin:0;
  }
  
.overlay {
    position: sticky;
    height: 100vh;
    top: 0;
  }
  
  .text {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content:center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
  }
  
.text-inner {
    transform: translatex(50vw);
    font-size: 2rem;
    color: white !important;
    width: 80%;
    max-width: 100%;
    padding: 0 10%;
    box-sizing: border-box;
    line-height: 1.4; /* Better readability */
}

.spacer {
  height: 1.5rem;
}


/* Mobile adjustments (gentle refinements) */
@media (max-width: 768px) {
    .text-inner {
        font-size: 1.4rem; /* Slightly larger than 1..
        02rem for better legibility */
        transform: none;
        width: 90%; /* Slightly wider than 80% for mobile */
        padding: 0 5%; /* Balanced padding */
        margin: 0 auto;
        text-align: center;
    }

    /* Fix <br> spacing issues */
    .text-inner br {
        display: none; /* Hide <br> tags (spacing handled by line-height) */
    }

    /* Better strong tag styling */
    .text-inner strong {
        display: block;
        margin-top: 8px; /* Slightly more breathing room */
        font-size: 1.5rem; /* Emphasize the punchline */
        line-height: 1.3; /* Tighter spacing for the bold line */
    }

    .spacer {
  height: 1.5rem;
}

  }
  .track{ 
   height: 100vh;
  }
  
  .gradient {
    background: linear-gradient(
      255deg,
      #efe8de,
      #efe8de 40%,
      #efe8de 60%,
      #f1e7dd
    );
      z-index: -1;
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0%;
      bottom: 0%;
      left: 0%;
      right: 0%;
  }
  
  .shape {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    mix-blend-mode: color-burn;
    background: #efe8de;
  }
  
  .shape .img {
    width: 20rem;
    height: 20rem;
    transform: rotate(45deg);
    position: relative;
    overflow: hidden;
  }
  
  .shape .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    display: block;
    image-rendering: auto;          /* default, for high-res PNGs */
    image-rendering: crisp-edges;   /* optional: forces sharp edges on some browsers */
  }
  
  
  .overlay {
    overflow: hidden;
  }