/* ==========================================================================
   1. ROOT & BASE
   ========================================================================== */
:root {
  --color-primary-navy: #4c9b8c;
  --color-accent-teal: #dc6c24;
  --color-accent-hover: #dc6c24;
  --color-text-main: #1F2937;
  --color-text-muted: #4B5563;
  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-focus-ring: #005A9C;
  
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width-container: 1200px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-fast: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
}

/* Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.text-center { text-align: center; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--color-primary-navy); color: white;
  padding: 0.75rem 1.25rem; z-index: 9999; text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   2. LAYOUT
   ========================================================================== */
.container {
  width: 100%; max-width: var(--max-width-container); margin: 0 auto; padding: 0 1.5rem;
}

.site-header { 
  background: white; border-bottom: 1px solid var(--color-border); 
  position: sticky; top: 0; z-index: 100; 
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
.nav-menu { 
  position: relative; 
}

.nav-list { 
  display: flex; 
  align-items: center; 
  list-style: none; 
  gap: 1.5rem; 
  margin: 0;
  padding: 0;
}

/* Establish relative anchor on parent containers */
.nav-item.has-dropdown,
.has-dropdown,
.has-subdropdown {
  position: relative;
}

.nav-link, .nav-dropdown-btn {
  background: none; 
  border: none; 
  font-size: 0.95rem; 
  font-weight: 600;
  color: var(--color-text-main); 
  text-decoration: none; 
  cursor: pointer;
  display: flex; 
  align-items: center; 
  gap: 0.4rem; 
  padding: 0.75rem 0; /* Expanded touch target */
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-dropdown-btn:hover { 
  color: var(--color-primary-navy); 
}

.chevron-icon { 
  transition: transform 0.2s ease; 
  pointer-events: none; /* Prevents icon from stealing cursor focus */
}

/* --- Dropdown Base --- */
.dropdown-menu, .subdropdown-menu {
  display: none; 
  position: absolute; 
  background-color: #ffffff; 
  min-width: 240px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12); 
  list-style: none;
  padding: 0.5rem 0; 
  border-radius: var(--border-radius-sm); 
  z-index: 1000;
}

/* --- Level 1: Primary Dropdown --- */
.dropdown-menu { 
  top: 100%; 
  left: 0; 
}

/* INVISIBLE BRIDGE (Primary): Fills the gap between button and menu so mouse never leaves hover area */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

/* --- Level 2: Secondary Sub-dropdown (Flyout) --- */
.subdropdown-menu { 
  top: 0; 
  left: 100%; 
}

/* INVISIBLE BRIDGE (Sub-dropdown): Fills horizontal gap when moving cursor right */
.subdropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 12px;
  height: 100%;
  background: transparent;
}

.dropdown-menu li { 
  position: relative; 
}

.dropdown-menu a { 
  display: block; 
  padding: 0.65rem 1.25rem; 
  color: var(--color-text-main); 
  text-decoration: none; 
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover { 
  background-color: var(--color-bg-light); 
  color: var(--color-primary-navy);
}

/* --- Display Rules (Hover, Focus & JS Active Class) --- */

/* 1. Primary Dropdown Display */
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.dropdown-menu.is-active {
  display: block !important;
}

/* 2. Sub-dropdown Display (Reveals on parent row hover/focus) */
.has-subdropdown:hover > .subdropdown-menu,
.has-subdropdown:focus-within > .subdropdown-menu {
  display: block !important;
}

/* Rotate Chevron */
.has-dropdown:hover .chevron-icon,
.nav-dropdown-btn[aria-expanded="true"] .chevron-icon { 
  transform: rotate(180deg); 
}

/* ==========================================================================
   4. COMPONENTS (Buttons, Badges, Cards)
   ========================================================================== */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; 
  padding: 0.65rem 1.25rem; font-size: 0.95rem; font-weight: 600; 
  border-radius: var(--border-radius-sm); text-decoration: none; cursor: pointer; 
  transition: all var(--transition-fast);
}
.btn-primary { background: var(--color-accent-teal); color: white; border: 2px solid var(--color-accent-teal); }
.btn-primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

.btn-secondary { background: var(--color-primary-navy); color: white; border: 2px solid var(--color-primary-navy); }

.btn-outline { background: transparent; color: var(--color-primary-navy); border: 2px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary-navy); }

.btn-large { padding: 0.85rem 1.75rem; font-size: 1.05rem; }

.badge { 
  display: inline-block; background: rgba(0, 128, 114, 0.1); color: var(--color-accent-teal); 
  font-weight: 700; font-size: 0.85rem; padding: 0.35rem 0.85rem; border-radius: 50px; margin-bottom: 1rem; 
}

/* ==========================================================================
   5. HERO SECTIONS
   ========================================================================== */

.hero-section,
.page-hero-banner {
  padding: 5rem 0;
}

.hero-section {
  background: linear-gradient(
    180deg,
    var(--color-bg-light) 0%,
    #ffffff 100%
  );
}

.page-hero-banner {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 35%
    ),
    linear-gradient(
      135deg,
      var(--color-primary-navy) 0%,
      #17325C 100%
    );
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.hero-title {
  max-width: 780px;
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--color-primary-navy);
}

.page-hero-banner .hero-title {
  color: #ffffff;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: #ffffff;
}

.hero-lead-center {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #CBD5E1;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-cta-group .btn {
  min-height: 48px;
}

/* Image hero */
.hero-has-bg {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 620px;
  padding: 7rem 0;
  color: #ffffff;
  background: #172b42;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 24s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.88) 0%,
      rgba(7, 25, 48, 0.70) 42%,
      rgba(7, 25, 48, 0.35) 75%,
      rgba(7, 25, 48, 0.20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 25, 48, 0.15),
      rgba(7, 25, 48, 0.30)
    );
}

.hero-has-bg .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

/* Glass card */
.glass-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #dc6c24;
  color: #0B1E36;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero buttons */
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-outline-light:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0B1E36;
  transform: translateY(-2px);
}

.btn-link-light {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.25rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-link-light:hover {
  color: #ffffff;
  opacity: 0.8;
  transform: translateX(3px);
}

/* Breadcrumbs */

.breadcrumb-nav { margin-bottom: 1.5rem; }
.breadcrumb-list { display: flex; justify-content: center; gap: 0.5rem; list-style: none; font-size: 0.9rem; }
.breadcrumb-list li::after { content: "/"; margin-left: 0.5rem; color: var(--color-accent-teal); }
.breadcrumb-list li:last-child::after { content: ""; }
.breadcrumb-list a { color: #94A3B8; text-decoration: none; }
.breadcrumb-list a:hover { color: white; }
.breadcrumb-list [aria-current="page"] { color: var(--color-accent-teal); font-weight: 600; }

/* ==========================================================================
   6. PAGE CONTENT SECTIONS
   ========================================================================== */
.foundations-section, .stats-section, .pillars-section, .offerings-section, .team-section, .news-section { padding: 4.5rem 0; }
.bg-light { background-color: var(--color-bg-light); }

.section-header { max-width: 700px; margin: 0 auto 3rem auto; text-align: center; }
.section-title { font-size: 2.25rem; color: var(--color-primary-navy); margin-bottom: 0.5rem; }
.section-lead { color: var(--color-text-muted); font-size: 1.05rem; }

/* Grids */
.foundations-grid, .stats-grid, .pillars-grid, .cards-grid, .news-grid { display: grid; gap: 1.5rem; }
.foundations-grid, .stats-grid, .cards-grid, .news-grid { grid-template-columns: repeat(3, 1fr); }
.pillars-grid { grid-template-columns: repeat(2, 1fr); }

/* Generic Card Styles */
.foundation-card, .stat-card, .card, .news-card { background: white; border: 1px solid var(--color-border); padding: 1.75rem; border-radius: var(--border-radius-md); }
.foundation-card { background: var(--color-bg-light); border-top: 4px solid var(--color-accent-teal); }

/* ==========================================================================
   7. PEOPLE & TEAM (Spotlights & Flip Cards)
   ========================================================================== */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* Spotlight Card */
.spotlight-card {
  background: white; border: 1px solid var(--color-border); border-top: 5px solid var(--color-accent-teal);
  border-radius: var(--border-radius-md); padding: 2.25rem; max-width: 900px; margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.chair-spotlight { border-top-color: var(--color-primary-navy); }

.spotlight-header { display: flex; gap: 1.75rem; align-items: center; margin-bottom: 1.25rem; }
.spotlight-avatar img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-border); }

.member-name { font-size: 1.15rem; font-weight: 700; color: var(--color-primary-navy); }
.member-role { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--color-accent-teal); }

.tag-group { display: flex; gap: 0.5rem; margin: 0.5rem 0; }
.badge-pill { background: rgba(0, 128, 114, 0.1); color: var(--color-accent-teal); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 50px; }
.badge-pill.navy { background: rgba(12, 30, 60, 0.1); color: var(--color-primary-navy); }

.linkedin-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: #0A66C2; font-weight: 600; text-decoration: none; }

.spotlight-preview { background: var(--color-bg-light); padding: 1rem 1.25rem; border-radius: var(--border-radius-sm); }
.spotlight-full-bio { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease-in-out; }

.hover-spotlight:hover .spotlight-full-bio, .hover-spotlight:focus .spotlight-full-bio {
  max-height: 250px; opacity: 1; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--color-border);
}

/* 3D Flip Cards */
.flip-card { height: 230px; perspective: 1000px; cursor: pointer; width: 100%; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1); transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner, .flip-card:focus .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front, .flip-card-back {
  position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
  border-radius: var(--border-radius-md); padding: 1.25rem; border: 1px solid var(--color-border);
}
.flip-card-front { background: white; display: flex; flex-direction: column; justify-content: space-between; }
.flip-card-back { background-color: var(--color-primary-navy); color: white; transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }

.card-person-layout { display: flex; gap: 1rem; align-items: flex-start; }
.person-photo img { width: 75px; height: 75px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-accent-teal); }
.meta-list { list-style: none; font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer { 
  background: #0d2137; /* Rich deep navy */
  color: #ffffff; 
  padding: 4.5rem 0 0 0; 
  margin-top: 4rem;
  border-top: 4px solid var(--color-accent-teal);
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1.5fr 1.8fr; 
  gap: 2.5rem; 
  padding-bottom: 3.5rem; 
}

/* Brand Column */
.footer-logo-img {
  filter: brightness(0) invert(1); /* Turns dark logo white for dark footer */
  margin-bottom: 1rem;
}

.footer-desc { 
  color: #94A3B8; 
  font-size: 0.9rem; 
  line-height: 1.6;
  margin-bottom: 1.25rem; 
}

/* Partner Highlight Box */
.footer-partner-callout {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-accent-teal);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.25rem;
}

.partner-text {
  font-size: 0.825rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.partner-text strong {
  color: var(--color-accent-teal);
}

.charity-number {
  font-size: 0.8rem;
  color: #64748B;
  font-style: italic;
}

/* Links & Headings */
.footer-heading { 
  font-size: 1.05rem; 
  font-weight: 700;
  margin-bottom: 1.25rem; 
  color: #ffffff; 
  letter-spacing: 0.5px;
}

.footer-links { 
  list-style: none; 
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a { 
  color: #94A3B8; 
  text-decoration: none; 
  font-size: 0.9rem; 
  transition: color var(--transition-fast); 
}

.footer-links a:hover { 
  color: var(--color-accent-teal); 
}

/* Recent Posts Column */
.footer-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-post-item {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-post-item:last-child {
  border-bottom: none;
}

.footer-post-item .post-title {
  display: block;
  color: #e2e8f0;
  font-size: 0.875rem;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.footer-post-item .post-title:hover {
  color: var(--color-accent-teal);
}

.footer-post-item .post-date {
  font-size: 0.75rem;
  color: #64748B;
}

/* Newsletter Column */
.newsletter-subtext {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.newsletter-form { 
  display: flex; 
  flex-direction: column;
  gap: 0.75rem; 
}

.newsletter-form input { 
  width: 100%;
  padding: 0.75rem 1rem; 
  border-radius: var(--border-radius-sm); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #64748B;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent-teal);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  width: 100%;
}

/* Bottom Bar */
.footer-bottom-bar {
  background: #071426;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   9. MEDIA QUERIES (Consolidated)
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid,
  .hero-has-bg .hero-grid,
  .foundations-grid,
  .stats-grid,
  .pillars-grid,
  .cards-grid,
  .news-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-has-bg {
    min-height: auto;
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .spotlight-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hero-section,
  .page-hero-banner,
  .hero-has-bg {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-cta-group {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta-group .btn,
  .hero-cta-group .btn-link-light {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .glass-card {
    padding: 1.5rem;
  }
}


/* ==========================================================================
   10. LANDING PAGE - FINAL POLISH
   ========================================================================== */

.hero-has-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 38, 0.22));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
  padding: .45rem .8rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-eyebrow::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--color-accent-teal);
  box-shadow: 0 0 0 5px rgba(76,155,140,.16);
}

.hero-title {
  text-wrap: balance;
}

.hero-title .accent {
  color: #dc6c24;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 1.35rem;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-proof strong {
  color: #fff;
}

.hero-side-panel {
  align-self: end;
  max-width: 390px;
  justify-self: end;
}

.hero-network-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(8, 25, 45, .48);
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-network-label {
  margin-bottom: .9rem;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-network-card h2 {
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.network-stat {
  padding: .9rem .7rem;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}

.network-stat strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.network-stat span {
  display: block;
  margin-top: .35rem;
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  line-height: 1.35;
}

.hero-network-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.55;
}

.foundation-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.foundation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,155,140,.35);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.foundation-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(76,155,140,.1);
  color: var(--color-accent-teal);
  font-size: 1.15rem;
}

.foundation-title,
.pillar-title,
.card-title {
  margin-bottom: .65rem;
}

.foundation-card p,
.pillar-card p,
.card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.toc-box {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 2.4rem;
  border-radius: 22px;
  background: #0D2137;
  color: #fff;
  box-shadow: 0 24px 55px rgba(13,33,55,.13);
}

.toc-header h3 {
  margin-bottom: .45rem;
  color: #fff;
  font-size: 1.7rem;
}

.toc-subtitle {
  color: #dc6c24;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.toc-body p {
  margin-bottom: 1rem;
  color: #CBD5E1;
  line-height: 1.75;
}

.toc-body p:last-of-type {
  margin-bottom: 1.35rem;
}

.toc-cta .btn-secondary {
  background: #fff;
  color: #0D2137;
  border-color: #fff;
}

.impact-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(76,155,140,.18), transparent 28%),
    #0D2137;
  color: #fff;
}

.impact-section .section-title,
.impact-section .section-lead {
  color: #fff;
}

.impact-section .section-lead {
  color: #B8C5D3;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.impact-card {
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.impact-number {
  display: block;
  color: #dc6c24;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.impact-label {
  display: block;
  max-width: 220px;
  margin-top: .65rem;
  color: #D7E0E8;
  font-size: .92rem;
  line-height: 1.5;
}

.impact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.impact-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.pillar-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.pillar-num {
  margin-bottom: 1.2rem;
  color: var(--color-accent-teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.offerings-section .card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.offerings-section .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--color-accent-teal);
}

.offerings-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.testimonials-section {
  padding: 5rem 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-bg-light);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: .55rem;
  right: 1.25rem;
  color: rgba(76,155,140,.18);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-text {
  margin-bottom: 1.4rem;
  color: var(--color-text-main);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.testimonial-author strong {
  color: var(--color-primary-navy);
}

.testimonial-author span {
  color: var(--color-text-muted);
  font-size: .82rem;
}

.clients-section {
  padding: 3.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.clients-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.7;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 1rem;
}

.client-logo {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: border-color .2s ease, background .2s ease;
}

.client-logo:hover {
  border-color: var(--color-border);
  background: var(--color-bg-light);
}

.client-logo img {
  max-width: 150px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.news-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: .78rem;
}

.news-tag {
  color: var(--color-accent-teal);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.news-title {
  margin-bottom: .75rem;
  font-size: 1.08rem;
  line-height: 1.45;
}

.news-title a {
  color: var(--color-primary-navy);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--color-accent-teal);
}

.news-excerpt {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cta-banner-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(76,155,140,.22), transparent 30%),
    #0D2137;
  color: #fff;
}

.cta-title {
  max-width: 780px;
  margin: 0 auto .9rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.cta-lead {
  max-width: 680px;
  margin: 0 auto 1.75rem;
  color: #C5D0DB;
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-header .header-inner {
  min-height: 80px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--color-primary-navy);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-accent-teal);
  color: #fff;
  font-size: .78rem;
  letter-spacing: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1000px) {
  .hero-side-panel {
    max-width: 100%;
    justify-self: start;
  }

  .toc-box {
    grid-template-columns: 1fr;
  }

  .client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .impact-label {
    max-width: 260px;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .network-stats {
    grid-template-columns: 1fr;
  }

  .impact-card {
    display: block;
  }

  .impact-label {
    margin-top: .65rem;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .toc-box {
    padding: 1.5rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: .55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .foundation-card,
  .pillar-card,
  .offerings-section .card,
  .testimonial-card,
  .news-card {
    animation: none !important;
    transition: none !important;
  }
}
