/** Shopify CDN: Minification failed

Line 180:21 Expected identifier but found whitespace
Line 180:23 Unexpected "{"
Line 180:32 Expected ":"
Line 181:10 Expected identifier but found whitespace
Line 181:12 Unexpected "{"
Line 181:21 Expected ":"
Line 182:12 Expected identifier but found whitespace
Line 182:14 Unexpected "{"
Line 182:23 Expected ":"
Line 182:50 Unexpected "24px"
... and 18 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:faq (INDEX:15) */
.faq-section {
    background-color: var(--rf-black);
    color: var(--rf-white);
    padding: 100px 24px;
  }

  .faq-section__inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .faq-section__header {
    text-align: center;
    margin-bottom: 72px;
  }

  .faq-section__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px;
  }

  .faq-section__title {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--rf-white);
    margin: 0 0 20px;
  }

  .faq-section__subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
  }

  .faq-section__list {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    color: var(--rf-white);
    transition: color 0.2s ease;
  }

  .faq-item__question::-webkit-details-marker {
    display: none;
  }

  .faq-item__question:hover {
    color: var(--rf-magenta-mist);
  }

  .faq-item__question-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: -0.01em;
    flex: 1;
  }

  .faq-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .faq-item__question:hover .faq-item__icon {
    background: var(--rf-uv-magenta);
    color: var(--rf-white);
    box-shadow: var(--rf-glow-magenta);
  }

  .faq-icon__vertical {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    transform-origin: center;
  }

  .faq-item[open] .faq-icon__vertical {
    transform: rotate(90deg);
    opacity: 0;
  }

  .faq-item[open] .faq-item__icon {
    background: var(--rf-uv-magenta);
    color: var(--rf-white);
    box-shadow: var(--rf-glow-magenta);
  }

  .faq-item__answer-wrapper {
    overflow: hidden;
  }

  .faq-item__answer {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    padding: 0 48px 28px 0;
    margin: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-icon__vertical,
    .faq-item__icon {
      transition: none;
    }
  }

  @media (max-width: 600px) {
    .faq-section {
      padding: 72px 20px;
    }

    .faq-section__header {
      margin-bottom: 48px;
    }

    .faq-item__question-text {
      font-size: 15px;
    }

    .faq-item__answer {
      font-size: 14px;
      padding-right: 16px;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:tech-specs (INDEX:69) */
.tech-specs {
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
    padding: {{ section.settings.padding_top }}px 24px {{ section.settings.padding_bottom }}px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  }

  .tech-specs__inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .tech-specs__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
  }

  .tech-specs__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: {{ section.settings.eyebrow_color }};
    margin: 0 0 12px;
    text-transform: none;
  }

  .tech-specs__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 20px;
    color: {{ section.settings.title_color }};
  }

  .tech-specs__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: {{ section.settings.subtitle_color }};
    margin: 0;
  }

  .tech-specs__hero-image {
    text-align: center;
    margin-bottom: 64px;
  }

  .tech-specs__hero-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

  .tech-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }

  .tech-specs__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tech-specs__item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .tech-specs__icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .tech-specs__item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .tech-specs__feature-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: {{ section.settings.text_color }};
  }

  .tech-specs__feature-text {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: {{ section.settings.text_color }};
    opacity: 0.85;
  }

  @media screen and (max-width: 768px) {
    .tech-specs__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 20px;
    }

    .tech-specs__header {
      margin-bottom: 40px;
    }

    .tech-specs__hero-image {
      margin-bottom: 40px;
    }
  }

  @media screen and (max-width: 480px) {
    .tech-specs__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }
/* END_SECTION:tech-specs */