.index-splash-text {
    display: flex;
    align-items: end;
  }
  .index-splash-text h1 {
    margin: 0;
  }
  
  .splash-button-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .splash-button {
    display: inline-block;
    padding: 1rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-default);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 26%;
    text-align: center;
  }
  
  .splash-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .splash-button:active {
    transform: translateY(0);
  }
  
  /* Default display rules - desktop shows by default */
  .index-desktop-grid {
    display: grid;
  }
  
  .index-mobile-container {
    display: none;
  }
  
  /* Show desktop grid on larger screens */
  @media (min-width: 769px) {
    .index-mobile-container {
      display: none;
    }
    
    .index-desktop-grid {
      display: grid;
    }
  }
  
  /****** INDEX PAGE MOBILE STYLES ******/
  @media (max-width: 768px) {
    /* Mobile grid adjustments */
    .index-mobile-container {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 24px 16px;
      align-items: flex-start;
      text-align: left;
    }
    
    /* Mobile splash text */
    .index-splash-text {
      text-align: left;
      order: 1;
      margin-bottom: 32px;
    }
    
    .index-splash-text h1 {
      font-size: clamp(28px, 7vw, 36px);
      line-height: 1.2;
      margin: 0;
      font-weight: 400;
    }
    
    /* Mobile SVG container - positioned in upper left */
    .index-svg {
      margin: 0 0 40px 0;
    }
    
    .index-svg svg {
      width: 130px;
      height: auto;
      max-width: none;
    }
    
    /* Mobile text sections */
    .index-text {
      order: 3;
      text-align: left;
      max-width: 100%;
      margin-bottom: 40px;
    }
    
    .index-text p {
      font-size: clamp(14px, 4vw, 16px);
      line-height: 1.5;
      margin-bottom: 20px;
      max-width: 100%;
    }
    
    /* Mobile button container */
    .splash-button-container {
      order: 4;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      margin-top: 0;
      width: 100%;
    }
    
    .splash-button {
      max-width: none;
      padding: 1rem 1.5rem;
      text-align: left;
      border: 1px solid #fff;
      background: transparent;
      color: #fff;
      text-decoration: none;
      font-family: var(--font-default);
      font-size: 14px;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .splash-button:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }
    
    .splash-button:active {
      transform: translateY(0);
    }
    
    .splash-button h3 {
      font-size: clamp(16px, 4.5vw, 20px);
      margin-bottom: 8px;
      text-align: left;
    }
    
    .splash-button p {
      font-size: clamp(12px, 3.5vw, 14px);
      line-height: 1.4;
      margin: 0;
      text-align: left;
    }
    
    /* Hide desktop grid on mobile */
    .index-desktop-grid {
      display: none;
    }
  }
  @media (max-width: 480px) {
    .index-mobile-container {
      gap: 0;
      padding: 20px 12px;
    }
    
    .index-splash-text h1 {
      font-size: clamp(24px, 6vw, 32px);
      margin-bottom: 0;
    }
    
    .index-svg svg {
      width: 100px;
    }
    
    .index-text p {
      font-size: clamp(13px, 3.5vw, 15px);
      margin-bottom: 16px;
    }
    
    .splash-button-container {
      gap: 12px;
      margin-top: 0;
    }
    
    .splash-button {
      padding: 0.875rem 1.25rem;
    }
    
    .splash-button h3 {
      font-size: clamp(14px, 4vw, 18px);
    }
    
    .splash-button p {
      font-size: clamp(11px, 3vw, 13px);
    }
  }
  