/* Software products — simple grid, no tabs/widgets */

.sw-section {
  background: #04080f;
}

.sw-intro {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 64px);
}

.sw-eyebrow {
  display: none;
}

.sw-headline em {
  font-style: italic;
  font-weight: 400;
}

/* Override editorial left-align from prior version */
.sw-intro--reveal .sw-headline,
.sw-intro--reveal .sw-subhead-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.sw-intro--visible .sw-headline {
  animation: swProductsFade 0.6s ease 0.05s forwards;
}

.sw-intro--visible .sw-subhead-reveal {
  animation: swProductsFade 0.6s ease 0.15s forwards;
}

@keyframes swProductsFade {
  to { opacity: 1; transform: none; }
}

.sw-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.sw-product {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(28px, 3vw, 36px);
  background: #04080f;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.sw-product:hover {
  background: #061018;
}

.sw-product-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin: 0 0 20px;
}

.sw-product-name {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px;
}

.sw-product-name span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0;
}

.sw-product-name--meridian span { color: #8dd8ff; }
.sw-product-name--iuris span { color: #00AEEF; }
.sw-product-name--alignment span { color: #38bdf8; }

.sw-product-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
  flex: 1;
}

.sw-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sw-product-status {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
}

.sw-product-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.sw-product:hover .sw-product-cta {
  color: #ffffff;
}

@media (max-width: 900px) {
  .sw-products {
    grid-template-columns: 1fr;
  }

  .sw-product {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-intro--reveal .sw-headline,
  .sw-intro--reveal .sw-subhead-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
