/* AI Products — three-card product showcase */
.ai-products-page {
  background: var(--ink);
}

.ai-products-hero {
  padding-top: 120px;
  padding-bottom: 24px;
}

.ai-products-hero .lede {
  max-width: 640px;
}

.aip-showcase {
  padding-top: 28px;
  padding-bottom: 88px;
}

.aip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.aip-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 28px 30px;
  border-radius: 18px;
  background: #050a18;
  border: 1px solid rgba(134, 188, 37, 0.42);
  box-shadow: inset 0 1px 0 rgba(134, 188, 37, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.aip-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(134, 188, 37, 0.12);
}

.aip-card--brewing {
  border-color: rgba(148, 161, 181, 0.18);
  box-shadow: none;
}

.aip-card--brewing:hover {
  border-color: rgba(148, 161, 181, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.aip-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--jade);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.aip-kind {
  font-size: 13px;
  font-weight: 600;
  color: rgba(233, 238, 246, 0.72);
  line-height: 1.45;
  margin-bottom: 22px;
}

.aip-tagline {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.aip-desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
}

.aip-status {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(233, 238, 246, 0.06);
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aip-status--live {
  color: var(--jade);
}

.aip-status--brewing {
  color: #6b7280;
}

.aip-cta-band {
  padding: 0 0 88px;
}

.aip-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(134, 188, 37, 0.08), rgba(11, 17, 32, 0.95));
}

.aip-cta-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  max-width: 520px;
  line-height: 1.15;
}

.aip-cta-inner p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .aip-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .aip-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .aip-showcase {
    padding-bottom: 64px;
  }

  .aip-card {
    padding: 28px 22px 24px;
  }

  .aip-cta-inner {
    padding: 28px 22px;
  }
}
