/** Shopify CDN: Minification failed

Line 43:0 Unexpected ".2nextai-icon-grid"
Line 47:0 Unexpected ".2nextai-icon-grid__header"
Line 52:0 Unexpected ".2nextai-icon-grid__header--center"
Line 57:0 Unexpected ".2nextai-icon-grid__heading"
Line 64:0 Unexpected ".2nextai-icon-grid__subheading"
Line 71:0 Unexpected ".2nextai-icon-grid__grid"
Line 78:2 Unexpected ".2nextai-icon-grid__grid--cols-3"
Line 82:2 Unexpected ".2nextai-icon-grid__grid--cols-4"
Line 88:2 Unexpected ".2nextai-icon-grid__grid--cols-3"
Line 92:2 Unexpected ".2nextai-icon-grid__grid--cols-4"
... and 10 more hidden warnings

**/
/* 2NEXTAI brand styles */

:root {
  --2nextai-navy: #0a1628;
  --2nextai-navy-light: #111d33;
  --2nextai-blue: #0066ff;
  --2nextai-cyan: #00d4ff;
  --2nextai-white: #ffffff;
  --2nextai-muted: rgba(255, 255, 255, 0.72);
  --2nextai-card-border: rgba(0, 212, 255, 0.15);
  --2nextai-card-shadow: 0 4px 24px rgba(0, 10, 30, 0.08);
}

.section-2nextai-dark {
  --color-foreground: var(--2nextai-white);
  --color-foreground-rgb: 255 255 255;
}

.section-2nextai-dark .text-block,
.section-2nextai-dark h1,
.section-2nextai-dark h2,
.section-2nextai-dark h3,
.section-2nextai-dark p {
  color: var(--2nextai-white);
}

/* Icon grid */
.2nextai-icon-grid {
  padding-block: var(--2nextai-section-padding, 64px);
}

.2nextai-icon-grid__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.2nextai-icon-grid__header--center {
  margin-inline: auto;
  text-align: center;
}

.2nextai-icon-grid__heading {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.2nextai-icon-grid__subheading {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  opacity: 0.8;
}

.2nextai-icon-grid__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 750px) {
  .2nextai-icon-grid__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .2nextai-icon-grid__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .2nextai-icon-grid__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .2nextai-icon-grid__grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.2nextai-icon-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid var(--2nextai-card-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--2nextai-card-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.section-2nextai-dark .2nextai-icon-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.2);
}

.2nextai-icon-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
}

@media (prefers-reduced-motion: no-preference) {
  .2nextai-icon-card:hover {
    transform: translateY(-2px);
  }
}

.2nextai-icon-card__icon {
  color: var(--2nextai-cyan);
  flex-shrink: 0;
}

.2nextai-icon-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.2nextai-icon-card__description {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 0.82;
}

/* CTA band */
.section-2nextai-cta {
  text-align: center;
}

.section-2nextai-cta .group-block {
  align-items: center;
}

/* Newsletter band */
.section-2nextai-newsletter .email-signup-block {
  max-width: 480px;
  margin-inline: auto;
}

/* Featured product polish */
.featured-product-information .2nextai-featured-subtitle {
  font-size: 1.125rem;
  line-height: 1.55;
  opacity: 0.85;
  margin-top: 8px;
}

/* Footer on dark background */
.color-custom .button[class*="link"],
.color-custom .link {
  color: rgba(255, 255, 255, 0.85);
}

.color-custom .button[class*="link"]:hover,
.color-custom .link:hover {
  color: var(--2nextai-cyan);
}

/* Featured product on navy */
.featured-product-information.color-custom .product-details .text-block,
.featured-product-information.color-custom .product-details h1,
.featured-product-information.color-custom .product-details h2,
.featured-product-information.color-custom .product-details p,
.featured-product-information.color-custom .product-details a {
  color: inherit;
}

@media screen and (max-width: 749px) {
  .2nextai-icon-grid {
    padding-block: 48px;
  }

  .2nextai-icon-grid__header {
    margin-bottom: 32px;
  }
}
