/* ============================================================
   HOME — All section styles v3.0
   ============================================================ */

/* ============================================================
   HERO — Editorial scale. Dominant. No timidity.
   ============================================================ */
.hero {
  background: var(--slate);
  padding-block: 6.5rem 5.5rem;
  position: relative;
  overflow: hidden;
  /* Subtle dot grid */
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Emerald glow — top left, behind headline */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.13) 0%, transparent 62%);
  top: -250px; left: -150px;
  pointer-events: none;
}

/* Sky glow — right side, balances the block */
.hero::after {
  content: '';
  position: absolute;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.09) 0%, transparent 62%);
  top: 50px; right: -180px;
  pointer-events: none;
}

.hero__inner { max-width: 900px; position: relative; z-index: 1; }
.hero .label { color: var(--teal); }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 2rem;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.4vw, 1rem); /* ~14–16px */
  color: rgba(248,250,252,0.78);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: nowrap;
}

.hero__stat { display: flex; flex-direction: column; gap: 0.4rem; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;            /* ~34px at 17px base */
  font-weight: 700;
  background: linear-gradient(135deg, #10B981, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-sans);
  font-size: 0.778rem;
  color: rgba(248,250,252,0.65);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logos-strip {
  background: var(--bg-alt);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
  padding: 2.5rem 0;
}

.logos-strip__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.logos-strip__label {
  font-family: var(--font-sans);
  font-size: 0.667rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  flex: 0 0 auto;
}

.logos-strip__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.logos-strip__items {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  flex-wrap: nowrap;
  animation: logo-scroll 24s linear infinite;
}

.logos-strip__items img {
  flex: 0 0 auto;
  height: 44px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity var(--ease-md), filter var(--ease-md);
}

.logos-strip__items img:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

.logos-strip__viewport:hover .logos-strip__items {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .logos-strip {
    padding: 2rem 0;
  }

  .logos-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .logos-strip__viewport {
    width: 100%;
  }

  .logos-strip__items {
    gap: 3rem;
  }

  .logos-strip__items img {
    height: 36px;
  }
}
/* ============================================================
   ABOUT
   ============================================================ */

.about-section {
  background: linear-gradient(155deg, #F8FAFC 0%, #ECFDF5 55%, #E0F2FE 100%);
}

/* ============================================================
   ABOUT — CURIOUS CAT
   ============================================================ */
.about-cat-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1.75rem;
}
.about-cat {
  width: 130px; height: auto;
  filter: drop-shadow(0 8px 24px rgba(16,185,129,0.18));
  animation: catBreathe 3.2s ease-in-out infinite;
  transform-origin: center bottom;
}
.cat-tail-group { transform-origin: 72px 148px; animation: catTailSwish 2.8s ease-in-out infinite; }
.cat-head-group { transform-origin: 62px 100px; animation: catHeadTilt 5.5s ease-in-out infinite; }
.cat-eye-left   { transform-origin: 51px 70px;  animation: catBlink 4.5s ease-in-out infinite; }
.cat-eye-right  { transform-origin: 73px 70px;  animation: catBlink 4.5s ease-in-out infinite 0.06s; }
.cat-ear-right  { transform-origin: 79px 47px;  animation: catEarTwitch 3.8s ease-in-out infinite; }

@keyframes catBreathe {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(0.984); }
}
@keyframes catTailSwish {
  0%,100% { transform: rotate(0deg); }
  25%     { transform: rotate(14deg); }
  75%     { transform: rotate(-11deg); }
}
@keyframes catHeadTilt {
  0%,48%,100% { transform: rotate(0deg); }
  58%         { transform: rotate(-11deg); }
  68%         { transform: rotate(7deg); }
  78%         { transform: rotate(-4deg); }
  88%         { transform: rotate(0deg); }
}
@keyframes catBlink {
  0%,88%,100% { transform: scaleY(1); }
  92%         { transform: scaleY(0.07); }
  96%         { transform: scaleY(1); }
}
@keyframes catEarTwitch {
  0%,68%,100% { transform: rotate(0deg); }
  73%         { transform: rotate(-20deg); }
  78%         { transform: rotate(6deg); }
  83%         { transform: rotate(-9deg); }
  88%         { transform: rotate(0deg); }
}

.about-stat { position: relative; }
.about-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #38BDF8);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Body copy inside about section */
.about-section__content .section-sub {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: var(--text);
  line-height: 1.88;
  margin-bottom: 2rem;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.about-stat {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #10B981, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.045em;
  line-height: 1;
}

.about-stat__num em {
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-stat__label {
  font-family: var(--font-sans);
  font-size: 0.778rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   SERVICES LIST
   ============================================================ */
.services-section {
  background: var(--slate);
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.services-section .label { color: var(--teal); }
.services-section__header { margin-bottom: 3.5rem; }

.services-list { border-top: 1px solid rgba(255,255,255,0.1); }

.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left var(--ease-md);
  cursor: pointer;
  gap: 2rem;
}
.svc-row:hover { padding-left: 0.625rem; }
.svc-row:hover .svc-row__title { color: var(--teal); }
.svc-row:hover .svc-row__arrow {
  background: linear-gradient(135deg, #10B981, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(4px);
}

.svc-row__left { display: flex; align-items: center; gap: 1.75rem; }

.svc-row__num {
  font-family: var(--font-sans);
  font-size: 0.833rem;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  min-width: 26px;
  opacity: 0.9;
}

.svc-row__title {
  font-family: var(--font-display);
  font-size: 1.25rem;          /* ~21px — clean, scannable */
  font-weight: 600;
  color: #fff;
  transition: color var(--ease);
  letter-spacing: -0.03em;
}

.svc-row__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.svc-row__desc {
  font-family: var(--font-sans);
  font-size: 1rem;            /* 17px — crisp baseline */
  color: #CBD5E1;             /* much brighter than #94A3B8 */
  text-align: right;
  max-width: 320px;
  line-height: 1.6;
}

.svc-row__arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.125rem;
  transition: color var(--ease), transform var(--ease);
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.fit-section {
  position: relative;
  overflow: hidden;
}
.fit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16,185,129,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.fit-section__header { margin-bottom: 3.5rem; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.fit-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.fit-card--yes { border-top: 3px solid #10B981; }
.fit-card--no  { border-top: 3px solid #FCA5A5; }

/* Large ghost glyph in corner */
.fit-card--yes::after {
  content: '✓';
  position: absolute;
  right: 1.25rem; bottom: -1rem;
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: rgba(16,185,129,0.07);
  pointer-events: none; user-select: none;
}
.fit-card--no::after {
  content: '✕';
  position: absolute;
  right: 1.25rem; bottom: -1rem;
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: rgba(252,165,165,0.12);
  pointer-events: none; user-select: none;
}

.fit-card__head { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.75rem; }

.fit-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.fit-icon--yes { background: #D1FAE5; color: #065F46; }
.fit-icon--no  { background: #FEE2E2; color: #991B1B; }

.fit-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;       /* ~18px */
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.025em;
}

.fit-list { display: flex; flex-direction: column; gap: 1rem; }

.fit-list li {
  font-family: var(--font-sans);
  font-size: 1rem;            /* ~18px — comfortable scanning */
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}
.fit-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border);
}
.fit-card--yes .fit-list li::before { background: #10B981; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cs-section .label { color: var(--teal); }
.cs-section__header { margin-bottom: 3.5rem; }
.cs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* Ambient glow — tech/modern feel without loud imagery */
.cs-section {
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(16,185,129,0.12) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 15%, rgba(56,189,248,0.10) 0%, transparent 48%),
    radial-gradient(ellipse at 55% 95%, rgba(56,189,248,0.07) 0%, transparent 40%);
}

.cs-card {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
  padding: 0 !important;
  overflow: hidden;
}
.cs-card:hover { background: rgba(255,255,255,0.07) !important; }

/* Image area — gradient fill + dot grid overlay */
.cs-card__image {
  height: 140px;
  background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(56,189,248,0.09));
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.cs-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
}
/* Subtle diagonal light streak across image */
.cs-card__image::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-15deg);
}
.cs-card__body { padding: 1.75rem; }
.cs-card__badge { margin-bottom: 1rem; }

.cs-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;       /* ~18px */
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cs-card__scope {
  font-family: var(--font-sans);
  font-size: 0.944rem;        /* ~17px */
  color: #CBD5E1;             /* lifted from #94A3B8 */
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cs-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }

/* ---- Template-part card extras ---- */
.cs-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.cs-card__link:hover .cs-card__read-cta { color: var(--teal); }

.cs-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.cs-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.667rem; font-weight: 600;
  background: rgba(16,185,129,0.18);
  color: var(--teal);
  border: 0.5px solid rgba(16,185,129,0.3);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}

.cs-card__meta-top {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.cs-card__status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.cs-card__status-dot--completed { background: var(--teal); }
.cs-card__status-dot--ongoing   { background: #38BDF8; }

.cs-card__status-label {
  font-size: 0.667rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cs-card__impact-line {
  font-size: 0.778rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cs-card__read-cta {
  display: block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.778rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.cs-tag {
  font-family: var(--font-sans);
  font-size: 0.667rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255,255,255,0.08);
}

/* ============================================================
   RESOURCES — Designed card section, not a text list
   ============================================================ */
.resources-teaser {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}

/* Per-type card accent + badge color */
.resource-card[data-type="pdf"]        { border-top: 2px solid #10B981; }
.resource-card[data-type="template"]   { border-top: 2px solid #38BDF8; }
.resource-card[data-type="checklist"]  { border-top: 2px solid #A78BFA; }
.resource-card[data-type="guide"]      { border-top: 2px solid #F59E0B; }

.resource-card[data-type="pdf"] .resource-card__type        { background: #D1FAE5; color: #065F46; }
.resource-card[data-type="template"] .resource-card__type   { background: #E0F2FE; color: #0C4A6E; }
.resource-card[data-type="checklist"] .resource-card__type  { background: #F5F3FF; color: #4C1D95; }
.resource-card[data-type="guide"] .resource-card__type      { background: #FFFBEB; color: #78350F; }

/* Icon glyph per type */
.resource-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.75;
}

.resources-teaser__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.resources-teaser__heading-group { max-width: 520px; }

.resources-teaser__browse {
  font-family: var(--font-sans);
  font-size: 0.889rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--ease);
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}
.resources-teaser__browse:hover { color: var(--teal-dark); }

/* Scroll track hint */
.resources-scroll-hint {
  font-family: var(--font-sans);
  font-size: 0.722rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resources-scroll-hint::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-faint);
}

/* Carousel */
.resources-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  cursor: grab;
  /* Show a peek of next card at the edge */
  margin-right: calc(-1 * var(--pad));
  padding-right: var(--pad);
}
.resources-carousel:active { cursor: grabbing; }
.resources-carousel::-webkit-scrollbar { height: 3px; }
.resources-carousel::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 2px; }
.resources-carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Resource card — bigger, bolder, actually designed */
.resource-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease-md), box-shadow var(--ease-md), border-color var(--ease-md);
  position: relative;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

/* Teal left accent on hover */
.resource-card::before {
  content: '';
  position: absolute;
  left: 0; top: 1.5rem; bottom: 1.5rem;
  width: 3px;
  background: linear-gradient(180deg, #10B981, #38BDF8);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--ease-md);
}
.resource-card:hover::before { opacity: 1; }

.resource-card__type {
  font-family: var(--font-sans);
  display: inline-block;
  font-size: 0.667rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: #D1FAE5;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  width: fit-content;
}

.resource-card__title {
  font-family: var(--font-display);
  font-size: 1.222rem;        /* ~22px */
  font-weight: 700;
  color: var(--slate);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.resource-card__desc {
  font-family: var(--font-sans);
  font-size: 0.944rem;        /* ~17px */
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.resource-card__cta {
  font-family: var(--font-sans);
  font-size: 0.889rem;
  font-weight: 700;
  color: var(--teal);
  transition: color var(--ease);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.resource-card__cta:hover { color: var(--teal-dark); }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--slate);
  border-radius: var(--radius-xl);
  padding: 6rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.375rem;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Emerald glow — top left */
.cta-block::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, transparent 65%);
  top: -200px; left: -80px;
  pointer-events: none;
}

/* Sky blue glow — bottom right */
.cta-block::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.11) 0%, transparent 65%);
  bottom: -160px; right: -80px;
  pointer-events: none;
}

/* Keep text above decorative layers */
.cta-block > * { position: relative; z-index: 1; }

.cta-block .label { color: var(--teal); }

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: #fff;
  max-width: 680px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cta-block__sub {
  font-family: var(--font-sans);
  font-size: 1rem;            /* 17px */
  color: rgba(248,250,252,0.72);
  max-width: 520px;
  line-height: 1.85;
}

.cta-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}

/* ============================================================
   NAV — Inter, readable
   ============================================================ */
.site-nav__list li a {
  font-family: var(--font-sans);
  font-size: 1rem;            /* 18px — clear and readable */
  font-weight: 500;
}
.site-header__cta { font-family: var(--font-sans); font-size: 0.944rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-section__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .cs-grid              { grid-template-columns: 1fr 1fr; }
  .fit-grid             { grid-template-columns: 1fr; }
  .resources-carousel   { margin-right: calc(-1 * var(--pad)); }
}

@media (max-width: 640px) {
  .hero { padding-block: 5.5rem 4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stat-divider { display: none; }
  .hero__stats { gap: 2rem; }
  .cs-grid { grid-template-columns: 1fr; }
  .svc-row__desc { display: none; }
  .cta-block { padding: 3rem 1.75rem; }
  .resources-teaser__header { flex-direction: column; align-items: flex-start; }
  .resource-card { flex: 0 0 280px; }
}

/* Card image area status bar (used when case study posts exist) */
.cs-card__image-status {
  position: absolute;
  bottom: 0.75rem;
  left: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 1;
}

/* Dynamic homepage resources from the resource CPT */
.resource-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.resource-card[data-type="tool"]      { border-top: 2px solid #0EA5E9; }
.resource-card[data-type="worksheet"] { border-top: 2px solid #14B8A6; }
.resource-card[data-type="resource"]  { border-top: 2px solid #10B981; }

.resource-card[data-type="tool"] .resource-card__type      { background: #E0F2FE; color: #075985; }
.resource-card[data-type="worksheet"] .resource-card__type { background: #CCFBF1; color: #115E59; }
.resource-card[data-type="resource"] .resource-card__type  { background: #D1FAE5; color: #065F46; }

.resources-empty {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  max-width: 620px;
}

.resources-empty__label {
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resources-empty__title {
  margin-bottom: 0.75rem;
  color: var(--slate);
  font-size: 1.35rem;
}

.resources-empty__body {
  color: var(--text-muted);
  line-height: 1.75;
}
