/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Unexpected "{"
Line 9:3 Expected identifier but found "'features-section.css'"
Line 11:1 Expected identifier but found "."

**/
{{ 'features-section.css' | asset_url | stylesheet_tag }}

..features-section {
  position: relative;
  overflow: hidden;
  background: #000000;
  padding: 96px 0;
  color: #ffffff;
}

.features-bg {
  display: none;
}

.features-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px;
}

.features-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.features-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.features-subtitle {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.features-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
}

.features-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.features-pill__icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.features-glass-wrapper {
  position: relative;
}

.features-glass {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.45);
}

.features-glass__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 28%
  );
}

.features-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature-card-wrapper {
  position: relative;
}

.feature-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
  color: #ffffff;
}

.feature-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.feature-description {
  margin: 0;
  max-width: 24ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.feature-link svg {
  width: 16px;
  height: 16px;
}

.features-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.features-btn--primary {
  background: #ffffff;
  color: #000000;
}

.features-btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.features-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.features-btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (min-width: 768px) {
  .features-glass {
    padding: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 72px 0;
  }

  .features-container {
    padding: 0 16px;
  }

  .features-header {
    margin-bottom: 28px;
  }

  .features-glass {
    padding: 20px;
    border-radius: 24px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-description {
    font-size: 15px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}