/* ==========================================================================
   /websites — capabilities catalog
   Scoped under .bd-page-websites. Reuses globals (.page-hero, .section,
   .section-heading, .service-card, .card-grid, .cta-shell); this sheet adds
   only the catalog-specific pieces.
   ========================================================================== */

/* Hero action row ---------------------------------------------------------- */
.bd-page-websites .websites-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

/* Quick-jump index --------------------------------------------------------- */
.bd-page-websites .websites-index {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-cream-deep);
}
.bd-page-websites .websites-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bd-page-websites .websites-index-list a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent-forest-green);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.bd-page-websites .websites-index-list a:hover {
  background: var(--accent-forest-green);
  border-color: var(--accent-forest-green);
  color: var(--bg-cream);
}

/* Card grid — flows for 3, 4, or 5 cards ----------------------------------- */
.bd-page-websites .websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

/* Group-level link under each grid ----------------------------------------- */
.bd-page-websites .websites-group-link {
  margin-top: 1.6rem;
}

/* Proof band — the only numbers on the page -------------------------------- */
.bd-page-websites .websites-proof {
  background: var(--deep-forest);
  color: var(--bg-cream);
  padding: var(--space-xl) 0;
  border-top: 4px solid var(--accent-soft);
}
.bd-page-websites .websites-proof .eyebrow {
  color: var(--accent-soft);
}
.bd-page-websites .websites-proof h2 {
  color: var(--bg-cream);
  max-width: 20ch;
}
.bd-page-websites .websites-proof h2 em {
  color: var(--accent-soft);
  font-style: italic;
}
.bd-page-websites .websites-proof-lede {
  max-width: 60ch;
  margin-top: var(--space-sm);
  color: rgba(245, 229, 204, 0.82);
}
.bd-page-websites .websites-proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
  margin: var(--space-lg) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(245, 229, 204, 0.18);
  border-bottom: 1px solid rgba(245, 229, 204, 0.18);
}
.bd-page-websites .websites-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bd-page-websites .websites-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: var(--bg-cream);
}
.bd-page-websites .websites-stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(245, 229, 204, 0.72);
}
.bd-page-websites .websites-proof-ai {
  max-width: 60ch;
  color: rgba(245, 229, 204, 0.9);
}
.bd-page-websites .websites-proof-source {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(245, 229, 204, 0.55);
}
.bd-page-websites .websites-proof-link {
  color: var(--bg-cream);
}
.bd-page-websites .websites-proof-link:hover {
  color: var(--accent-soft);
}
