/* ============================================
   SCROLL-TRIGGERED IMAGE REVEAL
   Images pinned, text scrolls and triggers
   ============================================ */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%); /* Match animated-bg gradient */
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh; /* Ensure body covers full height */
  }
  
  html {
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%); /* Match animated-bg gradient */
  }
  
  /* ============================================
     SECTION STRUCTURE
     ============================================ */
  
  .scroll-container {
    position: relative;
  }
  
  .section-slide {
    height: 150vh; /* Scroll room for text to move through */
    position: relative;
    overflow: hidden; /* Keep hidden for main container */
    background: transparent !important;
  }
  
  
  
  
  /* ============================================
     HERO BANNER SECTION
     ============================================ */
  
  .hero-banner {
    height: 100vh !important; /* BACK TO 100vh */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Remove all the extra stuff */
  }
  
  .banner-content {
    text-align: center;
    z-index: 2;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    /* No transforms needed */
  }
  
  /* ============================================
     SPACER - Creates buffer without affecting triggers
     ============================================ */
  
  .hero-spacer {
    height: 40vh; /* Adjust this value for desired spacing */
    width: 100%;
    background: transparent;
    pointer-events: none;
  }
  
  .banner-title-with-logo {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .banner-logo-inline {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(168, 85, 247, 0.4));
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  
  .banner-title {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  }
  
  .banner-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 80px;
    font-weight: 400;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  }
  
    .scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both, bounce 2s ease-in-out 2s infinite;
      cursor: pointer;
    }
  
  .scroll-indicator i {
    font-size: 1.5rem;
  }
  
  /* ============================================
     PINNED VIEWPORT - Contains pinned image
     ============================================ */
  
  .pinned-viewport {
    position: sticky; /* Stays in viewport */
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible; /* Allow text to scroll through and prevent clipping */
    padding: 0 5%;
    pointer-events: none; /* Allow scrolling through */
  }
  
  .pinned-viewport > * {
    pointer-events: auto; /* Re-enable for children */
  }
  
  /* ============================================
     TEXT TRACK - SCROLLS UP (not pinned)
     ============================================ */
  
  .text-track {
    position: relative;
    left: clamp(40px, 8vw, 120px); /* Shifts it right */
    width: 55%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 100vh;
    padding: 50vh 0;
    z-index: 2;
    overflow: visible; /* Prevent text clipping */
  }
  .text-block {
    min-height: 80vh; /* Smaller blocks for tighter control */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
  }
  
  /* ============================================
     CHARACTER PROFILE - GTA VI STYLE
     ============================================ */
  
  .character-profile {
    animation: fadeIn 0.6s ease-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .character-name {
    font-size: clamp(4.2rem, 6vw, 5.6rem);
    font-weight: 900;
    color: #f8f9fa;
    letter-spacing: 0.055em;
    line-height: 1;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-shadow: 0 5px 26px rgba(0, 0, 0, 0.55);
  }
  
  .character-headline {
    font-size: clamp(2.4rem, 3.6vw, 3.1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 26px;
    letter-spacing: -0.012em;
  }
  
  .gradient-text {
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }
  
  .character-story {
    font-size: clamp(1.25rem, 1.5vw, 1.45rem);
    line-height: 1.85;
    color: #ffffff;
    font-weight: 400;
    max-width: 780px;
    letter-spacing: 0.012em;
  }
  
  /* ============================================
     HEADLINE PILL - Left positioned with gradient text
     ============================================ */
  
  .headline-pill-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .headline-pill {
    display: inline-block;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .pill-gradient-text {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }
  
  /* ============================================
     STORY PARAGRAPHS WITH HEADINGS
     ============================================ */
  
  .story-paragraph {
    margin-bottom: 40px;
  }
  
  /* ============================================
     IMAGE CONTAINER - PINNED IN VIEWPORT
     ============================================ */
  
  .fixed-image-container {
    position: fixed;
  
    top: clamp(40px, 6vh, 80px);
    bottom: clamp(40px, 6vh, 80px);
    right: clamp(120px, 10vw, 240px);
  
    width: clamp(300px, 26vw, 36vw);
    height: auto;
    display: flex;
    flex-direction: column;
  
    z-index: 3;
    pointer-events: none;
  }
  
  
  .image-wrapper {
    width: 100%;
    height: 100%;
    clip-path: inset(100% 0 0 0); /* Start hidden */
    will-change: clip-path;
    position: relative;
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  
  /* Desktop images - show by default, hide on mobile */
  .image-wrapper .desktop-image {
    display: block;
  }
  
  .image-wrapper .mobile-image {
    display: none;
  }
  
  /* Ensure no fade on desktop */
  .image-wrapper::after {
    display: none;
  }
  
  /* Image name styling - desktop */
  .image-name {
    display: none; /* Hidden on desktop */
  }
  
  /* ============================================
     BACKGROUND ELEMENTS
     ============================================ */
  
  /* Full-screen interstitial page */
  .interstitial-slide{
    position: relative;
    height: 250vh;                /* scroll time (increase if needed) */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
  
   }
  
  /* Mobile-only interstitial - hidden on desktop */
  .mobile-only-interstitial {
    display: none;
  }
  
  /* Keep text centered for the duration */
  .interstitial-text{
    position: sticky;
     display: inline-block;
    text-align: center;
    top:50%;
    transform: translateY(-50%);
  
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    color: #ffffff;
    opacity: 0.4;
  }
  
  
  
  .radial-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
  }
  
  /* Background images - positioned and styled */
  .bg-image {
    position: absolute;
    opacity: 0.70; /* Subtle background image */
    pointer-events: none;
    z-index: 0;
    width: 30%;
    height: 30%;
    overflow: visible;
    top:35%;
  }
  
  .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(50%) brightness(0.6);
  }
  
  /* ============================================
     PROGRESS BAR
     ============================================ */
  
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #a855f7);
    width: 0%;
    transition: width 0.1s ease-out;
  }
  
  /* ============================================
     NAVIGATION DOTS
     ============================================ */
  
  .nav-controls {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9998;
  }
  
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .nav-dot:hover::after,
  .nav-dot.active::after {
    opacity: 1;
  }
  
  .nav-dot.active {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  }
  
  /* ============================================
     END PROMPT
     ============================================ */
  
  .volunteer-prompt {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px 50px;
    border-radius: 20px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    z-index: 10001;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  
  .volunteer-prompt.show {
    display: flex;
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  
  .prompt-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
  }
  
  .prompt-actions {
    display: flex;
    gap: 15px;
  }
  
  .btn-pill {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff !important;
    border: none;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  /* ============================================
     PAGE LOAD BLUR EFFECT - Section 1
     ============================================ */
  
  /* ============================================
     ANIMATIONS
     ============================================ */
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  
  
  /* ============================================
     ANIMATED GRADIENT BACKGROUND - Blue Tones
     ============================================ */
  
  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use vh instead of % for better coverage */
    min-height: 100%; /* Ensure it covers at least full viewport */
    z-index: -1;
    background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
  }
  
  
  
  /* ============================================
     DESKTOP: DIFFERENT SECTION HEIGHTS
     Each section has its own scroll duration
     ============================================ */
  
  @media (min-width: 1024px) {
  
    /* Section 0: Hero / Intro – desktop controls */
    .section-slide[data-section="0"],
    .section-slide.hero-banner[data-section="0"] {
      height: 130vh !important;
   
    }
  
  
  
    /* Section 1: Platform Overview */
    .section-slide[data-section="1"] {
      height: 150vh;
      overflow: visible;
    }
    
    .section-slide[data-section="1"] .text-track {
      padding: 50vh 0 60vh 0;
    }
    
    .section-slide[data-section="1"] .pinned-viewport {
      overflow: visible;
    }
  
    /* Section 2: ROI Calculator */
    .section-slide[data-section="2"] {
      height: 150vh;
      overflow: visible;
    }
    
    .section-slide[data-section="2"] .text-track {
      padding: 50vh 0 60vh 0;
    }
    
    .section-slide[data-section="2"] .pinned-viewport {
      overflow: visible;
    }
  
    /* Section 3: Dashboard */
    .section-slide[data-section="3"] {
      height: 170vh;
      overflow: visible;
    }
    
    .section-slide[data-section="3"] .text-track {
      padding: 50vh 0 60vh 0;
    }
    
  
    /* Shorter spacers and interstitials on desktop */
    .hero-spacer {
      height: 28vh;
    }
  
    .interstitial-slide {
      height: 180vh;
    }
  }
  
  .hero-banner {
    height: 100vh !important;
    background: transparent !important;
  }
  
  .end-spacer{
    height: 400vh;  /* 100vh is fine too – 120 gives breathing room */
  }
  
  
  
  
  
  /* ============================================
     ROI CALCULATOR
     ============================================ */
  
  .roi-calculator-container {
      width: 100%;
      height: auto;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }
  
  .calculator-panel {
      background: rgba(255, 255, 255, 0.92);
      padding: 20px;
      border-radius: 14px;
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 560px;
      box-sizing: border-box;
      margin: 0 auto;
      position: relative;
      height: fit-content;
  }
  
  .calculator-inputs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 14px;
  }
  
  @media (max-width: 1400px) {
      .calculator-inputs {
          grid-template-columns: 1fr;
      }
  }
  
  .input-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }
  
  .input-label {
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      display: flex;
      align-items: center;
      gap: 6px;
  }
  
  .info-icon {
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: help;
      color: #6366f1;
      font-size: 11px;
      transition: color 0.2s ease;
  }
  
  .info-icon:hover {
      color: #4f46e5;
  }
  
  .info-icon i {
      font-size: 12px;
  }
  
  .info-icon::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 8px;
      padding: 8px 12px;
      background: rgba(15, 23, 42, 0.95);
      color: #ffffff;
      font-size: 11px;
      font-weight: 400;
      line-height: 1.4;
      border-radius: 8px;
      white-space: normal;
      width: 220px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      transform: translateX(-50%) translateY(-4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
  }
  
  .info-icon:hover::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
  }
  
  .info-icon::before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 2px;
      border: 5px solid transparent;
      border-top-color: rgba(15, 23, 42, 0.95);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 1001;
  }
  
  .info-icon:hover::before {
      opacity: 1;
  }
  
  .input-field {
      width: 100%;
      padding: 8px 12px;
      border: 1.5px solid rgba(99, 102, 241, 0.2);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      background: white;
      color: #1a1a1a;
      transition: all 0.3s ease;
  }
  
  .input-field:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
  }
  
  .calculator-results {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
  }
  
  .result-card {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
      padding: 8px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(99, 102, 241, 0.2);
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
      align-items: center;
      aspect-ratio: 1;
      min-height: 58px;
  }
  
  /* Desktop: 3-Year ROI card – center in column (avoid stretch, center content) */
  @media (min-width: 1024px) {
      .calculator-results .result-card:last-child {
          align-self: center;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
      }
  }
  
  .result-value {
      font-size: 1.35rem;
      font-weight: 800;
      color: #6366f1;
      line-height: 1.2;
  }
  
  .result-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.02em;
  }
  
  .calculator-disclaimer {
      font-size: 0.7rem;
      color: #6b7280;
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
  }
  
  /* ===== Fix ROI calculator floating globally ===== */
  .section-slide[data-section="2"] .fixed-image-container {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 48%;
    max-height: none;
    height: auto;
    z-index: 2;
    pointer-events: auto;
  }
  
  .section-slide[data-section="2"] .text-track {
    width: 52%;
  }
  
  /* keep the calculator nicely contained */
  .section-slide[data-section="2"] .roi-calculator-container{
    height: auto;
    overflow: visible;
    max-width: 100%;
  }
  
  /* Mobile override for section 2 calculator */
  @media (max-width: 1024px) {
    .section-slide[data-section="2"] .fixed-image-container {
      width: 100% !important;
      max-width: 100% !important;
      position: relative !important;
      top: auto !important;
      right: auto !important;
      bottom: auto !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: flex-start !important;
      margin: 0 auto !important;
      height: auto !important;
      min-height: auto !important;
      overflow: visible !important;
      clip-path: none !important;
    }
    
    .section-slide[data-section="2"] .text-track {
      width: 100% !important;
      left: 0 !important;
    }
    
    .section-slide[data-section="2"] .roi-calculator-container {
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      padding: 0 !important;
      height: auto !important;
      overflow: visible !important;
    }
    
    .section-slide[data-section="2"] .calculator-panel {
      width: 100% !important;
      max-width: 100% !important;
      display: block !important;
    }
  }
  
  /* ============================================
     RESPONSIVE BREAKPOINTS
     ============================================ */
  
  /* Large Desktop (1440p and above) - Original 4K design */
  @media (min-width: 2560px) {
    .fixed-image-container {
      width: clamp(400px, 30vw, 500px);
      right: clamp(80px, 8vw, 200px);
    }
    
    .text-track {
      left: clamp(60px, 10vw, 150px);
      max-width: 900px;
    }
  }
  
  /* Standard Desktop (1080p) - Most common laptop resolution */
  @media (min-width: 1920px) and (max-width: 2559px) {
    .fixed-image-container {
      width: clamp(280px, 24vw, 32vw);
      right: clamp(60px, 6vw, 120px);
      top: clamp(30px, 5vh, 60px);
      bottom: clamp(30px, 5vh, 60px);
    }
    
    .text-track {
      left: clamp(30px, 5vw, 80px);
      max-width: 700px;
      padding: 40vh 0;
    }
    
    .character-name {
      font-size: clamp(3.5rem, 5vw, 4.8rem);
    }
    
    .character-headline {
      font-size: clamp(2rem, 3vw, 2.8rem);
    }
    
    .character-story {
      font-size: clamp(1.1rem, 1.3vw, 1.35rem);
    }
    
    .banner-title-with-logo {
      font-size: clamp(4.5rem, 8vw, 5.5rem);
    }
    
    .banner-logo-inline {
      height: clamp(90px, 8vh, 110px);
    }
    
    .banner-subtitle {
      font-size: clamp(1.3rem, 2vw, 1.45rem);
    }
  }
  
  /* Tablet Landscape / Small Desktop (1024px - 1919px) */
  @media (min-width: 1024px) and (max-width: 1919px) {
    .fixed-image-container {
      width: clamp(250px, 28vw, 30vw);
      right: clamp(40px, 4vw, 80px);
      top: clamp(20px, 4vh, 50px);
      bottom: clamp(20px, 4vh, 50px);
    }
    
    .text-track {
      left: clamp(20px, 3vw, 60px);
      max-width: 600px;
      padding: 35vh 0;
    }
    
    .character-name {
      font-size: clamp(3rem, 4.5vw, 4rem);
    }
    
    .character-headline {
      font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    }
    
    .character-story {
      font-size: clamp(1rem, 1.2vw, 1.25rem);
    }
    
    .banner-title-with-logo {
      font-size: clamp(4rem, 7vw, 5rem);
    }
    
    .banner-logo-inline {
      height: clamp(80px, 7vh, 100px);
    }
    
    .banner-subtitle {
      font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    }
    
    .section-slide {
      height: 140vh;
    }
    
    .radial-glow {
      width: clamp(400px, 50vw, 600px);
      height: clamp(400px, 50vw, 600px);
    }
  }
  
  /* Tablet Portrait / Mobile Landscape (768px - 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .pinned-viewport {
      position: relative;
      flex-direction: column;
      height: auto;
      padding: 80px 5% 60px;
      gap: 50px;
    }
    
    .text-track {
      left: 0 !important;
      width: 100%;
      max-width: 100%;
      gap: 50px;
      padding: 0;
    }
    
    .fixed-image-container {
      position: relative;
      top: auto;
      right: auto;
      width: 100%;
      max-width: 500px;
      height: auto;
      min-height: 500px;
      margin: 0 auto;
    }
    
    .image-wrapper {
      clip-path: none !important;
      height: auto;
      min-height: auto;
      max-height: none;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .image-wrapper img {
      object-fit: contain;
      width: 100%;
      height: auto;
      max-width: 100%;
    }
    
    /* Show mobile images, hide desktop images on tablet/mobile */
    .image-wrapper .desktop-image {
      display: none !important;
    }
    
    .image-wrapper .mobile-image {
      display: block !important;
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: center;
    }
    
    .character-name {
      font-size: 2.8rem;
    }
    
    .character-headline {
      font-size: 1.6rem;
    }
    
    .character-story {
      font-size: 1.05rem;
    }
    
    .banner-title-with-logo {
      font-size: 3.5rem;
      gap: 20px;
    }
    
    .banner-logo-inline {
      height: 70px;
    }
    
    .banner-subtitle {
      font-size: 1.15rem;
    }
    
    .section-slide {
      height: auto;
      min-height: 100vh;
    }
    
    .bg-image {
      display: none !important;
    }
    
    .nav-controls {
      display: none;
    }
  }
  
  /* ============================================
     RESPONSIVE BREAKPOINTS
     Mobile-first scaling: 400px → 768px → 1023px → 1024px+ (tablet/desktop)
     ============================================ */
  
  /* Large Desktop (1440p and above) - Original 4K design */
  @media (min-width: 2560px) {
    .fixed-image-container {
      width: clamp(400px, 30vw, 500px);
      right: clamp(80px, 8vw, 200px);
    }
    
    .text-track {
      left: clamp(60px, 10vw, 150px);
      max-width: 900px;
    }
  }
  
  /* Standard Desktop (1080p) - Most common laptop resolution */
  @media (min-width: 1920px) and (max-width: 2559px) {
    .fixed-image-container {
      width: clamp(280px, 24vw, 32vw);
      right: clamp(60px, 6vw, 120px);
      top: clamp(30px, 5vh, 60px);
      bottom: clamp(30px, 5vh, 60px);
    }
    
    .text-track {
      left: clamp(30px, 5vw, 80px);
      max-width: 700px;
      padding: 40vh 0;
    }
    
    .character-name {
      font-size: clamp(3.5rem, 5vw, 4.8rem);
    }
    
    .character-headline {
      font-size: clamp(2rem, 3vw, 2.8rem);
    }
    
    .character-story {
      font-size: clamp(1.1rem, 1.3vw, 1.35rem);
    }
    
    .banner-title-with-logo {
      font-size: clamp(4.5rem, 8vw, 5.5rem);
    }
    
    .banner-logo-inline {
      height: clamp(90px, 8vh, 110px);
    }
    
    .banner-subtitle {
      font-size: clamp(1.3rem, 2vw, 1.45rem);
    }
  }
  
  /* Tablet Landscape / Small Desktop (1024px - 1919px) */
  @media (min-width: 1024px) and (max-width: 1919px) {
    .fixed-image-container {
      width: clamp(250px, 28vw, 30vw);
      right: clamp(40px, 4vw, 80px);
      top: clamp(20px, 4vh, 50px);
      bottom: clamp(20px, 4vh, 50px);
    }
    
    .text-track {
      left: clamp(20px, 3vw, 60px);
      max-width: 600px;
      padding: 35vh 0;
    }
    
    .character-name {
      font-size: clamp(3rem, 4.5vw, 4rem);
    }
    
    .character-headline {
      font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    }
    
    .character-story {
      font-size: clamp(1rem, 1.2vw, 1.25rem);
    }
    
    .banner-title-with-logo {
      font-size: clamp(4rem, 7vw, 5rem);
    }
    
    .banner-logo-inline {
      height: clamp(80px, 7vh, 100px);
    }
    
    .banner-subtitle {
      font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    }
    
    .section-slide {
      height: 140vh;
    }
    
    .radial-glow {
      width: clamp(400px, 50vw, 600px);
      height: clamp(400px, 50vw, 600px);
    }
  }
  
  /* Tablet Portrait / Mobile Landscape (768px - 1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .pinned-viewport {
      position: relative;
      flex-direction: column;
      height: auto;
      padding: 80px 5% 60px;
      gap: 50px;
    }
    
    .text-track {
      left: 0 !important;
      width: 100%;
      max-width: 100%;
      gap: 50px;
      padding: 0;
    }
    
    .fixed-image-container {
      position: relative;
      top: auto;
      right: auto;
      width: 100%;
      max-width: min(500px, 92vw);
      height: auto;
      min-height: clamp(320px, 50vh, 500px);
      margin: 0 auto;
    }
    
    .image-wrapper {
      clip-path: none !important;
      height: 100%;
    }
    
    .image-wrapper img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
    
    /* Show mobile images, hide desktop images on tablet/mobile */
    .image-wrapper .desktop-image {
      display: none !important;
    }
    
    .image-wrapper .mobile-image {
      display: block !important;
    }
    
    .character-name {
      display: none !important;
    }
    
    .character-headline {
      font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }
    
    .character-story {
      font-size: clamp(1rem, 2.5vw, 1.05rem);
    }
    
    .banner-title-with-logo {
      font-size: clamp(3rem, 8vw, 3.5rem);
      gap: clamp(12px, 3vw, 20px);
    }
    
    .banner-logo-inline {
      height: clamp(60px, 14vw, 70px);
    }
    
    .banner-subtitle {
      font-size: clamp(1rem, 2.8vw, 1.15rem);
    }
    
    .section-slide {
      height: auto;
      min-height: 100vh;
    }
    
    .bg-image {
      display: none !important;
    }
    
    .nav-controls {
      display: none;
    }
  }
  
  /* Mobile / TABLET RESPONSIVE */
  @media (max-width: 1023px) {
  
    /* --------------------------------------------
       HIDE BG-IMAGE ON MOBILE
       -------------------------------------------- */
    
    .bg-image {
      display: none !important;
    }
  
    /* Scale down radial glow on small viewports */
    .radial-glow {
      width: clamp(280px, 80vw, 600px);
      height: clamp(280px, 80vw, 600px);
    }
  
    /* --------------------------------------------
       HERO BANNER
       -------------------------------------------- */
  
    .banner-content {
      padding: 0 8%;
    }
  
    .banner-title-with-logo {
      font-size: clamp(3rem, 12vw, 5rem);
      gap: clamp(12px, 4vw, 25px);
    }
  
    .banner-logo-inline {
      height: clamp(60px, 18vw, 100px);
    }
  
    .banner-title {
      font-size: clamp(3rem, 12vw, 5rem);
    }
  
    .banner-subtitle {
      font-size: clamp(1rem, 3.5vw, 1.4rem);
      max-width: 90%;
    }
  
    /* --------------------------------------------
       SECTIONS & LAYOUT
       -------------------------------------------- */
  
    .section-slide {
      height: auto;
      min-height: auto;
      padding-bottom: 0;
      margin-bottom: 0;
    }
  
    .pinned-viewport {
      position: relative;
      flex-direction: column;
      height: auto;
      padding: 40px 5% 0;
      gap: 30px;
      min-height: auto;
      margin-bottom: 0;
    }
  
    .text-track {
      left: 0 !important;     /* undo desktop shift */
      width: 100%;
      max-width: 100%;
      gap: 40px;
      padding: 0;
    }
  
    .text-block {
      min-height: auto;
      padding: 0;
      margin: 0;
    }
    
    .character-profile {
      width: 100%;
      padding: 0;
      margin: 0;
    }
  
    /* --------------------------------------------
       TYPOGRAPHY
       -------------------------------------------- */
  
    .character-name {
      display: none !important;
      margin: 0;
      padding: 0;
    }
  
    .character-headline {
      font-size: clamp(1.4rem, 4.5vw, 1.8rem);
      margin-top: 0;
      margin-bottom: 20px;
    }
  
    /* Remove extra margin from first headline when character-name is hidden */
    .character-profile > .character-headline:first-of-type {
      margin-top: 0;
    }
  
    .character-story {
      font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    }
  
    /* Headline pill - mobile */
    .headline-pill-container {
      justify-content: flex-start;
      margin-bottom: 16px;
    }
  
    .headline-pill {
      padding: 8px 18px;
      font-size: clamp(0.85rem, 2.2vw, 1rem);
    }
  
    .story-paragraph {
      margin-bottom: 30px;
    }
  
    /* --------------------------------------------
       IMAGE
       -------------------------------------------- */
  
    .fixed-image-container {
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      width: 100%;
      max-width: min(450px, 92vw);
      height: auto;
      min-height: auto;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      padding: 0;
      overflow: visible; /* Ensure text names are not clipped */
    }
  
    .image-wrapper {
      clip-path: none !important;
      height: auto;
      min-height: clamp(280px, 55vh, 600px);
      max-height: min(600px, 85vh);
      width: 100%;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    
    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    
    /* Show mobile images, hide desktop images on mobile */
    .image-wrapper .desktop-image {
      display: none !important;
    }
    
    .image-wrapper .mobile-image {
      display: block !important;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    
    /* Section 2: Hide image-wrapper if it exists, show calculator instead */
    .section-slide[data-section="2"] .image-wrapper {
      display: none !important;
    }
    
    .section-slide[data-section="2"] .roi-calculator-container {
      display: flex !important;
      opacity: 0;
      transform: translateY(30px);
      /* GSAP fade-in on scroll animates to opacity: 1, y: 0 */
    }
    
    /* Image name styling - mobile - show under picture */
    .image-name {
      display: block !important;
      visibility: visible !important;
      margin-top: clamp(12px, 3vw, 20px);
      margin-bottom: clamp(12px, 3vw, 20px);
      padding: 0 clamp(12px, 4vw, 20px); /* Increased padding to prevent clipping */
      text-align: center;
      font-size: clamp(0.8rem, 2.5vw, 0.95rem);
      font-weight: 600;
      color: #ffffff;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.95;
      line-height: 1.6; /* Increased line-height for better spacing */
      width: 100%;
      box-sizing: border-box;
      flex-shrink: 0;
      min-height: auto; /* Changed from 1.5em to auto to allow wrapping */
      word-wrap: break-word; /* Allow long words to break */
      overflow-wrap: break-word; /* Modern property for word breaking */
      hyphens: auto; /* Allow hyphenation if needed */
      overflow: visible; /* Ensure text is not clipped */
    }
  
    /* --------------------------------------------
       UI ELEMENTS
       -------------------------------------------- */
  
    .nav-controls {
      display: none;
    }
  
    .volunteer-prompt {
      position: relative;
      bottom: auto;
      left: auto;
      transform: none;
      margin: 40px 20px;
      padding: clamp(20px, 5vw, 30px) clamp(16px, 4vw, 40px);
    }
  
    /* --------------------------------------------
       ROI CALCULATOR RESPONSIVE
       -------------------------------------------- */
  
    .section-slide[data-section="2"] .pinned-viewport {
      gap: 30px !important;
      padding-bottom: 40px !important;
    }
  
    .roi-calculator-container {
      padding: 0 !important;
      overflow-y: visible !important;
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 6px;
    }
    
    .calculator-panel {
      padding: 12px;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }
    
    .calculator-inputs {
      grid-template-columns: 1fr;
      gap: 6px;
      margin-bottom: 8px;
    }
    
    .calculator-inputs .input-group {
      gap: 2px;
    }
    
    .calculator-results {
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
      margin-bottom: 8px;
    }
    
    .result-card {
      padding: 2px;
      aspect-ratio: 1;
      min-height: 30px;
      gap: 2px;
    }
    
    .result-value {
      font-size: 1rem;
    }
    
    .result-label {
      font-size: 0.65rem;
    }
  
    /* --------------------------------------------
       INTERSTITIAL SLIDES
       -------------------------------------------- */
  
    .interstitial-slide {
      height: auto;
      min-height: 100vh;
    }
  
    /* Show mobile-only interstitial on mobile */
    .mobile-only-interstitial {
      display: flex;
    }
  
    .interstitial-text {
      position: relative;
      top: auto;
      transform: none;
      font-size: clamp(4rem, 14vw, 8rem);
      letter-spacing: -0.04em;
      padding: 60px 20px;
      white-space: normal;
      word-break: break-word;
      color: #ffffff;
      opacity: 1;
    }
  
    /* Ensure mobile-only interstitial text is fully opaque */
    .mobile-only-interstitial .interstitial-text {
      opacity: 1 !important;
    }
  
    /* --------------------------------------------
       HERO SPACER
       -------------------------------------------- */
  
    .hero-spacer {
      height: 0vh;   /* or 0 if you want it tight */
    }
  
  
  /* --------------------------
     SECTION HEIGHTS (mobile)
     -------------------------- */
  
  /* Hero Banner */
  .section-slide[data-section="0"],
  .hero-banner {
    height: 90vh;
    overflow: hidden !important; /* Keep overflow hidden for hero to prevent sticking */
  }
  
  /* Intro / Who we are */
  .section-slide[data-section="1"] {
    height: auto;
    min-height: auto;
    overflow: visible !important; /* Prevent clipping of image names */
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  /* Interstitial 1-2 */
  .interstitial-slide[data-between="1-2"] {
    height: 50vh;
    min-height: 260px;
  }
  
  /* Our Story / ROI Section */
  .section-slide[data-section="2"] {
    height: auto;
    min-height: auto;
    overflow: visible !important; /* Prevent clipping of image names */
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  /* Interstitial 2-3 */
  .interstitial-slide[data-between="2-3"] {
    height: 45vh;
    min-height: 260px;
  }
  
  /* The Problem */
  .section-slide[data-section="3"] {
    height: auto;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  /* Interstitial 3-4: HOW IT WORKS */
  .interstitial-slide[data-between="3-4"] {
    height: 45vh;
    min-height: 260px;
  }
  
  /* How it works */
  .section-slide[data-section="4"] {
    height: auto;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  /* Interstitial 4-5: OUR IMPACT */
  .interstitial-slide[data-between="4-5"] {
    height: 45vh;
    min-height: 260px;
  }
  
  /* Impact */
  .section-slide[data-section="5"] {
    height: auto;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  
  /* --------------------------
     MOBILE: SIMPLE TOP-ONLY FIX
     (moves the interstitial title up)
     -------------------------- */
  @media (max-width: 768px) {
    .interstitial-slide {
      min-height: 100px !important; /* Further reduced to close gap more */
      padding: 10px 0;
      overflow: visible !important;
    }
    
    .interstitial-slide .interstitial-text {
      position: relative;
      top: 0;
      margin-top: 0; /* Removed margin to close gap further */
      z-index: 1;
      padding-bottom: 20px;
    }
    
    .interstitial-slide .bg-image {
      display: none; /* Hide bg-image on mobile */
    }
    
    .interstitial-slide .bg-image img {
      display: none; /* Hide bg-image on mobile */
    }
  
    /* Specific overrides for all interstitial slides to close gap */
    .mobile-only-interstitial[data-between="0-1"] {
      height: auto !important;
      min-height: 100px !important;
    }
  
    .interstitial-slide[data-between="1-2"] {
      height: auto !important;
      min-height: 100px !important; /* Further reduced to close gap more */
    }
  
    .interstitial-slide[data-between="2-3"] {
      height: auto !important;
      min-height: 100px !important; /* Reduced to close gap */
    }
  
    .interstitial-slide[data-between="3-4"] {
      height: auto !important;
      min-height: 100px !important; /* Reduced to close gap */
    }
  
    .interstitial-slide[data-between="4-5"] {
      height: auto !important;
      min-height: 100px !important; /* Reduced to close gap */
    }
    
    /* Fix spacing before section 2 (ROI section) */
    .section-slide[data-section="2"] {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
    
    /* Ensure calculator section has proper spacing */
    .section-slide[data-section="2"] .pinned-viewport {
      margin-top: 0 !important;
      padding-top: 40px !important;
    }
  
  
  
  
    /* --------------------------------------------
       HERO
       -------------------------------------------- */
  
    .banner-content {
      padding: 0 6%;
    }
  
    .banner-title-with-logo {
      font-size: 3.5rem;
      gap: 20px;
      flex-direction: column;
    }
  
    .banner-logo-inline {
      height: 80px;
    }
  
    .banner-title {
      font-size: 3.5rem;
    }
  
    .banner-subtitle {
      font-size: 1.2rem;
      max-width: 95%;
    }
  
    /* --------------------------------------------
       TEXT
       -------------------------------------------- */
  
    .character-name {
      font-size: 2.5rem;
      margin-bottom: 25px;
    }
  
    .character-headline {
      font-size: 1.4rem;
    }
  
    .character-story {
      font-size: 1rem;
    }
  
    /* --------------------------------------------
       IMAGE
       -------------------------------------------- */
  
    .fixed-image-container {
      height: auto;
      min-height: auto;
      padding: 0;
      gap: 0;
    }
    
    .image-wrapper {
      height: auto;
      min-height: auto;
      max-height: none;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .image-wrapper img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
    }
    
    .image-wrapper .mobile-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: center;
    }
    
    .image-name {
      display: block !important;
      visibility: visible !important;
      font-size: clamp(0.8rem, 2.5vw, 0.9rem);
      margin-top: clamp(12px, 3vw, 18px);
      margin-bottom: clamp(12px, 3vw, 18px);
      padding: 0 clamp(12px, 4vw, 20px); /* Increased padding to prevent clipping */
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      min-height: auto; /* Changed from 1.5em to auto to allow wrapping */
      flex-shrink: 0;
      line-height: 1.6; /* Added line-height for better spacing */
      word-wrap: break-word; /* Allow long words to break */
      overflow-wrap: break-word; /* Modern property for word breaking */
      hyphens: auto; /* Allow hyphenation if needed */
      overflow: visible; /* Ensure text is not clipped */
    }
    
    .pinned-viewport {
      padding: clamp(30px, 6vh, 50px) 4% 0;
      gap: clamp(24px, 5vh, 32px);
      margin-bottom: 0;
    }
    
    /* Section 2 specific spacing fix */
    .section-slide[data-section="2"] .pinned-viewport {
      padding: 50px 4% 40px !important;
      gap: 30px !important;
      min-height: auto !important;
    }
    
    .section-slide[data-section="2"] .text-block {
      min-height: auto !important;
      padding: 0 !important;
    }
  
    /* --------------------------------------------
       INTERSTITIAL TEXT - Smaller
       -------------------------------------------- */
  
    .interstitial-text {
      font-size: clamp(2.5rem, 10vw, 6rem);
      color: #ffffff;
      opacity: 1;
    }
  
    /* Ensure mobile-only interstitial text is fully opaque */
    .mobile-only-interstitial .interstitial-text {
      opacity: 1 !important;
    }
    
    /* ROI Calculator Mobile - Section 2 specific */
    .section-slide[data-section="2"] .roi-calculator-container {
      padding: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      display: block !important;
      overflow: visible !important;
      gap: 6px;
    }
    
    .section-slide[data-section="2"] .calculator-panel {
      padding: 10px;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
    }
    
    .section-slide[data-section="2"] .calculator-inputs {
      gap: 5px;
      margin-bottom: 6px;
    }
    
    .section-slide[data-section="2"] .calculator-inputs .input-group {
      gap: 2px;
    }
    
    .section-slide[data-section="2"] .calculator-results {
      grid-template-columns: repeat(2, 1fr);
      gap: 4px;
      margin-bottom: 6px;
    }
    
    .section-slide[data-section="2"] .result-card {
      padding: 2px;
      aspect-ratio: 1;
      min-height: 26px;
      gap: 2px;
    }
    
    .section-slide[data-section="2"] .result-value {
      font-size: 0.95rem;
    }
    
    .section-slide[data-section="2"] .result-label {
      font-size: 0.6rem;
    }
    
    .section-slide[data-section="2"] .calculator-disclaimer {
      font-size: 0.65rem;
      margin-top: 8px;
    }
    
    .section-slide[data-section="2"] .fixed-image-container {
      display: flex !important;
    }
    
    .info-icon::after {
      width: 180px;
      font-size: 10px;
      padding: 6px 10px;
    }
  } /* Close @media (max-width: 768px) */
  
  } /* Close @media (max-width: 1023px) */
  
  /* ============================================
     SMALL MOBILE (≤400px) - e.g. iPhone SE, narrow Android
     ============================================ */
  @media (max-width: 400px) {
    .banner-content {
      padding: 0 5%;
    }
  
    .banner-title-with-logo {
      font-size: clamp(2.25rem, 11vw, 3rem);
      gap: 10px;
      flex-direction: column;
    }
  
    .banner-logo-inline {
      height: clamp(50px, 22vw, 70px);
    }
  
    .banner-title {
      font-size: clamp(2.25rem, 11vw, 3rem);
    }
  
    .banner-subtitle {
      font-size: clamp(0.9rem, 4vw, 1.1rem);
      max-width: 100%;
    }
  
    .character-name {
      display: none !important;
      margin: 0;
      padding: 0;
    }
  
    .character-headline {
      font-size: clamp(1.15rem, 5vw, 1.35rem);
      margin-top: 0;
      margin-bottom: 18px;
    }
  
    /* Remove extra margin from first headline when character-name is hidden */
    .character-profile > .character-headline:first-of-type {
      margin-top: 0;
    }
  
    .character-story {
      font-size: clamp(0.875rem, 3.5vw, 1rem);
    }
  
    .image-wrapper {
      min-height: clamp(220px, 50vh, 380px);
      max-height: min(420px, 75vh);
    }
  
    .image-name {
      font-size: clamp(0.75rem, 3.5vw, 0.85rem);
      margin-top: 12px;
      margin-bottom: 12px;
      padding: 0 15px; /* Increased padding to prevent clipping */
      word-wrap: break-word; /* Allow long words to break */
      overflow-wrap: break-word; /* Modern property for word breaking */
      overflow: visible; /* Ensure text is not clipped */
      line-height: 1.6; /* Better line spacing */
    }
  
    .pinned-viewport {
      padding: 30px 4% 0;
      gap: 24px;
      margin-bottom: 0;
    }
  
    .volunteer-prompt {
      margin: 24px 12px;
      padding: 16px 12px;
    }
  
    .prompt-text {
      font-size: clamp(1rem, 4vw, 1.15rem);
    }
  
    .interstitial-text {
      font-size: clamp(2rem, 9vw, 3rem);
      padding: 40px 12px;
      color: #ffffff;
      opacity: 1;
    }
  
    /* Ensure mobile-only interstitial text is fully opaque */
    .mobile-only-interstitial .interstitial-text {
      opacity: 1 !important;
    }
  
    .scroll-indicator {
      font-size: clamp(0.75rem, 3.5vw, 0.85rem);
    }
  
    .scroll-indicator i {
      font-size: 1.25rem;
    }
  }