/* =============================================================================
  AIGHAP â€” main.css (Clean rebuild)
  - Modern-classic, professional
  - Single source of truth for header + frame + mobile nav
  - Removes duplicated patch blocks
============================================================================= */

/* -----------------------------
  0) Design Tokens
----------------------------- */
:root {
  --a-accent: #175cdd;
  --a-navy: #0b2c48;
  --a-ink: #111827;
  --a-text: #34495e;
  --a-muted: #6b7280;

  --a-bg: #f5f8fa;
  --a-surface: #ffffff;

  --a-radius: 14px;
  --a-radius-lg: 18px;

  --a-shadow-sm: 0 6px 18px rgba(0, 0, 0, .08);
  --a-shadow-md: 0 16px 40px rgba(0, 0, 0, .12);

  --a-font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --a-font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --a-font-nav: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --a-gold: #d4a936;

  /* Brand Core */
  --a-navy: #0b2c48;
  /* --a-gold: #f5c518; */

  /* Status Colors (Standardized for Pills and Buttons) */
  --a-green: #10805e;
  /* Matching the solid button in your image */
  --a-red: #b22222;
  --a-white: #ffffff;

  /* Frame sizing */
  --a-frame-max: 1600px;
  --a-frame-pad: 0.25rem;
  --a-frame-border: 3px;

  /* Header heights */
  --a-topbar-h: 0px;
  --a-brandbar-h: 70px;
  --a-header-h: calc(var(--a-topbar-h) + var(--a-brandbar-h));

  /* Nav (mobile) */
  --a-nav-overlay: rgba(11, 44, 72, .42);
  --a-nav-panel-w: min(520px, 92vw);

  /* Contact Form etc*/
  --a-contact-navy: #0b2c48;
  --a-contact-primary: #175cdd;
  --a-contact-shadow: 0 18px 44px rgba(12, 36, 59, .10);

}

@media (min-width: 992px) {
  :root {
    --a-topbar-h: 44px;
  }
}

/* -----------------------------
  1) Base / Reset
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Apply to every section with an ID for sitewide consistency */
section[id] {
  /* Uses your design token + a small buffer (e.g., 20px) so the title isn't touching the header */
  scroll-margin-top: calc(var(--a-header-h) + 20px);
}

.scroll-focus {
  animation: focusPulse 1.4s ease;
}

@keyframes focusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 92, 221, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(23, 92, 221, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 92, 221, 0);
  }
}




body {
  margin: 0;
  font-family: var(--a-font-body);
  color: var(--a-text);
  background: var(--a-bg);
  font-size: clamp(.96rem, .28vw + .9rem, 1.04rem);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* -----------------------------
  2) Page Frame (SINGLE OFFSET SOURCE)
  IMPORTANT: We offset content here (NOT body::before)
----------------------------- */
.page-frame {
  max-width: var(--a-frame-max);
  margin: 0 auto;
  min-height: 100vh;

  padding: var(--a-frame-pad);
  border: var(--a-frame-border) solid var(--a-accent);
  border-radius: 5px;

  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);

  /* header offset lives here */
  padding-top: calc(var(--a-header-h) + var(--a-frame-pad));
}

@media (max-width: 576px) {
  .page-frame {
    margin: 0;
    border-radius: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    padding-top: var(--a-header-h);
  }
}

/* -----------------------------
  3) Header (single definition)
----------------------------- */
.header.fixed-top {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--a-frame-max), calc(100% - (var(--a-frame-pad) * 2) - (var(--a-frame-border) * 2)));
  z-index: 9999;
  background: transparent;
}

@media (max-width: 576px) {
  .header.fixed-top {
    left: 0;
    transform: none;
    width: 100%;
  }
}

/* Topbar */
.a-topbar {
  height: var(--a-topbar-h);
  background: var(--a-navy);
  font-family: var(--a-font-nav);
  font-size: clamp(.76rem, .22vw + .68rem, .88rem);
}

.a-topbar .social a {
  color: #fff;
  opacity: .9;
  transition: opacity .2s ease;
}

.a-topbar .social a:hover {
  opacity: 1;
  color: var(--a-gold);
}

.a-topbar input.form-control {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, .25);
}

.a-topbar button {
  border-radius: 999px;
}

.a-topbar button:hover {
  background: var(--a-gold);
  border-color: var(--a-accent);
  color: #fff;
}

.a-topbar .contact a:hover {
  color: var(--a-gold) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--a-gold);
  font-weight: 800;
  transition: all .2s ease;
}


/* Brand bar */
.a-brandbar {
  height: var(--a-brandbar-h);
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.a-logo img {
  height: clamp(44px, 4.4vw, 56px);
  width: auto;
}

.a-sitename {
  font-family: var(--a-font-head);
  color: var(--a-navy);
  letter-spacing: -0.015em;
  line-height: 1.18;
  font-size: clamp(.74rem, .18vw + .66rem, .86rem);
}

/* Make header container feel aligned inside frame */
.a-brandbar .container {
  max-width: calc(var(--a-frame-max) - 100px);
}

/* -----------------------------
  4) Navigation (Desktop + Mobile)
----------------------------- */
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: var(--a-navy);
}

/* Base nav typography */
/* Base nav typography (cassette button feel) */
#navmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#navmenu a {
  font-family: var(--a-font-nav);
  font-weight: 760;
  color: var(--a-navy);
  font-size: clamp(.9rem, .2vw + .84rem, .98rem);

  padding: .55rem .95rem;
  border-radius: 10px;
  /* <-- rounded rectangle, not pill */
  border: 2px solid transparent;
  /* <-- allows button-like outline */
  background: transparent;

  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

@media (max-width: 991.98px) {
  .a-brandbar .container {
    padding-top: .35rem !important;
    padding-bottom: .35rem !important;
  }

  .a-sitename {
    font-size: .7rem;
    line-height: 1.14;
  }
}

#navmenu a:hover {
  background: rgba(23, 92, 221, .08);
  border-color: rgba(23, 92, 221, .22);
  color: var(--a-accent);
}

#navmenu a.active {
  background: #fff;
  /* <-- classic button surface */
  border-color: var(--a-accent);
  /* <-- crisp outline like your sample */
  color: var(--a-accent);
  box-shadow: 0 2px 0 rgba(23, 92, 221, .12);
}

/* Mobile nav toggle: make CLOSE state bold + red */
body.mobile-nav-active .mobile-nav-toggle {
  color: #b00020;
  /* red (professional, not neon) */
  font-weight: 900;
  transform: scale(1.08);
  background: rgba(176, 0, 32, .08);
  border: 2px solid rgba(176, 0, 32, .20);
}


/* Give it a subtle â€œbutton tapâ€ feel */
.mobile-nav-toggle {
  padding: .25rem .35rem;
  border-radius: 10px;
}

/* Dropdown trigger (link + icon) */
#navmenu .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

#navmenu .dropdown-toggle-icon {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: var(--a-navy);
  line-height: 1;
  cursor: pointer;
  margin-left: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
  outline: 0 !important;
  box-sizing: border-box;
}

#navmenu .dropdown-toggle-icon.dropdown-toggle::after {
  display: none;
}

#navmenu .dropdown-toggle-icon i {
  display: inline-block;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  transition: transform .18s ease;
}

#navmenu .dropdown-toggle-icon:focus,
#navmenu .dropdown-toggle-icon:focus-visible,
#navmenu .dropdown-toggle-icon:active {
  outline: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  box-shadow: none !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
}

#navmenu .dropdown-toggle-icon:focus-visible {
  box-shadow: none !important;
}

/* Override global focus ring for dropdown icon buttons */
#navmenu .dropdown-toggle-icon:focus,
#navmenu .dropdown-toggle-icon:focus-visible {
  box-shadow: none !important;
  outline: none !important;
  border: 0 !important;
}

#navmenu .dropdown-toggle-icon:hover {
  background: rgba(23, 92, 221, .08);
  border-radius: 8px;
}

#navmenu .dropdown.is-open>.dropdown-trigger>.dropdown-toggle-icon,
#navmenu .dropdown.show>.dropdown-trigger>.dropdown-toggle-icon {
  background: rgba(23, 92, 221, .12);
  border-radius: 8px;
}

#navmenu .dropdown.is-open>.dropdown-trigger>.dropdown-toggle-icon i,
#navmenu .dropdown.show>.dropdown-trigger>.dropdown-toggle-icon i {
  transform: rotate(180deg);
  transition: transform .18s ease;
}

#navmenu .a-nav-dropdown>.dropdown-trigger>a {
  padding-right: .35rem;
}

#navmenu .a-nav-dropdown>.dropdown-menu {
  margin-top: .55rem;
  padding: .38rem;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 14px;
  min-width: 276px;
  box-shadow: 0 22px 44px rgba(8, 16, 32, .18);
  background: #ffffff;
}

#navmenu .a-nav-dropdown>.dropdown-menu .dropdown-header {
  padding: .4rem .68rem;
  font-size: .7rem;
  letter-spacing: .08em;
  color: #55627c;
  font-weight: 820;
  text-transform: uppercase;
}

#navmenu .a-nav-dropdown>.dropdown-menu .dropdown-divider {
  margin: .3rem .35rem;
  border-top-color: rgba(17, 24, 39, .14);
}

#navmenu .a-nav-dropdown>.dropdown-menu .dropdown-item {
  border-radius: 10px;
  padding: .5rem .68rem;
  font-family: var(--a-font-head);
  font-weight: 650;
  line-height: 1.3;
  color: #102543;
}

#navmenu .a-nav-dropdown>.dropdown-menu .dropdown-item:hover,
#navmenu .a-nav-dropdown>.dropdown-menu .dropdown-item:focus {
  background: rgba(23, 92, 221, .12);
  color: var(--a-accent);
}

#navmenu .a-nav-dropdown>.dropdown-menu.show {
  display: block;
}

#navmenu .a-nav-dropdown.show>.dropdown-menu {
  display: block;
}

#navmenu .a-subdropdown.show>.dropdown-menu {
  display: block;
}

#navmenu .a-subdropdown>.dropdown-menu {
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 12px;
  padding: .34rem;
  box-shadow: 0 14px 28px rgba(8, 16, 32, .14);
}

@media (min-width: 1200px) {
  #navmenu .dropdown-trigger>a {
    padding-right: .4rem;
  }
}

.mobile-nav-toggle .bi-x {
  display: none;
}

body.mobile-nav-active .mobile-nav-toggle .bi-list {
  display: none;
}

body.mobile-nav-active .mobile-nav-toggle .bi-x {
  display: inline-block;
}

#a-page-progress {
  height: 4px;
  background: linear-gradient(90deg, #20bba5, #175cdd);
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform .08s linear;
}

#a-page-progress.is-busy {
  transform-origin: left center;
  animation: aPageBusy 1.15s ease-in-out infinite;
}

@keyframes aPageBusy {
  0% {
    transform: scaleX(0.12);
    opacity: .78;
  }

  55% {
    transform: scaleX(0.72);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.28);
    opacity: .86;
  }
}

/* ==========================================================
   Breadcrumbs
   ========================================================== */

/* WRAPPER: Removed large margins, added tight vertical control */
.a-breadcrumb-portal {
  display: flex;
  align-items: center;
  margin: 4px 0;
  /* Minimal gap between navbar and hero */
  padding-left: 1.5rem;
  height: 40px;
  /* Forces a consistent, slim height for the whole row */
}

/* THE OUTER PILL: Fixed border-radius and removed shadow for a flatter, more integrated look */
.a-pill-breadcrumb {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(11, 44, 72, 0.08);
  border-radius: 50px;
  /* Kept it round for the "pill" look */
  padding: 2px;
  list-style: none !important;
  margin: 0 !important;
}

/* THE ACTIVE MODULE: Slightly shorter height to fit the slim wrapper */
.a-pill-content {
  position: relative;
  color: var(--a-accent);
  background: rgba(23, 92, 221, .06);
  border: 1px solid rgba(23, 92, 221, .1);
  padding: 0 12px;
  /* Horizontal breathing room */
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  /* Reduced from 32px for a tighter profile */
  font-size: 0.68rem;
  /* Slightly smaller text for professional look */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* SUB-PAGE TEXT: Matches the new 28px height */
.a-page-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0b2c48;
  padding: 0 12px 0 6px;
  display: flex;
  align-items: center;
  height: 28px;
}

/* SEPARATOR (Thin & Professional) */
.breadcrumb-separator {
  display: flex;
  align-items: center;
  color: #cbd5e1;
  opacity: 0.7;
}

/* STAR ANIMATION (Refined) */
.a-pill-content::before,
.a-pill-content::after {
  content: "✦";
  position: absolute;
  color: #f59e0b;
  /* Professional Gold */
  font-size: 8px;
  opacity: 0;
  pointer-events: none;
}

.a-pill-content:hover {
  color: var(--a-green);
  background: rgba(16, 128, 94, 0.1);
  /* Subtle green tint */
  border-color: rgba(16, 128, 94, 0.2);
  transform: scale(1.02);
}

.a-pill-content:hover::before {
  animation: spark-left 0.7s ease-out infinite;
}

.a-pill-content:hover::after {
  animation: spark-right 0.7s ease-out 0.15s infinite;
  right: 8px;
}

@keyframes spark-left {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-20px, -15px) scale(1);
    opacity: 0;
  }
}

@keyframes spark-right {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(20px, -12px) scale(1);
    opacity: 0;
  }
}

/* Public website breadcrumbs (non-pill) */
.a-public-breadcrumb {
  margin: .45rem auto .6rem;
  padding: 0 1rem;
  max-width: calc(var(--a-frame-max) - 100px);
}

.a-public-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .32rem;
}

.a-public-breadcrumb__item,
.a-public-breadcrumb__sep {
  font-size: .82rem;
  line-height: 1.35;
  font-family: var(--a-font-head);
}

.a-public-breadcrumb__sep {
  color: #94a3b8;
}

.a-public-breadcrumb__link {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: rgba(29, 78, 216, .45);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color .18s ease, text-decoration-color .18s ease, background-color .18s ease;
  border-radius: 4px;
  padding: 0 .08rem;
}

.a-public-breadcrumb__link:hover,
.a-public-breadcrumb__link:focus-visible {
  color: #0b2c48;
  text-decoration-color: currentColor;
  background: rgba(11, 44, 72, .06);
}

.a-public-breadcrumb__link:focus-visible {
  outline: 2px solid rgba(29, 78, 216, .32);
  outline-offset: 1px;
}

.a-public-breadcrumb__text {
  color: #0f172a;
  font-weight: 700;
}

.a-public-breadcrumb--global {
  margin-top: .45rem;
}

.a-public-breadcrumb--section {
  margin: 0 0 .7rem;
  padding: 0 0 0 2px;
  max-width: none;
}

.a-public-breadcrumb--section .a-public-breadcrumb__item,
.a-public-breadcrumb--section .a-public-breadcrumb__sep {
  font-size: .78rem;
}

.a-public-breadcrumb--section .a-public-breadcrumb__text {
  color: #1e293b;
}

/* Public pages: secondary breadcrumbs are deprecated. */
nav.a-public-breadcrumb--section,
nav.dynamic-breadcrumb {
  display: none !important;
}

.dynamic-breadcrumb--on-dark .a-public-breadcrumb__text {
  color: #f8fafc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .38);
}

.dynamic-breadcrumb--on-dark .a-public-breadcrumb__link {
  color: #bfdbfe;
  text-decoration-color: rgba(191, 219, 254, .58);
}

.dynamic-breadcrumb--on-dark .a-public-breadcrumb__link:hover,
.dynamic-breadcrumb--on-dark .a-public-breadcrumb__link:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 991.98px) {
  .a-public-breadcrumb {
    padding: 0 .75rem;
    margin: .35rem auto .5rem;
  }

  .a-public-breadcrumb--section {
    padding: 0 0 0 2px;
    margin: 0 0 .58rem;
  }

  .a-public-breadcrumb__item,
  .a-public-breadcrumb__sep {
    font-size: .78rem;
  }
}

/* Add this if the Hero section has its own top padding */
/* #main-content, .hero-section, section:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
} */



/* ==========================================================
   Navigation Menu
   ========================================================== */

/* Desktop */
@media (min-width: 1200px) {
  #navmenu {
    display: flex;
    align-items: center;
  }

  #navmenu>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .15rem;
  }

  #navmenu>ul>li {
    position: relative;
  }

  #navmenu .dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;

    background: #fff;
    padding: .6rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
    z-index: 10000;
  }

  #navmenu .dropdown:hover>ul {
    display: none;
  }

  #navmenu .dropdown ul a {
    display: block;
    border-radius: 0;
    padding: .4rem 0;
    font-weight: 500;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  #navmenu .dropdown ul a:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--a-accent);
  }

  #navmenu .dropdown.a-mega {
    position: static;
  }

  #navmenu .dropdown.a-mega>ul {
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, 92vw);
    display: none;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 6px 12px;
    padding: 14px;
  }

  #navmenu .dropdown.a-mega:hover>ul {
    display: none;
  }

  #navmenu .dropdown.a-mega>ul .dropdown-divider {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(17, 24, 39, .10);
    margin: 4px 0;
    height: 0;
  }

  /* Executive mega menu: open only when explicitly toggled via icon */
  #navmenu .dropdown.is-open>ul {
    display: block;
  }

  #navmenu .dropdown.a-mega.is-open>ul {
    display: grid;
  }

  #navmenu .dropdown.a-mega>ul {
    position: fixed;
    top: var(--a-header-h);
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, 92vw);
    /* max-height: calc(100vh - var(--a-header-h) - 24px); */
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(17, 24, 39, .10);
    box-shadow: 0 30px 60px rgba(8, 16, 32, .18);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    column-gap: 18px;
    row-gap: 6px;
  }

  #navmenu .dropdown.a-mega>ul a {
    padding: .18rem 0;
    border-radius: 0;
    font-weight: 520;
    letter-spacing: .012em;
    font-family: var(--a-font-head);
    font-size: .92rem;
    color: #0b1f3b;
    border: 0;
    background: transparent;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  #navmenu .dropdown.a-mega>ul a:hover {
    background: transparent;
    color: var(--a-accent);
  }

  #navmenu .dropdown.a-mega>ul a:focus-visible {
    outline: none;
    color: var(--a-accent);
  }

  #navmenu .dropdown.a-mega>ul a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: rgba(17, 24, 39, .08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
  }

  #navmenu .dropdown.a-mega>ul a:hover::after,
  #navmenu .dropdown.a-mega>ul a:focus-visible::after {
    transform: scaleX(1);
  }

  #navmenu .dropdown.a-mega>ul .a-menu-group-label {
    letter-spacing: .08em;
    font-size: .72rem;
    color: #0b1f3b;
    font-weight: 700;
    margin: .15rem 0 .3rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid rgba(17, 24, 39, .10);
  }

  #navmenu .dropdown.a-mega>ul .a-menu-head {
    font-weight: 700;
    color: #0b1f3b;
    font-size: .95rem;
    letter-spacing: .02em;
  }

  #navmenu .dropdown.a-mega>ul .a-menu-rule {
    display: inline-block;
    width: 40px;
    height: 2px;
    margin-top: .25rem;
    background: linear-gradient(90deg, var(--a-accent), rgba(17, 24, 39, 0));
    border-radius: 2px;
  }

  #navmenu .dropdown.a-mega>ul .a-menu-rule-row {
    grid-column: auto;
    margin: -2px 0 4px;
  }

  #navmenu .dropdown.a-mega>ul .a-menu-bottom-rule {
    margin-top: 6px;
  }

  #navmenu .dropdown.a-mega>ul .a-menu-right {
    text-align: left;
  }

  @media (min-width: 1200px) {
    #navmenu .dropdown.a-mega>ul .a-menu-right {
      grid-column: 3 / 4;
      text-align: right;
      margin-top: 6px;
    }
  }

  #navmenu .dropdown.a-mega>ul .a-menu-strong {
    font-weight: 700;
    color: #0b1f3b;
  }

  #navmenu .dropdown.a-mega>ul .dropdown-divider {
    border-top: 1px solid rgba(17, 24, 39, .10);
    margin: 6px 0 6px;
  }

  #navmenu .dropdown.a-mega>ul {
    background-image:
      linear-gradient(to right, rgba(17, 24, 39, .06), rgba(17, 24, 39, 0) 1px);
    background-size: calc(100% / 3) 100%;
    background-position: 0 0;
    background-repeat: repeat;
  }

  #navmenu .dropdown.a-mega>ul::before {
    content: "";
    position: sticky;
    top: 0;
    display: block;
    height: 1px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, rgba(17, 24, 39, .12), rgba(17, 24, 39, 0));
  }

  #navmenu .dropdown.a-mega>ul a.a-menu-primary {
    font-weight: 700;
    font-size: 1rem;
    color: #0b1f3b;
    letter-spacing: .02em;
  }

  #navmenu .dropdown.a-mega>ul a.a-menu-subitem {
    position: relative;
    padding-left: .75rem;
    font-size: .95em;
    color: rgba(17, 24, 39, .75);
  }

  /* Visual hierarchy for lead links */
  #navmenu .dropdown.a-mega>ul a.a-menu-primary::after {
    bottom: -6px;
    height: 2px;
    background: rgba(17, 24, 39, .18);
  }

  #navmenu .dropdown.a-mega>ul a.a-menu-subitem {
    font-weight: 500;
    color: rgba(17, 24, 39, .65);
  }

  #navmenu .dropdown.a-mega>ul a.a-menu-subitem:hover {
    color: var(--a-accent);
  }

  #navmenu .dropdown.a-mega>ul a.a-menu-subitem::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--a-accent);
  }
}

@media (min-width: 1200px) {
  #navmenu .a-nav-dropdown>.dropdown-menu {
    position: absolute;
    inset: auto auto auto 0;
  }

  #navmenu .a-nav-dropdown .dropend>.dropdown-menu {
    top: -.35rem;
    left: calc(100% + .35rem);
  }

  #navmenu .a-subdropdown>.dropdown-item.dropdown-toggle::after {
    float: right;
    margin-top: .45rem;
  }
}

/* Mobile overlay + panel (clean, reliable) */
@media (max-width: 1199.98px) {

  /* overlay container */
  #navmenu {
    position: fixed;
    top: var(--a-header-h);
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--a-frame-max), 100%);
    height: calc(100vh - var(--a-header-h));
    display: none;
    z-index: 9998;
  }

  body.mobile-nav-active #navmenu {
    display: block;
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  /* overlay background */
  #navmenu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--a-nav-overlay);
  }

  /* white panel */
  #navmenu>ul {
    position: relative;
    width: var(--a-nav-panel-w);
    margin: 14px auto;
    padding: 14px;

    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, .10);
    box-shadow: var(--a-shadow-md);

    max-height: calc(100vh - var(--a-header-h) - 28px);
    overflow: auto;
  }

  #navmenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: .85rem .9rem;
  }

  #navmenu .dropdown ul {
    display: none;
    padding: .35rem 0 .35rem .75rem;
    margin: .35rem 0 0 0;
    border-left: 2px solid rgba(23, 92, 221, .18);
  }

  #navmenu .dropdown.is-open>ul {
    display: block;
  }

  #navmenu .a-nav-dropdown>.dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin: .35rem 0 .2rem;
    min-width: 100%;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(17, 24, 39, .10);
    padding: .32rem;
    background: #f9fbfe;
  }

  #navmenu .a-nav-dropdown>.dropdown-menu.show {
    display: block;
  }

  #navmenu .a-nav-dropdown .dropend>.dropdown-menu {
    margin: .2rem 0 .25rem .65rem;
  }

  #navmenu .a-nav-dropdown .dropend>.dropdown-item.dropdown-toggle::after {
    transform: rotate(90deg);
  }

  #navmenu .dropdown ul a {
    border-radius: 12px;
    padding: .7rem .85rem;
    font-weight: 650;
  }
}

body.mobile-nav-active .mobile-nav-toggle {
  color: #b00020;
  transform: scale(1.12);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

/* Desktop dropdown links */

@media (min-width: 1200px) {
  #navmenu .dropdown ul a {
    border: 1px solid rgba(17, 24, 39, .08);
    background: #fff;
  }

  #navmenu .dropdown ul a:hover {
    border-color: rgba(23, 92, 221, .25);
    background: rgba(23, 92, 221, .06);
  }
}

@media (max-width: 1199.98px) {
  #navmenu a {
    border-radius: 10px;
    border: 2px solid rgba(17, 24, 39, .08);
    background: #fff;
  }

  #navmenu a:hover {
    border-color: rgba(23, 92, 221, .22);
    background: rgba(23, 92, 221, .06);
  }

  #navmenu a.active {
    border-color: var(--a-accent);
    background: rgba(23, 92, 221, .06);
  }
}


/* -----------------------------
  5) Global Section Spacing (predictable)
----------------------------- */
main.main section {
  padding: clamp(2.25rem, 3.8vw, 4.25rem) 0;
}

[data-aos] {
  backface-visibility: hidden;
  will-change: opacity, transform;
}

section[data-aos] {
  min-height: 1px;
}

.section-peel,
.section-divider {
  transform: none !important;
}

.section-title {
  margin-bottom: 1.75rem;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-heading {
  font-family: var(--a-title-font, var(--a-font-head));
  color: var(--a-navy);
  font-weight: var(--a-title-w-strong, 860);
  letter-spacing: var(--a-title-track, -0.015em);
  line-height: var(--a-title-line, 1.16);
  margin: 0 0 .75rem 0;
}

.lead {
  color: var(--a-muted);
}

/* Shared title system (public pages) */
:root {
  --a-title-font: var(--a-font-head);
  --a-title-w-strong: 860;
  --a-title-w-title: 840;
  --a-title-w-kicker: 780;
  --a-title-track: -0.015em;
  --a-title-line: 1.16;
}

.a-panel__title,
.a-pillarTitle,
.a-reportTitle,
.a-miniEvidence__t,
.a-foresightCard__t,
.a-mapTitle,
.a-oceanCta__title {
  font-family: var(--a-title-font);
  font-weight: var(--a-title-w-title);
  letter-spacing: var(--a-title-track);
  line-height: var(--a-title-line);
  color: var(--a-navy);
}

.a-panel__kicker {
  font-family: var(--a-title-font);
  font-weight: var(--a-title-w-kicker);
  letter-spacing: .01em;
  color: rgba(11, 44, 72, .74);
}


/* -----------------------------
  6) Hero (Video)
----------------------------- */
.a-hero {
  min-height: calc(100vh - var(--a-header-h));
  position: relative;
  overflow: hidden;
}

.a-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.58);
  z-index: 0;
}

/* Prevent aggressive cropping on mobile/portrait hero videos */
@media (max-width: 768px),
(orientation: portrait) {
  .a-hero {
    min-height: max(74vh, 520px);
    background: #0b2c48;
  }

  .a-hero__video {
    object-fit: contain;
    filter: brightness(.7);
    background: #0b2c48;
  }
}

/* Default media responsiveness */
img,
video,
iframe {
  max-width: 100%;
}

.a-hero__overlay {
  position: absolute;
  /* was relative */
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.a-hero__content h1 {
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}

.a-hero__content p {
  color: rgba(255, 255, 255, .92);
}

.a-highlight {
  color: #fff;
  padding: .05em .35em;
  border-radius: 999px;
  background: rgba(23, 92, 221, .35);
}

.a-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.a-hero__actions .btn {
  border-radius: 999px;
  font-weight: 700;
  min-width: 180px;
  width: auto;
}

.a-hero__content {
  position: relative;
  z-index: 3;
}



@media (max-width: 576px) {
  .a-hero__actions {
    flex-direction: column;
  }

  .a-hero__actions .btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
}

/* -----------------------------
  7) Cards / Metrics
----------------------------- */
.shadow-soft {
  box-shadow: var(--a-shadow-sm);
}

.rounded-md {
  border-radius: var(--a-radius);
}

.a-metric,
.a-gauge,
.a-card {
  border-radius: var(--a-radius);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(17, 24, 39, .07);
  box-shadow: var(--a-shadow-sm);
}

.a-card {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.a-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--a-shadow-md);
}

.a-metric__value,
.a-gauge__value {
  font-family: var(--a-font-head);
  color: var(--a-accent);
}

/* -----------------------------
  8) Section backgrounds you used
----------------------------- */
#what-we-do {
  background: linear-gradient(to bottom, #96c5f5 0%, hsl(180, 85%, 68%) 100%);
}

/* =============================
   VOICES & COMMUNITY â€” Light Airy
============================= */
#voices-community {
  margin-top: 0 !important;
  padding-top: 2.75rem !important;
  position: relative;
  overflow: hidden;
}

/* Bubbles */
.a-bubbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .95;
  filter: blur(36px);
}

.a-bubbles-3d {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.a-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .55;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, .95),
      rgba(255, 255, 255, .12) 60%,
      rgba(255, 255, 255, 0));
  animation: aFloat 22s ease-in-out infinite;
  mix-blend-mode: screen;
}

.a-bubbles-3d .a-bubble:nth-child(1) {
  top: 10%;
  left: 14%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.a-bubbles-3d .a-bubble:nth-child(2) {
  top: 68%;
  left: 8%;
  width: 140px;
  height: 140px;
  animation-delay: 3s;
}

.a-bubbles-3d .a-bubble:nth-child(3) {
  top: 42%;
  right: 22%;
  width: 90px;
  height: 90px;
  animation-delay: 1s;
}

.a-bubbles-3d .a-bubble:nth-child(4) {
  bottom: 14%;
  left: 44%;
  width: 170px;
  height: 170px;
  animation-delay: 5s;
}

.a-bubbles-3d .a-bubble:nth-child(5) {
  top: 20%;
  right: 10%;
  width: 130px;
  height: 130px;
  animation-delay: 2s;
}

.a-bubbles-3d .a-bubble:nth-child(6) {
  bottom: 24%;
  right: 18%;
  width: 110px;
  height: 110px;
  animation-delay: 6s;
}

.a-bubbles-3d .a-bubble:nth-child(7) {
  top: 52%;
  left: 30%;
  width: 80px;
  height: 80px;
  animation-delay: 4s;
}

.a-bubbles-3d .a-bubble:nth-child(8) {
  top: 76%;
  right: 30%;
  width: 160px;
  height: 160px;
  animation-delay: 7s;
}

.a-bubbles-3d .a-bubble:nth-child(9) {
  top: 6%;
  right: 40%;
  width: 120px;
  height: 120px;
  animation-delay: 8s;
}

.a-bubbles-3d .a-bubble:nth-child(10) {
  bottom: 6%;
  left: 14%;
  width: 90px;
  height: 90px;
  animation-delay: 9s;
}

@keyframes aFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .55;
  }

  50% {
    transform: translate3d(-28px, -70px, 0) scale(1.12);
    opacity: .85;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .55;
  }
}

/* Keep content above bubbles */
#news-media .container,
#voices-community .container {
  position: relative;
  z-index: 2;
}

/* Voices overlay */
#voices-community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .42);
  z-index: 0;
  pointer-events: none;
}

/* =============================
   NEWS & MEDIA â€” Classic Modern (FINAL)
============================= */
#news-media {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 5vw, 5rem) !important;
  padding-bottom: clamp(3.5rem, 5vw, 5rem) !important;
  margin-bottom: 0 !important;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Background glow (subtle, premium) */
#news-media .a-news-glow {
  position: absolute;
  inset: -35% -15% auto -15%;
  height: 360px;
  background:
    radial-gradient(circle at 25% 35%, rgba(23, 92, 221, .12), rgba(0, 0, 0, 0) 62%),
    radial-gradient(circle at 75% 25%, rgba(32, 187, 165, .10), rgba(0, 0, 0, 0) 58%);
  filter: blur(28px);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

/* Keep content above glow */
#news-media .container {
  position: relative;
  z-index: 2;
}

/* Button */
#news-media .a-btn-soft {
  border-radius: 999px;
  font-weight: 800;
  padding: .45rem .9rem;
  border-width: 2px;
}

/* Card shell */
#news-media .a-media-card {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Premium bottom accent (quiet) */
#news-media .a-media-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: 0;
  transform: scaleX(.78);
  transform-origin: 50% 50%;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

/* Hover (executive lift) */
#news-media .a-media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 92, 221, .18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
}

#news-media .a-media-card:hover::after {
  opacity: .9;
  transform: scaleX(1);
}

/* Image */
#news-media .a-media-figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f7;
}

#news-media .a-media-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.02) contrast(1.02);
}

#news-media .a-media-card:hover .a-media-figure img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.04);
}

/* Typography */
#news-media .a-media-body {
  padding: 1rem 1.05rem 1.05rem;
}

#news-media .a-media-title {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--a-navy);
}

#news-media .a-media-meta {
  color: var(--a-muted);
  font-size: .93rem;
}

/* Link + focus */
#news-media .a-media-link {
  display: block;
  color: inherit;
}

#news-media .a-media-link:focus-visible {
  outline: 3px solid rgba(23, 92, 221, .22);
  outline-offset: 4px;
  border-radius: 14px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  #news-media .a-media-card,
  #news-media .a-media-figure img {
    transition: none !important;
  }
}


/* =============================
   VOICES â€” Classic Modern + Mobile Carousel
============================= */

#voices-community.a-voices {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 4.2vw, 4.5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Background glow */
#voices-community .a-voices__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(23, 92, 221, .14), rgba(0, 0, 0, 0) 55%),
    radial-gradient(circle at 82% 18%, rgba(32, 187, 165, .10), rgba(0, 0, 0, 0) 55%),
    radial-gradient(circle at 50% 92%, rgba(212, 169, 54, .10), rgba(0, 0, 0, 0) 52%);
  filter: blur(18px);
  opacity: .95;
}

#voices-community .a-voices__container {
  position: relative;
  z-index: 2;
}

/* Header */
#voices-community .a-voices__head {
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

#voices-community .a-voices__mini {
  font-family: var(--a-font-head);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  color: rgba(11, 44, 72, .78);
  border: 1px solid rgba(11, 44, 72, .14);
  background: rgba(11, 44, 72, .06);
  border-radius: 999px;
  padding: .32rem .6rem;
}

#voices-community .a-voices__sub {
  color: var(--a-muted);
  max-width: 900px;
  line-height: 1.45;
}

#voices-community .a-voices__stat {
  min-width: 240px;
  padding: .75rem .85rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 92, 221, .14);
  background: linear-gradient(180deg, rgba(23, 92, 221, .06), rgba(32, 187, 165, .05));
}

#voices-community .a-voices__statKicker {
  font-size: .82rem;
  color: rgba(17, 24, 39, .6);
  font-weight: 750;
}

#voices-community .a-voices__statValue {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--a-navy);
}

/* Cards */
#voices-community .a-voiceCard {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  padding: 1.05rem 1.05rem 1.1rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  will-change: transform;
}

/* Top accent */
#voices-community .a-voiceCard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .9;
}

/* Corner glow */
#voices-community .a-voiceCard::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(23, 92, 221, .18), rgba(0, 0, 0, 0) 62%);
  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
}

#voices-community .a-voiceCard--blue::after {
  background: radial-gradient(circle at 30% 30%, rgba(23, 92, 221, .20), rgba(0, 0, 0, 0) 62%);
}

#voices-community .a-voiceCard--teal::after {
  background: radial-gradient(circle at 30% 30%, rgba(32, 187, 165, .18), rgba(0, 0, 0, 0) 62%);
}

#voices-community .a-voiceCard--navy::after {
  background: radial-gradient(circle at 30% 30%, rgba(11, 44, 72, .18), rgba(0, 0, 0, 0) 62%);
}

/* Chips */
#voices-community .a-voiceCard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .65rem;
}

#voices-community .a-voiceCard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

#voices-community .a-chip {
  display: inline-flex;
  align-items: center;
  padding: .33rem .6rem;
  border-radius: 999px;
  font-family: var(--a-font-head);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--a-navy);
  border: 1px solid rgba(11, 44, 72, .12);
  background: rgba(255, 255, 255, .9);
}

#voices-community .a-chip--soft {
  color: rgba(11, 44, 72, .75);
  background: rgba(11, 44, 72, .06);
  border-color: rgba(11, 44, 72, .10);
}

/* Quote mark */
#voices-community .a-voiceCard__mark {
  font-family: var(--a-font-head);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(23, 92, 221, .20);
  transform: translateY(-8px);
  user-select: none;
}

/* Quote */
#voices-community .a-voiceCard__quote {
  margin: 0 0 .95rem 0;
  color: rgba(17, 24, 39, .82);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Footer */
#voices-community .a-voiceCard__footer {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-top: .85rem;
  border-top: 1px solid rgba(17, 24, 39, .08);
}

#voices-community .a-voiceCard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(180deg, rgba(23, 92, 221, .95), rgba(11, 44, 72, .95));
  box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

#voices-community .a-voiceCard__name {
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-navy);
  line-height: 1.2;
}

#voices-community .a-voiceCard__role {
  color: rgba(17, 24, 39, .65);
  font-weight: 750;
  font-size: .92rem;
}

#voices-community .a-voiceCard__meta {
  color: var(--a-muted);
  font-size: .9rem;
}

/* Hover */
#voices-community .a-voiceCard:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 92, 221, .20);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .98);
}

#voices-community .a-voiceCard:hover .a-voiceCard__mark {
  color: rgba(23, 92, 221, .26);
}

/* Controls row (hidden on desktop) */
#voices-community .a-voices__controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .9rem;
}

/* Dots + arrows styling */
#voices-community .a-voicesNav {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .12);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
  color: var(--a-navy);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
}

#voices-community .a-voicesNav:hover {
  transform: scale(1.05);
  border-color: rgba(23, 92, 221, .22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .14);
}

#voices-community .a-voicesNav:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}

#voices-community .a-voicesDots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex: 1;
}

#voices-community .a-voicesDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid rgba(11, 44, 72, .24);
  background: transparent;
  padding: 0;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

#voices-community .a-voicesDot.is-active {
  background: rgba(23, 92, 221, .85);
  border-color: rgba(23, 92, 221, .85);
  transform: scale(1.15);
}

/* =============================
   VOICES â€” MOBILE CAROUSEL (single source of truth)
   - beats Bootstrap .row (display:flex)
   - smooth snap + hidden scrollbar
============================= */

@media (max-width: 767.98px) {

  /* show controls */
  #voices-community .a-voices__controls {
    display: flex;
  }

  /* Track: override Bootstrap row */
  #voices-community .a-voicesList.row {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 1rem;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    scroll-behavior: smooth;

    padding: .25rem 1rem 1rem;

    /* neutralize bootstrap negative gutters */
    margin-left: 0 !important;
    margin-right: 0 !important;

    /* neutralize flex leftovers */
    flex-wrap: nowrap !important;

    /* optional: prevent vertical bounce from causing layout weirdness */
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  #voices-community .a-voicesList.row::-webkit-scrollbar {
    display: none;
  }

  /* Items: neutralize Bootstrap col */
  #voices-community .a-voicesItem {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    scroll-snap-align: center;
  }
}

@media (max-width: 575.98px) {
  #voices-community .a-voicesList.row {
    grid-auto-columns: 92%;
  }
}

/* =============================
   PROGRAM HIGHLIGHTS â€” Classic Modern (FINAL)
============================= */

#program-highlights.a-programs {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#program-highlights .a-programs__bg {
  position: absolute;
  inset: -40% -15% auto -15%;
  height: 380px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(23, 92, 221, .12), rgba(0, 0, 0, 0) 62%),
    radial-gradient(circle at 78% 22%, rgba(32, 187, 165, .10), rgba(0, 0, 0, 0) 58%),
    radial-gradient(circle at 52% 92%, rgba(212, 169, 54, .10), rgba(0, 0, 0, 0) 55%);
  filter: blur(28px);
  opacity: .95;
}

#program-highlights .container {
  position: relative;
  z-index: 2;
}

#program-highlights .a-programs__title {
  margin-bottom: 1.15rem;
}

/* Optional: unify â€œView All Programsâ€ with your premium soft button */
#program-highlights .a-btn-soft {
  border-radius: 999px;
  font-weight: 850;
  padding: .52rem 1.05rem;
  border-width: 2px;
}

/* Card shell */
#program-highlights .a-phCard {
  position: relative;
  border-radius: var(--a-radius-lg);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  will-change: transform;
}

/* Top accent (quiet premium) */
#program-highlights .a-phCard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .92;
}

/* Corner glow */
#program-highlights .a-phCard::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(23, 92, 221, .16), rgba(0, 0, 0, 0) 62%);
  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
}

#program-highlights .a-phCard__inner {
  padding: 1.15rem 1.15rem 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#program-highlights .a-phTitle {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--a-navy);
  margin: 0;
}

.a-phTitle {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--a-navy);
  margin: 0;
}

#program-highlights .a-phText {
  color: rgba(17, 24, 39, .66);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

/* Keep CTA anchored at bottom for perfect alignment */
#program-highlights .a-phBtn {
  margin-top: auto;
  border-width: 2px;
  border-radius: 5px;
  font-weight: 850;
  padding: .45rem .85rem;
  width: fit-content;
  align-self: center;
}

/* Hover: executive lift */
#program-highlights .a-phCard:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 92, 221, .18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .98);
}

/* Focus (serious accessibility) */
#program-highlights .a-phCard:focus-within {
  outline: 3px solid rgba(23, 92, 221, .22);
  outline-offset: 4px;
  border-radius: var(--a-radius-lg);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #program-highlights .a-phCard {
    transition: none !important;
  }
}

/* Mobile: tighten spacing and keep button full-width */
@media (max-width: 575.98px) {
  #program-highlights .a-btn-soft {
    width: 100%;
    border-radius: 999px;
  }

  #program-highlights .a-phBtn {
    width: fit-content;
    justify-content: center;
    align-self: center;
  }
}


/* -----------------------------
  9) Ocean CTA + Footer (STABLE BASE)
  Keep this base â€” it prevents layout surprises.
----------------------------- */
.ocean-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4.5rem 0 7.5rem;
  background:
    radial-gradient(circle at 40% -10%, #20BBA5 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #0FA38E 0%, #0E4473 60%, #0B2C48 100%);
}

/* Critical: ensure CTA creates a safe stacking context */
.ocean-cta {
  isolation: isolate;
  /* prevents internal absolute layers from leaking over footer */
}

/* Sunrise glow */
.sunrise-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(circle at 50% -5%, rgba(255, 233, 180, .55) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: .45;
  animation: aGlow 16s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes aGlow {
  0% {
    opacity: .35;
    transform: translateY(0);
  }

  100% {
    opacity: .6;
    transform: translateY(-10px);
  }
}

/* Keep CTA content above all background layers */
.ocean-cta .container {
  position: relative;
  z-index: 2;
}

/* Waves MUST stay behind content and never cover footer */
.ocean-waves {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 300px;
  z-index: 1;
  /* behind .container (z=2) */
  pointer-events: none;
  /* never blocks footer interaction */
}

/* Footer base */
.ocean-footer {
  position: relative;
  z-index: 5;
  /* ensures footer is always above anything before it */
  background: linear-gradient(180deg, #0B2C48 0%, #0E4473 65%, #0FA38E 100%);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.ocean-footer .text-gold {
  color: #D4A936 !important;
}

.ocean-footer a {
  color: #fff;
  opacity: .86;
  transition: opacity .2s ease, color .2s ease;
}

.ocean-footer a:hover {
  opacity: 1;
  color: #D4A936;
}

.ocean-footer input.form-control {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.ocean-footer .btn {
  border-radius: 999px;
}

/* =============================
   OCEAN CTA â€” Executive Classic Modern (ENHANCEMENT ONLY)
   Applies only when you add: class="a-oceanCta" on #ocean-cta
============================= */
#ocean-cta.a-oceanCta {
  padding: clamp(4.25rem, 5vw, 6rem) 0 clamp(7rem, 8vw, 8.5rem);
  background:
    radial-gradient(circle at 40% -10%, rgba(32, 187, 165, .95) 0%, rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #0FA38E 0%, #0E4473 60%, #0B2C48 100%);
}

/* Executive glow */
#ocean-cta.a-oceanCta .a-oceanCta__glow {
  position: absolute;
  inset: -40% -15% auto -15%;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(255, 255, 255, .14), rgba(0, 0, 0, 0) 62%),
    radial-gradient(circle at 75% 30%, rgba(23, 92, 221, .18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 55% 92%, rgba(212, 169, 54, .14), rgba(0, 0, 0, 0) 58%);
  filter: blur(26px);
  opacity: .65;
}

/* Executive kicker */
#ocean-cta.a-oceanCta .a-oceanCta__kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .9rem;
  padding: .36rem .75rem;
  border-radius: 999px;
  font-family: var(--a-font-head, system-ui);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: .82rem;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
}

/* Title + copy */
#ocean-cta.a-oceanCta .a-oceanCta__title {
  font-family: var(--a-title-font, var(--a-font-head, system-ui));
  font-weight: var(--a-title-w-title, 840);
  letter-spacing: var(--a-title-track, -0.015em);
  line-height: var(--a-title-line, 1.16);
  margin: 0 0 .6rem 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

#ocean-cta.a-oceanCta .a-oceanCta__sub {
  color: rgba(255, 255, 255, .90);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* CTA group */
#ocean-cta.a-oceanCta .a-oceanCta__actions {
  display: inline-flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .35rem;
}

/* CTA button system */
#ocean-cta.a-oceanCta .a-oceanCta__actions .btn,
.a-hero-bottom-actions .btn,
.a-hero__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  border-radius: 999px;
  font-weight: 900;
  padding: .72rem 1.25rem;
  min-height: 52px;
  min-width: 180px;
  line-height: 1.2;
  text-align: center;
  border-width: 1px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.a-btn-ctaPrimary,
.a-btn-ctaSuccess,
.a-btn-ctaDanger,
.a-btn-ctaInfo,
.a-btn-ctaNeutral,
.a-btn-ctaGhost,
.a-btn-ctaOutline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}

.a-btn-ctaPrimary i,
.a-btn-ctaSuccess i,
.a-btn-ctaDanger i,
.a-btn-ctaInfo i,
.a-btn-ctaNeutral i,
.a-btn-ctaGhost i,
.a-btn-ctaOutline i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

/* =============================
   OCEAN CTA Primary
============================= */
.a-btn-ctaPrimary {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(23, 92, 221, 1), rgba(11, 44, 72, 1));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.a-btn-ctaPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
  filter: saturate(1.05);
  box-shadow: 0 0 20px rgba(23, 92, 221, 0.6), 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =============================
   OCEAN CTA Ghost
============================= */
.a-btn-ctaGhost {
  color: rgba(255, 255, 255, .95) !important;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
}

.a-btn-ctaGhost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}


/* =============================
   OCEAN CTA Outline
============================= */
.a-btn-ctaOutline {
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .56);
}

.a-btn-ctaOutline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .72);
}

/* =============================
   OCEAN CTA Danger
============================= */
.a-btn-ctaDanger {
  color: #ffffff !important;
  /* Updated to a Red "Danger" Gradient */
  background: linear-gradient(180deg, #dc3545 0%, #a71d2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(220, 53, 69, 0.22);
}

.a-btn-ctaDanger:hover {
  transform: translateY(-2px);
  filter: saturate(1.1) brightness(1.2);
  box-shadow: 0 22px 48px rgba(220, 53, 69, 0.3);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.6), 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =============================
   OCEAN CTA Success
============================= */
.a-btn-ctaSuccess {
  color: #ffffff !important;
  /* Green Success Gradient */
  background: linear-gradient(180deg, #198754 0%, #115c39 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(25, 135, 84, 0.22);
  transition: all 0.3s ease;
}

.a-btn-ctaSuccess:hover {
  transform: translateY(-2px);
  filter: saturate(1.1) brightness(1.1);
  box-shadow: 0 0 20px rgba(25, 135, 84, 0.6), 0 15px 40px rgba(0, 0, 0, 0.2);
}



/* =============================
   OCEAN CTA Neutral
============================= */

.a-btn-ctaNeutral {
  color: #0b2c48 !important;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(11, 44, 72, .22);
}

.a-btn-ctaNeutral:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(11, 44, 72, .4);
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =============================
   OCEAN CTA Info
============================= */

/* ctaInfo - Bright Cyan/Blue */
.a-btn-ctaInfo {
  color: #ffffff !important;
  background: linear-gradient(180deg, #0dcaf0 0%, #0aa2c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(13, 202, 240, 0.15);
}

/* Info Glow (Cyan) */
.a-btn-ctaInfo:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(13, 202, 240, 0.6), 0 15px 40px rgba(0, 0, 0, 0.2);
}



/* Common transition for all buttons */
.a-btn-ctaPrimary, .a-btn-ctaSuccess, .a-btn-ctaDanger, 
.a-btn-ctaInfo, .a-btn-ctaNeutral, .a-btn-ctaGhost {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



/* =============================
   OCEAN CTA Secondary
============================= */
.a-hero-bottom-actions .a-btn-ctaGhost {
  background: rgba(11, 44, 72, .65);
}

/* Trust line */
#ocean-cta.a-oceanCta .a-oceanCta__meta {
  margin-top: 1.1rem;
}

#ocean-cta.a-oceanCta .a-oceanCta__trust {
  display: inline-block;
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .01em;
}

/* A11y */
.a-btn-ctaPrimary:focus-visible,
.a-btn-ctaGhost:focus-visible,
.a-btn-ctaOutline:focus-visible,
.a-btn-ctaDanger:focus-visible,
.a-btn-ctaNeutral:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .30);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .a-btn-ctaPrimary,
  .a-btn-ctaGhost,
  .a-btn-ctaOutline,
  .a-btn-ctaDanger,
  .a-btn-ctaNeutral {
    transition: none !important;
  }
}

/* Mobile full-width */
@media (max-width: 575.98px) {
  #ocean-cta.a-oceanCta .a-oceanCta__actions {
    display: grid;
    width: 100%;
    gap: .6rem;
  }

  .a-btn-ctaPrimary,
  .a-btn-ctaGhost,
  .a-btn-ctaOutline,
  .a-btn-ctaDanger,
  .a-btn-ctaNeutral {
    width: 100%;
    min-width: 0;
  }
}

/* */
/* =============================
   OCEAN WAVES â€” make them obvious (drop-in)
   Paste AFTER your existing Ocean CTA CSS
============================= */

/* Keep waves behind content but visible */
#ocean-cta .ocean-waves {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 320px;
  /* slightly taller = more obvious */
  z-index: 1;
  pointer-events: none;

  /* Make the whole SVG pop a bit without neon */
  opacity: .92;
  filter: drop-shadow(0 -10px 18px rgba(0, 0, 0, .22));
}

/* Separate the 3 layers so they donâ€™t merge into one blob */
#ocean-cta .wave-layer {
  /* add a contour line (subtle highlight) */
  stroke: rgba(255, 255, 255, .28);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

/* Depth + contrast per layer */
#ocean-cta .wave-layer.far {
  opacity: .28;
  filter: blur(.4px);
  transform: translateY(6px);
}

#ocean-cta .wave-layer.mid {
  opacity: .50;
  filter: blur(.2px);
  transform: translateY(10px);
}

#ocean-cta .wave-layer.front {
  opacity: .82;
  transform: translateY(16px);
}

/* Optional: executive motion (very subtle drift) */
@media (prefers-reduced-motion: no-preference) {
  #ocean-cta .ocean-waves {
    animation: oceanDrift 18s linear infinite;
  }

  @keyframes oceanDrift {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-25%);
    }

    /* width is 200%, so this loops smoothly */
  }

  /* micro parallax per layer */
  #ocean-cta .wave-layer.far {
    animation: waveFloatFar 10s ease-in-out infinite alternate;
  }

  #ocean-cta .wave-layer.mid {
    animation: waveFloatMid 8s ease-in-out infinite alternate;
  }

  #ocean-cta .wave-layer.front {
    animation: waveFloatFront 7s ease-in-out infinite alternate;
  }

  @keyframes waveFloatFar {
    from {
      transform: translateY(6px);
    }

    to {
      transform: translateY(2px);
    }
  }

  @keyframes waveFloatMid {
    from {
      transform: translateY(10px);
    }

    to {
      transform: translateY(6px);
    }
  }

  @keyframes waveFloatFront {
    from {
      transform: translateY(16px);
    }

    to {
      transform: translateY(12px);
    }
  }
}

/* Reduced motion: keep only visibility improvements */
@media (prefers-reduced-motion: reduce) {
  #ocean-cta .ocean-waves {
    animation: none !important;
  }

  #ocean-cta .wave-layer {
    animation: none !important;
  }
}


/* =============================
   Scroll Top Button
============================= */

/* Scroll top always above */
#scroll-top {
  z-index: 99999;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--a-accent);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--a-bg);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--a-accent), transparent 20%);
  color: var(--a-gold);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.a-cookie-banner:not([hidden]) ~ #scroll-top.scroll-top.active {
  bottom: 104px;
}

/* =============================
  Homepage Bridge Sections
============================= */
.home-intro .a-card,
.program-highlights .a-card {
  background: rgba(255, 255, 255, .96);
}

.a-pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-family: var(--a-font-head);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  border: 1px solid rgba(17, 24, 39, .10);
  background: #fff;
}

.a-pill--accent {
  color: var(--a-accent);
  background: rgba(23, 92, 221, .10);
  border-color: rgba(23, 92, 221, .18);
}

.a-pill--navy {
  color: var(--a-navy);
  background: rgba(11, 44, 72, .08);
  border-color: rgba(11, 44, 72, .14);
}

.a-pill--green {
  color: var(--a-green);
  background: rgba(16, 128, 94, 0.1);
  /* Subtle green tint */
  border-color: rgba(16, 128, 94, 0.2);
}

.a-pill--red {
  color: var(--a-red);
  background: rgba(178, 34, 34, 0.1);
  /* Subtle red tint */
  border-color: rgba(178, 34, 34, 0.2);
}

.a-pill--gold {
  color: var(--a-gold);
  background: rgba(245, 197, 24, 0.1);
  /* Subtle gold tint */
  border-color: rgba(245, 197, 24, 0.2);
}


.a-mini {
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 14px;
  padding: .9rem;
  background: rgba(245, 248, 250, .65);
}

.a-mini__title {
  font-family: var(--a-font-head);
  font-weight: 800;
  color: var(--a-navy);
  margin-bottom: .25rem;
}

.a-mini__text {
  color: var(--a-muted);
  font-size: .95rem;
  line-height: 1.35;
}

.a-links {
  display: grid;
  gap: .6rem;
}

.a-linkrow {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: .1rem .6rem;
  padding: .85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(245, 248, 250, .65);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.a-linkrow:hover {
  transform: translateY(-2px);
  box-shadow: var(--a-shadow-sm);
  background: rgba(255, 255, 255, .9);
}

.a-linkrow__title {
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-navy);
}

.a-linkrow__meta {
  color: var(--a-muted);
  font-size: .92rem;
  grid-column: 1 / 2;
}

.a-linkrow__chev {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.4rem;
  color: rgba(17, 24, 39, .35);
}

.a-linkrow__chev:hover {
  color: var(--a-accent);
}

/* =============================
   Impact â€” aligned with Home Intro
============================= */
#impact.impact-section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  background: linear-gradient(180deg, rgba(23, 92, 221, .06) 0%, rgba(32, 187, 165, .06) 100%);
}

.a-homeImpact {
  position: relative;
}

.a-homeImpact .section-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.a-homeImpact__quick {
  display: inline-flex;
  gap: .45rem;
  flex-wrap: wrap;
  padding: .35rem;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, .86); */
  color: var(--a-green);
  background: rgba(16, 128, 94, 0.1);
  /* Subtle green tint */
  border-color: rgba(16, 128, 94, 0.2);


  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: 0 10px 20px rgba(8, 16, 32, .10);
}

.a-homeImpact__quick a {
  display: inline-flex;
  align-items: center;
  padding: .32rem .68rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 820;
  /* color: rgba(11, 44, 72, .78); */
  /* border: 1px solid transparent; */
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.a-homeImpact__quick a:hover,
.a-homeImpact__quick a:focus-visible {
  color: var(--a-accent);
  background: rgba(23, 92, 221, .09);
  border-color: rgba(23, 92, 221, .16);
  text-decoration: underline;
}

/* tighter consistent section title */
#impact .section-title {
  margin-bottom: 1.75rem !important;
}

#impact .section-heading {
  font-size: clamp(2.1rem, 2.9vw, 3.1rem);
  letter-spacing: -0.02em;
}

#impact .section-title .lead {
  color: rgba(11, 44, 72, .78);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  max-width: 900px;
}

/* unify card feel */
#impact .a-metric,
#impact .a-gauge {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(8, 16, 32, .08);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top accent line like a modern dashboard */
#impact .a-metric::before,
#impact .a-gauge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .9;
}

#impact .a-metric:hover,
#impact .a-gauge:hover {
  transform: translateY(-4px);
  box-shadow: var(--a-shadow-md);
}

/* consistent typography */
#impact .a-metric__label,
#impact .a-metric__label,
#impact .a-metric__label {
  color: var(--a-navy) !important;
  font-weight: 750;
}

#impact .a-metric__value,
#impact .a-gauge__value {
  letter-spacing: -0.02em;
}

/* Metrics grid: consistent vertical rhythm */
#impact .row.g-4>[class*="col"] {
  display: flex;
}

#impact .a-metric {
  width: 100%;
  min-height: 170px;
  /* makes all metrics feel aligned */
  padding: 1.05rem 1.2rem 1.1rem !important;
}

/* Gauges: align like your right-side card in Home Intro */
#impact .row.g-5>[class*="col"] {
  display: flex;
}

#impact .a-gauge {
  width: 100%;
  min-height: 170px;
  padding: 1rem 1.2rem 1.1rem !important;
}

/*  */
#impact .a-metric__value,
#impact .a-gauge__value {
  font-size: clamp(2rem, 2.6vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

#impact .a-metric__label {
  margin-top: .4rem;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 760;
}

#impact .a-metric .icon-track {
  --icon-size: 34px;
  --icon-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  align-content: flex-start;
  gap: var(--icon-gap);
  min-height: calc(var(--icon-size) + 26px);
  margin-bottom: .75rem;
  padding-top: 2px;
  overflow: hidden;
  position: relative;
}

#impact .a-metric .icon-track svg {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  flex: 0 0 auto;
  /* vertical-align: bottom; */
  opacity: 0;
  transform: translateY(-10px);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

#impact .icon-track svg.show {
  opacity: 1;
  transform: translateY(0);
  animation: aHomeImpactIconIn .35s ease both;
  animation-delay: calc(var(--i, 0) * 45ms);
}

@keyframes aHomeImpactIconIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#impact .a-gauge .a-metric__label {
  font-weight: 760;
}

#impact .a-gauge .a-gauge__value {
  font-size: clamp(2rem, 2.4vw, 2.9rem);
}


/* =============================
   Impact â€” modern-classic hover
============================= */

/* Cards: subtle lift + border polish */
#impact .a-metric,
#impact .a-gauge {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
  will-change: transform;
}

/* Hover: executive clean, not flashy */
#impact .a-metric:hover,
#impact .a-gauge:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  border-color: rgba(23, 92, 221, .22);
  background: rgba(255, 255, 255, .98);
}

/* Hover accent line (quiet premium cue) */
#impact .a-metric::after,
#impact .a-gauge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: 0;
  transform: scaleX(.7);
  transform-origin: 50% 50%;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

#impact .a-metric,
#impact .a-gauge {
  position: relative;
  overflow: hidden;
}

#impact .a-metric:hover::after,
#impact .a-gauge:hover::after {
  opacity: .9;
  transform: scaleX(1);
}

/* Icon track: gentle brighten on hover (no movement) */
#impact .a-metric:hover .icon-track {
  filter: saturate(1.05);
}

/* Gauge SVG: tiny emphasis on hover (safe) */
#impact .a-gauge:hover svg {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .10));
  transition: filter .22s ease;
}

/* Keyboard accessibility */
#impact .a-metric:focus-within,
#impact .a-gauge:focus-within {
  outline: 3px solid rgba(23, 92, 221, .22);
  outline-offset: 4px;
}

/* Reduced motion: keep it professional */
@media (prefers-reduced-motion: reduce) {

  #impact .a-metric,
  #impact .a-gauge,
  #impact .a-gauge svg {
    transition: none !important;
  }
}

/* Prevent AOS transforms from affecting inner animated elements */
#impact .lungs,
#impact .clock {
  transform: none !important;
}



/* =============================
   Home Intro + Pathways Section
============================= */

/* Home Intro + Pathways Section */
.standup:hover {
  box-sizing: border-box;
  border: 2px solid var(--a-accent);
  border-radius: var(--a-radius);
  background: rgba(23, 92, 221, .08);
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: var(--a-shadow-sm);
  font-size: larger;

}

/* =============================================================================
  about.css â€” ABOUT page only (Drop-in / Single Source of Truth)
  Depends on main.css tokens:
  --a-accent, --a-navy, --a-muted, --a-radius, --a-radius-lg, --a-font-head, --a-header-h
============================================================================= */

/* =============================
  0) Small Utilities (avoid inline styles)
============================= */
.a-maxw-820 {
  max-width: 820px;
}

.a-maxw-860 {
  max-width: 860px;
}

.a-maxw-880 {
  max-width: 880px;
}

.a-maxw-900 {
  max-width: 900px;
}

.a-maxw-920 {
  max-width: 920px;
}

.a-maxw-940 {
  max-width: 940px;
}

.a-maxw-980 {
  max-width: 980px;
}

.a-navy {
  color: var(--a-navy);
}

.a-white-86 {
  color: rgba(255, 255, 255, .86);
}

.a-white-82 {
  color: rgba(255, 255, 255, .82);
}

/* =============================
  1) About Hero (slightly shorter than home hero)
============================= */
.a-aboutHero {
  min-height: clamp(520px, 72vh, calc(100vh - var(--a-header-h)));
}

/* =============================
  2) Section Rhythm + Skins
============================= */
.a-aboutSection {
  padding: clamp(2.5rem, 4vw, 4.25rem) 0;
}

.a-aboutSection--light {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.a-aboutSection--gradient {
  background: linear-gradient(180deg, rgba(23, 92, 221, .06) 0%, rgba(32, 187, 165, .06) 100%);
}

.a-aboutSection--dark {
  background: linear-gradient(180deg, #0B2C48 0%, #0A2A44 55%, #081F33 100%);
}

/* =============================
  3) Media blocks
============================= */
/* .a-aboutMedia img {
  display: block;
  width: 100%;
  height: auto;
} */

/* .a-aboutMedia img {
  display: block;
  width: 100%;
  height: 500%;
} */

.a-aboutMedia img {
  /* display: block; */
  width: 10%;
  height: 500%;
  object-fit: cover;
  /* Maintains aspect ratio by cropping */
  object-position: center;
  /* Keeps the middle of the image visible */
}


/* =============================
  4) Icon glyph blocks (Mission / Vision / Approach)
============================= */
.a-aboutIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, rgba(23, 92, 221, .95), rgba(11, 44, 72, .95));
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
  margin-bottom: .85rem;
}

/* =============================
  5) Trust Bar + Fact Stack
============================= */
.a-trustBar {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  padding: 1.25rem 1.25rem 1.15rem;
}

.a-factStack {
  display: grid;
  gap: .75rem;
}

.a-fact {
  border-radius: 16px;
  border: 1px solid rgba(23, 92, 221, .14);
  background: linear-gradient(180deg, rgba(23, 92, 221, .06), rgba(32, 187, 165, .05));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  padding: .9rem .95rem;
}

.a-fact__kicker {
  font-size: .82rem;
  color: rgba(17, 24, 39, .60);
  font-weight: 800;
}

.a-fact__value {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--a-navy);
}

/* =============================
  6) Collage Cards
============================= */
.a-collageCard {
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  margin: 0;
}

.a-collageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.03) contrast(1.03);
}

.a-collageCard:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.05);
}

.a-collageCard--tall {
  height: 100%;
  min-height: 420px;
}

@media (max-width: 767.98px) {
  .a-collageCard--tall {
    min-height: 280px;
  }
}

/* =============================
  7) Values Cards (executive)
============================= */
.a-valueCard {
  position: relative;
  border-radius: var(--a-radius-lg);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  height: 100%;
}

.a-valueCard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .92;
}

.a-valueCard__inner {
  padding: 1.15rem 1.15rem 1.1rem;
}

.a-valueCard__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  color: var(--a-accent);
  background: rgba(23, 92, 221, .10);
  border: 1px solid rgba(23, 92, 221, .18);
}

.a-valueCard__icon i {
  font-size: 1.45rem;
}

.a-valueCard__title {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--a-navy);
}

.a-valueCard__text {
  color: rgba(17, 24, 39, .66);
  line-height: 1.5;
}

.a-valueCard:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 92, 221, .18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, .98);
}

#story .image--story {
  border-radius: var(--a-radius-lg) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08) !important;
  border: 1px solid rgba(17, 24, 39, .08) !important;
  background: rgba(255, 255, 255, .96) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease !important;
  overflow: hidden;
  height: 120% !important;
}

/* =============================================================================
   STORY â€“ FUTURISTIC DIAGONAL BEAMS (V2)
   Uses ONLY: #FFFFFF, #769553, #0E5B5A
============================================================================= */

#story .a-storyVisual {
  position: relative;
  isolation: isolate;
  border-radius: var(--a-radius-lg);
}

/* Make the whole diagonal system sit BEHIND the photo */
#story .a-storyVisual::before,
#story .a-storyVisual::after,
#story .a-storyDiagonal {
  content: "";
  position: absolute;
  inset: -22% -32%;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-14deg);
}

/* =========================
   1) White beam (base) â€“ foundation, clarity anchor
========================= */
#story .a-storyDiagonal {
  background:
    linear-gradient(90deg,
      transparent 0%,
      transparent 18%,
      #FFFFFF 26%,
      #FFFFFF 36%,
      transparent 44%,
      transparent 100%),
    radial-gradient(closest-side at 30% 60%,
      rgba(255, 255, 255, .55) 0%,
      rgba(255, 255, 255, .18) 45%,
      transparent 70%);
  opacity: .95;
  filter: blur(.4px);
}


/* =========================
   2) Sage Green beam (middle) â€“ connective tissue
========================= */
#story .a-storyVisual::after {
  background: linear-gradient(90deg,
      transparent 0%,
      transparent 38%,
      #769553 48%,
      #769553 58%,
      transparent 68%,
      transparent 100%);
  opacity: .85;
  filter: blur(.45px);
  transform: rotate(-14deg) translateX(18px);
}


/* =========================
   3) Deep Teal beam (top) â€“ dominant, futuristic mass
========================= */
#story .a-storyVisual::before {
  background:
    linear-gradient(90deg,
      transparent 0%,
      transparent 58%,
      #0E5B5A 68%,
      #0E5B5A 80%,
      transparent 88%,
      transparent 100%),
    linear-gradient(90deg,
      transparent 0%,
      transparent 66%,
      rgba(14, 91, 90, .9) 67%,
      transparent 69%,
      transparent 78%,
      rgba(14, 91, 90, .7) 79%,
      transparent 81%,
      transparent 100%);
  opacity: .98;
  filter: blur(.2px);
  transform: rotate(-14deg) translateX(-26px);
}

/* =========================
   Futuristic micro-texture (adds â€œtechâ€ feel)
   Disable by removing this block if you want cleaner
========================= */
#story .a-storyVisual .a-aboutMedia::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 26px 26px;
  mix-blend-mode: overlay;
}

/* Keep image ABOVE everything */
#story .a-aboutMedia {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--a-radius-lg);
}

/* Subtle photo polish (optional) */
#story .image--story {
  position: relative;
  z-index: 1;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

/* =========================
   Animated shimmer (premium futuristic feel)
========================= */
@media (prefers-reduced-motion: no-preference) {

  #story .a-storyVisual::before,
  #story .a-storyVisual::after,
  #story .a-storyDiagonal {
    animation: storyBeamSweep 9.5s ease-in-out infinite alternate;
    will-change: transform, filter, opacity;
  }
}

@keyframes storyBeamSweep {
  0% {
    transform: rotate(-14deg) translateX(-20px);
    filter: blur(.6px);
  }

  100% {
    transform: rotate(-12deg) translateX(22px);
    filter: blur(.25px);
  }
}

#story .a-storyVisual::before {
  mix-blend-mode: screen;
}


/* =============================================================================
   STORY â€“ RESPONSIVE FIX (MOBILE)
   Prevent diagonals from masking text on small screens
============================================================================= */

/* Default: keep your current desktop settings */

/* Mobile / tablet: soften tilt + confine beams inside the visual column */
@media (max-width: 991.98px) {

  /* Reduce the diagonal system footprint */
  #story .a-storyVisual::before,
  #story .a-storyVisual::after,
  #story .a-storyDiagonal {
    inset: -10% -18%;
    /* was -22% -32% (too aggressive on mobile) */
    transform: rotate(-6deg);
    /* was -14deg (too sharp upward) */
    opacity: .85;
    /* slightly calmer */
  }

  /* Push beams DOWN so they sit behind the image area, not into the text area */
  #story .a-storyVisual::before {
    transform: rotate(-6deg) translate(10px, 34px);
  }

  #story .a-storyVisual::after {
    transform: rotate(-6deg) translate(24px, 44px);
  }

  #story .a-storyDiagonal {
    transform: rotate(-6deg) translate(0px, 54px);
  }

  /* Blend modes can cause â€œwashâ€ on mobile; disable for clean readability */
  #story .a-storyVisual::before {
    mix-blend-mode: normal;
  }

  /* Animation: reduce motion amplitude on mobile so it doesnâ€™t drift upward */
  @media (prefers-reduced-motion: no-preference) {

    #story .a-storyVisual::before,
    #story .a-storyVisual::after,
    #story .a-storyDiagonal {
      animation-duration: 12s;
    }
  }
}

/* Optional: ultra-small phones â€“ flatten even more */
@media (max-width: 575.98px) {

  #story .a-storyVisual::before,
  #story .a-storyVisual::after,
  #story .a-storyDiagonal {
    transform: rotate(-3deg) translate(0px, 66px);
    inset: -6% -12%;
    opacity: .78;
  }
}




/* =============================
  8) Impact Cards
============================= */
.a-impactCard {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  padding: 1.1rem 1.1rem 1.05rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.a-impactCard::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .92;
}

.a-impactCard__value {
  font-family: var(--a-font-head);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--a-navy);
  font-size: 2rem;
  margin-bottom: .25rem;
}

.a-impactCard__title {
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-navy);
  margin-bottom: .35rem;
}

.a-impactCard__meta {
  color: rgba(17, 24, 39, .62);
  line-height: 1.45;
}

.a-impactCard:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 92, 221, .18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
}

/* =============================
  9) Delivery Model Steps
============================= */
.a-modelSteps {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.a-step {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .9rem .95rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
}

.a-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(23, 92, 221, .95), rgba(11, 44, 72, .95));
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

.a-step__title {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  line-height: 1.15;
}

.a-step__text {
  color: rgba(17, 24, 39, .66);
  margin-top: .15rem;
  line-height: 1.45;
}

/* =============================
   DELIVERY MODEL â€” premium modern
============================= */

#about-model {
  position: relative;
  overflow: hidden;
}

/* subtle premium glow + micro-grid (futuristic, not flashy) */
#about-model::before {
  content: "";
  position: absolute;
  inset: -30% -12% auto -12%;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(23, 92, 221, .14), rgba(0, 0, 0, 0) 62%),
    radial-gradient(circle at 78% 20%, rgba(32, 187, 165, .12), rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 55% 92%, rgba(212, 169, 54, .10), rgba(0, 0, 0, 0) 58%);
  filter: blur(26px);
  opacity: .95;
}

#about-model .container {
  position: relative;
  z-index: 2;
}

.a-modelMedia {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .10);
  overflow: hidden;
  backdrop-filter: blur(10px);
  align-items: center;
}

/* top bar */
.a-modelMedia__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem .95rem;
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
}

.a-modelMedia__kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-navy);
  font-size: .92rem;
}

.a-modelMedia__actions {
  display: flex;
  gap: .55rem;
  align-items: center;
}

.a-modelExpand,
.a-modelOpenTab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 12px;
  padding: .45rem .7rem;
  font-family: var(--a-font-head);
  font-weight: 900;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .92);
  color: var(--a-navy);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  align-self: center;
}

.a-modelExpand:hover,
.a-modelOpenTab:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 92, 221, .22);
  background: rgba(23, 92, 221, .06);
  color: var(--a-accent);
}

/* SVG viewport */
.a-modelMedia__svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  /* improves legibility */
  background: #ffffff;
  align-self: center;
}

/* Make it look like â€œpresentation panelâ€, not just an image */
@media (min-width: 992px) {
  .a-modelMedia__svg {
    min-height: 620px;
  }
}

/* =============================
   FULLSCREEN / BLOW-OUT MODAL
============================= */

.a-modelLightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(11, 44, 72, .70);
  z-index: 999999;
}

.a-modelLightbox.is-open {
  display: grid;
}

.a-modelLightbox__panel {
  width: min(1480px, 96vw);
  height: min(920px, 94vh);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .30);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: relative;
  /* stacking anchor */
  isolation: isolate;
}

.a-modelLightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .95rem;
  background: linear-gradient(180deg, rgba(245, 248, 250, 1), rgba(255, 255, 255, 1));
  border-bottom: 1px solid rgba(17, 24, 39, .08);
}

.a-modelLightbox__title {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  letter-spacing: -0.01em;
}

.a-modelLightbox__controls {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.a-modelLightbox__link {
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-accent);
  padding: .35rem .6rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 92, 221, .18);
  background: rgba(23, 92, 221, .06);
}

.a-modelLightbox__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  color: var(--a-navy);
  font-weight: 950;

  position: relative;

  z-index: 9999;
  /* extra safety */
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  color: red;
}

.a-modelLightbox__btn:hover {
  border-color: rgba(23, 92, 221, .22);
  background: rgba(23, 92, 221, .06);
  color: var(--a-accent);
}

/* Body becomes a centering stage */
.a-modelLightbox__body {
  flex: 1;
  background: #fff;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  /* padding: 1rem; */
  padding-top: 12px;
  /* overflow: hidden;          avoid weird scroll covering header */
  overflow: auto;
  position: relative;
  z-index: 1;
}

/* Make the SVG/object behave like a â€œcontainedâ€ poster */
.a-modelLightbox__svg {
  display: block;
  width: min(1200px, 92vw);
  height: auto;
  min-height: 0;
  /* IMPORTANT: remove the tall min-height that fights centering */
  background: #fff;
  display: block;
  margin: 0 auto;

  position: relative;
  z-index: 1;
}


/* key: FIT/CONTAIN in fullscreen so it fills screen and stays readable */
.a-modelLightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  align-self: center;
}

.a-modelLightbox__top {
  position: sticky;
  top: 0;
  z-index: 2;
}

.a-modelLightbox__btn i {
  font-size: 1.1rem;
  line-height: 1;
}

/* Mobile: give it more usable height */
@media (max-width: 576px) {
  .a-modelLightbox__img {
    max-height: 62vh;
    /* tweak if your header is taller */
  }
}


/* =============================
  10) Timeline
============================= */
.a-timeline {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.a-timelineItem {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
}

.a-timelineYear {
  font-family: var(--a-font-head);
  font-weight: 950;
  font-size: 1.25rem;
  color: var(--a-navy);
  padding-top: .35rem;
}

.a-timelineCard {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  padding: 1rem 1.05rem;
  position: relative;
  overflow: hidden;
}

.a-timelineCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .9;
}

.a-timelineTitle {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  margin-bottom: .25rem;
}

.a-timelineText {
  color: rgba(17, 24, 39, .66);
  line-height: 1.5;
}

@media (max-width: 575.98px) {
  .a-timelineItem {
    grid-template-columns: 1fr;
  }

  .a-timelineYear {
    padding-top: 0;
  }
}

/* =============================
  11) Team Cards (soft executive)
============================= */
.a-teamCard {
  border-radius: var(--a-radius-lg);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
}

.a-teamCard__photo {
  aspect-ratio: 4 / 3;
  background: #eef2f7;
  overflow: hidden;
}

.a-teamCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.02) contrast(1.02);
}

.a-teamCard__body {
  padding: 1rem 1.05rem 1.05rem;
}

.a-teamCard__name {
  font-family: var(--a-font-head);
  font-weight: 900;
  color: var(--a-navy);
  letter-spacing: -0.01em;
}

.a-teamCard__role {
  color: var(--a-muted);
  font-weight: 750;
  font-size: .95rem;
}

.a-teamCard:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 92, 221, .18);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .14);
}

.a-teamCard:hover .a-teamCard__photo img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.04);
}

/* =============================
  12) Partners Marquee (smooth)
============================= */
.a-partnersMarquee {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  overflow: hidden;
  padding: 1rem 0;
}

.a-partnersTrack {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: aMarquee 28s linear infinite;
}

.a-partnerItem {
  width: 170px;
  height: 70px;
  display: grid;
  place-items: center;
  padding: .5rem .75rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, .06);
  background: rgba(245, 248, 250, .75);
}

.a-partnerItem img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: saturate(1.02);
  opacity: .95;
}

@keyframes aMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .a-partnersTrack {
    animation: none !important;
  }
}

/* =============================
  13) Reduced motion (global for About hover transitions)
============================= */
@media (prefers-reduced-motion: reduce) {

  .a-collageCard img,
  .a-valueCard,
  .a-impactCard,
  .a-teamCard,
  .a-teamCard__photo img {
    transition: none !important;
  }
}


/* =========================================================================================
   ABOUT PAGE â€“ MOVE FROM about.php INTO main.css
   Add this block near your "About" section styles in main.css
   (Safe: only targets the new helper classes/IDs used in the updated about.php)
   ========================================================================================= */

/* ---------- A11Y: Skip link helper (Bootstrap has visually-hidden; keep focusable) ---------- */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:focus,
.visually-hidden-focusable:focus-within {
  position: fixed !important;
  left: 16px;
  top: 16px;
  z-index: 999999;
  width: auto !important;
  height: auto !important;
  padding: .75rem 1rem !important;
  margin: 0 !important;
  clip: auto !important;
  overflow: visible !important;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  color: var(--a-navy);
  font-family: var(--a-font-head);
  font-weight: 900;
  text-decoration: none;
}

/* ---------- About Quick Nav (sticky â€œOn this pageâ€) ---------- */
.a-aboutQuickNav {
  position: sticky;
  top: calc(var(--a-header-h) + 12px);
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  padding: .85rem .85rem;
  backdrop-filter: blur(10px);
}

.a-aboutQuickNav__title {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  letter-spacing: -0.01em;
  font-size: .98rem;
  margin: 0 0 .5rem 0;
}

.a-aboutQuickNav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .65rem;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(245, 248, 250, .70);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  font-family: var(--a-font-head);
  font-weight: 850;
  color: var(--a-navy);
  font-size: .9rem;
  margin-bottom: .45rem;
  text-decoration: none;
}

.a-aboutQuickNav a:hover {
  transform: translateY(-1px);
  background: rgba(23, 92, 221, .06);
  border-color: rgba(23, 92, 221, .18);
  color: var(--a-accent);
}

.a-aboutQuickNav a.is-active {
  background: rgba(23, 92, 221, .08);
  border-color: rgba(23, 92, 221, .22);
  color: var(--a-accent);
}

.a-aboutQuickNav .a-qBadge {
  font-size: .78rem;
  font-weight: 950;
  padding: .18rem .5rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 92, 221, .18);
  background: rgba(23, 92, 221, .08);
  color: var(--a-accent);
}


/* ---------- MOBILE HEADER VISIBILITY PATCH (drop-in) ---------- */
:root {
  --a-safe-top: env(safe-area-inset-top, 0px);
}

/* Let brandbar grow (donâ€™t force fixed height) */
.a-brandbar {
  height: auto;
  min-height: 70px;
  /* keep your intended baseline */
  padding-top: max(.25rem, var(--a-safe-top));
  /* safe-area friendly */
}

/* Place fixed header below the notch/safe-area */
.header.fixed-top {
  top: var(--a-safe-top);
}

/* Offset the page content by REAL header height + safe area */
.page-frame {
  padding-top: calc(var(--a-header-h) + var(--a-safe-top) + var(--a-frame-pad));
}

@media (max-width: 576px) {
  .page-frame {
    padding-top: calc(var(--a-header-h) + var(--a-safe-top));
  }
}

/* Mobile nav overlay must start below the real header */
@media (max-width: 1199.98px) {
  #navmenu {
    top: calc(var(--a-header-h) + var(--a-safe-top));
    height: calc(100dvh - var(--a-header-h) - var(--a-safe-top));
    /* use dvh for mobile browser UI */
  }

  #navmenu>ul {
    max-height: calc(100dvh - var(--a-header-h) - var(--a-safe-top) - 28px);
  }
}




/* ---------- Hero depth micro-gradient (About page only) ---------- */
#about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(23, 92, 221, .22), rgba(0, 0, 0, 0) 55%),
    radial-gradient(circle at 85% 25%, rgba(32, 187, 165, .18), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .35));
  z-index: 1;
}

#about-hero .a-hero__overlay {
  z-index: 2;
}

/* ---------- Story quote card (used in #story) ---------- */
.a-quoteCard {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
  padding: 1.1rem 1.1rem 1.05rem;
  backdrop-filter: blur(10px);
}

.a-quoteMark {
  font-family: var(--a-font-head);
  font-weight: 950;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, .22);
  user-select: none;
  margin-bottom: .2rem;
}

/* ---------- Collage click affordance (optional) ---------- */
#a-collage [data-lightbox],
#about-collage [data-lightbox] {
  cursor: pointer;
}

/* ---------- Lightbox (no libs) ---------- */
.a-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(11, 44, 72, .62);
  z-index: 999999;
}

.a-lightbox.is-open {
  display: grid;
}

.a-lightbox__panel {
  width: min(1100px, 96vw);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.a-lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .9rem;
  background: linear-gradient(180deg, rgba(245, 248, 250, 1), rgba(255, 255, 255, 1));
  border-bottom: 1px solid rgba(17, 24, 39, .08);
}

.a-lightbox__title {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  margin: 0;
  font-size: 1rem;
}

.a-lightbox__btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--a-navy);
  cursor: pointer;
}

.a-lightbox__btn:hover {
  border-color: rgba(23, 92, 221, .22);
  background: rgba(23, 92, 221, .06);
  color: var(--a-accent);
}

.a-lightbox__img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: cover;
  display: block;
  background: #eef2f7;
}

/* ---------- Partners marquee: pause on hover ---------- */
.a-partnersMarquee:hover .a-partnersTrack {
  animation-play-state: paused;
}

/* ---------- Focus ring polish (site-wide friendly) ---------- */
:focus-visible {
  outline: 3px solid rgba(23, 92, 221, .28);
  outline-offset: 4px;
  border-radius: 12px;
}

/* ---------- Reduced motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  .a-aboutQuickNav a {
    transition: none;
  }

  #about-hero::after {
    transition: none;
  }
}

/* =========================================================================================
   FIELD STORYBOARD (About collage) â€” Artistic / Futuristic / Professional
   Targets: #about-collage .a-fieldStoryboard + children
   ========================================================================================= */

.a-fieldStoryboard {
  position: relative;
  overflow: hidden;
}

.a-fieldBackdrop {
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(1000px 420px at 15% 20%, rgba(23, 92, 221, .18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px 380px at 85% 25%, rgba(15, 163, 142, .16), rgba(0, 0, 0, 0) 62%),
    radial-gradient(700px 320px at 40% 90%, rgba(23, 92, 221, .10), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.a-fieldGlow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
  background:
    linear-gradient(180deg, rgba(245, 248, 250, 0) 0%, rgba(245, 248, 250, .78) 42%, rgba(245, 248, 250, 0) 100%);
  mix-blend-mode: multiply;
}

.a-fieldStoryboard .container {
  z-index: 1;
}

/* Meta chips (story categories) */
.a-storyMeta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 0 auto 1.15rem auto;
}

.a-storyMeta__chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  font-family: var(--a-font-head);
  font-weight: 850;
  color: var(--a-navy);
  letter-spacing: -0.01em;
  font-size: .92rem;
}

.a-storyMeta__chip .a-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a-accent), #20BBA5);
  box-shadow: 0 0 0 4px rgba(23, 92, 221, .10);
}

/* The storyboard grid */
.a-fieldGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
}

/* Scene layout (desktop) */
.a-fieldCard.scene-hero {
  grid-column: 1 / span 7;
  grid-row: span 5;
}

.a-fieldCard.scene-tall {
  grid-column: 8 / span 5;
  grid-row: span 5;
}

.a-fieldCard.scene-small1 {
  grid-column: 1 / span 4;
  grid-row: span 3;
}

.a-fieldCard.scene-small2 {
  grid-column: 5 / span 3;
  grid-row: span 3;
}

.a-fieldCard.scene-wide {
  grid-column: 8 / span 5;
  grid-row: span 3;
}

.a-fieldCard.scene-small3 {
  grid-column: 1 / span 7;
  grid-row: span 2;
}

/* NEW: small + tall card next to Scene 06 (right side) */
.a-fieldCard.scene-small-tall {
  grid-column: 8 / span 5;
  grid-row: span 2;
}


/* Card base */
.a-fieldCard {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transform: translateZ(0);
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .70);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .10);
  outline: none;
}

/* Media */
.a-fieldCard__media,
.a-fieldCard__media img {
  width: 100%;
  height: 100%;
}

.a-fieldCard__media img {
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.02) contrast(1.03);
}

/* Overlay: cinematic fade + color wash */
.a-fieldCard__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 18% 20%, rgba(23, 92, 221, .22), rgba(0, 0, 0, 0) 60%),
    radial-gradient(700px 280px at 85% 25%, rgba(32, 187, 165, .18), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(11, 44, 72, .06), rgba(11, 44, 72, .48) 70%, rgba(11, 44, 72, .66));
  opacity: .92;
  transition: opacity .35s ease;
}

/* Content */
.a-fieldCard__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.05rem 1.05rem .95rem;
  gap: .55rem;
  color: #fff;
}

.a-fieldCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.a-sceneTag {
  font-family: var(--a-font-head);
  font-weight: 950;
  font-size: .84rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

.a-sceneKicker {
  font-family: var(--a-font-head);
  font-weight: 850;
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58%;
}

.a-fieldCard__title {
  margin: 0;
  font-family: var(--a-font-head);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  text-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.a-fieldCard__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .35rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.a-ctaHint {
  font-family: var(--a-font-head);
  font-weight: 850;
  font-size: .95rem;
  color: rgba(255, 255, 255, .84);
}

.a-ctaIcon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  font-weight: 950;
}

/* Gradient border shimmer */
.a-fieldCard__border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(23, 92, 221, .35), rgba(32, 187, 165, .28), rgba(255, 255, 255, .10));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .75;
  transition: opacity .35s ease;
}

/* Hover / focus: lift + sharper + slightly more â€œfutureâ€ */
.a-fieldCard:hover,
.a-fieldCard:focus-visible {
  box-shadow: 0 26px 70px rgba(0, 0, 0, .16);
  transform: translateY(-4px);
}

.a-fieldCard:hover .a-fieldCard__media img,
.a-fieldCard:focus-visible .a-fieldCard__media img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06);
}

.a-fieldCard:hover .a-fieldCard__overlay,
.a-fieldCard:focus-visible .a-fieldCard__overlay {
  opacity: .98;
}

.a-fieldCard:hover .a-fieldCard__border,
.a-fieldCard:focus-visible .a-fieldCard__border {
  opacity: 1;
}

/* Mobile layout */
@media (max-width: 991px) {
  .a-fieldGrid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 110px;
  }

  .a-fieldCard.scene-hero {
    grid-column: 1 / span 6;
    grid-row: span 4;
  }

  .a-fieldCard.scene-tall {
    grid-column: 1 / span 6;
    grid-row: span 4;
  }

  .a-fieldCard.scene-small1 {
    grid-column: 1 / span 3;
    grid-row: span 3;
  }

  .a-fieldCard.scene-small2 {
    grid-column: 4 / span 3;
    grid-row: span 3;
  }

  .a-fieldCard.scene-wide {
    grid-column: 1 / span 6;
    grid-row: span 3;
  }

  .a-fieldCard.scene-small3 {
    grid-column: 1 / span 6;
    grid-row: span 2;
  }

  .a-sceneKicker {
    max-width: 55%;
  }
}

@media (max-width: 991px) {
  .a-fieldCard.scene-small-tall {
    grid-column: 1 / span 6;
    grid-row: span 2;
  }
}


@media (max-width: 575px) {
  .a-storyMeta__chip {
    font-size: .88rem;
  }

  .a-fieldGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .a-fieldCard {
    grid-column: 1 / span 2 !important;
    grid-row: span 3 !important;
  }

  .a-sceneKicker {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .a-fieldCard,
  .a-fieldCard__media img,
  .a-fieldCard__overlay,
  .a-fieldCard__border {
    transition: none !important;
  }
}

/* =============================
   ABOUT TRUST â€” Premium Modern (Drop-in)
   Targets: #about-trust .a-trustBar--premium
============================= */

#about-trust .a-trustBar--premium {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(1.15rem, 1.6vw, 1.45rem);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
  backdrop-filter: blur(12px);
}

/* cinematic background layer */
#about-trust .a-trustBar--premium .a-trustBar__bg {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  z-index: 0;

  /* premium glow + micro grid */
  background:
    radial-gradient(900px 380px at 12% 18%, rgba(23, 92, 221, .18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(820px 340px at 88% 22%, rgba(32, 187, 165, .14), rgba(0, 0, 0, 0) 58%),
    radial-gradient(740px 320px at 45% 96%, rgba(212, 169, 54, .10), rgba(0, 0, 0, 0) 60%),
    linear-gradient(0deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .70)),
    linear-gradient(0deg, rgba(17, 24, 39, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, .04) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 26px 26px, 26px 26px;
  opacity: .95;
}

/* subtle â€œorbâ€ motif (futuristic but professional) */
#about-trust .a-trustBar--premium::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -210px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(23, 92, 221, .20),
      rgba(32, 187, 165, .10) 45%,
      rgba(255, 255, 255, 0) 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* top accent stroke */
#about-trust .a-trustBar--premium::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .75), rgba(212, 169, 54, .55));
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

/* keep content above bg */
#about-trust .a-trustBar--premium>* {
  position: relative;
  z-index: 1;
}

#about-trust .a-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--a-font-head);
  font-weight: 950;
  letter-spacing: .02em;
  font-size: .82rem;
  color: rgba(11, 44, 72, .82);
  padding: .34rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 44, 72, .12);
  background: rgba(11, 44, 72, .06);
  margin-bottom: .65rem;
}

#about-trust .a-trustBar__head .section-heading {
  line-height: 1.12;
  letter-spacing: -0.02em;
}

#about-trust .a-trustBar__grid {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: start;
}

/* capability block */
#about-trust .a-trustBar__block {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  padding: .95rem 1rem;
}

#about-trust .a-blockTitle {
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-navy);
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
}

#about-trust .a-proofList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

#about-trust .a-proofList li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: rgba(17, 24, 39, .72);
  font-weight: 700;
  line-height: 1.35;
}

#about-trust .a-proofList .a-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: .32rem;
  background: linear-gradient(135deg, var(--a-accent), #20BBA5);
  box-shadow: 0 0 0 4px rgba(23, 92, 221, .10);
  flex: 0 0 auto;
}

/* signal cards */
#about-trust .a-trustBar__signals {
  display: grid;
  gap: .75rem;
}

#about-trust .a-signalCard {
  border-radius: 18px;
  border: 1px solid rgba(23, 92, 221, .14);
  background: linear-gradient(180deg, rgba(23, 92, 221, .06), rgba(32, 187, 165, .05));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
  padding: .85rem .9rem;
}

#about-trust .a-signalCard__k {
  font-size: .82rem;
  color: rgba(17, 24, 39, .58);
  font-weight: 900;
}

#about-trust .a-signalCard__v {
  font-family: var(--a-font-head);
  font-weight: 950;
  letter-spacing: -0.01em;
  color: var(--a-navy);
  margin-top: .12rem;
}

#about-trust .a-signalCard__m {
  color: rgba(17, 24, 39, .66);
  font-weight: 700;
  margin-top: .2rem;
}

/* footer row */
#about-trust .a-trustBar__foot {
  margin-top: .95rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(17, 24, 39, .08);
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#about-trust .a-ctaPill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  font-family: var(--a-font-head);
  font-weight: 950;
  color: var(--a-accent);
  border: 1px solid rgba(23, 92, 221, .18);
  background: rgba(23, 92, 221, .06);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

#about-trust .a-ctaPill:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 92, 221, .26);
  background: rgba(23, 92, 221, .08);
}

#about-trust .a-footNote {
  color: rgba(17, 24, 39, .58);
  font-weight: 800;
}

/* tighten the whole section so it doesn't feel like a gap after the hero */
#about-trust.a-aboutSection {
  padding-top: clamp(1.75rem, 3vw, 3.1rem);
}

/* responsive */
@media (max-width: 991.98px) {
  #about-trust .a-trustBar__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  #about-trust .a-aboutQuickNav {
    padding: .75rem .75rem;
  }

  #about-trust .a-aboutQuickNav a {
    padding: .5rem .6rem;
    margin-bottom: .4rem;
  }
}

/* =========================================================================================
   PROGRAMS (FINAL) â€” DROP-IN + RUN
   - Progress bar
   - Scroll reveal (stagger via --d)
   - Hero V3 (background stack + waves)
   - Stats rail nodes (includes rail line + dot + chip)
   - Cluster grid cards (crisp photo + sheen hover)
   - Program sections: crisp photo backdrops + tint + vignette + grain
   - Stacked card layout + sticky behavior
   - Right-side tiles + chips + progress priming
   - Sticky quick nav
   - Section heading readability
   - Focus styles
   - Reduced motion safety
========================================================================================= */

/* 1. Reset the list container */
.a-proofList {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.5rem 0 0 0;
}

/* 2. Create a 2-column grid for the list item */
.a-proofList li {
  display: grid;
  /* Column 1 (dot): fits the dot size | Column 2 (text): takes remaining space */
  grid-template-columns: 10px 1fr;
  gap: 16px;
  /* Precise control over the space between dot and text */
  margin-bottom: 1.25rem;
  align-items: start;
  /* Vital: Keeps dot at the top of multi-line text */
}

/* 3. The Dot Styling */
.a-proofList .a-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a-accent, #19c6a7), #20BBA5);
  box-shadow: 0 0 0 4px rgba(23, 92, 221, .10);

  /* This aligns the 10px dot to the vertical center of the first line of text (approx 1.5rem line-height) */
  margin-top: 7px;

  display: block;
  /* Prevents inline behavior issues */
}

/* 4. Text Styling for clarity */
.a-proofList li {
  color: #35556f;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}



/* Page scope */
#programs-main {
  position: relative;
  overflow-x: clip;
}

/* ==========================
   Progress bar
========================== */
.a-scrollProgress {
  position: fixed;
  top: var(--a-header-h, 78px);
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 999;
  pointer-events: none;
  background: transparent;
}

.a-scrollProgress>span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #19C6A7, #2ED6FF, #7C5CFF, #FFB02E);
  box-shadow: 0 0 16px rgba(46, 214, 255, .38);
  border-radius: 999px;
  transform-origin: 0 50%;
}

/* ==========================
   Scroll reveal (supports --d stagger)
========================== */
.a-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0ms);
}

.a-reveal.is-in {
  opacity: 1;
  transform: none;
}

.a-reveal[data-reveal="left"] {
  transform: translateX(-18px);
}

.a-reveal[data-reveal="right"] {
  transform: translateX(18px);
}

.a-reveal.is-in[data-reveal="left"],
.a-reveal.is-in[data-reveal="right"] {
  transform: none;
}

/* Parallax helper */
.a-parallaxLayer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ==========================
   HERO â€” Programs V3 (Premium)
========================== */
.a-hero--programsV3 {
  position: relative;
  min-height: calc(90dvh - var(--a-header-h, 78px));
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #06182A 0%, #0B2C48 45%, #04101d 100%);
}

.a-heroV3__content {
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 5vw, 4.5rem);
}

/* Background stack */
.a-heroV3__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  isolation: isolate;
}

.a-heroV3__orbs {
  position: absolute;
  inset: -25% -20% auto -20%;
  height: 520px;
  background:
    radial-gradient(circle at 18% 30%, rgba(25, 198, 167, .30), transparent 58%),
    radial-gradient(circle at 78% 24%, rgba(23, 92, 221, .28), transparent 60%),
    radial-gradient(circle at 55% 95%, rgba(212, 169, 54, .14), transparent 55%);
  filter: blur(22px);
  opacity: .95;
  z-index: 1;
}

.a-heroV3__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .18;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 40%, #000 35%, transparent 70%);
}

.a-heroV3__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .55) 68%, rgba(0, 0, 0, .75));
  opacity: .78;
}

.a-heroV3__noise {
  position: absolute;
  inset: -2px;
  z-index: 4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .22;
}

/* Hero text */
.a-heroV3__kicker {
  display: inline-flex;
  /* Keeps icons and text aligned */
  align-items: center;
  gap: .55rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  font-family: var(--a-font-head);
  font-weight: 850;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .92);

  /* PUSH HIGHER: Increased negative margin */
  margin-top: -60px;
  margin-bottom: 50px;

  /* Ensure it is treated as a block for margin to work correctly */
  position: relative;
}


.a-heroV3__title {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--a-gold);
  text-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  transition: opacity .45s ease;
  color: var(--a-gold);

  margin-top: 0;
  /* Let the kicker's 50px bottom margin handle the gap */
  line-height: 1.15;
  /* Tighter line height for bold hero titles */
}


.a-heroV3__sub {
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
  text-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.a-heroV3__trust {
  margin-top: 1.05rem;
  font-weight: 750;
  font-size: .95rem;
  color: rgba(255, 255, 255, .78);
}

/* Waves */
@keyframes drift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-60px);
  }
}

.a-heroV3__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(180px, 18vw, 240px);
  z-index: 2;
  pointer-events: none;
}

.a-hero--programsV3 .a-heroWaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.a-hero--programsV3 .a-waveFar {
  opacity: .22;
  animation: drift 14s linear infinite;
}

.a-hero--programsV3 .a-waveMid {
  opacity: .38;
  animation: drift 10s linear infinite reverse;
}

.a-hero--programsV3 .a-waveFront {
  opacity: .62;
  animation: drift 8s linear infinite;
}

/* ==========================
   Stats rail (nodes + line + dot + chip)
========================== */
.a-statsRail {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.a-statsRail::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(25, 198, 167, .55),
      rgba(23, 92, 221, .45),
      rgba(212, 169, 54, .35));
  opacity: .55;
  filter: blur(.2px);
}

.a-statNode {
  position: relative;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  /* background: rgba(23, 92, 221, .95); */
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.a-statNode::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  left: 18px;
  top: 19px;
  background: linear-gradient(135deg, rgba(25, 198, 167, .95), rgba(23, 92, 221, .85));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
}

.a-statNode__chip {
  display: inline-flex;
  margin-left: 28px;
  padding: .28rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  font-family: var(--a-font-head);
  font-weight: 850;
  font-size: .82rem;
  color: rgba(255, 255, 255, .88);
}

.a-statNode__title {
  color: var(--a-gold);
  margin-top: .55rem;
  font-weight: 950;
  letter-spacing: -.01em;
}

.a-statNode__meta {
  margin-top: .2rem;
  opacity: .86;
  font-size: .94rem;
}

.a-statNode:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

@media (max-width: 991.98px) {
  .a-statsRail {
    grid-template-columns: 1fr;
  }

  .a-statsRail::before {
    display: none;
  }
}

/* ==========================
   Cluster grid (cards)
========================== */
.a-clusterGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.a-clusterCard {
  grid-column: span 4;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 18px 55px rgba(8, 28, 48, .10);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  transform-style: preserve-3d;
}

.a-clusterCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 75px rgba(8, 28, 48, .16);
  border-color: rgba(25, 198, 167, .35);
}

/* Photo (CRISP) */
.a-clusterCard__img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.06);
  filter: none;
  opacity: .98;
  z-index: 0;
}

/* Overlay for readability */
.a-clusterCard__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 20% 10%, rgba(255, 255, 255, .28), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .62));
  z-index: 1;
  pointer-events: none;
}

.a-clusterCard__content {
  position: relative;
  z-index: 2;
  padding: 1.1rem;
  color: #fff;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.a-clusterCard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

.a-clusterCard__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .20);
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
}

.a-clusterCard__icon i {
  font-size: 1.25rem;
}

.a-clusterCard__title {
  color: var(--a-navy);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
  backdrop-filter: blur(2px);
}

.a-clusterCard__desc {
  margin: .35rem 0 0;
  opacity: .92;
}

.a-clusterCard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.a-miniBar {
  flex: 1 1 auto;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  overflow: hidden;
}

.a-miniBar>span {
  display: block;
  height: 100%;
  width: var(--w, 55%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .35));
}

.a-clusterCard__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.a-clusterCard__cta:hover {
  text-decoration: underline;
  color: #fff;
}

#programs-main .a-clusterCard__cta.btn-primary-outline {
  border: 1px solid rgba(255, 255, 255, .7);
  /* border-radius: 999px; */
  border-radius: 5px;
  padding: .36rem .72rem;
  background: rgba(11, 44, 72, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);

  /* color: var(--a-green); */
  background: rgba(16, 128, 94, 0.1);
  /* Subtle green tint */
  border-color: rgba(16, 128, 94, 0.2);

  text-decoration: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

#programs-main .a-clusterCard__cta.btn-primary-outline:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .92);
}

/* Premium sheen sweep */
.a-clusterCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .16), transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
  opacity: .55;
}

.a-clusterCard:hover::after {
  transform: translateX(120%);
}

@media (max-width: 992px) {
  .a-clusterCard {
    grid-column: span 6;
  }
}

@media (max-width: 576px) {
  .a-clusterCard {
    grid-column: span 12;
  }
}

/* ==========================
   Sticky quick nav container
========================== */
.a-stickyAside {
  position: sticky;
  top: calc(var(--a-header-h, 78px) + 18px);
  align-self: start;
}

/* ==========================
   Programs section backdrops (CRISP photo + tint + vignette + grain)
========================== */
.a-sec {
  position: relative;
  overflow: hidden;
}

.a-sec .container {
  position: relative;
  z-index: 2;
}

.a-secBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Photo layer */
.a-secBackdrop__img {
  position: absolute;
  inset: -10%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.06);
  filter: none !important;
  opacity: .70;
  will-change: transform, opacity;
}

/* Tint layer */
.a-secBackdrop__tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 650px at 20% 10%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(135deg, rgba(6, 24, 42, .20), rgba(6, 24, 42, .68));
  opacity: .86;
}

/* Grain */
.a-secBackdrop__grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .18;
}

/* Vignette */
.a-secBackdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 50% 30%, rgba(0, 0, 0, .12), rgba(0, 0, 0, .42));
  opacity: .55;
  pointer-events: none;
}

/* Light sections */
.a-aboutSection--light.a-sec .a-secBackdrop__img {
  opacity: .22;
}

.a-aboutSection--light.a-sec .a-secBackdrop__tint {
  background:
    radial-gradient(1200px 520px at 25% 10%, rgba(255, 255, 255, .75), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .94));
  opacity: .98;
}

.a-aboutSection--light.a-sec .a-secBackdrop__grain {
  opacity: .12;
}

.a-aboutSection--light.a-secBackdrop::after {
  opacity: .20;
}

/* ==========================
   Section header readability
========================== */
.a-sec .section-title .section-heading {
  color: #fff;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .38);
  letter-spacing: -0.02em;
}

.a-sec .section-title .lead {
  color: rgba(255, 255, 255, .90);
  text-shadow: 0 12px 26px rgba(0, 0, 0, .26);
}

.a-aboutSection--light.a-sec .section-title .section-heading,
.a-aboutSection--light.a-sec .section-title .lead {
  color: var(--a-navy);
  text-shadow: none;
}

/* Theme line */
.a-themeLine {
  height: 3px;
  width: 86px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--t1), var(--t2));
  box-shadow: 0 0 24px rgba(25, 198, 167, .18);
  margin: .85rem auto 0;
}

/* ==========================
   Stacked cards (program sections)
========================== */
.a-stackWrap {
  position: relative;
}

.a-stackCard {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(1px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.a-stackCard__head {
  position: relative;
  padding: 1.15rem 1.15rem;
  color: #fff;
  background:
    radial-gradient(900px 360px at 25% 0%, rgba(255, 255, 255, .18), transparent 55%),
    linear-gradient(135deg, var(--t1), var(--t2));
}

.a-stackCard__body {
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, .88);
  color: rgba(8, 28, 48, .92);
}

.a-stackSticky {
  position: sticky;
  top: calc(var(--a-header-h, 78px) + 16px);
}

/* ==========================
   Right-side tiles + chips + progress priming
========================== */
.a-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 22px 70px rgba(8, 28, 48, .10);
  transition: transform .20s ease, box-shadow .20s ease, border-color .20s ease;
}

.a-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(8, 28, 48, .14);
  border-color: rgba(25, 198, 167, .32);
}

.a-chip {
  border-radius: 999px;
  padding: .35rem .65rem;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

/* Progress bars animate in (JS toggles .is-primed on .a-card) */
.progress-bar {
  transform-origin: 0 50%;
  transform: scaleX(.0);
  transition: transform 900ms cubic-bezier(.2, .8, .2, 1);
}

.a-card.is-primed .progress-bar {
  transform: scaleX(1);
}

/* ==========================
   Focus styles (page-scoped)
========================== */
#programs-main a:focus-visible,
#programs-main button:focus-visible {
  outline: 3px solid rgba(25, 198, 167, .55);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ==========================
   Focus styles (page-scoped)
========================== */
#about-trust .a-trustBar--premium {
  isolation: isolate;
}


/* ==========================
   Responsive tuning
========================== */
@media (max-width: 991.98px) {
  .a-heroV3__content {
    padding: clamp(4.75rem, 8vw, 5.75rem) 0 3.25rem;
  }
}

/* ==========================
   Reduced motion safety
========================== */
@media (prefers-reduced-motion: reduce) {
  .a-reveal {
    transition: none !important;
  }

  .a-hero--programsV3 .a-waveFar,
  .a-hero--programsV3 .a-waveMid,
  .a-hero--programsV3 .a-waveFront {
    animation: none !important;
  }
}

/* === PROGRAM SECTION BACKDROP: ensure --bg is used === */
.a-sec.a-sec--program {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.a-sec.a-sec--program>.container {
  position: relative;
  z-index: 2;
  /* keep content above backdrop */
}

.a-secBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.a-secBackdrop__img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.02);
  /* crisp, no blur */
  opacity: .75;
}

.a-secBackdrop__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 42, .55), rgba(11, 44, 72, .55));
}

.a-secBackdrop__grain {
  position: absolute;
  inset: -2px;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.a-sec {
  position: relative;
  overflow: hidden;
}

.a-secBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.a-secBackdrop__img {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.02);
  filter: none !important;
}

.a-secBackdrop__tint,
.a-secBackdrop__grain {
  position: absolute;
  inset: 0;
}

.a-secBackdrop__tint {
  background: rgba(0, 0, 0, .35);
}

/* not opaque */
.a-secBackdrop__grain {
  opacity: .08;
  mix-blend-mode: overlay;
}

.a-sec .container {
  position: relative;
  z-index: 1;
}

/* ==========================
   HERO CTA buttons (premium, high contrast)
========================== */
.a-hero--programsV3 .a-btn-ctaPrimary,
.a-hero--programsV3 .a-btn-ctaGhost {
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 220px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

/* Primary: strong, visible */
/* .a-hero--programsV3 .a-btn-ctaPrimary {
  color: #06182A;
  background: linear-gradient(90deg, rgba(25, 198, 167, 1), rgba(46, 214, 255, 1));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .30), 0 0 0 6px rgba(25, 198, 167, .10);
}

.a-hero--programsV3 .a-btn-ctaPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38), 0 0 0 6px rgba(46, 214, 255, .14);
} */

/* Ghost: crisp outline on dark */
.a-hero--programsV3 .a-btn-ctaGhost {
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .20);
}

.a-hero--programsV3 .a-btn-ctaGhost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .40);
}


/* ==========================
   TRUST V2 (premium panel + clean grid)
========================== */
.a-trustV2 {
  padding-top: clamp(2.5rem, 4vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.a-trustPanel {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .86));
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 28px 90px rgba(8, 28, 48, .10);
  overflow: hidden;
  position: relative;
}

.a-trustPanel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(800px 380px at 18% 10%, rgba(25, 198, 167, .18), transparent 60%),
    radial-gradient(700px 360px at 82% 18%, rgba(46, 214, 255, .14), transparent 60%);
  pointer-events: none;
  opacity: .9;
}

.a-trustPanel>* {
  position: relative;
  z-index: 1;
}

.a-trustPanel__top {
  padding: 1.35rem 1.35rem 1.05rem;
}

.a-trustBadges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .9rem;
}

.a-trustPanel__mid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.15rem;
  padding: 1.05rem 1.35rem 1.2rem;
}

.a-trustCol {
  border-radius: 20px;
  padding: 1rem 1rem;
  background: rgba(6, 24, 42, .03);
  border: 1px solid rgba(10, 40, 64, .08);
}

.a-signalGrid {
  display: grid;
  gap: .7rem;
}

.a-signalTile {
  border-radius: 18px;
  padding: .9rem .95rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 16px 40px rgba(8, 28, 48, .08);
}

.a-signalTile .k {
  font-weight: 900;
  color: rgba(8, 28, 48, .70);
  font-size: .82rem;
  letter-spacing: .01em;
}

.a-signalTile .v {
  font-weight: 950;
  color: var(--a-navy);
  margin-top: .15rem;
}

.a-signalTile .m {
  opacity: .78;
  margin-top: .1rem;
  font-size: .95rem;
}

.a-trustPanel__foot {
  padding: 0 1.35rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.a-ctaPill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #06182A;
  background: linear-gradient(90deg, rgba(25, 198, 167, 1), rgba(46, 214, 255, 1));
  box-shadow: 0 18px 45px rgba(8, 28, 48, .14);
  border: 1px solid rgba(255, 255, 255, .55);
}

.a-ctaPill:hover {
  transform: translateY(-2px);
}

.a-ctaPill--ghost {
  background: rgba(6, 24, 42, .06);
  color: var(--a-navy);
  border: 1px solid rgba(10, 40, 64, .14);
  box-shadow: none;
}

.a-factStack--premium {
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 22px 70px rgba(8, 28, 48, .08);
  overflow: hidden;
}

.a-factStack--premium .a-fact {
  padding: 1rem 1.05rem;
}

.a-factStack--premium .a-fact+.a-fact {
  border-top: 1px solid rgba(10, 40, 64, .08);
}

.a-aboutQuickNav--premium {
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 22px 70px rgba(8, 28, 48, .08);
  padding: .85rem;
}

.a-aboutQuickNav--premium a {
  border-radius: 14px;
  padding: .7rem .75rem;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
  border: 1px solid transparent;
}

.a-aboutQuickNav--premium a:hover {
  background: rgba(6, 24, 42, .04);
  transform: translateY(-1px);
  border-color: rgba(25, 198, 167, .20);
}

.a-aboutQuickNav--premium a.is-active {
  background: linear-gradient(90deg, rgba(25, 198, 167, .14), rgba(46, 214, 255, .10));
  border-color: rgba(25, 198, 167, .26);
}

@media (max-width: 991.98px) {
  .a-trustPanel__mid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PROGRAM SECTIONS â€” backdrops + parallax zoom
========================== */
.a-sec.a-sec--program {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.a-sec.a-sec--program .container {
  position: relative;
  z-index: 2;
}

.a-secBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.a-secBackdrop__img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.06);
  opacity: .72;
  filter: none !important;
  will-change: transform, opacity;
}

.a-secBackdrop__tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 650px at 20% 10%, rgba(255, 255, 255, .12), transparent 60%),
    linear-gradient(135deg, rgba(6, 24, 42, .25), rgba(6, 24, 42, .72));
  opacity: .92;
}

.a-secBackdrop__grain {
  position: absolute;
  inset: 0;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.a-secBackdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 600px at 50% 30%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .46));
  opacity: .55;
}

/* Optional: subtle parallax lift for content block (premium feel) */
.a-sec--program .section-title,
.a-sec--program .a-stackWrap {
  will-change: transform;
}

/* Optional: subtle parallax lift for content block (premium feel) */
.a-sec--program .a-secBackdrop__img {
  will-change: transform;
}

/* ==========================
   MODEL V2 (premium cards)
========================== */
.a-modelV2 {
  padding-top: clamp(2.5rem, 4vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.a-modelCard {
  height: 100%;
  border-radius: 22px;
  padding: 1.25rem 1.25rem;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(10, 40, 64, .10);
  box-shadow: 0 22px 70px rgba(8, 28, 48, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.a-modelCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(700px 320px at 18% 12%, rgba(25, 198, 167, .14), transparent 60%),
    radial-gradient(700px 320px at 82% 18%, rgba(46, 214, 255, .10), transparent 60%);
  opacity: .9;
  pointer-events: none;
}

.a-modelCard>* {
  position: relative;
  z-index: 1;
}

.a-modelCard__num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(6, 24, 42, .06);
  border: 1px solid rgba(10, 40, 64, .10);
  font-weight: 950;
  color: var(--a-navy);
  margin-bottom: .85rem;
}

.a-modelCard__title {
  font-weight: 950;
  color: var(--a-navy);
  letter-spacing: -.02em;
  font-size: 1.15rem;
}

.a-modelCard__text {
  margin-top: .35rem;
  color: rgba(8, 28, 48, .82);
  line-height: 1.55;
}

.a-modelCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 90px rgba(8, 28, 48, .12);
  border-color: rgba(25, 198, 167, .22);
}

@media (max-width: 991.98px) {
  .a-modelGrid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   HERO CTA buttons (premium, high contrast)
========================== */
/* .a-btn-ctaPrimary {
  color: #06182A;
  background: linear-gradient(90deg, rgba(25, 198, 167, 1), rgba(46, 214, 255, 1));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .30), 0 0 0 6px rgba(25, 198, 167, .10);
}

.a-btn-ctaPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38), 0 0 0 6px rgba(46, 214, 255, .14);
} */

.a-btn-ctaGhost {
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .08);
  background-color: var(--a-navy) !important;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .20);
}

.a-btn-ctaGhost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .40);
}

/* ==========================
   Programs CTA: enforce site-global ocean CTA styling
   (prevents Programs CSS from overriding About CTA look)
========================== */
/* #programs-main .a-oceanCta{ all: unset; }
#programs-main section.a-oceanCta{
  display:block;
  position:relative;
  overflow:hidden;
} */

/* Re-apply expected base (light-touch) */
#programs-main section.a-oceanCta {
  color: #fff;
}

.progress-bar {
  width: 0;
  transition: width 900ms cubic-bezier(.2, .8, .2, 1);
}

/* =============================
   AIGHAP Portal â€” Premium Shell
============================= */

.a-portal {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

.a-pane {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(11, 44, 72, .10);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.a-side {
  position: sticky;
  top: 96px;
  /* below fixed header */
  padding: 14px;
}

.a-navlink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  border-radius: 14px;
  color: rgba(11, 44, 72, .92);
  text-decoration: none;
  font-weight: 700;
  margin: 6px 0;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.a-navlink:hover {
  background: rgba(11, 44, 72, .06);
  transform: translateY(-1px);
}

.a-navlink.active {
  background: linear-gradient(180deg, rgba(212, 169, 54, .20), rgba(212, 169, 54, .08));
  box-shadow: inset 0 0 0 1px rgba(212, 169, 54, .25);
}

.a-main {
  min-width: 0;
}

.a-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 18px;
  border-bottom: 1px solid rgba(11, 44, 72, .08);
  margin-bottom: 16px;
}

.a-tab {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(11, 44, 72, .86);
  background: rgba(11, 44, 72, .05);
}

.a-tab.active {
  background: rgba(11, 44, 72, .92);
  color: #fff;
}

/* Card style inside portal pages */
.a-card {
  background: #fff;
  border: 1px solid rgba(11, 44, 72, .10);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .06);
  padding: 18px;
}

.a-card-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.a-eyebrow {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11, 44, 72, .60);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991.98px) {
  .a-portal {
    grid-template-columns: 1fr;
  }

  .a-side {
    position: relative;
    top: 0;
  }
}

/* ===== Portal Password Field (toggle inside input) ===== */
.a-card {
  background: #fff;
  border: 1px solid rgba(11, 44, 72, .10);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(10, 25, 41, .06);
  padding: 1.25rem;
}

.a-card--tight {
  padding: 1.2rem;
}

.a-pwfield {
  position: relative;
}

.a-pwinput {
  padding-right: 44px;
  /* room for toggle button */
  border-radius: 14px;
}

.a-pwtoggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: rgba(11, 44, 72, .85);
}

.a-pwtoggle:hover {
  background: rgba(11, 44, 72, .06);
}

.a-pwtoggle:focus-visible {
  outline: 3px solid rgba(212, 169, 54, .35);
  outline-offset: 2px;
}

.a-pwhints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .85rem;
}

@media (max-width: 575.98px) {
  .a-pwhints {
    grid-template-columns: 1fr;
  }
}

.a-hint {
  font-size: .88rem;
  color: rgba(11, 44, 72, .78);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.a-hint .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 44, 72, .18);
  box-shadow: inset 0 0 0 1px rgba(11, 44, 72, .12);
}

.a-hint.ok {
  color: rgba(11, 44, 72, .95);
}

.a-hint.ok .dot {
  background: rgba(32, 187, 165, .95);
  box-shadow: none;
}


/* =========================================================================================
   FOOTER STYLES â€” Modern Classic Executive Polish
   Add this block to main.css AFTER existing .ocean-footer styles
   (Safe: only targets #ocean-footer with .ocean-footer class)
   ========================================================================================= */

/* =============================
   FOOTER â€” Modern Classic Executive Polish
   Paste AFTER existing .ocean-footer styles
============================= */

#ocean-footer.ocean-footer {
  /* calmer, more premium base (avoid ending in bright teal at the bottom) */
  background: linear-gradient(180deg, #0B2C48 0%, #0A2A44 55%, #081F33 100%);
  color: rgba(255, 255, 255, .92);

  padding-top: clamp(3.25rem, 4vw, 4.25rem);
  padding-bottom: clamp(2.25rem, 3vw, 3rem);
}

/* Subtle top divider glow to separate from CTA above */
/* #ocean-footer::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,169,54,.35), rgba(32,187,165,.18), rgba(23,92,221,.28));
  opacity: .75;
} */

#ocean-footer.ocean-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 169, 54, .35), rgba(32, 187, 165, .18), rgba(23, 92, 221, .28));
  opacity: .75;
}


/* Headings */
#ocean-footer h6 {
  font-family: var(--a-font-head);
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: .8rem;
  color: #D4A936;
  /* gold */
}

/* Body copy */
#ocean-footer p,
#ocean-footer em {
  color: rgba(255, 255, 255, .82);
}

/* Lists: cleaner rhythm */
#ocean-footer ul {
  margin: 0;
  padding: 0;
}

#ocean-footer li {
  margin: .42rem 0;
}

/* Links: professional hover + underline + focus */
#ocean-footer a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

#ocean-footer a:hover {
  color: #D4A936;
  opacity: 1;
}

#ocean-footer a:focus-visible {
  outline: 3px solid rgba(212, 169, 54, .35);
  outline-offset: 4px;
  border-radius: 10px;
}

/* Add subtle underline only on hover for â€œclassicâ€ feel */
#ocean-footer ul a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Social: consistent icon buttons */
#ocean-footer .a-footerSocial a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;

  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);

  color: rgba(255, 255, 255, .92);
  font-size: 1.15rem;

  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

#ocean-footer .a-footerSocial a:hover {
  transform: translateY(-2px);
  background: rgba(212, 169, 54, .10);
  border-color: rgba(212, 169, 54, .28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
  color: #D4A936;
}

/* Newsletter form: tidy, aligned, not â€œBootstrap-yâ€ */
#ocean-footer .a-footerForm {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  #ocean-footer .a-footerForm {
    margin-left: 0;
    margin-right: 0;
  }
}

#ocean-footer .a-footerForm .form-control {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
}

#ocean-footer .a-footerForm__row {
  width: 100%;
}

#ocean-footer .a-footerForm .form-control::placeholder {
  color: rgba(255, 255, 255, .62);
}

#ocean-footer .a-footerForm .form-control:focus {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(212, 169, 54, .35);
  box-shadow: 0 0 0 4px rgba(212, 169, 54, .12);
}

/* Footer button aligned with your brand (no red) */
#ocean-footer .a-btn-footer {
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  padding: 0 1.05rem;

  color: #0B2C48;
  background: linear-gradient(180deg, rgba(212, 169, 54, 1), rgba(184, 145, 36, 1));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

#ocean-footer .a-btn-footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
  filter: saturate(1.04);
}

/* Divider: softer */
#ocean-footer hr {
  border-color: rgba(255, 255, 255, .14) !important;
  opacity: 1;
}

/* Bottom legal row: neat + consistent */
#ocean-footer .small {
  color: rgba(255, 255, 255, .78);
}

#ocean-footer .d-flex.flex-column.flex-md-row a {
  margin-left: .25rem;
  margin-right: .25rem;
}

/* Mobile: center columns nicely */
@media (max-width: 575.98px) {
  #ocean-footer .col-6 {
    text-align: left;
  }
}

@media (min-width: 992px) {
  #ocean-footer .a-footerGrid {
    align-items: flex-start;
    row-gap: 1rem;
  }

  #ocean-footer .a-footer-col {
    flex: 0 0 auto;
  }

  #ocean-footer .a-footer-col--brand {
    width: 24%;
  }

  #ocean-footer .a-footer-col--learn {
    width: 14%;
  }

  #ocean-footer .a-footer-col--engage {
    width: 16%;
  }

  #ocean-footer .a-footer-col--ethics {
    width: 18%;
  }

  #ocean-footer .a-footer-col--social {
    width: 28%;
  }

  #ocean-footer .a-footerForm {
    max-width: 360px;
  }
}


/* ============================================================================
   PATCHES
============================================================================ */

/* --- PATCH: ensure hero overlay always centers & stays above video --- */
.a-hero {
  position: relative;
}

.a-hero__video {
  z-index: 0;
}

.a-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Prevent AOS transforms from breaking stacking contexts */
.a-hero__content {
  position: relative;
  z-index: 3;
}

/* =========================================
   Sticky Footer (no-gap on sparse pages)
   Works with: <div class="page-frame"><header>...<main>...<footer>...
========================================= */

/* Make wrapper fill viewport and use flex column */
.page-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Let main take remaining height so footer is pushed down */
.page-frame>main.main {
  flex: 1 0 auto;
}

/* Footer should not stretch */
#ocean-footer.ocean-footer {
  flex-shrink: 0;
}

/* Dropdown icon hard override (last in file) */
#navmenu .dropdown-toggle-icon,
#navmenu .dropdown-toggle-icon:focus,
#navmenu .dropdown-toggle-icon:focus-visible,
#navmenu .dropdown-toggle-icon:active {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

#navmenu .dropdown-toggle-icon i {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Shared interaction polish */
:root {
  --a-focus-ring: 0 0 0 3px rgba(15, 96, 209, 0.25);
}

a,
button,
.btn,
input,
select,
textarea {
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--a-focus-ring);
}

.btn:hover {
  transform: translateY(-1px);
}

.a-card {
  transition: box-shadow .22s ease, transform .22s ease;
}

.a-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 44, 72, 0.13);
}

.a-footerForm .cf-turnstile {
  width: 100%;
}

#ocean-footer .a-footerForm {
  display: block;
}

/* ==========================================================================
   Contact Page & Location Map
========================================================================== */
.a-contactPage {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%);
  padding: 1.3rem 0 2.7rem;
}

.a-contactHero {
  margin-bottom: 1.5rem;
}

.a-contactHero .lead {
  max-width: 860px;
  margin-inline: auto;
  color: rgba(11, 44, 72, .76);
}

.a-contactEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11, 44, 72, .74);
  margin-bottom: .55rem;
}

.a-contactEyebrow i {
  color: var(--a-contact-primary);
}

.a-contactCardTitle {
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 900;
  color: var(--a-contact-navy);
  line-height: 1.15;
  letter-spacing: .01em;
}

.a-contactCardSub {
  color: rgba(11, 44, 72, .66);
  font-size: .92rem;
}

.a-contactInfoCard,
.a-contactFormCard,
.a-contactMapCard {
  border: 1px solid rgba(11, 44, 72, .10);
  border-radius: 18px;
  box-shadow: var(--a-contact-shadow);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.a-contactInfoCard:hover,
.a-contactFormCard:hover,
.a-contactMapCard:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 92, 221, .22);
  box-shadow: 0 24px 54px rgba(12, 36, 59, .12);
}

.a-contactInfoCard {
  position: sticky;
  top: calc(var(--a-header-h) + 14px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.a-contactChipRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.a-contactMetaRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.a-contactMetaRow i {
  color: var(--a-contact-primary);
  font-size: 1.05rem;
  margin-top: 2px;
}

.a-contactMetaRow strong {
  color: var(--a-contact-navy);
  display: block;
  margin-bottom: 2px;
}

.a-contactMetaSub {
  color: rgba(11, 44, 72, .70);
  font-size: .92rem;
}

.a-contactInfoCta {
  padding-top: .8rem;
  border-top: 1px solid rgba(11, 44, 72, .12);
}

.a-contactInfoCtaBtn {
  margin-top: auto;
  padding-top: .45rem;
}

.a-contactFormCard {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.a-contactForm {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 1 1 auto;
}

.a-contactFormSubmit {
  margin-top: auto;
  padding-top: .45rem;
}

.a-contactFormCard .form-label {
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(11, 44, 72, .76);
}

.a-contactFormCard .form-control,
.a-contactFormCard .form-select {
  border-radius: 12px;
  border: 1px solid rgba(11, 44, 72, .12);
  background: #f9fcff;
  padding: .72rem .92rem;
}

.a-contactFormCard .form-control:focus,
.a-contactFormCard .form-select:focus {
  background: #fff;
  border-color: rgba(23, 92, 221, .3);
  box-shadow: 0 0 0 4px rgba(23, 92, 221, .10);
}

.a-contactBtnPrimary {
  border-radius: 999px;
  font-weight: 900;
  padding: .74rem 1.25rem;
  box-shadow: 0 14px 28px rgba(23, 92, 221, .24);
}

.a-contactBtnPrimary:hover {
  transform: translateY(-2px);
}

.a-contactMapHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 15px 16px 11px;
  border-bottom: 1px solid rgba(11, 44, 72, .08);
}

.a-contactMapNote {
  font-size: .9rem;
  color: rgba(11, 44, 72, .68);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.a-mapPinRed {
  color: #dc3545;
  font-size: 1.02rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a-contactNavBtn {
  border-radius: 999px !important;
  padding-inline: 1rem !important;
  font-weight: 800;
}

.a-contactMapShell {
  padding: 10px;
}

#aighapContactMap {
  width: 100%;
  height: 500px;
  border-radius: 14px;
  border: 1px solid rgba(11, 44, 72, .1);
  overflow: hidden;
}

.a-mapDot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--a-contact-navy);
  border: 3px solid #fff;
  box-shadow: 0 0 0 0 rgba(11, 44, 72, .56);
  animation: aMapPulse 2s infinite;
}

@keyframes aMapPulse {
  0% {
    transform: scale(.94);
    box-shadow: 0 0 0 0 rgba(11, 44, 72, .56);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(11, 44, 72, 0);
  }

  100% {
    transform: scale(.94);
    box-shadow: 0 0 0 0 rgba(11, 44, 72, 0);
  }
}

.leaflet-control-layers,
.leaflet-bar {
  border-color: rgba(11, 44, 72, .2) !important;
  box-shadow: 0 8px 18px rgba(11, 44, 72, .16) !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .a-contactInfoCard {
    position: static;
  }

  #aighapContactMap {
    height: 400px;
  }
}

/* ========================================================================== */


/* Menu grouping labels in mega dropdowns */
#navmenu .a-menu-group-label {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(11, 44, 72, .66);
  padding: .2rem .4rem;
}

/* Cookie consent */
.a-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  /* width: min(1020px, calc(100% - 22px)); */
  width: 100%;
  /* max-width: 1020px; */
  background: rgba(8, 31, 51, .96);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .35);
  color: #fff;
  z-index: 10060;
  padding: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
}

.a-cookie-banner[hidden] {
  display: none !important;
}

.a-cookie-banner__title {
  font-weight: 900;
  margin-bottom: .15rem;
}

.a-cookie-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .92rem;
}

.a-cookie-banner__actions {
  display: flex;
  gap: .5rem;
}

.a-cookie-banner__panel {
  margin-top: .65rem;
  display: grid;
  gap: .35rem;
  padding: .6rem .7rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
}

.a-cookie-opt {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .92);
}

.a-cookie-opt input[type="checkbox"] {
  accent-color: #0e5b5a;
}

.a-explore-links a {
  color: var(--a-navy);
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.a-explore-links a:hover {
  color: #0e5b5a;
  text-decoration: underline;
}

.a-search-hit {
  background: rgba(14, 91, 90, .14);
  color: inherit;
  border-radius: 4px;
  padding: 0 .14em;
}

.a-search-intro {
  max-width: 860px;
}

.a-search-related {
  border: 1px solid rgba(11, 44, 72, .14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(245, 250, 252, .92), #fff);
  box-shadow: 0 10px 26px rgba(11, 44, 72, .07);
}

.a-search-related__row {
  padding: .2rem 0;
  border-bottom: 1px dashed rgba(11, 44, 72, .12);
}

.a-search-related__row:last-child {
  border-bottom: 0;
}

.a-search-result {
  border: 1px solid rgba(11, 44, 72, .12);
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.a-search-result:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 44, 72, .26);
  box-shadow: 0 14px 30px rgba(11, 44, 72, .12);
}

/* Global navigation transition polish */
body.a-nav-leaving .page-frame {
  opacity: .9;
  transform: none;
  filter: none;
}

.page-frame {
  transition: opacity .18s ease;
}

#preloader {
  opacity: 1;
  visibility: visible;
  transition: opacity .32s ease, visibility .32s ease;
}

body.a-site-loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prevent visual snap on search submit / navigation handoff */
body.a-nav-leaving #preloader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* KPI-grade visual treatment for Contact info card and Media highlights */
.a-contactInfoCard {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(23, 92, 221, .14), transparent 62%),
    radial-gradient(120% 90% at 100% 100%, rgba(15, 163, 142, .12), transparent 64%),
    linear-gradient(165deg, #ffffff 0%, #f6fbff 56%, #f2f9ff 100%);
  border: 1px solid rgba(23, 92, 221, .18);
  box-shadow:
    0 20px 42px rgba(11, 44, 72, .12),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

.a-contactInfoCard .a-contactCardTitle {
  color: #0b2c48;
}

.a-contactInfoCard .a-contactCardSub,
.a-contactInfoCard .a-contactMetaSub,
.a-contactInfoCard .a-contactSafeguard {
  color: rgba(11, 44, 72, .8);
}

.a-mediaHighlights__grid .a-hCard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(23, 92, 221, .12), transparent 64%),
    radial-gradient(120% 100% at 100% 100%, rgba(15, 163, 142, .12), transparent 62%),
    linear-gradient(160deg, #ffffff 0%, #f7fcff 58%, #f1f9ff 100%);
  border: 1px solid rgba(23, 92, 221, .16);
  box-shadow:
    0 18px 40px rgba(11, 44, 72, .1),
    inset 0 1px 0 rgba(255, 255, 255, .74);
}

.a-mediaHighlights__grid .a-hCard::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .72), rgba(15, 163, 142, .78));
}

.a-mediaHighlights__grid .a-hCard:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 92, 221, .3);
  box-shadow: 0 24px 48px rgba(11, 44, 72, .14);
}

@media (max-width: 767.98px) {
  .a-cookie-banner {
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    bottom: 10px;
  }

  .a-cookie-banner__actions {
    width: 100%;
  }

  .a-cookie-banner__actions .btn {
    flex: 1 1 auto;
  }

  .a-cookie-opt {
    align-items: flex-start;
  }
}

/* Expertise grid -- Enterprise Service Charter */
.expertise-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

/* Impact map layer switcher + pulse markers */
.a-mapLayerSwitch {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .9rem 0 1rem;
}

.a-mapLayerSwitch button {
  appearance: none;
  border: 1px solid rgba(11, 44, 72, .16);
  background: #fff;
  color: #0b2c48;
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(11, 44, 72, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.a-mapLayerSwitch button:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 44, 72, .3);
  box-shadow: 0 10px 22px rgba(11, 44, 72, .12);
}

.a-mapLayerSwitch button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #175cdd 0%, #0b2c48 100%);
  box-shadow: 0 14px 26px rgba(11, 44, 72, .18);
}

.a-mapLegend--programs .a-dot,
.a-dot--systems,
.a-dot--community,
.a-dot--innovation,
.a-dot--emergencies {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  vertical-align: middle;
}

.a-dot--systems {
  background: #175cdd;
  box-shadow: 0 0 0 4px rgba(23, 92, 221, .16);
}

.a-dot--community {
  background: #15a66f;
  box-shadow: 0 0 0 4px rgba(21, 166, 111, .16);
}

.a-dot--innovation {
  background: #7a4cff;
  box-shadow: 0 0 0 4px rgba(122, 76, 255, .16);
}

.a-dot--emergencies {
  background: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .16);
}

.pulse-marker {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .95);
  box-shadow: 0 6px 14px rgba(11, 44, 72, .22);
  transform: translateZ(0);
}

.pulse-marker::before,
.pulse-marker::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: .32;
  animation: a-impactPulse 2.2s ease-out infinite;
}

.pulse-marker::after {
  animation-delay: .85s;
}

.pulse-systems {
  background: #175cdd;
  color: rgba(23, 92, 221, .58);
}

.pulse-community {
  background: #15a66f;
  color: rgba(21, 166, 111, .58);
}

.pulse-innovation {
  background: #7a4cff;
  color: rgba(122, 76, 255, .56);
}

.pulse-emergencies {
  background: #ff6b35;
  color: rgba(255, 107, 53, .58);
}

.arc-line {
  fill: none;
  opacity: .78;
  stroke-linecap: round;
  stroke-dasharray: 9 8;
  animation: a-impactArcFlow 1.8s linear infinite;
}

.arc-systems {
  stroke: rgba(23, 92, 221, .78);
}

.arc-community {
  stroke: rgba(21, 166, 111, .78);
}

.arc-innovation {
  stroke: rgba(122, 76, 255, .78);
}

.arc-emergencies {
  stroke: rgba(255, 107, 53, .78);
}

@keyframes a-impactPulse {
  0% {
    transform: scale(.68);
    opacity: .5;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes a-impactArcFlow {
  to {
    stroke-dashoffset: -34;
  }
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.a-chip {
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 12px;
  border-radius: 18px;
  font-size: .82rem;
  color: var(--a-navy);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pillar-icon svg {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: .5rem;
}

/* ──────────────────────────────────────────────
   Reusable Gradient Top Border for AIGHAP Cards
   ────────────────────────────────────────────── */
.a-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Top Gradient Strip (animated) */
.a-card.aighap-topborder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: block;
  pointer-events: none;

  background: linear-gradient(90deg,
      #3b82f6,
      #06b6d4,
      #4ade80);

  background-size: 300% 100%;
  animation: glide 5s ease infinite;

  border-radius: 0 0 14px 14px;
  z-index: 2;
}

@keyframes glide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Premium bottom accent strip */
.a-card.aighap-topborder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;

  background: linear-gradient(90deg,
      rgba(23, 92, 221, .85),
      rgba(32, 187, 165, .85));

  opacity: 0;
  transform: scaleX(.78);
  transform-origin: 50% 50%;
  transition:
    opacity .22s ease,
    transform .22s ease;
  pointer-events: none;
}

/* Show the bottom accent on hover */
.a-card.aighap-topborder:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Programs UX polish: sticky rail + section snaps + stacked card depth */
#programs-main .a-programRailWrap {
  position: sticky;
  top: calc(var(--a-header-h, 78px) + 6px);
  z-index: 980;
  padding: .35rem 0 .6rem;
  pointer-events: none;
}

#programs-main .a-programRail {
  pointer-events: auto;
  display: flex;
  gap: .55rem;
  padding: .5rem;
  border-radius: 999px;
  background: rgba(6, 24, 42, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .20);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: thin;
}

#programs-main .a-programRail a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: .45rem .72rem;
  font-size: .84rem;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

#programs-main .a-programRail a:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

#programs-main .a-programRail a.is-active {
  color: #062234;
  border-color: transparent;
  background: linear-gradient(90deg, #19C6A7, #2ED6FF);
}

#programs-main .a-programRail__index {
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
}

#programs-main .a-programRail a.is-active .a-programRail__index {
  background: rgba(6, 24, 42, .16);
}

#programs-main .a-programSlides {
  position: relative;
}

@media (min-width: 992px) {
  #programs-main .a-programSlides {
    scroll-snap-type: y proximity;
  }

  #programs-main .a-sec.a-sec--program {
    min-height: min(100svh, 980px);
    display: grid;
    align-items: center;
    scroll-snap-align: start;
    scroll-margin-top: calc(var(--a-header-h, 78px) + 84px);
  }
}

#programs-main .a-sec.a-sec--program .a-highlightCard {
  will-change: transform;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease;
}

#programs-main .a-sec.a-sec--program .a-highlightCard:hover {
  transform: translateY(-4px);
}

@media (max-width: 991.98px) {
  #programs-main .a-programRailWrap {
    top: calc(var(--a-header-h, 78px) + 4px);
    padding-bottom: .4rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  #programs-main .a-programRail a,
  #programs-main .a-sec.a-sec--program .a-highlightCard {
    transition: none !important;
  }
}

/* =====================================================
   Programs 2nd Pass: Cinematic-Professional Direction
===================================================== */
#programs-main .a-programRailWrap {
  top: calc(var(--a-header-h, 78px) + 8px);
}

#programs-main .a-programRailWrap .container {
  display: grid;
  justify-items: stretch;
  gap: .4rem;
}

#programs-main .a-programRailTools {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
  gap: .45rem;
}

#programs-main .a-accordionModeBtn {
  border: 1px solid rgba(11, 44, 72, .16);
  background: rgba(255, 255, 255, .9);
  color: #0b2c48;
  font-weight: 760;
  font-size: .82rem;
  border-radius: 999px;
  padding: .38rem .72rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

#programs-main .a-accordionModeBtn[aria-pressed="true"] {
  background: linear-gradient(90deg, rgba(25, 198, 167, .18), rgba(46, 214, 255, .16));
  border-color: rgba(25, 198, 167, .42);
}

#programs-main .a-programRail {
  gap: .45rem;
  padding: .42rem;
  border-color: rgba(255, 255, 255, .2);
  background:
    linear-gradient(135deg, rgba(7, 26, 44, .88), rgba(6, 22, 38, .82)),
    radial-gradient(90% 140% at 10% 0%, rgba(46, 214, 255, .2), transparent 60%);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  scrollbar-width: thin;
}

#programs-main .a-programRail a {
  flex: 0 0 auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  transition: transform .16s ease, color .16s ease, border-color .16s ease, background .16s ease;
}

#programs-main .a-programRail a.is-active {
  box-shadow: 0 8px 20px rgba(46, 214, 255, .18);
}

#programs-main .a-programRail.is-reordering a {
  transition: none;
}

#programs-main .a-programRail a.is-dragging {
  opacity: .86;
  cursor: grabbing;
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(6, 24, 42, .28);
}

#programs-main .a-reveal {
  transition-duration: .42s;
}

#programs-main .a-paneToggle {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: 999px;
  font-weight: 760;
  font-size: .82rem;
  padding: .4rem .8rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

#programs-main .a-paneToggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .46);
}

#programs-main .a-sec.a-sec--program .a-paneContent {
  overflow: hidden;
  max-height: 2200px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .42s ease, opacity .24s ease, transform .28s ease;
}

#programs-main .a-sec.a-sec--program.is-collapsed .a-paneContent {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

#programs-main .a-sec.a-sec--program.is-collapsed {
  min-height: auto;
}

#programs-main .a-modelV2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1400px 450px at 8% -5%, rgba(46, 214, 255, .09), transparent 55%),
    radial-gradient(1200px 400px at 100% 0%, rgba(124, 92, 255, .08), transparent 55%),
    linear-gradient(180deg, #f7fbff 0%, #f3f9ff 45%, #ffffff 100%);
}

#programs-main .a-modelV2__decor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  pointer-events: none;
  opacity: .48;
}

#programs-main .a-modelV2__decor svg {
  width: 100%;
  height: 220px;
  display: block;
}

#programs-main .a-modelIntro .section-heading {
  letter-spacing: -.025em;
}

#programs-main .a-modelGridV2 {
  position: relative;
  z-index: 2;
}

#programs-main .a-modelGridV2 .col-md-3 {
  display: flex;
}

#programs-main .a-modelGridV2 .a-modelCard {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(10, 40, 64, .12);
  background:
    radial-gradient(680px 220px at var(--mx, 50%) var(--my, 20%), rgba(46, 214, 255, .14), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(250, 253, 255, .94));
  box-shadow: 0 14px 36px rgba(8, 28, 48, .09);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

#programs-main .a-modelGridV2 .a-modelCard:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 68px rgba(8, 28, 48, .14);
  border-color: rgba(25, 198, 167, .28);
}

#programs-main .a-modelCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}

#programs-main .a-modelCard__chips {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .65rem;
}

#programs-main .a-modelChip {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .26rem .5rem;
  color: #0b2c48;
  background: rgba(11, 44, 72, .08);
  border: 1px solid rgba(11, 44, 72, .12);
}

#programs-main .a-modelChip--soft {
  background: rgba(255, 255, 255, .72);
}

#programs-main .a-modelCard__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: .95rem;
}

#programs-main .a-modelCard__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0b2c48;
  background: linear-gradient(135deg, rgba(25, 198, 167, .2), rgba(46, 214, 255, .24));
  border: 1px solid rgba(32, 187, 165, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

#programs-main .a-modelCard__icon i {
  font-size: 1rem;
}

#programs-main .a-modelCard__title {
  font-size: 1.1rem;
}

#programs-main .a-modelCard__mark {
  position: absolute;
  right: .75rem;
  top: .6rem;
  font-size: 2.35rem;
  line-height: 1;
  opacity: .12;
  font-weight: 900;
  color: #0b2c48;
  pointer-events: none;
}

#programs-main .a-modelCard__meta {
  margin-top: .7rem;
  font-size: .82rem;
  font-weight: 760;
  color: rgba(11, 44, 72, .72);
  letter-spacing: .01em;
}

#programs-main .a-modelCard--align {
  border-top: 3px solid rgba(25, 198, 167, .7);
}

#programs-main .a-modelCard--implement {
  border-top: 3px solid rgba(46, 214, 255, .75);
}

#programs-main .a-modelCard--manage {
  border-top: 3px solid rgba(124, 92, 255, .7);
}

#programs-main .a-modelCard--sustain {
  border-top: 3px solid rgba(255, 176, 46, .7);
}

#programs-main .a-sec.a-sec--program .a-highlightCard {
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s ease;
}

#programs-main .a-sec.a-sec--program .a-highlightCard:hover {
  box-shadow: 0 24px 50px rgba(8, 28, 48, .16);
}

@media (max-width: 991.98px) {
  #programs-main .a-programRailTools {
    width: 100%;
    justify-content: flex-start;
  }

  #programs-main .a-programRail {
    width: 100%;
  }

  #programs-main .a-modelV2__decor {
    opacity: .26;
  }
}


/* =====================================================
   HERO — Clean Enterprise System (No Conflicts)
===================================================== */

.a-hero {
  position: relative;
  min-height: clamp(640px, 80vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---------------------------
   Background Layers
---------------------------- */

.a-hero__video,
.a-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.a-hero__video {
  object-fit: cover;
  filter: brightness(.55);
  z-index: 0;
  /* transition: opacity 0.8s ease; */
}



.a-hero__overlay {
  background: linear-gradient(to bottom,
      rgba(11, 44, 72, .55),
      rgba(11, 44, 72, .92));
  z-index: 1;
}

/* ---------------------------
   Content
---------------------------- */

.a-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 2rem;
  /* color: #fff; */
}

/* Title */
.a-hero__title {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--a-gold);
  text-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  transition: opacity .45s ease;
}

.a-hero .a-hero__title {
  color: var(--a-gold) !important;
}

/* Description */
.a-hero__desc {
  margin-top: 1.2rem;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, .92);
  transition: opacity .45s ease;
}

/* Fade utility */
/* .hero-hidden {
  opacity: 0;
} */

/* ===================================================
   HERO CINEMATIC TEXT SYSTEM
=================================================== */

.a-hero__title,
.a-hero__desc {
  transition:
    opacity .6s cubic-bezier(.22, .61, .36, 1),
    transform .6s cubic-bezier(.22, .61, .36, 1),
    filter .6s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

/* Hidden state */
.hero-hidden {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(4px);
  text-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

/* Visible state (default) */
.a-hero__title,
.a-hero__desc {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* ---------------------------
   Highlight System
---------------------------- */

.a-heroHighlight {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.a-heroHighlight--accent {
  background: rgba(25, 198, 167, .18);
  color: #19C6A7;
}

.a-heroHighlight--navy {
  background: rgba(11, 44, 72, .65);
  color: #fff;
}

/* Animated pulse */
.hero-highlight-animate {
  animation: heroHighlightPulse 1.8s ease-out;
}

@keyframes heroHighlightPulse {
  0% {
    transform: scale(.85);
    box-shadow: 0 0 0 rgba(25, 198, 167, 0);
  }

  40% {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(25, 198, 167, .55);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(25, 198, 167, .35);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(25, 198, 167, 0);
  }
}

/* ---------------------------
   CTA Buttons
---------------------------- */

.a-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.a-hero__actions .btn {
  border-radius: 999px;
  padding: .9rem 2.2rem;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease;
}

.a-hero .btn-primary {
  --glow-color: rgba(13, 110, 253, .4);
}

.a-hero .btn-danger {
  --glow-color: rgba(178, 34, 34, .4);
}

.a-hero .btn-success {
  --glow-color: rgba(40, 167, 69, .4);
}

.a-hero .btn-outline-light {
  --glow-color: rgba(255, 255, 255, .3);
}

.a-hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--glow-color);
}

/* =========================================
   HERO PILLS — Clean Layout
========================================= */

.a-hero__top-pill,
.a-hero__bottom-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  /* prevents overlap interference */
}

/* TOP PILL — truly at top */
.a-hero__top-pill {
  top: clamp(20px, 4vh, 48px);
}

/* BOTTOM PILL */
.a-hero__bottom-pill {
  bottom: clamp(32px, 2vh, 70px);
}

/* Pill base */
.a-pill {
  display: inline-block;
  padding: .5rem 1.4rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* Pill accent */
/* .a-pill--accent {
  background: rgba(25,198,167,.18);
  color: #19C6A7;
} */

.a-hero__top-pill {
  animation: heroPillFade 1s ease-out;
}

@keyframes heroPillFade {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ---------------------------
   Reduced Motion
---------------------------- */

@media (prefers-reduced-motion: reduce) {
  .a-hero__video {
    display: none !important;
  }
}



/* =========================================
   DONATE PAGE - Executive UX Refresh
========================================= */
.a-donateHero {
  min-height: 520px;
  padding: 7rem 0 5.5rem;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(25, 198, 167, 0.24), transparent 64%),
    radial-gradient(760px 360px at 92% 10%, rgba(16, 70, 132, 0.3), transparent 62%),
    linear-gradient(150deg, #081f35 0%, #0e3e63 56%, #125a86 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.a-donateHero .lead {
  max-width: 760px;
  color: rgba(241, 248, 253, 0.93);
  line-height: 1.65;
}

.a-donateHero .small {
  color: rgba(230, 241, 249, 0.9);
  letter-spacing: 0.02em;
}

.a-donatePage {
  background: linear-gradient(180deg, #f6fafc 0%, #ffffff 30%, #f8fbfd 100%);
}

.a-donateWrap {
  max-width: 1160px;
}

.a-donatePanel {
  border: 1px solid rgba(8, 31, 53, 0.09);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(8, 31, 53, 0.08);
  background: #ffffff;
}

.a-donatePanel h5,
.a-donatePanel h4,
.a-donatePanel .h5 {
  color: #0b2c48;
  font-weight: 800;
}

.a-donatePanel .small.text-muted,
.a-donatePanel .text-muted {
  color: #34526b !important;
}

.a-donatePanel--aside {
  background: linear-gradient(180deg, #0c3557 0%, #0a2a45 100%);
  color: #f2f8fc;
}

.a-donatePanel--aside h2,
.a-donatePanel--aside .h5,
.a-donatePanel--aside .text-muted,
.a-donatePanel--aside .small.text-muted {
  color: #f2f8fc !important;
}

.a-donateChecklist {
  display: grid;
  gap: 0.65rem;
}

.a-donateChecklist div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(242, 248, 252, 0.94);
}

.a-donateChecklist i {
  color: #19c6a7;
}

.a-donateTrust {
  background: linear-gradient(180deg, rgba(14, 68, 115, 0.08), rgba(14, 68, 115, 0.02));
  border: 1px solid rgba(14, 68, 115, 0.15);
  color: #153a56;
  padding: 1rem 1.1rem;
  border-radius: 12px;
}

.a-donateForm .form-label {
  font-weight: 700;
  color: #0b2c48;
}

.a-donateForm .form-control,
.a-donateForm .form-select {
  min-height: 46px;
  border: 1px solid rgba(8, 31, 53, 0.2);
  background: #fff;
}

.a-donateForm textarea.form-control {
  min-height: 110px;
}

.a-donateForm .form-control:focus,
.a-donateForm .form-select:focus {
  border-color: #0f5f96;
  box-shadow: 0 0 0 0.2rem rgba(15, 95, 150, 0.14);
}

.a-donateAmountQuick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.a-donateAmountQuick button {
  border: 1px solid rgba(11, 44, 72, 0.24);
  background: #f4f8fb;
  color: #0b2c48;
  border-radius: 999px;
  padding: 0.36rem 0.86rem;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.a-donateAmountQuick button:hover,
.a-donateAmountQuick button.is-active {
  background: #0f5f96;
  border-color: #0f5f96;
  color: #fff;
}

@media (max-width: 991.98px) {
  .a-donateHero {
    min-height: 460px;
    padding: 6rem 0 4.75rem;
  }
}



/* Donate channels and tracking */
.a-gatewayGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.75rem;
}

.a-gatewayTile {
  border: 1px solid rgba(11, 44, 72, 0.16);
  border-radius: 12px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: #fff;
}

.a-gatewayTile img {
  max-height: 28px;
  width: auto;
}

.a-gatewayTile span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b2c48;
}

.a-gatewayTile--text {
  background: #f4f8fb;
}

.a-trackBox {
  border: 1px solid rgba(11, 44, 72, 0.14);
  border-radius: 12px;
  padding: 0.9rem;
  background: #f8fcff;
}

.a-trackResult {
  background: rgba(25, 198, 167, 0.12);
  border: 1px solid rgba(25, 198, 167, 0.28);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
}

.a-trackResult--warn {
  background: rgba(255, 176, 46, 0.12);
  border-color: rgba(255, 176, 46, 0.35);
}

.a-donateBankPanel {
  border: 1px solid rgba(11, 44, 72, 0.16);
  background: #f8fcff;
}

.a-donateQrPanel {
  border: 1px dashed rgba(11, 44, 72, 0.3);
  background: #fff;
}

/* Programs highlight icon polish */
.a-highlightCard {
  border: 1px solid rgba(11, 44, 72, 0.08);
}

.a-highlightRow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.a-highlightSvg {
  width: 38px;
  height: 38px;
  color: #0e4473;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
}

@media (max-width: 991.98px) {
  .a-gatewayGrid {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .a-gatewayGrid {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }
}


.a-designationNote {
  line-height: 1.5;
}

.a-designationImpact {
  display: grid;
  gap: 0.35rem;
}

.a-designationImpact div {
  padding-left: 0.1rem;
}

/* Executive CTA and hero gradient utilities (no wave variant) */
.a-oceanCta--nowave {
  background:
    radial-gradient(900px 340px at 12% 0%, rgba(25, 198, 167, 0.22), transparent 64%),
    radial-gradient(860px 320px at 92% 8%, rgba(6, 82, 221, 0.2), transparent 62%),
    linear-gradient(150deg, #0b2c48 0%, #0f4b75 56%, #17608f 100%);
  padding: 58px 0 52px;
}

.a-oceanCta--nowave .ocean-waves {
  display: none !important;
}

.a-heroExecBand {
  position: relative;
  background:
    radial-gradient(840px 300px at 10% 0%, rgba(25, 198, 167, 0.2), transparent 68%),
    radial-gradient(760px 320px at 90% 0%, rgba(15, 95, 150, 0.22), transparent 62%),
    linear-gradient(148deg, #08253f 0%, #0e436d 52%, #145d8b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.a-heroExecBand--engage {
  margin-top: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

.a-heroExecBand--engage>.container>.d-flex .section-heading,
.a-heroExecBand--engage>.container>.d-flex .lead {
  color: #fff;
}

.a-heroExecBand--engage .a-tab {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.a-heroExecBand--engage .a-tab.active {
  background: #fff;
  color: #0b2c48;
}

.a-heroExecBand--media {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.a-heroExecBand--media .a-heroV3__waves {
  display: none !important;
}

.a-heroExecInset {
  background:
    radial-gradient(780px 240px at 12% 0%, rgba(25, 198, 167, 0.14), transparent 66%),
    radial-gradient(760px 260px at 88% 0%, rgba(15, 95, 150, 0.16), transparent 62%),
    linear-gradient(145deg, #0b2c48 0%, #0f4b75 55%, #17608f 100%);
  border-radius: 18px;
  padding: 1.4rem 1rem;
  margin-bottom: 1.4rem;
}

.a-heroExecInset .section-heading,
.a-heroExecInset .lead,
.a-heroExecInset .a-contactEyebrow {
  color: #fff !important;
}

.a-engageHero {
  margin-top: 1rem;
}

.a-engageHero .section-heading {
  font-size: clamp(1.65rem, 1.1vw + 1.35rem, 2.3rem);
}

.a-engageHero .lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, .35vw + .92rem, 1.2rem);
}

.a-engageFilters {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #f1f4f7;
  border: 1px solid rgba(11, 44, 72, .12);
  border-radius: 16px;
  padding: .9rem;
}

.a-engageFilters .form-control,
.a-engageFilters .form-select {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11, 44, 72, .2);
}

.a-engageFilters .btn {
  min-height: 44px;
  border-radius: 999px;
  padding-inline: 1.2rem;
}

.a-engageFilters .a-tabs {
  margin-bottom: 0 !important;
}


/* ============================================================
  Buttons
============================================================ */


/* 1. Main Button State */
.a-btn-ctaPrimary {
  /* Text & Layout */
  color: #ffffff !important; /* High contrast for accessibility */
  display: inline-block;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover transition */

  /* Gradient Background: Modern Blue-to-Dark depth */
  background: linear-gradient(180deg, #175cdd 0%, #0b2c48 100%);
  
  /* Border & Glass Effect */
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px; /* Added for a modern look */
  
  /* Advanced Shadows: Depth + subtle outer glow */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 
              0 0 0 4px rgba(23, 92, 221, 0.1); 
}

/* 2. Hover State */
.a-btn-ctaPrimary:hover {
  transform: translateY(-3px); /* "Lift" effect */
  filter: saturate(1.1) brightness(1.1); /* Subtle pop on hover */
  
  /* Enhanced shadow to simulate being higher off the page */
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), 
              0 0 0 6px rgba(23, 92, 221, 0.15);
}

/* 3. Active (Click) State */
.a-btn-ctaPrimary:active {
  transform: translateY(-1px); /* Press down effect */
  filter: saturate(0.9);
}

/* ==========================
   Programs Hardening (Prod)
========================== */
#programs-main .a-programSlides {
  content-visibility: auto;
  contain-intrinsic-size: 4200px;
}

#programs-main .a-sec.a-sec--program {
  content-visibility: auto;
  contain-intrinsic-size: 1200px 920px;
}

/* Alternating sections: reduce visual load for executive readability */
#programs-main .a-sec.a-sec--program.a-sec--odd .a-secBackdrop__img {
  opacity: .46 !important;
  transform: translate3d(0, 0, 0) scale(1.02) !important;
}

#programs-main .a-sec.a-sec--program.a-sec--odd .a-secBackdrop__tint {
  opacity: .68;
}

/* Keep motion surfaces composited without broad overuse. */
#programs-main .a-clusterCard,
#programs-main .a-clusterCard__img,
#programs-main .a-ctaPill {
  will-change: transform;
}

/* ==========================
   About + Impact Rhythm
========================== */
#impact-main .a-impactSection {
  content-visibility: auto;
  contain-intrinsic-size: 980px 860px;
}

#impact-main .a-impactSection.a-sec--odd {
  background: linear-gradient(180deg, #f7fbff 0%, #f2f8ff 100%);
}

#impact-main .a-impactSection.a-sec--even {
  background: #ffffff;
}

#about-main .a-aboutSection {
  content-visibility: auto;
  contain-intrinsic-size: 1000px 900px;
}

#about-main .a-aboutSection.a-aboutSection--light.a-sec--odd {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8fe 100%);
}

#about-main .a-aboutSection.a-aboutSection--light.a-sec--even {
  background: #ffffff;
}

/* UX stability override:
   content-visibility can cause visible section pop-in ("snap/glare")
   on some devices/browser combos. Keep these primary pages stable. */
#programs-main .a-programSlides,
#programs-main .a-sec.a-sec--program,
#impact-main .a-impactSection,
#about-main .a-aboutSection {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}

/* About institutional positioning */
.a-institutionalPosition {
  padding-top: 1.1rem;
  padding-bottom: .4rem;
}

.a-institutionalPosition .lead {
  max-width: 980px;
  margin: 0 auto;
  color: var(--a-navy);
}

/* Geographic Scope */
.a-geoScope {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.a-geoScope__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  align-items: center;
}

.a-geoScope__label {
  font-weight: 700;
  color: var(--a-navy);
  margin-right: .5rem;
}

.a-geoBadge {
  background: rgba(11, 44, 72, .06);
  color: var(--a-navy);
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(11, 44, 72, .08);
  transition: all .2s ease;
}

.a-geoBadge:hover {
  background: rgba(11, 44, 72, .12);
}

/* SDG Alignment */
.a-sdgAlign__title {
  font-weight: 700;
  color: var(--a-navy);
  margin-bottom: .8rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.a-sdgAlign__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}

.a-sdgBadge {
  background: linear-gradient(135deg, rgba(15, 163, 142, .12), rgba(14, 68, 115, .12));
  border: 1px solid rgba(15, 163, 142, .25);
  color: var(--a-navy);
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s ease;
}

.a-sdgBadge:hover {
  background: linear-gradient(135deg, rgba(15, 163, 142, .18), rgba(14, 68, 115, .18));
}

.a-sdgAlign__note {
  font-size: .9rem;
  color: #4e5d6c;
}

.a-sdgGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 35px;
}

.a-sdgCard {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
  border: 1px solid rgba(11, 44, 72, .06);
  width: min(160px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.a-sdgCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
}

.a-sdgCard img {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  display: block;
}

.a-sdgLabel {
  font-weight: 600;
  font-size: .85rem;
  color: var(--a-navy);
  line-height: 1.35;
}

.a-programSdg {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 44, 72, .1);
}

.a-sdgMini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.a-sdgMini img {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(11, 44, 72, .1);
}

@media (max-width: 575.98px) {
  .a-cookie-banner:not([hidden]) ~ #scroll-top.scroll-top.active {
    bottom: 148px;
  }

  .a-sdgGrid {
    gap: 16px;
  }

  .a-sdgCard {
    padding: 16px 12px;
    width: min(140px, calc(50% - 8px));
  }
}

#enterprise-charter {
  border-top: 1px solid rgba(0, 0, 0, .06);
  margin-top: 30px;
}

.section-divider {
  height: 80px;
  background: linear-gradient(to bottom, #f9fbfd, #ffffff);
}

.a-hero__micro {
  letter-spacing: .3px;
  opacity: .9;
}

#footprint-preview {
  position: relative;
  padding-top: clamp(3.25rem, 4vw, 4.5rem) !important;
  padding-bottom: clamp(3.25rem, 4vw, 4.5rem) !important;
  background:
    radial-gradient(circle at 15% 18%, rgba(23, 92, 221, .06), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(32, 187, 165, .08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#footprint-preview .section-title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

#program-highlights + #footprint-preview {
  margin-top: 0;
}

#footprint-preview + #impact {
  margin-top: 0;
}

.a-footprintStat {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 18px;
  padding: 1.45rem 1.15rem;
  box-shadow: 0 14px 32px rgba(8, 16, 32, .08);
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}

.a-footprintStat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(23, 92, 221, .85), rgba(32, 187, 165, .85));
  opacity: .92;
}

.a-footprintStat:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(8, 16, 32, .12);
  border-color: rgba(23, 92, 221, .18);
}

.a-footprintStat__value {
  font-family: var(--a-font-head);
  font-size: clamp(1.95rem, 2.7vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
  color: var(--a-accent);
  letter-spacing: -.03em;
}

.a-footprintStat__label {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(11, 44, 72, .78);
}

#footprint-preview .btn {
  min-width: 220px;
  padding-inline: 1.2rem;
}

@media (max-width: 767.98px) {
  #footprint-preview .row.g-4 {
    row-gap: 1rem !important;
  }

  .a-footprintStat {
    min-height: 128px;
  }
}

/* ==========================
   Wave 11 + Donor Blocks
========================== */
.a-impactCard--result{
  border-color:#2c8f86;
  box-shadow:0 10px 26px rgba(44,143,134,.16);
}

.a-impactBar{
  background:#f7fafc;
  border-top:1px solid #e9eff5;
  border-bottom:1px solid #e9eff5;
}
.a-impactBar__item{
  background:#fff;
  border:1px solid #e6edf3;
  border-radius:12px;
  padding:14px 12px;
  height:100%;
}
.a-impactBar__value{
  font-size:1.6rem;
  font-weight:700;
  color:#2c8f86;
  line-height:1.1;
}
.a-impactBar__label{
  margin-top:4px;
  font-size:.8rem;
  font-weight:600;
  color:#56636f;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.a-scalingCard{
  background:#fff;
  border:1px solid #e6edf3;
  border-radius:12px;
  padding:28px 20px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  transition:all .25s ease;
  height:100%;
}
.a-scalingCard:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.a-impactSummary{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid #e6ecef;
  box-shadow:0 3px 10px rgba(0,0,0,.05);
  padding:12px 0;
}
.a-impactSummary__value{
  font-size:22px;
  font-weight:700;
  color:#2c8f86;
  line-height:1.1;
}
.a-impactSummary__label{
  font-size:12px;
  color:#6c757d;
}

.a-sectionBridge{
  position:relative;
  margin-top:-35px;
  margin-bottom:30px;
  text-align:center;
}
.a-sectionBridge__inner{
  background:#fff;
  border:1px solid #e9eff5;
  border-radius:30px;
  display:inline-block;
  padding:10px 22px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}
.a-sectionBridge__label{
  font-size:13px;
  font-weight:600;
  letter-spacing:.03em;
  color:#2c8f86;
  text-transform:uppercase;
}


/* section {
border:3px solid red !important;
margin-top:40px !important;
transform:none !important;
}

section {
padding-top:80px;
padding-bottom:80px;
position:relative;
z-index:1;
}

.section-peel {
margin-top:0;
} */
