/* ==========================================================================
   AHA — Sections
   --------------------------------------------------------------------------
   Every block below is a self-contained section component. It styles only its
   own `.aha-<name>*` classes and resolves everything else through tokens, so
   any block can be deleted, reordered, or lifted into a standalone WordPress
   widget without affecting the others.

   INDEX
     01  aha-hero ................ Home hero
     02  aha-page-hero ........... Inner-page hero (shared)
     03  aha-ageing .............. India is ageing — data storytelling
     04  aha-problem ............. Why AHA exists — the structural gap
     05  aha-network ............. Connecting the ecosystem
     06  aha-missions ............ Eight strategic missions (index grid)
     07  aha-triad ............... Samaaj x Sarkaar x Bazaar
     08  aha-knowledge ........... Knowledge, evidence and research
     09  aha-cta ................. Closing call to action (shared)
     10  aha-statement ........... Large editorial statement (shared)
     11  aha-pillars ............. Icon-led value columns (shared)
     12  aha-timeline ............ Vertical process / how-we-work
     13  aha-missions-detail ..... What We Do — sticky index + mission bodies
     14  aha-opportunity ......... Why AHA — dimension-by-dimension data story
     15  aha-chart ............... Chart primitives (shared)
     16  aha-gap ................. Gap -> AHA response
     17  aha-pathways ............ Stakeholder pathways
     18  aha-contact ............. Contact form + details
     19  aha-sources ............. Source / citation block (shared)
   ========================================================================== */


/* ==========================================================================
   01 — aha-hero
   Asymmetric editorial hero. Copy column carries the purpose statement;
   media column is a tall portrait frame with an overlapping figure card.
   ========================================================================== */
.aha-hero {
  position: relative;
  padding-top: calc(var(--aha-header-h) + clamp(2.5rem, 1.4rem + 4vw, 5rem));
  padding-bottom: var(--aha-section-y);
  background-color: var(--aha-ivory);
  overflow: hidden;
}

/* Full Width Hero Banner (Image Background Slider with Text Overlay) */
.aha-hero--full-width {
  position: relative;
  width: 100%;
  min-height: clamp(550px, 80vh, 750px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--aha-header-h) + 2.5rem);
  padding-bottom: 2.5rem;
  background-color: #111111;
  color: #fff;
  overflow: hidden;
}

.aha-hero__bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.aha-hero__bg-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.aha-hero__bg-track::-webkit-scrollbar {
  display: none;
}

.aha-hero__bg-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.aha-hero__bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease-out;
}

.aha-hero__bg-slide.is-active img {
  transform: scale(1.04);
}

/* Subtle Lite Black Overlay — no blue tint */
.aha-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.42) 50%,
    rgba(0, 0, 0, 0.72) 100%
  ),
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.aha-eyebrow--light {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aha-hero__content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}

/* Top bar: pills & slider controls */
.aha-hero__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.aha-hero__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.aha-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: var(--aha-font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Controls matching reference overlay pill controls */
.aha-hero--full-width .aha-hero__slider-controls {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.aha-hero--full-width .aha-hero__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.aha-hero--full-width .aha-hero__slider-btn:hover {
  background: var(--aha-green-500);
  transform: scale(1.08);
}

.aha-hero--full-width .aha-hero__slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}

.aha-hero--full-width .aha-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aha-hero--full-width .aha-hero__dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--aha-green-400);
}

/* Main content row */
.aha-hero__main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}

@media (min-width: 900px) {
  .aha-hero__main-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3rem;
  }
}

.aha-hero--full-width .aha-hero__title {
  color: #ffffff;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.aha-hero--full-width .aha-hero__title em {
  color: var(--aha-green-300);
  font-style: normal;
}

.aha-hero--full-width .aha-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 0.92rem + 0.3vw, 1.18rem);
  line-height: 1.5;
  margin-top: 0.85rem;
  max-width: 54ch;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.aha-hero__cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .aha-hero__cta-col {
    align-items: flex-end;
  }
}

/* Pill CTA Buttons matching reference design */
.aha-btn--light-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background-color: #ffffff;
  color: var(--aha-blue-900);
  font-family: var(--aha-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.aha-btn--light-pill:hover {
  background-color: var(--aha-green-400);
  color: var(--aha-blue-950);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73,174,80,0.4);
}

.aha-btn--dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: rgba(11, 41, 66, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--aha-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.aha-btn--dark-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.aha-hero--full-width .aha-hero__badge {
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 18rem;
  background: rgba(11, 41, 66, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Bottom Strip on overlay */
.aha-hero--full-width .aha-hero__strip {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
  padding-top: 1rem;
}

.aha-hero--full-width .aha-hero__stat-figure {
  color: var(--aha-green-300);
}

.aha-hero--full-width .aha-hero__stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Vellaro-Inspired Luxury Fullscreen Hero Section
   ========================================================================== */
.aha-hero--luxury {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--aha-header-h) + clamp(2.5rem, 5vh, 4rem));
  padding-bottom: clamp(2rem, 4vh, 3.5rem);
  background-color: #0b0d10;
  color: #ffffff;
  overflow: hidden;
}

.aha-hero--luxury .aha-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide Controls Pill */
.aha-hero__controls-floating {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.aha-hero__luxury-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vh, 3.5rem);
  flex: 1;
}

/* Upper Bar: Controls on Left, Statement Blurb on Right (No Overlap) */
.aha-hero__luxury-upper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.aha-hero__luxury-blurb {
  max-width: 440px;
  font-family: var(--aha-font-body);
  font-size: clamp(0.88rem, 0.82rem + 0.3vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  flex-shrink: 1;
}

/* Main Headline */
.aha-hero__luxury-headline-wrap {
  width: 100%;
  margin-block: auto;
}

.aha-hero__luxury-title {
  font-family: var(--aha-font-heading);
  font-size: clamp(1.35rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
  white-space: nowrap;
}

.aha-hero__luxury-subtitle {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  font-size: clamp(1.15rem, 2.6vw, 2.4rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.18;
  margin-top: 0.2em;
  letter-spacing: -0.01em;
  white-space: normal;
}

/* Bottom Row */
.aha-hero__luxury-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  align-items: stretch;
}

@media (min-width: 860px) {
  .aha-hero__luxury-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.aha-hero__luxury-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.aha-hero__luxury-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.aha-hero__luxury-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 2.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.aha-hero__luxury-label {
  font-family: var(--aha-font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  max-width: 130px;
  line-height: 1.3;
}

.aha-hero__luxury-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.3);
  display: none;
}

@media (min-width: 640px) {
  .aha-hero__luxury-divider {
    display: block;
  }
}

/* Solid White Rectangular CTA Button */
.aha-btn--luxury-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1.1rem 2.6rem;
  background-color: #ffffff;
  color: #0b0d10;
  font-family: var(--aha-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.aha-btn--luxury-rect:hover {
  background-color: var(--aha-green-400);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(73, 174, 80, 0.45);
}

/* Smartphone & Mobile Responsiveness (< 768px) */
@media (max-width: 767px) {
  .aha-hero--luxury {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--aha-header-h) + 1.25rem);
    padding-bottom: 2rem;
  }

  .aha-hero__luxury-upper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .aha-hero__controls-floating {
    align-self: flex-start;
  }

  .aha-hero__luxury-blurb {
    text-align: left;
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .aha-hero__luxury-title {
    font-size: clamp(1.85rem, 7.8vw, 2.75rem);
    line-height: 1.08;
  }

  .aha-hero__luxury-subtitle {
    font-size: clamp(1.4rem, 5.8vw, 2.1rem);
    line-height: 1.2;
  }

  .aha-hero__luxury-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
  }

  .aha-hero__luxury-stat {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .aha-hero__luxury-num {
    font-size: 2rem;
    min-width: 90px;
  }

  .aha-hero__luxury-label {
    max-width: none;
    font-size: 0.72rem;
  }

  .aha-btn--luxury-rect {
    width: 100%;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

/* Very quiet atmospheric wash — no blobs, just a directional tint */
.aha-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 52% at 82% 8%, rgba(73, 174, 80, 0.10), transparent 70%),
    radial-gradient(46% 46% at 4% 84%, rgba(26, 89, 140, 0.08), transparent 72%);
  pointer-events: none;
}

.aha-hero__inner { position: relative; }

.aha-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 3.5vw, 4rem);
  align-items: center;
}

.aha-hero__title {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-display);
  font-weight: var(--aha-fw-bold);
  line-height: var(--aha-lh-tight);
  letter-spacing: var(--aha-ls-display);
  color: var(--aha-blue-900);
  text-wrap: balance;
}

/* The one word that carries the brand promise */
.aha-hero__title em {
  font-style: normal;
  color: var(--aha-green-700);
}

.aha-hero__lead {
  margin-top: var(--aha-space-md);
  max-width: 46ch;
  font-size: var(--aha-fs-lead);
  line-height: var(--aha-lh-snug);
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink-muted);
}

.aha-hero__actions { margin-top: var(--aha-space-lg); gap: var(--aha-space-sm); }

/* Media column */
.aha-hero__media-wrap { position: relative; }

.aha-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--aha-radius-lg);
  background-color: var(--aha-blue-100);
  box-shadow: var(--aha-shadow-lg);
}

.aha-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scrollable Image Banner Slider */
.aha-hero__slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--aha-radius-lg);
  overflow: hidden;
  background-color: var(--aha-blue-900);
  box-shadow: var(--aha-shadow-lg);
}

.aha-hero__slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.aha-hero__slider-track::-webkit-scrollbar {
  display: none;
}

.aha-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
}

.aha-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--aha-ease-out);
}

.aha-hero__slide:hover img {
  transform: scale(1.03);
}

.aha-hero__slide-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(11, 41, 66, 0.92) 0%, rgba(11, 41, 66, 0.45) 65%, transparent 100%);
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.aha-hero__slide-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  background-color: rgba(73, 174, 80, 0.92);
  color: #fff;
  font-family: var(--aha-font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--aha-radius-xs);
  margin-bottom: 0.35rem;
}

.aha-hero__slide-title {
  font-family: var(--aha-font-heading);
  font-size: clamp(0.9rem, 0.82rem + 0.45vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.aha-hero__slider-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 4;
  background: rgba(11, 41, 66, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.aha-hero__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aha-hero__slider-btn .aha-icon {
  width: 14px;
  height: 14px;
}

.aha-hero__slider-btn:hover {
  background: var(--aha-green-500);
  transform: scale(1.08);
}

.aha-hero__slider-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 4px;
}

.aha-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aha-hero__dot.is-active {
  width: 18px;
  border-radius: 4px;
  background: var(--aha-green-400);
}

/* Overlapping figure card — the single strongest number on the page */
.aha-hero__badge {
  position: absolute;
  left: clamp(-1.5rem, -1vw, -0.5rem);
  bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  max-width: 15rem;
  padding: 1rem 1.2rem;
  background-color: var(--aha-blue-900);
  color: #fff;
  border-radius: var(--aha-radius-md);
  box-shadow: var(--aha-shadow-lg);
  z-index: 5;
}

.aha-hero__badge-figure {
  display: block;
  font-family: var(--aha-font-heading);
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  font-weight: var(--aha-fw-bold);
  line-height: 1;
  letter-spacing: var(--aha-ls-display);
  color: var(--aha-green-300);
}

.aha-hero__badge-label {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--aha-fs-xs);
  line-height: 1.45;
  color: var(--aha-ink-invert-muted);
}

/* Figure strip below the fold line */
.aha-hero__strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: clamp(2.5rem, 1.6rem + 3vw, 4.5rem);
  border-top: 1px solid var(--aha-line);
}

.aha-hero__stat {
  padding: var(--aha-space-md) 0;
  border-bottom: 1px solid var(--aha-line);
}

.aha-hero__stat-figure {
  display: block;
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-stat-sm);
  font-weight: var(--aha-fw-bold);
  line-height: 1;
  letter-spacing: var(--aha-ls-display);
  color: var(--aha-blue-800);
}

.aha-hero__stat-label {
  display: block;
  margin-top: 0.6rem;
  max-width: 26ch;
  font-size: var(--aha-fs-sm);
  line-height: 1.5;
  color: var(--aha-ink-muted);
}

@media (min-width: 768px) {
  .aha-hero__strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--aha-grid-gap);
  }
  .aha-hero__stat { border-bottom: 0; }
}

@media (min-width: 1024px) {
  .aha-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(3rem, 1rem + 5vw, 5.5rem);
  }
  .aha-hero__media { aspect-ratio: 5 / 6; }
}


/* ==========================================================================
   02 — aha-page-hero (shared across all inner pages)
   ========================================================================== */
.aha-page-hero {
  position: relative;
  padding-top: calc(var(--aha-header-h) + clamp(2.5rem, 1.5rem + 3.5vw, 4.5rem));
  padding-bottom: clamp(2.75rem, 1.8rem + 3vw, 4.5rem);
  background-color: var(--aha-ivory);
  border-bottom: 1px solid var(--aha-line);
  overflow: hidden;
}

.aha-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(52% 70% at 88% 0%, rgba(26, 89, 140, 0.09), transparent 70%);
  pointer-events: none;
}

.aha-page-hero__inner { position: relative; }

.aha-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-lg);
  align-items: end;
}

.aha-page-hero__title {
  font-size: var(--aha-fs-h1);
  font-weight: var(--aha-fw-bold);
  letter-spacing: var(--aha-ls-display);
  color: var(--aha-blue-900);
  max-width: 18ch;
}

.aha-page-hero__lead {
  font-size: var(--aha-fs-lead);
  line-height: var(--aha-lh-snug);
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink-muted);
  max-width: 52ch;
}

.aha-page-hero__actions { margin-top: var(--aha-space-md); }

@media (min-width: 960px) {
  .aha-page-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--aha-grid-gap);
  }
}

/* Breadcrumb */
.aha-breadcrumb {
  margin-bottom: var(--aha-space-md);
  font-size: var(--aha-fs-xs);
  color: var(--aha-ink-subtle);
}

.aha-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aha-breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }

.aha-breadcrumb li + li::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: var(--aha-line-strong);
}

.aha-breadcrumb a { color: var(--aha-ink-muted); text-decoration: none; }
.aha-breadcrumb a:hover { color: var(--aha-blue-700); text-decoration: underline; }
.aha-breadcrumb [aria-current="page"] { color: var(--aha-ink); font-weight: var(--aha-fw-medium); }


/* ==========================================================================
   03 — aha-ageing  (India is ageing — data storytelling on a deep surface)
   ========================================================================== */
.aha-ageing {
  position: relative;
  background-color: var(--aha-blue-900);
  overflow: hidden;
}

.aha-ageing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 96% 4%, rgba(73, 174, 80, 0.18), transparent 68%),
    radial-gradient(48% 48% at 0% 100%, rgba(42, 111, 166, 0.28), transparent 70%);
  pointer-events: none;
}

.aha-ageing__inner { position: relative; }

/* Editorial data rows — big figure left, meaning right, hairline between */
.aha-ageing__rows { border-top: 1px solid var(--aha-line-invert); }

.aha-ageing__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-sm);
  padding-block: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem);
  border-bottom: 1px solid var(--aha-line-invert);
}

.aha-ageing__figure {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-stat);
  font-weight: var(--aha-fw-bold);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.aha-ageing__figure .aha-unit {
  color: var(--aha-green-400);
  margin-left: 0.02em;
}

.aha-ageing__label {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-h4);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-snug);
  color: #fff;
  margin-bottom: 0.5rem;
}

.aha-ageing__note {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-invert-muted);
  max-width: 48ch;
}

@media (min-width: 860px) {
  .aha-ageing__row {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: var(--aha-grid-gap);
    align-items: center;
  }
}

/* Secondary figures — smaller supporting facts in a quiet row */
.aha-ageing__minor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--aha-grid-gap);
  margin-top: clamp(2.5rem, 1.8rem + 2.4vw, 3.75rem);
}

.aha-ageing__minor-item {
  padding-top: var(--aha-space-sm);
  border-top: 2px solid var(--aha-green-500);
}

.aha-ageing__minor-figure {
  display: block;
  font-family: var(--aha-font-heading);
  font-size: clamp(1.75rem, 1.5rem + 1.1vw, 2.5rem);
  font-weight: var(--aha-fw-bold);
  line-height: 1.05;
  letter-spacing: var(--aha-ls-display);
  color: var(--aha-green-300);
  font-variant-numeric: tabular-nums;
}

.aha-ageing__minor-label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--aha-fs-sm);
  line-height: 1.55;
  color: var(--aha-ink-invert-muted);
}


/* ==========================================================================
   04 — aha-problem  (fragmented ecosystem -> AHA as connective infrastructure)
   ========================================================================== */
.aha-problem { background-color: var(--aha-paper); }

.aha-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  align-items: start;
}

@media (min-width: 1000px) {
  .aha-problem__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* Left: the structural problems, as a numbered editorial list */
.aha-problem__list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--aha-line); }

.aha-problem__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 var(--aha-space-md);
  padding-block: var(--aha-space-md);
  border-bottom: 1px solid var(--aha-line);
}

.aha-problem__num {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-xs);
  font-weight: var(--aha-fw-semibold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: var(--aha-ink-subtle);
  padding-top: 0.35em;
}

.aha-problem__title {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-h4);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink);
}

.aha-problem__text {
  grid-column: 2;
  margin-top: 0.4rem;
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: 44ch;
}

/* Right: the answer panel */
.aha-problem__answer {
  position: relative;
  padding: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  background-color: var(--aha-blue-900);
  border-radius: var(--aha-radius-lg);
  color: #fff;
  overflow: hidden;
}

.aha-problem__answer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 100% 0%, rgba(73, 174, 80, 0.22), transparent 70%);
  pointer-events: none;
}

.aha-problem__answer > * { position: relative; }

.aha-problem__answer-title {
  font-size: var(--aha-fs-h3);
  color: #fff;
  margin-bottom: var(--aha-space-sm);
}

.aha-problem__answer-text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-invert-muted);
}

.aha-problem__answer-list {
  margin: var(--aha-space-md) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.aha-problem__answer-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-size: var(--aha-fs-sm);
  line-height: 1.6;
  color: #fff;
}

.aha-problem__answer-list .aha-icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.28em;
  color: var(--aha-green-400);
}

/* Converging-lines figure that visualises fragmentation resolving into AHA */
.aha-problem__figure { margin-top: var(--aha-space-lg); }

.aha-problem__figure svg { width: 100%; height: auto; overflow: visible; }

.aha-problem__figure .aha-conv-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.25;
}

.aha-problem__figure .aha-conv-dot { fill: var(--aha-green-400); }

.aha-problem__figure .aha-conv-hub {
  fill: #fff;
  stroke: var(--aha-green-400);
  stroke-width: 2;
}

.aha-problem__figure .aha-conv-hub-label {
  font-family: var(--aha-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--aha-blue-900);
  text-anchor: middle;
  dominant-baseline: central;
}


/* ==========================================================================
   05 — aha-network  (Connecting the ecosystem)
   ========================================================================== */
.aha-network { background-color: var(--aha-bg-muted); }

.aha-network__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}

@media (min-width: 1000px) {
  /* The diagram is the point of the section, so it gets the larger column */
  .aha-network__layout { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
}

.aha-network__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 660px;
  margin-inline: auto;
}

.aha-network__svg { width: 100%; height: 100%; overflow: visible; }

.aha-network__edge {
  fill: none;
  stroke: var(--aha-blue-300);
  stroke-width: 1.15;
  opacity: 0.55;
  transition: stroke var(--aha-dur-base) var(--aha-ease-out),
              opacity var(--aha-dur-base) var(--aha-ease-out),
              stroke-width var(--aha-dur-base) var(--aha-ease-out);
}

.aha-network__edge.is-active {
  stroke: var(--aha-green-600);
  stroke-width: 2;
  opacity: 1;
}

.aha-network__ring {
  fill: none;
  stroke: var(--aha-line-strong);
  stroke-dasharray: 2 7;
  stroke-linecap: round;
  opacity: 0.7;
}

.aha-network__core {
  fill: var(--aha-blue-800);
  transition: fill var(--aha-dur-base) var(--aha-ease-out);
}

.aha-network__core-pulse {
  fill: none;
  stroke: var(--aha-green-500);
  stroke-width: 1.5;
  opacity: 0.5;
}

.aha-network__core-label {
  font-family: var(--aha-font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: central;
}

.aha-network__core-sub {
  font-family: var(--aha-font-body);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--aha-green-300);
  text-anchor: middle;
  dominant-baseline: central;
}

/* Nodes are real buttons so the diagram is keyboard operable */
.aha-network__node { cursor: pointer; }

.aha-network__node-shape {
  fill: var(--aha-paper);
  stroke: var(--aha-line-strong);
  stroke-width: 1.25;
  transition: fill var(--aha-dur-base) var(--aha-ease-out),
              stroke var(--aha-dur-base) var(--aha-ease-out);
}

.aha-network__node-text {
  font-family: var(--aha-font-heading);
  font-size: 15px;
  font-weight: 600;
  fill: var(--aha-blue-900);
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.aha-network__node:hover .aha-network__node-shape,
.aha-network__node:focus-visible .aha-network__node-shape,
.aha-network__node.is-active .aha-network__node-shape {
  fill: var(--aha-green-50);
  stroke: var(--aha-green-600);
}

.aha-network__node:focus-visible { outline: none; }

.aha-network__node:focus-visible .aha-network__node-shape {
  stroke-width: 2.5;
  stroke: var(--aha-green-700);
}

/* Description panel that responds to the active node */
.aha-network__detail {
  padding-top: var(--aha-space-md);
  border-top: 2px solid var(--aha-green-600);
  min-height: 8.5rem;
}

.aha-network__detail-title {
  font-size: var(--aha-fs-h4);
  margin-bottom: 0.5rem;
}

.aha-network__detail-text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: 46ch;
}

.aha-network__hint {
  margin-top: var(--aha-space-md);
  font-size: var(--aha-fs-xs);
  line-height: 1.6;
  color: var(--aha-ink-subtle);
  max-width: 40ch;
}

/* Below the diagram breakpoint the node labels would fall under 14px, so the
   section recomposes: the SVG is dropped entirely and the same content is
   presented as a readable list. Above it, the list stays in the DOM for
   assistive technology but is visually hidden. */
.aha-network__stage,
.aha-network__hint { display: none; }

.aha-network__list {
  margin: var(--aha-space-lg) 0 0;
  border-top: 1px solid var(--aha-line);
}

.aha-network__list dt {
  padding-top: var(--aha-space-sm);
  font-family: var(--aha-font-heading);
  font-size: 1.0625rem;
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink);
}

.aha-network__list dd {
  margin: 0.35rem 0 0;
  padding-bottom: var(--aha-space-sm);
  border-bottom: 1px solid var(--aha-line);
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
}

@media (min-width: 760px) {
  .aha-network__stage,
  .aha-network__hint { display: block; }

  .aha-network__list {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}


/* ==========================================================================
   06 — aha-missions  (eight strategic missions, index-grid preview)
   Border-driven grid rather than floating cards — reads as an institutional
   index, not a template.
   ========================================================================== */
.aha-missions { background-color: var(--aha-ivory); }

.aha-missions__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--aha-line);
  border-left: 1px solid var(--aha-line);
}

@media (min-width: 640px) {
  .aha-missions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .aha-missions__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.aha-mission-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--aha-space-xs);
  padding: clamp(1.5rem, 1.1rem + 1.1vw, 2rem);
  border-right: 1px solid var(--aha-line);
  border-bottom: 1px solid var(--aha-line);
  background-color: transparent;
  overflow: hidden;
  transition: background-color var(--aha-dur-base) var(--aha-ease-out);
}

/* Accent bar wipes up from the bottom edge on hover */
.aha-mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--aha-green-600);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--aha-dur-base) var(--aha-ease-out);
}

.aha-mission-card:hover,
.aha-mission-card:focus-within { background-color: var(--aha-paper); }

.aha-mission-card:hover::before,
.aha-mission-card:focus-within::before { transform: scaleX(1); }

.aha-mission-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--aha-space-sm);
  margin-bottom: var(--aha-space-2xs);
}

.aha-mission-card__num {
  font-family: var(--aha-font-heading);
  font-size: 1.5rem;
  font-weight: var(--aha-fw-bold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--aha-blue-200);
  transition: color var(--aha-dur-base) var(--aha-ease-out);
}

.aha-mission-card:hover .aha-mission-card__num,
.aha-mission-card:focus-within .aha-mission-card__num { color: var(--aha-green-600); }

.aha-mission-card__icon {
  color: var(--aha-blue-600);
  transition: transform var(--aha-dur-base) var(--aha-ease-out);
}

.aha-mission-card:hover .aha-mission-card__icon { transform: translateY(-2px); }

.aha-mission-card__title {
  font-size: 1.0625rem;
  font-weight: var(--aha-fw-semibold);
  line-height: 1.35;
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink);
}

.aha-mission-card__title a {
  color: inherit;
  text-decoration: none;
}

.aha-mission-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.aha-mission-card__text {
  font-size: var(--aha-fs-xs);
  line-height: 1.65;
  color: var(--aha-ink-muted);
}

.aha-missions__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--aha-space-md);
  margin-top: var(--aha-space-xl);
}

.aha-missions__foot-note {
  font-size: var(--aha-fs-sm);
  line-height: 1.6;
  color: var(--aha-ink-muted);
  max-width: 52ch;
}


/* ==========================================================================
   07 — aha-triad  (Samaaj x Sarkaar x Bazaar)
   ========================================================================== */
.aha-triad {
  background-color: var(--aha-paper);
  border-top: 1px solid var(--aha-line);
}

.aha-triad__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-md);
}

.aha-triad__col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--aha-space-xs);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  background-color: var(--aha-bg-muted);
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
  transition: border-color var(--aha-dur-base) var(--aha-ease-out),
              background-color var(--aha-dur-base) var(--aha-ease-out);
}

.aha-triad__col:hover {
  background-color: var(--aha-green-50);
  border-color: var(--aha-green-200);
}

.aha-triad__term {
  font-family: var(--aha-font-heading);
  font-size: clamp(1.625rem, 1.4rem + 1vw, 2.125rem);
  font-weight: var(--aha-fw-bold);
  letter-spacing: var(--aha-ls-heading);
  color: var(--aha-blue-800);
}

.aha-triad__gloss {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-green-700);
}

.aha-triad__text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
}

.aha-triad__icon { color: var(--aha-blue-600); margin-bottom: var(--aha-space-2xs); }

/* Connector: vertical on mobile, horizontal on desktop */
.aha-triad__connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--aha-space-2xs);
}

.aha-triad__connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--aha-green-200), var(--aha-green-500));
  transform: translateX(-50%);
}

.aha-triad__hub {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1.5rem;
  background-color: var(--aha-blue-900);
  color: #fff;
  border-radius: var(--aha-radius-md);
  box-shadow: var(--aha-shadow-md);
}

.aha-triad__hub-name {
  font-family: var(--aha-font-heading);
  font-size: 1.05rem;
  font-weight: var(--aha-fw-bold);
  letter-spacing: 0.12em;
}

.aha-triad__hub-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aha-green-300);
}

@media (min-width: 900px) {
  .aha-triad__stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--aha-grid-gap);
    padding-top: 5.5rem;
  }

  /* The hub sits above the three columns, joined by a horizontal rule */
  .aha-triad__connector {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5.5rem;
    padding: 0;
  }

  .aha-triad__connector::before {
    left: 16.6667%;
    right: 16.6667%;
    top: auto;
    bottom: 0;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--aha-green-300), var(--aha-green-600), var(--aha-green-300));
    transform: none;
  }

  /* Drop-lines from the rule into each column */
  .aha-triad__connector::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 3.4rem;
    width: 2px;
    height: 2.1rem;
    background-color: var(--aha-green-500);
    transform: translateX(-50%);
  }

  .aha-triad__hub { position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
}


/* ==========================================================================
   08 — aha-knowledge
   Editorial preview built from a repeatable item structure so real
   publications drop straight in.
   ========================================================================== */
.aha-knowledge { background-color: var(--aha-bg-muted); }

.aha-knowledge__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-grid-gap);
}

@media (min-width: 720px) {
  .aha-knowledge__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .aha-knowledge__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.aha-knowledge__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--aha-paper);
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
  overflow: hidden;
  transition: border-color var(--aha-dur-base) var(--aha-ease-out),
              box-shadow var(--aha-dur-base) var(--aha-ease-out),
              transform var(--aha-dur-base) var(--aha-ease-out);
}

.aha-knowledge__item:hover,
.aha-knowledge__item:focus-within {
  border-color: var(--aha-blue-200);
  box-shadow: var(--aha-shadow-md);
  transform: translateY(-3px);
}

.aha-knowledge__media { border-radius: 0; }

.aha-knowledge__body {
  display: flex;
  flex-direction: column;
  gap: var(--aha-space-2xs);
  flex: 1;
  padding: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
}

.aha-knowledge__kicker {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-green-700);
}

.aha-knowledge__title {
  font-size: var(--aha-fs-h4);
  letter-spacing: var(--aha-ls-snug);
}

.aha-knowledge__title a { color: inherit; text-decoration: none; }
.aha-knowledge__title a::after { content: ""; position: absolute; inset: 0; }

.aha-knowledge__text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
}

.aha-knowledge__meta {
  margin-top: auto;
  padding-top: var(--aha-space-sm);
  font-size: var(--aha-fs-xs);
  color: var(--aha-ink-subtle);
}

/* Empty-state note: the section ships before real publications exist */
.aha-knowledge__notice {
  margin-top: var(--aha-space-lg);
  padding: var(--aha-space-md);
  border: 1px dashed var(--aha-line-strong);
  border-radius: var(--aha-radius-md);
  font-size: var(--aha-fs-sm);
  line-height: 1.6;
  color: var(--aha-ink-muted);
}


/* ==========================================================================
   09 — aha-cta  (shared closing call to action)
   ========================================================================== */
.aha-cta {
  position: relative;
  background-color: var(--aha-blue-950);
  color: #fff;
  overflow: hidden;
}

.aha-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 12% 100%, rgba(73, 174, 80, 0.22), transparent 68%),
    radial-gradient(46% 56% at 92% 0%, rgba(42, 111, 166, 0.30), transparent 70%);
  pointer-events: none;
}

.aha-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-lg);
  align-items: end;
}

.aha-cta__title {
  font-size: var(--aha-fs-h1);
  font-weight: var(--aha-fw-bold);
  letter-spacing: var(--aha-ls-display);
  color: #fff;
  max-width: 20ch;
}

.aha-cta__title em { font-style: normal; color: var(--aha-green-400); }

.aha-cta__text {
  margin-top: var(--aha-space-md);
  font-size: var(--aha-fs-lead);
  line-height: var(--aha-lh-snug);
  color: var(--aha-ink-invert-muted);
  max-width: 46ch;
}

.aha-cta__actions { gap: var(--aha-space-sm); }

@media (min-width: 960px) {
  .aha-cta__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: var(--aha-grid-gap);
  }
  .aha-cta__actions { justify-content: flex-end; }
}


/* ==========================================================================
   10 — aha-statement  (shared large editorial statement)
   ========================================================================== */
.aha-statement {
  background-color: var(--aha-green-50);
  border-block: 1px solid var(--aha-green-100);
}

.aha-statement__quote { margin: 0; }

.aha-statement__text {
  font-family: var(--aha-font-serif);
  font-style: italic;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.5rem);
  font-weight: var(--aha-fw-regular);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--aha-blue-900);
  text-wrap: balance;
  /* Measure must be set on the element carrying the display font — `ch` on the
     blockquote would resolve against the much smaller body font size. */
  max-width: 21ch;
}

.aha-statement__text em { font-style: italic; color: var(--aha-green-800); }

.aha-statement__cite {
  display: block;
  margin-top: var(--aha-space-md);
  font-family: var(--aha-font-heading);
  font-style: normal;
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-green-800);
}

.aha-statement__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-lg);
  align-items: center;
}

@media (min-width: 960px) {
  .aha-statement__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--aha-grid-gap);
  }
  .aha-statement__text { max-width: 19ch; }
}


/* ==========================================================================
   11 — aha-pillars  (icon-led value columns, shared)
   ========================================================================== */
.aha-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--aha-grid-gap);
}

.aha-pillar {
  display: flex;
  flex-direction: column;
  gap: var(--aha-space-2xs);
  padding-top: var(--aha-space-md);
  border-top: 2px solid var(--aha-blue-600);
}

.aha-pillar--accent { border-top-color: var(--aha-green-600); }

.aha-pillar__icon { color: var(--aha-blue-600); margin-bottom: var(--aha-space-2xs); }
.aha-pillar--accent .aha-pillar__icon { color: var(--aha-green-700); }

.aha-pillar__title {
  font-size: var(--aha-fs-h4);
  letter-spacing: var(--aha-ls-snug);
}

.aha-pillar__text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
}


/* ==========================================================================
   12 — aha-timeline  (how AHA works — sequential process)
   ========================================================================== */
.aha-timeline { position: relative; }

.aha-timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* The spine, drawn once and progressively filled on scroll */
.aha-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background-color: var(--aha-line);
}

.aha-timeline__progress {
  position: absolute;
  left: 15px;
  top: 0.6rem;
  width: 2px;
  height: 0;
  background-color: var(--aha-green-600);
  transform-origin: top center;
}

.aha-timeline__item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: clamp(2rem, 1.5rem + 1.6vw, 3rem);
}

.aha-timeline__item:last-child { padding-bottom: 0; }

.aha-timeline__marker {
  position: absolute;
  left: 0;
  top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--aha-paper);
  border: 2px solid var(--aha-line-strong);
  border-radius: 50%;
  font-family: var(--aha-font-heading);
  font-size: 0.8125rem;
  font-weight: var(--aha-fw-bold);
  font-variant-numeric: tabular-nums;
  color: var(--aha-ink-muted);
  transition: border-color var(--aha-dur-base) var(--aha-ease-out),
              color var(--aha-dur-base) var(--aha-ease-out),
              background-color var(--aha-dur-base) var(--aha-ease-out);
}

.aha-timeline__item.is-active .aha-timeline__marker {
  background-color: var(--aha-green-600);
  border-color: var(--aha-green-600);
  color: #fff;
}

.aha-timeline__title {
  font-size: var(--aha-fs-h4);
  letter-spacing: var(--aha-ls-snug);
  margin-bottom: 0.4rem;
}

.aha-timeline__text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: 56ch;
}

@media (min-width: 720px) {
  .aha-timeline::before,
  .aha-timeline__progress { left: 19px; }
  .aha-timeline__marker { width: 40px; height: 40px; font-size: 0.875rem; }
  .aha-timeline__item { padding-left: 4.25rem; }
}


/* ==========================================================================
   13 — aha-missions-detail  (What We Do — sticky index + mission bodies)
   ========================================================================== */
.aha-missions-detail { background-color: var(--aha-ivory); }

.aha-missions-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-grid-gap);
  align-items: start;
}

/* Sticky index — desktop only; on mobile the list is redundant with the flow */
.aha-missions-detail__index { display: none; }

@media (min-width: 1024px) {
  .aha-missions-detail__layout {
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
    gap: clamp(2.5rem, 1rem + 4vw, 5rem);
  }

  .aha-missions-detail__index {
    display: block;
    position: sticky;
    top: calc(var(--aha-header-h) + 2.5rem);
  }
}

.aha-missions-detail__index-title {
  margin-bottom: var(--aha-space-md);
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-ink-subtle);
}

.aha-missions-detail__index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--aha-line);
}

.aha-missions-detail__index-item { border-bottom: 1px solid var(--aha-line); }

.aha-missions-detail__index-link {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.85rem 0.5rem 0.85rem 0;
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-sm);
  font-weight: var(--aha-fw-medium);
  line-height: 1.4;
  color: var(--aha-ink-muted);
  text-decoration: none;
  transition: color var(--aha-dur-fast) var(--aha-ease-out),
              padding-inline-start var(--aha-dur-base) var(--aha-ease-out);
}

.aha-missions-detail__index-link:hover { color: var(--aha-blue-700); padding-inline-start: 0.35rem; }

.aha-missions-detail__index-num {
  font-variant-numeric: tabular-nums;
  font-size: var(--aha-fs-xs);
  font-weight: var(--aha-fw-semibold);
  color: var(--aha-ink-subtle);
  transition: color var(--aha-dur-fast) var(--aha-ease-out);
}

.aha-missions-detail__index-item.is-current .aha-missions-detail__index-link {
  color: var(--aha-blue-900);
  font-weight: var(--aha-fw-semibold);
}

.aha-missions-detail__index-item.is-current .aha-missions-detail__index-num { color: var(--aha-green-700); }

/* Progress meter under the index */
.aha-missions-detail__meter {
  height: 2px;
  margin-top: var(--aha-space-md);
  background-color: var(--aha-line);
}

.aha-missions-detail__meter-fill {
  display: block;
  height: 100%;
  width: 0;
  background-color: var(--aha-green-600);
}

/* Mission bodies ---------------------------------------------------------- */
.aha-missions-detail__list { display: flex; flex-direction: column; }

.aha-mission {
  position: relative;
  padding-block: clamp(2.75rem, 1.8rem + 3.2vw, 4.5rem);
  border-top: 1px solid var(--aha-line);
  scroll-margin-top: calc(var(--aha-header-h) + 2rem);
}

.aha-mission:first-child { border-top: 0; padding-block-start: 0; }

.aha-mission__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-sm);
  margin-bottom: var(--aha-space-md);
}

.aha-mission__num {
  font-family: var(--aha-font-heading);
  font-size: clamp(3rem, 2.2rem + 3vw, 5rem);
  font-weight: var(--aha-fw-bold);
  font-variant-numeric: tabular-nums;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--aha-blue-100);
}

.aha-mission__title {
  font-size: var(--aha-fs-h3);
  letter-spacing: var(--aha-ls-heading);
  max-width: 20ch;
}

.aha-mission__text {
  font-size: var(--aha-fs-body);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: var(--aha-measure);
}

.aha-mission__media {
  margin-top: var(--aha-space-lg);
  border-radius: var(--aha-radius-md);
}

.aha-mission__focus {
  margin-top: var(--aha-space-lg);
  padding-top: var(--aha-space-md);
  border-top: 1px solid var(--aha-line);
}

.aha-mission__focus-title {
  margin-bottom: var(--aha-space-sm);
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-ink-subtle);
}

.aha-mission__partners {
  margin-top: var(--aha-space-md);
  padding: var(--aha-space-sm) var(--aha-space-md);
  background-color: var(--aha-blue-50);
  border-left: 3px solid var(--aha-blue-600);
  border-radius: 0 var(--aha-radius-sm) var(--aha-radius-sm) 0;
  font-size: var(--aha-fs-sm);
  line-height: 1.6;
  color: var(--aha-ink-muted);
}

@media (min-width: 640px) {
  .aha-mission__head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--aha-space-md) var(--aha-space-lg);
    align-items: start;
  }
}


/* ==========================================================================
   14 — aha-opportunity  (Why AHA — dimension-by-dimension data story)
   ========================================================================== */
.aha-opportunity { background-color: var(--aha-paper); }

.aha-opportunity__rows { border-top: 1px solid var(--aha-line); }

.aha-dimension {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-md);
  padding-block: clamp(2.25rem, 1.6rem + 2.2vw, 3.5rem);
  border-bottom: 1px solid var(--aha-line);
}

.aha-dimension__label {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-ink-subtle);
}

.aha-dimension__figure {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-stat-sm);
  font-weight: var(--aha-fw-bold);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--aha-blue-800);
  font-variant-numeric: tabular-nums;
}

.aha-dimension__figure .aha-unit { color: var(--aha-green-700); }

.aha-dimension__data {
  margin-top: 0.7rem;
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: 40ch;
}

.aha-dimension__why {
  padding-top: var(--aha-space-sm);
  border-top: 2px solid var(--aha-green-600);
}

.aha-dimension__why-title {
  margin-bottom: 0.5rem;
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-green-800);
}

.aha-dimension__why-text {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
  max-width: 52ch;
}

@media (min-width: 900px) {
  .aha-dimension {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--aha-grid-gap);
    align-items: start;
  }
}

/* Dimensions that carry a chart span the full row */
.aha-dimension--wide { grid-template-columns: minmax(0, 1fr); }


/* ==========================================================================
   15 — aha-chart  (shared chart primitives)
   --------------------------------------------------------------------------
   Charts are single-hue by design: one measure, one colour. Where two marks
   appear in the same frame they encode observed vs projected (solid vs
   hatched) rather than two categories, so no categorical palette is cycled.
   Every chart ships a <details> data table so the numbers are never
   colour- or shape-dependent.
   ========================================================================== */
.aha-chart {
  margin: 0;
  padding: clamp(1.25rem, 1rem + 1.2vw, 2rem);
  background-color: var(--aha-ivory);
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
}

.aha-chart__title {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-h4);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink);
}

.aha-chart__sub {
  margin-top: 0.35rem;
  font-size: var(--aha-fs-xs);
  line-height: 1.55;
  color: var(--aha-ink-muted);
  max-width: 60ch;
}

.aha-chart__plot { margin-top: var(--aha-space-md); }

/* Column chart ------------------------------------------------------------ */
.aha-chart__cols {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(0.5rem, 0.2rem + 1vw, 1.25rem);
  height: clamp(200px, 150px + 12vw, 300px);
  /* Headroom so the direct label above the tallest bar is never clipped */
  padding-top: 2rem;
  border-bottom: 1px solid var(--aha-line-strong);
}

.aha-chart__col {
  --h: 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.aha-chart__bar {
  position: relative;
  width: 100%;
  /* Height comes from --h; growth is animated with scaleY so nothing reflows */
  height: var(--h);
  min-height: 3px;
  background-color: var(--aha-blue-600);
  /* 4px rounded data-end, square at the baseline */
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  transition: filter var(--aha-dur-fast) var(--aha-ease-out);
}

/* Projected values are the same hue, hatched — texture, not a second colour */
.aha-chart__col--projected .aha-chart__bar {
  background-color: var(--aha-blue-400);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.40) 0 2px,
    transparent 2px 8px
  );
}

.aha-chart__col:hover .aha-chart__bar,
.aha-chart__col:focus-within .aha-chart__bar { filter: brightness(0.88); }

/* Direct label sits outside the bar so scaling the mark never clips it */
.aha-chart__value {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--h) + 0.45rem);
  text-align: center;
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-xs);
  font-weight: var(--aha-fw-semibold);
  font-variant-numeric: tabular-nums;
  color: var(--aha-ink);
  white-space: nowrap;
}

.aha-chart__axis {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: clamp(0.5rem, 0.2rem + 1vw, 1.25rem);
  margin-top: 0.6rem;
}

.aha-chart__tick {
  text-align: center;
  font-size: var(--aha-fs-xs);
  font-variant-numeric: tabular-nums;
  color: var(--aha-ink-subtle);
}

/* Range chart (health span within life span) ------------------------------ */
.aha-chart__range {
  position: relative;
  height: 46px;
  background-color: var(--aha-blue-50);
  border-radius: var(--aha-radius-sm);
  overflow: hidden;
}

.aha-chart__range-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0%);
  background-color: var(--aha-green-700);
  border-radius: var(--aha-radius-sm) 4px 4px var(--aha-radius-sm);
}

.aha-chart__range-gap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--from, 0%);
  width: var(--span, 0%);
  /* 2px surface gap separates the two marks */
  border-left: 2px solid var(--aha-ivory);
  background-color: var(--aha-blue-200);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0 2px,
    transparent 2px 8px
  );
}

.aha-chart__range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: var(--aha-fs-xs);
  font-variant-numeric: tabular-nums;
  color: var(--aha-ink-subtle);
}

/* Legend + data table ----------------------------------------------------- */
.aha-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: var(--aha-space-md);
  padding: 0;
  list-style: none;
  font-size: var(--aha-fs-xs);
  color: var(--aha-ink-muted);
}

.aha-chart__legend li { display: flex; align-items: center; gap: 0.5rem; }

.aha-chart__swatch {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: var(--aha-blue-600);
}

.aha-chart__swatch--projected {
  background-color: var(--aha-blue-400);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55) 0 2px,
    transparent 2px 5px
  );
}

.aha-chart__swatch--health { background-color: var(--aha-green-700); }

.aha-chart__swatch--gap {
  background-color: var(--aha-blue-200);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0 2px,
    transparent 2px 5px
  );
}

.aha-chart__table { margin-top: var(--aha-space-md); }

.aha-chart__table summary {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-xs);
  font-weight: var(--aha-fw-semibold);
  color: var(--aha-link);
  cursor: pointer;
  padding: 0.35rem 0;
}

.aha-chart__table table {
  width: 100%;
  margin-top: var(--aha-space-2xs);
  border-collapse: collapse;
  font-size: var(--aha-fs-xs);
  font-variant-numeric: tabular-nums;
}

.aha-chart__table caption {
  text-align: left;
  padding-bottom: 0.5rem;
  color: var(--aha-ink-subtle);
}

.aha-chart__table th,
.aha-chart__table td {
  padding: 0.5rem 0.75rem 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--aha-line);
}

.aha-chart__table th { font-weight: var(--aha-fw-semibold); color: var(--aha-ink); }
.aha-chart__table td { color: var(--aha-ink-muted); }

/* Tooltip */
.aha-chart__tip {
  position: absolute;
  z-index: 5;
  max-width: 16rem;
  padding: 0.55rem 0.75rem;
  background-color: var(--aha-blue-900);
  color: #fff;
  border-radius: var(--aha-radius-sm);
  font-size: var(--aha-fs-xs);
  line-height: 1.45;
  box-shadow: var(--aha-shadow-md);
  opacity: 0;
  transform: translate(-50%, -0.4rem);
  pointer-events: none;
  transition: opacity var(--aha-dur-fast) var(--aha-ease-out);
}

.aha-chart__tip.is-visible { opacity: 1; }

.aha-chart__tip b { display: block; font-weight: var(--aha-fw-semibold); }


/* ==========================================================================
   16 — aha-gap  (The gap -> AHA responds)
   ========================================================================== */
.aha-gap { background-color: var(--aha-bg-muted); }

.aha-gap__legend {
  display: none;
  gap: var(--aha-grid-gap);
  padding-bottom: var(--aha-space-sm);
  border-bottom: 1px solid var(--aha-line-strong);
  margin-bottom: var(--aha-space-2xs);
}

.aha-gap__legend span {
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
}

.aha-gap__legend span:first-child { color: var(--aha-ink-subtle); }
.aha-gap__legend span:last-child { color: var(--aha-green-800); }

.aha-gap__list { margin: 0; padding: 0; list-style: none; }

.aha-gap__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-sm);
  padding-block: var(--aha-space-md);
  border-bottom: 1px solid var(--aha-line);
}

.aha-gap__problem {
  position: relative;
  padding-left: var(--aha-space-md);
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-h4);
  font-weight: var(--aha-fw-semibold);
  line-height: 1.35;
  letter-spacing: var(--aha-ls-snug);
  color: var(--aha-ink-muted);
}

.aha-gap__problem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 2px;
  background-color: var(--aha-ink-subtle);
}

.aha-gap__response {
  position: relative;
  padding-left: var(--aha-space-md);
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink);
}

.aha-gap__response::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--aha-green-600);
  border-right: 2px solid var(--aha-green-600);
  transform: rotate(45deg);
}

@media (min-width: 900px) {
  .aha-gap__legend { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .aha-gap__row {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--aha-grid-gap);
    align-items: start;
    padding-block: var(--aha-space-lg);
  }
}


/* ==========================================================================
   17 — aha-pathways  (stakeholder entry points)
   ========================================================================== */
.aha-pathways { background-color: var(--aha-ivory); }

.aha-pathways__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--aha-grid-gap);
}

.aha-pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--aha-space-2xs);
  padding: clamp(1.35rem, 1.1rem + 0.9vw, 1.85rem);
  background-color: var(--aha-paper);
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
  transition: border-color var(--aha-dur-base) var(--aha-ease-out),
              box-shadow var(--aha-dur-base) var(--aha-ease-out),
              transform var(--aha-dur-base) var(--aha-ease-out);
}

.aha-pathway:hover,
.aha-pathway:focus-within {
  border-color: var(--aha-green-300);
  box-shadow: var(--aha-shadow-md);
  transform: translateY(-3px);
}

.aha-pathway__icon {
  color: var(--aha-green-700);
  margin-bottom: var(--aha-space-2xs);
}

.aha-pathway__title {
  font-size: 1.0625rem;
  font-weight: var(--aha-fw-semibold);
  line-height: 1.35;
  letter-spacing: var(--aha-ls-snug);
}

.aha-pathway__text {
  font-size: var(--aha-fs-xs);
  line-height: 1.65;
  color: var(--aha-ink-muted);
}


/* ==========================================================================
   18 — aha-contact
   ========================================================================== */
.aha-contact { background-color: var(--aha-paper); }

.aha-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

@media (min-width: 1000px) {
  .aha-contact__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 1.5rem + 4vw, 5rem);
  }
}

.aha-contact__panel {
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
  background-color: var(--aha-bg-muted);
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-lg);
}

.aha-contact__aside { display: grid; gap: var(--aha-space-lg); }

.aha-contact__block {
  padding-top: var(--aha-space-md);
  border-top: 2px solid var(--aha-blue-600);
}

.aha-contact__block--accent { border-top-color: var(--aha-green-600); }

.aha-contact__block-title {
  margin-bottom: var(--aha-space-2xs);
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-ink-subtle);
}

.aha-contact__address {
  font-style: normal;
  font-size: var(--aha-fs-body);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink);
}

.aha-contact__address a { color: var(--aha-link); text-decoration: none; }
.aha-contact__address a:hover { text-decoration: underline; }

/* Map placeholder — a schematic locator, not an embedded third-party frame */
.aha-contact__map {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
  background-color: var(--aha-blue-50);
  overflow: hidden;
}

.aha-contact__map svg { width: 100%; height: 100%; }

.aha-contact__map-grid { stroke: var(--aha-blue-200); stroke-width: 1; }
.aha-contact__map-road { stroke: var(--aha-blue-300); stroke-width: 3; fill: none; stroke-linecap: round; }
.aha-contact__map-block { fill: var(--aha-blue-100); }
.aha-contact__map-pin { fill: var(--aha-green-600); }
.aha-contact__map-pin-ring { fill: none; stroke: var(--aha-green-600); stroke-width: 1.5; opacity: 0.55; }

.aha-contact__map-label {
  position: absolute;
  left: var(--aha-space-sm);
  bottom: var(--aha-space-sm);
  padding: 0.5rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: var(--aha-radius-sm);
  font-size: var(--aha-fs-xs);
  line-height: 1.4;
  color: var(--aha-ink);
  box-shadow: var(--aha-shadow-sm);
}


/* ==========================================================================
   19 — aha-sources  (citation block, shared)
   ========================================================================== */
.aha-sources {
  padding-top: var(--aha-space-md);
  border-top: 1px solid var(--aha-line);
}

.aha-sources__title {
  margin-bottom: var(--aha-space-2xs);
  font-family: var(--aha-font-heading);
  font-size: var(--aha-fs-eyebrow);
  font-weight: var(--aha-fw-semibold);
  letter-spacing: var(--aha-ls-eyebrow);
  text-transform: uppercase;
  color: var(--aha-ink-subtle);
}

.aha-sources__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: var(--aha-fs-xs);
  line-height: 1.6;
  color: var(--aha-ink-subtle);
  max-width: var(--aha-measure-wide);
}

.aha-on-dark .aha-sources { border-top-color: var(--aha-line-invert); }


/* ==========================================================================
   20 — aha-trustees (Board of Trustees / Leadership Section)
   ========================================================================== */
.aha-trustees {
  background-color: var(--aha-paper);
  position: relative;
}

.aha-trustees__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--aha-space-lg);
  margin-top: var(--aha-space-xl);
}

@media (min-width: 768px) {
  .aha-trustees__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.aha-trustee-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--aha-line);
  border-radius: var(--aha-radius-md);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  box-shadow: var(--aha-shadow-sm);
  transition: transform var(--aha-dur-base) var(--aha-ease-out),
              box-shadow var(--aha-dur-base) var(--aha-ease-out),
              border-color var(--aha-dur-base) var(--aha-ease-out);
}

.aha-trustee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aha-shadow-md);
  border-color: var(--aha-blue-300);
}

.aha-trustee-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, var(--aha-blue-50) 100%);
  border-left: 4px solid var(--aha-blue-700);
}

.aha-trustee-card__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .aha-trustee-card__top {
    flex-direction: row;
    align-items: center;
  }
}

.aha-trustee-card__avatar {
  width: 130px;
  height: 130px;
  border-radius: var(--aha-radius-md);
  background: linear-gradient(135deg, var(--aha-blue-900), var(--aha-blue-700));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--aha-font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(11, 41, 66, 0.14);
  border: 3px solid #ffffff;
  outline: 1px solid var(--aha-line);
  overflow: hidden;
}

.aha-trustee-card__avatar img,
.aha-trustee-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--aha-dur-slow) var(--aha-ease-out);
}

.aha-trustee-card:hover .aha-trustee-card__avatar img {
  transform: scale(1.05);
}

/* Featured Patron Card with Extra Large High-Res Portrait Photo */
.aha-trustee-card--featured .aha-trustee-card__top {
  flex-direction: column;
}

@media (min-width: 640px) {
  .aha-trustee-card--featured .aha-trustee-card__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
  }
}

.aha-trustee-card--featured .aha-trustee-card__avatar {
  width: 180px;
  height: 210px;
  border-radius: var(--aha-radius-lg);
  border: 4px solid #ffffff;
  box-shadow: 0 12px 32px rgba(11, 41, 66, 0.18);
}

.aha-trustee-card__name {
  font-family: var(--aha-font-heading);
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  font-weight: 700;
  color: var(--aha-blue-950);
  margin: 0;
  line-height: 1.25;
}

.aha-trustee-card__role {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.25rem 0.65rem;
  background-color: var(--aha-blue-100);
  color: var(--aha-blue-900);
  font-family: var(--aha-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--aha-radius-xs);
}

.aha-trustee-card__role--patron {
  background-color: var(--aha-green-100);
  color: var(--aha-green-900);
}

.aha-trustee-card__bio {
  font-size: var(--aha-fs-sm);
  line-height: var(--aha-lh-loose);
  color: var(--aha-ink-muted);
}

.aha-trustee-card__bio p {
  margin-bottom: 0.85rem;
}

.aha-trustee-card__bio p:last-child {
  margin-bottom: 0;
}

