/** Shopify CDN: Minification failed

Line 142:26 Expected identifier but found whitespace
Line 142:28 Expected identifier but found "%"
Line 142:63 Unexpected "1fr"
Line 142:71 Expected identifier but found "%"
Line 142:80 Unexpected "1fr"
Line 142:84 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.section-button-colab {
    display: flex;
    justify-content: center;
  }
  .hero-collab {
    background: #faf6ef;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 10rem;
    font-weight: 800;
    color: #1B4B4B;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .background-arc {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 150%;
    background: #FFF5EA;
    border-radius: 50% 50% 0 0;
    z-index: 1;
  }

  .cta-button {
    display: inline-block;
    background: #1B4B4B;
    color: #faf6ef;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background: #2A6363;
    transform: translateY(-2px);
  }

  .feature-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem;
  }

  .feature-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .feature-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-icon img.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  }

  .hero-media-container {
    margin-top: 2rem;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media-grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: flex-end;
    grid-template-columns: {% if section.settings.hero_image %}1fr 1fr{% else %}1fr{% endif %};
  }

  .hero-media-grid.video-playing .hero-image {
    display: none;
  }

  .hero-media-grid.video-playing {
    grid-template-columns: 1fr !important;
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    transition: all 0.3s ease;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .video-wrapper.playing {
    width: 100%;
  }

  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(27, 75, 75, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
  }

  .video-play-button:hover {
    background: rgb(27, 75, 75);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .video-play-button svg {
    width: 24px;
    height: 24px;
    fill: white;
  }

  .media-background {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #FFF5EA;
    border-radius: 200px 200px 0 0;
    z-index: 1;
  }

  @media screen and (min-width: 768px) {
    .hero-media-container-mobile {
      display: none;
    }
  }

  @media screen and (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .feature-cards {
      display: flex;
      flex-direction: column;
      padding: 0;
    }

    .hero-media-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .hero-media-container {
      display: none;
    }

    .hero-media-container-mobile {
      display: flex;
    }
  }