/* ==========================================================================
   Products
   ========================================================================== */

/* --------------------------------------------------------------------------
   Product Listing
   -------------------------------------------------------------------------- */

.feature-list {
  margin: 24px 0 32px;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.product-card {
  padding: 36px;
}

.product-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-content .button {
  margin-top: auto;
}

.product-card-icon {
  display: block;
  height: 72px;
  margin-bottom: 4px;
  object-fit: contain;
  object-position: left center;
  width: 72px;
}

.product-grid {
  gap: 28px;
}

.product-card h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.product-card p {
  line-height: 1.65;
}

.product-list {
  padding: 30px 0 100px;
}

/* --------------------------------------------------------------------------
   Shared Product Elements
   -------------------------------------------------------------------------- */

.product-status {
  color: var(--color-accent);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-transform: uppercase;
}

.product-icon {
  align-items: center;
  background: var(--color-accent);
  border-radius: 16px;
  color: var(--color-background);
  display: flex;
  font-size: 1.3rem;
  font-weight: 800;
  height: 64px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 64px;
}

/* --------------------------------------------------------------------------
   Products Hero
   -------------------------------------------------------------------------- */

.hero.products-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

/* --------------------------------------------------------------------------
   Product Hero
   -------------------------------------------------------------------------- */

.product-hero-content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.product-hero-copy {
  max-width: 720px;
}

.product-hero-description {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 650px;
}

.product-hero-card {
  max-width: 360px;
  padding: 36px;
}

.product-hero-card h2 {
  font-size: 1.7rem;
  margin: 22px 0 14px;
}

.product-hero-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Split Content
   -------------------------------------------------------------------------- */

.split-content {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-top: 48px;
}

.split-content h2 {
  margin-top: 14px;
  max-width: 600px;
}

.split-content > div:last-child {
  padding-top: 38px;
}

.split-content > div:last-child p {
  color: var(--color-text-secondary);
}

.split-content > div:last-child p + p {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Product Call to Action
   -------------------------------------------------------------------------- */

.product-cta {
  padding-top: 20px;
}

.cta-card {
  padding: 48px;
  text-align: center;
}

.cta-card h2 {
  margin: 16px auto 20px;
  max-width: 760px;
}

.cta-card > p:not(.eyebrow) {
  margin: 0 auto 30px;
  max-width: 720px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
  .product-hero-content {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }
}

@media (max-width: 800px) {
  .cta-card {
    padding: 40px 28px;
  }

  .product-card {
    padding: 30px;
  }

  .product-hero-card {
    max-width: 520px;
  }

  .product-hero-content,
  .split-content {
    grid-template-columns: 1fr;
  }

  .split-content {
    gap: 20px;
  }

  .split-content > div:last-child {
    padding-top: 0;
  }
}
