/* CoCreate · Who We Are page layout */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--s-9));
  padding-bottom: var(--s-9);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-hero__inner { text-align: center; max-width: 880px; margin-inline: auto; }
.page-hero__eyebrow { margin-bottom: var(--s-5); }
.page-hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: var(--track-display);
  line-height: 1.02;
  margin-bottom: var(--s-5);
}
.page-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 auto var(--s-6);
  line-height: 1.6;
}
.page-hero__ctas { display: inline-flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }
.cc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.section__eyebrow-c { text-align: center; display: block; }
.section__h2-c { text-align: center; margin-top: var(--s-3); margin-inline: auto; max-width: 36ch; }

/* page-specific — value card (Vedics: glass + gradient icon + ordered hierarchy) */
.value-card { padding: var(--s-6); text-align: left; }
.value-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-pill);
  background: var(--grad-cta); color: #1a0a00;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
}
.value-card__icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 2; fill: none; }
.value-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: var(--s-3); }
.value-card__body { color: var(--text-secondary); line-height: 1.7; }
