.catalog-page {
  background: var(--bg);
}

.catalog-hero {
  padding: 64px 0 40px;
  text-align: center;
}

.catalog-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin: 0 auto 16px;
  max-width: 760px;
}

.catalog-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 640px;
  line-height: 1.6;
}

.catalog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.catalog-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: .8125rem;
  color: var(--muted);
}

.catalog-section {
  padding: 24px 0 40px;
}

.catalog-section-header {
  margin-bottom: 20px;
}

.catalog-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 0 8px;
}

.catalog-section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.catalog-card.is-soon {
  opacity: .88;
}

.catalog-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.catalog-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  overflow: hidden;
}

.catalog-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.catalog-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4f4f5;
  color: #52525b;
  white-space: nowrap;
}

.catalog-badge.soon {
  background: #fef3c7;
  color: #92400e;
}

.catalog-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 650;
}

.catalog-card p {
  margin: 0;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-card li + li {
  margin-top: 4px;
}

.catalog-cta {
  margin: 16px 0 80px;
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  background: var(--fg);
  color: #fff;
}

.catalog-cta h2 {
  margin: 0 0 10px;
  font-size: 1.75rem;
  letter-spacing: -.03em;
}

.catalog-cta p {
  margin: 0 0 24px;
  color: #a3a3a3;
}

.catalog-cta .btn-primary {
  background: #fff;
  color: var(--fg);
}

.catalog-cta .btn-primary:hover {
  background: #f5f5f5;
}

.nav-desktop a.is-active,
.mobile-nav a.is-active {
  color: var(--accent);
  font-weight: 600;
}
