/* ============================================================
   PEOPLES-PRAXIS — DESIGN SYSTEM & STYLESHEET
   Brand colors from peoples-praxis.org
   ============================================================ */

/* ---- 1. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- 2. DESIGN TOKENS ---- */
:root {
  /* Brand Colors (from peoples-praxis.org source) */
  --blue:          #0043e8;
  --blue-hover:    #0035c4;
  --blue-dark:     #0a1e68;
  --blue-darker:   #060f3a;
  --blue-light:    #e8f2ff;
  --blue-mid:      #c4d8ff;
  --orange:        #ff9800;
  --orange-hover:  #e68900;
  --green:         #77b978;
  --green-light:   #edf7ed;
  --coral:         #f37262;
  --bg:            #ffffff;
  --bg-soft:       #f4f8ff;
  --bg-blue:       #e8f2ff;
  --dark:          #0a1e68;
  --darker:        #060f3a;
  --text:          #23282d;
  --text-2:        #5c6472;
  --text-3:        #8a93a0;
  --border:        #d4e3fc;
  --border-light:  #eaf2ff;
  --white:         #ffffff;

  /* Typography */
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --t-xs:   0.75rem;    /* 12px */
  --t-sm:   0.875rem;   /* 14px */
  --t-base: 1rem;       /* 16px */
  --t-lg:   1.125rem;   /* 18px */
  --t-xl:   1.25rem;    /* 20px */
  --t-2xl:  1.5rem;     /* 24px */
  --t-3xl:  2rem;       /* 32px */
  --t-4xl:  2.75rem;    /* 44px */
  --t-5xl:  3.75rem;    /* 60px */
  --t-hero: clamp(2.8rem, 5.5vw, 5.5rem);
  --t-disp: clamp(2rem, 4vw, 3.75rem);
  --t-head: clamp(1.75rem, 3vw, 2.75rem);

  /* Spacing */
  --sp1:  4px;  --sp2:  8px;  --sp3:  12px; --sp4:  16px;
  --sp5:  24px; --sp6:  32px; --sp7:  48px; --sp8:  64px;
  --sp9:  96px; --sp10: 128px; --sp11: 160px;
  --section: clamp(88px, 10vw, 140px);

  /* Radius */
  --r-xs: 3px; --r-sm: 6px; --r-md: 10px;
  --r-lg: 18px; --r-xl: 28px; --r-pill: 100px;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,67,232,.07);
  --sh-sm: 0 2px 10px rgba(0,67,232,.09), 0 1px 3px rgba(0,67,232,.05);
  --sh-md: 0 6px 24px rgba(0,67,232,.10), 0 2px 6px rgba(0,67,232,.05);
  --sh-lg: 0 16px 48px rgba(0,67,232,.12), 0 4px 12px rgba(0,67,232,.05);
  --sh-xl: 0 32px 80px rgba(6,15,58,.15);

  /* Transitions */
  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --dur:    280ms;
  --dur-lg: 500ms;

  /* Layout */
  --max-w: 1240px;
  --narrow: 780px;
  --gutter: clamp(18px, 4vw, 56px);
}

/* ---- 3. TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
}
p {
  color: var(--text-2);
  font-size: var(--t-base);
  line-height: 1.8;
}
.text-white, .text-white p, .text-white h1,
.text-white h2, .text-white h3 { color: var(--white); }
.text-white p { color: rgba(255,255,255,.78); }

/* ---- 4. LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: var(--narrow); }
.section { padding: var(--section) 0; }
.section--sm { padding: calc(var(--section) * .6) 0; }
.section--lg { padding: calc(var(--section) * 1.4) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp8); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp5); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- 5. COMPONENTS ---- */

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,67,232,.3);
}
.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,67,232,.35);
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,152,0,.3);
}
.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,152,0,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: var(--t-sm); }
.btn--lg { padding: 18px 42px; font-size: var(--t-lg); }

/* -- Tags / Badges -- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
}
.tag--blue  { background: var(--blue-light); color: var(--blue); }
.tag--orange{ background: #fff3e0; color: #e65100; }
.tag--green { background: var(--green-light); color: #2e7d32; }
.tag--coral { background: #fdecea; color: #c62828; }

/* -- Section label -- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp5);
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-label--white { color: rgba(255,255,255,.7); }
.section-label--white::before { background: rgba(255,255,255,.5); }

/* -- Section header -- */
.section-header { margin-bottom: clamp(48px, 7vw, 96px); }
.section-header--center { text-align: center; }
.section-header .heading {
  font-size: var(--t-head);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--sp5);
  line-height: 1.2;
}
.section-header .subheading {
  font-size: var(--t-lg);
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}
.section-header--center .subheading { margin: 0 auto; }

/* -- Divider -- */
.divider { width: 56px; height: 4px; background: var(--blue); border-radius: 4px; margin-bottom: var(--sp5); }
.divider--center { margin: 0 auto var(--sp5); }
.divider--orange { background: var(--orange); }

/* -- Cards -- */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp7);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.card--blue {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}
.card--blue:hover { border-color: transparent; }
.card--dark {
  background: var(--blue-dark);
  color: var(--white);
  border-color: rgba(255,255,255,.1);
}
.card--soft { background: var(--bg-soft); border-color: var(--border-light); }

.card-number {
  font-size: var(--t-5xl);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--sp4);
  opacity: .18;
}
.card--blue .card-number,
.card--dark .card-number { color: rgba(255,255,255,.15); opacity: 1; }

/* What We Do cards — white on soft background so numbers and content stand out */
.wwd-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--blue);
  box-shadow: var(--sh-sm);
}
.wwd-card .card-number {
  color: var(--blue);
  opacity: .22;
}
.wwd-card__title {
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: var(--sp3);
}

/* -- Navigation -- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 var(--gutter);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin: 0 auto;
  transition: height var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,67,232,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled .nav__logo { color: var(--blue-dark); }
.nav.scrolled .nav__link { color: var(--text); }
.nav.scrolled .nav__link:hover { color: var(--blue); }
.nav.scrolled .nav__inner { height: 64px; }

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
}
.nav__logo span { color: var(--orange); }
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp6);
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link:hover { color: var(--blue); }
.nav.scrolled .nav__link.active { color: var(--blue); }
.nav.scrolled .nav__link::after { background: var(--blue); }

.nav__cta { margin-left: var(--sp3); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp2);
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav.scrolled .nav__hamburger span { background: var(--text); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--blue-darker);
  z-index: 499;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-lg) var(--ease);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile .nav__link {
  font-size: var(--t-2xl);
  color: rgba(255,255,255,.85);
}
.nav__mobile .nav__link:hover { color: var(--white); }
.nav__mobile .nav__link::after { bottom: -6px; }

/* -- Footer -- */
.footer {
  background: var(--blue-darker);
  color: var(--white);
  padding: var(--sp10) 0 var(--sp6);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp8);
  margin-bottom: var(--sp9);
}
.footer__brand { max-width: 280px; }
.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp4);
  display: block;
}
.footer__logo span { color: var(--orange); }
.footer__logo img {
  height: 56px;
  width: auto;
  display: block;
}
.footer__brand p {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: var(--sp5);
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--t-xs);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp3); }
.footer__links a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  padding-top: var(--sp6);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.35);
}
.footer__socials { display: flex; align-items: center; gap: var(--sp4); }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: var(--t-sm);
  font-weight: 700;
  transition: all var(--dur) var(--ease);
}
.footer__social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- 6. ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes draw {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale      { transform: scale(.95); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }
.reveal.delay-5 { transition-delay: 500ms; }

/* Force reveals to show inside any editor context — the IntersectionObserver
   that drives scroll reveals does not fire reliably inside Elementor/Gutenberg
   editor iframes, so without this rule editors render most text invisible. */
.elementor-editor-active .reveal,
.editor-styles-wrapper .reveal,
.block-editor-iframe__body .reveal,
.wp-admin .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Same for the cursor spotlight overlay — useless in editors. */
.elementor-editor-active .cursor-spotlight,
.editor-styles-wrapper .cursor-spotlight,
.block-editor-iframe__body .cursor-spotlight,
.wp-admin .cursor-spotlight {
  display: none !important;
}

/* Image override widgets: hidden in BOTH frontend AND Elementor canvas,
   but still in the DOM so:
   - JS reads their src to swap into <img data-pp-img="..."> on frontend
   - Clicking the real hero image jumps to the matching override widget
     (handled by assets/js/editor-enhance.js)
   The override widgets remain accessible via Elementor's Navigator panel. */
.pp-image-override {
  position: absolute !important;
  left: -99999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
/* Cursor + outline on tagged hero images inside the Elementor editor preview. */
.elementor-editor-active img[data-pp-img] {
  cursor: pointer !important;
  transition: outline 0.15s ease, outline-offset 0.15s ease;
}
.elementor-editor-active img[data-pp-img]:hover {
  outline: 3px dashed rgba(255, 152, 0, 0.9) !important;
  outline-offset: 3px !important;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  --mx: 50%;
  --my: 50%;
  --spot-r: 200px;
  min-height: 100vh;
  background: var(--blue-darker);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

/* Halftone texture on left side */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.10) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.05) 1.5px, transparent 1.5px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 45%, transparent 62%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 45%, transparent 62%);
  pointer-events: none;
}

/* Register --spot-r as a typed length so it can be smoothly animated. */
@property --spot-r {
  syntax: '<length>';
  inherits: true;
  initial-value: 195px;
}

/* Cursor-following spotlight overlay. Injected by JS into .hero and .page-hero
   so the existing ::before/::after pseudos stay intact. Brightens halftone
   dots in a soft circle around the pointer; gently breathes via keyframes. */
.cursor-spotlight {
  --mx: 50%;
  --my: 50%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,152,0,.42) .9px, transparent 1.2px),
    radial-gradient(circle, rgba(255,255,255,.3) .8px, transparent 1.1px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image:
    radial-gradient(circle var(--spot-r) at var(--mx) var(--my),
      rgba(0,0,0,.8) 0%,
      rgba(0,0,0,.6) 25%,
      rgba(0,0,0,.3) 55%,
      transparent 85%);
  -webkit-mask-image:
    radial-gradient(circle var(--spot-r) at var(--mx) var(--my),
      rgba(0,0,0,.8) 0%,
      rgba(0,0,0,.6) 25%,
      rgba(0,0,0,.3) 55%,
      transparent 85%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  will-change: opacity, mask-image, -webkit-mask-image;
}
.cursor-spotlight.active {
  opacity: 1;
  animation: spotlight-breathe 3.2s ease-in-out infinite;
}

@keyframes spotlight-breathe {
  0%, 100% { --spot-r: 165px; }
  50%      { --spot-r: 230px; }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-spotlight { display: none; }
}

/* Split layout */
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
  padding: clamp(60px, 10vh, 100px) 0;
}

/* Left — text content */
.hero__content { }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--sp5);
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,152,0,.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,152,0,.18); }
  50%      { box-shadow: 0 0 0 7px rgba(255,152,0,.08); }
}
@media (max-width: 600px) {
  .hero__eyebrow { white-space: normal; font-size: 0.7rem; }
}

.hero__title {
  font-size: clamp(2.6rem, 4.5vw, 4.75rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--sp5);
  letter-spacing: -.03em;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__subtitle {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.60);
  max-width: 460px;
  margin-bottom: var(--sp7);
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp4);
  flex-wrap: wrap;
}

/* Right — image grid */
.hero__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}
.hero__img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 4px 12px rgba(0,0,0,.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero__img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 72px rgba(0,0,0,.5), 0 6px 16px rgba(0,0,0,.3);
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__img--1 { height: 230px; }
.hero__img--2 { height: 180px; margin-top: 40px; }
.hero__img--3 { height: 180px; margin-top: -20px; }
.hero__img--4 { height: 230px; }

/* Image label badge */
.hero__img-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(6,15,58,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* Animate images in on load */
.hero__img--1 { animation: fadeUp .7s .3s both var(--ease); }
.hero__img--2 { animation: fadeUp .7s .45s both var(--ease); }
.hero__img--3 { animation: fadeUp .7s .55s both var(--ease); }
.hero__img--4 { animation: fadeUp .7s .65s both var(--ease); }
/* Proof pill bar */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: var(--sp6);
  padding: 18px 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero__proof-num {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__proof-label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.hero__proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp2);
  color: rgba(255,255,255,.35);
  font-size: var(--t-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
  animation: float 2s ease-in-out infinite;
}

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp6) 0;
  box-shadow: var(--sh-sm);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp5);
}
.stats-bar__item {
  text-align: center;
  padding: var(--sp5) var(--sp4);
  border-right: 1px solid var(--border-light);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-size: var(--t-4xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--sp2);
}
.stats-bar__label {
  font-size: var(--t-sm);
  color: var(--text-2);
  font-weight: 500;
}

/* What we offer */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp5);
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp8) var(--sp7);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.offer-card:hover::before { transform: scaleX(1); }
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.offer-card__num {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: var(--sp5);
}
.offer-card__title {
  font-size: var(--t-2xl);
  font-weight: 700;
  margin-bottom: var(--sp4);
  color: var(--blue-dark);
}
.offer-card__text { font-size: var(--t-base); color: var(--text-2); line-height: 1.7; }
.offer-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--blue);
  margin-top: var(--sp5);
  transition: gap var(--dur) var(--ease);
}
.offer-card__link:hover { gap: var(--sp3); }

/* Courses section */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: default;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,67,232,.10);
  border-color: var(--blue-mid);
}

.course-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
  margin-bottom: 4px;
}
.course-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--dur) var(--ease);
}
.course-card:hover .course-card__icon { background: var(--blue); }
.course-card:hover .course-card__icon svg { stroke: var(--white); }

.course-card__num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.course-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  font-family: var(--font-heading);
  letter-spacing: -.01em;
  flex: 1;
}
.course-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: auto;
}
.course-card__tag::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.course-card:hover .course-card__tag::before {
  width: 28px;
  background: var(--blue);
}

/* Process section */
.process-section {
  background: var(--blue-darker);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.22) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,67,232,.11) 1.5px, transparent 1.5px);
  background-size: 14px 14px, 14px 14px;
  background-position: 0 0, 7px 7px;
  pointer-events: none;
  z-index: 0;
}
.process-section .container { position: relative; z-index: 1; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp5);
  counter-reset: step;
}
.process-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: var(--sp7) var(--sp6);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.process-step:hover { background: rgba(0,67,232,.15); border-color: rgba(0,67,232,.4); }
.process-step__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--sp4);
  opacity: .6;
}
.process-step__title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp3);
}
.process-step__text { font-size: var(--t-sm); color: rgba(255,255,255,.55); line-height: 1.65; }

/* Initiative section */
.initiative {
  background: var(--blue-light);
  border-radius: var(--r-xl);
  padding: var(--sp9) var(--sp8);
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: var(--sp8);
  align-items: center;
}
.initiative__tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp5);
}
.initiative__title { font-size: var(--t-head); color: var(--blue-dark); margin-bottom: var(--sp5); }
.initiative__text { font-size: var(--t-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--sp6); }
.initiative__visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--r-xl);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp6);
  gap: var(--sp4);
}
.initiative__visual-text {
  font-size: var(--t-4xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1;
}
.initiative__visual-sub { font-size: var(--t-sm); color: rgba(255,255,255,.65); }

/* Partners strip */
.partners-strip { background: var(--bg-soft); overflow: hidden; padding: var(--sp7) 0; }
.partners-strip__track {
  display: flex;
  gap: var(--sp8);
  animation: marquee 28s linear infinite;
  width: max-content;
}
.partners-strip:hover .partners-strip__track { animation-play-state: paused; }
.partners-strip__item {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--text-3);
  white-space: nowrap;
  padding: var(--sp3) var(--sp6);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
}
.partners-strip__item:hover { color: var(--blue); border-color: var(--blue-mid); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  text-align: center;
  padding: var(--sp11) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,152,0,.12) 0%, transparent 60%);
}
/* Halftone on CTA */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
  mask-image:
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,.6) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(0,0,0,.6) 0%, transparent 45%);
  -webkit-mask-image:
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,.6) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(0,0,0,.6) 0%, transparent 45%);
  mask-composite: add;
  -webkit-mask-composite: source-over;
  pointer-events: none;
}
.cta-section__title {
  font-size: var(--t-disp);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp5);
  position: relative;
  z-index: 1;
}
.cta-section__text {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto var(--sp7);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp4);
  position: relative;
  z-index: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  min-height: 52vh;
  background: linear-gradient(150deg, var(--blue-darker) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: flex-end;
  padding-top: 76px;
  padding-bottom: var(--sp9);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,67,232,.4) 0%, transparent 55%);
}
/* Halftone on page heroes */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.14) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image: linear-gradient(135deg, transparent 20%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.15) 100%);
  -webkit-mask-image: linear-gradient(135deg, transparent 20%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp5);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--dur) var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__title {
  font-size: var(--t-disp);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp5);
}
.page-hero__subtitle {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.65);
  max-width: 580px;
  line-height: 1.7;
}

/* About blocks */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
  align-items: start;
}
.about-intro__text p {
  font-size: var(--t-lg);
  line-height: 1.8;
  margin-bottom: var(--sp5);
}
.about-intro__text p:last-child { margin-bottom: 0; }
.about-visual {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--bg-soft) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp8);
  border: 1px solid var(--border-light);
}
.about-quote {
  font-size: var(--t-2xl);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.45;
  border-left: 4px solid var(--blue);
  padding-left: var(--sp6);
  margin-bottom: var(--sp5);
}
.about-quote-meta { font-size: var(--t-sm); color: var(--text-2); font-weight: 500; }

/* Mission values */
.mission-section {
  background: var(--blue-darker);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.2) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,67,232,.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  pointer-events: none;
}
.mission-section .container { position: relative; z-index: 1; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
}
.mission-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--sp8) var(--sp7);
  transition: background var(--dur) var(--ease);
}
.mission-card:hover { background: rgba(0,67,232,.15); border-color: rgba(0,67,232,.4); }
.mission-card__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp4);
}
.mission-card__title {
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp4);
}
.mission-card__text { font-size: var(--t-base); color: rgba(255,255,255,.6); line-height: 1.75; }

/* Mission & Vision — distinct 2-card layout */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp7);
  margin-top: var(--sp8);
}
.mv-card {
  position: relative;
  padding: var(--sp8) var(--sp7);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid transparent;
  transition: background var(--dur) var(--ease);
}
.mv-card--mission { border-top-color: var(--blue-mid); }
.mv-card--vision  { border-top-color: var(--orange); }
.mv-card:hover { background: rgba(255,255,255,.08); }
.mv-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp5);
}
.mv-card--mission .mv-card__icon { background: rgba(196,216,255,.12); color: var(--blue-mid); }
.mv-card--vision  .mv-card__icon { background: rgba(255,152,0,.12); color: var(--orange); }
.mv-card__icon svg { width: 26px; height: 26px; }
.mv-card__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp4);
}
.mv-card--mission .mv-card__label { color: var(--blue-mid); }
.mv-card--vision  .mv-card__label { color: var(--orange); }
.mv-card__title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--sp4);
}
.mv-card__text {
  font-size: var(--t-base);
  color: rgba(255,255,255,.62);
  line-height: 1.8;
}

/* Values — light section with left-border accent */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp5);
}
.value-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp7) var(--sp6) var(--sp6) var(--sp7);
  border-left: 4px solid var(--orange);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.value-card__num {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp3);
}
.value-card__title {
  font-size: var(--t-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--sp3);
}
.value-card__text {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; gap: var(--sp6); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp5);
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp6);
  transition: all var(--dur) var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.team-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: var(--sp4);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.team-card__name { font-size: var(--t-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp1); }
.team-card__role { font-size: var(--t-sm); color: var(--blue); font-weight: 600; margin-bottom: var(--sp3); }
.team-card__bio { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; }

/* History */
.history-section { background: var(--bg-soft); }
.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
  align-items: center;
}
.history-text p { font-size: var(--t-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--sp5); }
.history-highlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp8);
  color: var(--white);
}
.history-highlight__num {
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: var(--sp4);
}
.history-highlight__text {
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================================
   MENTORSHIP PAGE
   ============================================================ */
.mentorship-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
  align-items: start;
}
.mentorship-intro__text p {
  font-size: var(--t-lg);
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--sp5);
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
}
.role-card {
  border-radius: var(--r-xl);
  padding: var(--sp8);
  position: relative;
  overflow: hidden;
}
.role-card--mentee { background: var(--blue-darker); }
.role-card--mentor { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }
.role-card__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp5);
}
.role-card__title {
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp5);
}
.role-card__list { display: flex; flex-direction: column; gap: var(--sp3); margin-bottom: var(--sp6); }
.role-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.role-card__item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}
.role-card__cert {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: var(--t-xs);
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* Process steps */
.steps-section { background: var(--bg-soft); }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp5);
  max-width: 760px;
  margin: 0 auto;
}
.step-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp6);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp6) var(--sp7);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.step-row:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-md);
  transform: translateX(6px);
}
.step-row__num {
  font-size: var(--t-3xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--blue-light);
  line-height: 1;
  min-width: 48px;
  transition: color var(--dur) var(--ease);
}
.step-row:hover .step-row__num { color: var(--blue); }
.step-row__content {}
.step-row__title { font-size: var(--t-lg); font-weight: 700; color: var(--text); margin-bottom: var(--sp2); }
.step-row__text { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; }

/* Platform section */
.platform-section { background: var(--blue-light); }
.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
  align-items: center;
}
.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp4);
}
.platform-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp5);
  transition: all var(--dur) var(--ease);
}
.platform-feature:hover { border-color: var(--blue-mid); box-shadow: var(--sh-sm); }
.platform-feature__name { font-size: var(--t-sm); font-weight: 700; color: var(--text); margin-bottom: var(--sp1); }
.platform-feature__desc { font-size: var(--t-xs); color: var(--text-2); line-height: 1.6; }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp5);
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp7);
  display: flex;
  gap: var(--sp5);
  align-items: flex-start;
  transition: all var(--dur) var(--ease);
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.partner-card__initial {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.partner-card__content {}
.partner-card__name { font-size: var(--t-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp2); }
.partner-card__desc { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; margin-bottom: var(--sp4); }
.partner-card__link {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  transition: gap var(--dur) var(--ease);
}
.partner-card__link:hover { gap: var(--sp2); }

.partner-cta {
  background: var(--blue-light);
  border-radius: var(--r-xl);
  padding: var(--sp9) var(--sp8);
  text-align: center;
  border: 1px solid var(--blue-mid);
}
.partner-cta__title { font-size: var(--t-head); color: var(--blue-dark); margin-bottom: var(--sp5); }
.partner-cta__text { font-size: var(--t-lg); color: var(--text-2); max-width: 520px; margin: 0 auto var(--sp6); line-height: 1.7; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: var(--sp9);
  align-items: start;
}
.faq-sidebar {}
.faq-sidebar__title {
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--sp5);
}
.faq-sidebar__text { font-size: var(--t-sm); color: var(--text-2); line-height: 1.7; margin-bottom: var(--sp6); }
.faq-contact-block {
  background: var(--blue-light);
  border-radius: var(--r-lg);
  padding: var(--sp6);
  border: 1px solid var(--border);
}
.faq-contact-block__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp3);
}
.faq-contact-block__email {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--blue-dark);
  display: block;
  margin-bottom: var(--sp4);
}
.faq-list { display: flex; flex-direction: column; gap: var(--sp3); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.open {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-sm);
}
.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp4);
  padding: var(--sp6) var(--sp7);
  cursor: pointer;
  user-select: none;
}
.faq-item__q {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.faq-item.open .faq-item__q { color: var(--blue); }
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
  font-size: 18px;
  color: var(--text-3);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-item__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-lg) var(--ease), padding var(--dur) var(--ease);
}
.faq-item.open .faq-item__body { max-height: 400px; }
.faq-item__a {
  padding: 0 var(--sp7) var(--sp6);
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-tabs {
  display: flex;
  gap: var(--sp3);
  margin-bottom: var(--sp8);
  flex-wrap: wrap;
}
.news-tab {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text-2);
  background: var(--white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.news-tab:hover { border-color: var(--blue-mid); color: var(--blue); }
.news-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,67,232,.25);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp5);
}
.news-panel { display: none; }
.news-panel.active { display: block; }
.news-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.news-card__top {
  height: 8px;
  background: var(--blue);
}
.news-card--opportunity .news-card__top { background: var(--blue); }
.news-card--report .news-card__top { background: var(--green); }
.news-card--event .news-card__top { background: var(--orange); }
.news-card__body { padding: var(--sp6); }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  margin-bottom: var(--sp4);
}
.news-card__date { font-size: var(--t-xs); color: var(--text-3); font-weight: 500; }
.news-card__title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: var(--sp3);
  transition: color var(--dur) var(--ease);
}
.news-card:hover .news-card__title { color: var(--blue); }
.news-card__excerpt { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp9);
  align-items: start;
}
.contact-info__title {
  font-size: var(--t-head);
  font-weight: 700;
  margin-bottom: var(--sp5);
}
.contact-info__text { font-size: var(--t-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--sp7); }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp5);
  margin-bottom: var(--sp7);
}
.contact-detail__item { display: flex; flex-direction: column; gap: var(--sp1); }
.contact-detail__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-detail__value { font-size: var(--t-base); font-weight: 600; color: var(--text); }
.contact-detail__value a { color: var(--blue); transition: color var(--dur) var(--ease); }
.contact-detail__value a:hover { color: var(--blue-hover); }
.contact-charity {
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp5) var(--sp6);
  font-size: var(--t-sm);
  color: var(--text-2);
}
.contact-charity strong { color: var(--blue-dark); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp8);
  box-shadow: var(--sh-md);
}
.contact-form-wrap h3 {
  font-size: var(--t-2xl);
  margin-bottom: var(--sp6);
}
.form-group { margin-bottom: var(--sp5); }
.form-label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,67,232,.1);
  background: var(--white);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235c6472' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp5); }
.form-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--r-md);
  padding: var(--sp5) var(--sp6);
  font-size: var(--t-sm);
  color: #2e7d32;
  font-weight: 600;
  display: none;
  margin-top: var(--sp4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp6); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { display: none; }
}
@media (max-width: 900px) {
  .hero__split { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 40px; }
  .hero__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__img--1 { height: 180px; }
  .hero__img--2 { height: 140px; margin-top: 28px; }
  .hero__img--3 { height: 140px; margin-top: -14px; }
  .hero__img--4 { height: 180px; }
  .hero__subtitle { max-width: 100%; }
}
@media (max-width: 900px) {
  .grid-2, .about-intro, .mentorship-intro,
  .mission-grid, .history-content, .platform-content,
  .roles-grid, .contact-layout { grid-template-columns: 1fr; gap: var(--sp6); }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .initiative { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 600px) {
  :root { --section: 72px; --gutter: 18px; }
  .offer-grid, .courses-grid, .team-grid,
  .news-grid, .grid-3, .grid-4, .process-grid,
  .platform-features, .form-row { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__images { grid-template-columns: 1fr 1fr; }
  .hero__img--1, .hero__img--4 { height: 150px; }
  .hero__img--2, .hero__img--3 { height: 120px; margin: 0; }
  .cta-section__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp4); text-align: center; }
}

/* ============================================================
   HALFTONE — DECORATIVE ELEMENTS
   ============================================================ */

/* Large halftone dot-burst decoration in hero (bottom-left corner) */
.hero__halftone-decor {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  z-index: 2;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.22) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.11) 2px, transparent 2px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, rgba(0,0,0,.55) 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.55) 30%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Halftone ring accent — used as a decorative block divider */
.ht-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ht-ring--tr {
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.18) 2px, transparent 2px),
    radial-gradient(circle, rgba(0,67,232,.09) 2px, transparent 2px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image: radial-gradient(circle, rgba(0,0,0,.5) 25%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.5) 25%, transparent 65%);
}

/* Stats bar subtle halftone */
.stats-bar {
  position: relative;
  overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.055) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,67,232,.03) 1px, transparent 1px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  pointer-events: none;
}

/* Initiative visual box halftone overlay */
.initiative__visual {
  position: relative;
  overflow: hidden;
}
.initiative__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.14) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 14px 14px, 14px 14px;
  background-position: 0 0, 7px 7px;
  mask-image: linear-gradient(to bottom left, rgba(0,0,0,.5) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,.5) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--r-xl);
}

/* About visual halftone background texture */
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.07) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,67,232,.035) 1.5px, transparent 1.5px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
  mask-image: linear-gradient(135deg, rgba(0,0,0,.4) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,.4) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--r-xl);
}

/* History highlight halftone */
.history-highlight {
  position: relative;
  overflow: hidden;
}
.history-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  mask-image: linear-gradient(to top right, rgba(0,0,0,.5) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(to top right, rgba(0,0,0,.5) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--r-xl);
}

/* Role cards (mentor/mentee) halftone */
.role-card--mentee,
.role-card--mentor {
  position: relative;
  overflow: hidden;
}
.role-card--mentee::after,
.role-card--mentor::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.16) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.08) 2px, transparent 2px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, rgba(0,0,0,.5) 25%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.5) 25%, transparent 68%);
  pointer-events: none;
}

/* Offer cards top-right corner halftone accent */
.offer-card {
  position: relative;
  overflow: hidden;
}
.offer-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.1) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,67,232,.05) 1.5px, transparent 1.5px);
  background-size: 14px 14px, 14px 14px;
  background-position: 0 0, 7px 7px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, rgba(0,0,0,.45) 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.45) 20%, transparent 65%);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  opacity: 0;
}
.offer-card:hover::after { opacity: 1; }

/* Partner CTA halftone */
.partner-cta {
  position: relative;
  overflow: hidden;
}
.partner-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.07) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0,67,232,.035) 1.5px, transparent 1.5px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
  mask-image:
    radial-gradient(ellipse at 100% 0%, rgba(0,0,0,.4) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,.3) 0%, transparent 45%);
  -webkit-mask-image:
    radial-gradient(ellipse at 100% 0%, rgba(0,0,0,.4) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,.3) 0%, transparent 45%);
  mask-composite: add;
  -webkit-mask-composite: source-over;
  pointer-events: none;
  border-radius: var(--r-xl);
}

/* FAQ contact block halftone */
.faq-contact-block {
  position: relative;
  overflow: hidden;
}
.faq-contact-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,67,232,.07) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,67,232,.035) 1px, transparent 1px);
  background-size: 12px 12px, 12px 12px;
  background-position: 0 0, 6px 6px;
  mask-image: linear-gradient(to bottom right, rgba(0,0,0,.4) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom right, rgba(0,0,0,.4) 0%, transparent 60%);
  pointer-events: none;
  border-radius: var(--r-lg);
}

/* ============================================================
   ROLES SECTION (below hero)
   ============================================================ */
.roles-section {
  background: var(--bg-soft);
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--border-light);
}
.roles-section__header {
  text-align: center;
  margin-bottom: var(--sp7);
}
.roles-section__heading {
  font-size: var(--t-head);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--sp2);
}
.roles-section__sub {
  font-size: var(--t-base);
  color: var(--text-3);
  font-weight: 500;
}
.roles-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp5);
}
.role-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp7) var(--sp6) var(--sp6);
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.role-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.role-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.role-tile:hover::before { transform: scaleX(1); }
.role-tile__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.role-tile__icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--dur) var(--ease);
}
.role-tile:hover .role-tile__icon { background: var(--blue); }
.role-tile:hover .role-tile__icon svg { stroke: var(--white); }
.role-tile__title {
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  line-height: 1.2;
}
.role-tile__text {
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.role-tile__cta {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--blue);
  margin-top: var(--sp2);
  transition: gap var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.role-tile:hover .role-tile__cta { gap: 8px; }

@media (max-width: 900px) {
  .roles-section__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .roles-section__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav__dropdown { position: relative; }
.nav__link--has-sub { display: inline-flex; align-items: center; gap: 4px; }
.nav__sub {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  z-index: 600;
  list-style: none;
}
.nav__dropdown:hover .nav__sub,
.nav__dropdown:focus-within .nav__sub {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__sub li a {
  display: block;
  padding: 9px 14px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.nav__sub li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* ============================================================
   HERO ROLE CARDS
   ============================================================ */
.hero__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
.hero__role {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 16px;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}
.hero__role:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.hero__role__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,152,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__role__icon svg {
  width: 18px; height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__role-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  font-family: var(--font-heading);
}
.hero__role-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: .02em;
}

/* ============================================================
   MENTORING PATHWAY CARDS
   ============================================================ */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
}
.path-card {
  border-radius: var(--r-xl);
  padding: var(--sp8);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
  display: block;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.path-card--mentee { background: var(--blue-darker); }
.path-card--mentor { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }
.path-card__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp4);
}
.path-card__title {
  font-size: var(--t-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp4);
  font-family: var(--font-heading);
}
.path-card__text {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: var(--sp6);
}
.path-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  margin-bottom: var(--sp6);
}
.path-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.path-card__item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}
.path-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  transition: all var(--dur) var(--ease);
}
.path-card:hover .path-card__cta {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
}

/* ============================================================
   RESOURCE / DOWNLOAD CARDS
   ============================================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp5);
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp6);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.resource-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.resource-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--dur) var(--ease);
}
.resource-card:hover .resource-card__icon { background: var(--blue); }
.resource-card:hover .resource-card__icon svg { stroke: var(--white); }
.resource-card__title {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}
.resource-card__text { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; flex: 1; }
.resource-card__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: auto;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp5);
}
.download-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp6) var(--sp7);
  display: flex;
  align-items: center;
  gap: var(--sp5);
  transition: all var(--dur) var(--ease);
}
.download-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--sh-md);
  transform: translateX(4px);
}
.download-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.download-card__body { flex: 1; min-width: 0; }
.download-card__title { font-size: var(--t-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp1); }
.download-card__meta { font-size: var(--t-xs); color: var(--text-3); font-weight: 500; }
.download-card__btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.download-card:hover .download-card__btn { background: var(--blue); color: var(--white); }

/* ============================================================
   IMPACT PAGE
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp5);
}
.impact-report-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.impact-report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-mid);
}
.impact-report-card__top { height: 6px; background: var(--blue); }
.impact-report-card__body { padding: var(--sp6); }
.impact-report-card__year {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp3);
}
.impact-report-card__title {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp3);
  line-height: 1.4;
}
.impact-report-card__desc { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; margin-bottom: var(--sp5); }
.impact-report-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap var(--dur) var(--ease);
}
.impact-report-card__link:hover { gap: var(--sp2); }

.pub-list { display: flex; flex-direction: column; gap: var(--sp4); }
.pub-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--sp6) var(--sp7);
  transition: all var(--dur) var(--ease);
}
.pub-item:hover { border-color: var(--blue-mid); box-shadow: var(--sh-sm); }
.pub-item__title { font-size: var(--t-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp2); line-height: 1.4; }
.pub-item__meta { font-size: var(--t-sm); color: var(--text-3); margin-bottom: var(--sp3); }
.pub-item__link {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================================
   GET INVOLVED / DONATE
   ============================================================ */
.donate-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp8);
  box-shadow: var(--sh-md);
}
.donate-box__title { font-size: var(--t-2xl); font-weight: 700; color: var(--blue-dark); margin-bottom: var(--sp5); font-family: var(--font-heading); }
.donate-box__text { font-size: var(--t-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--sp5); }
.donate-charity {
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp5) var(--sp6);
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp6);
}
.donate-charity strong { color: var(--blue-dark); }

.get-involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
  align-items: start;
}

/* ============================================================
   ADDITIONAL RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .path-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .get-involved-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero__roles { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .nav__sub { display: none !important; }
}

/* ============================================================
   HERO — ENHANCEMENTS
   ============================================================ */

/* Ambient radial glow behind image mosaic + warm hint lower-left */
.hero {
  background:
    radial-gradient(ellipse 65% 55% at 88% 32%, rgba(37,99,235,.22) 0%, transparent 65%),
    radial-gradient(ellipse 38% 38% at 6% 88%, rgba(255,107,53,.07) 0%, transparent 55%),
    var(--blue-darker);
}

/* 3-image mosaic — img1 tall left, img2/3 stacked right */
.hero__images {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 234px 234px;
}
.hero__img--1 {
  grid-column: 1;
  grid-row: 1 / 3;
  height: auto !important;
  margin-top: 0 !important;
}
.hero__img--2 {
  grid-column: 2;
  grid-row: 1;
  height: auto !important;
  margin-top: 20px !important;
}
.hero__img--3 {
  grid-column: 2;
  grid-row: 2;
  height: auto !important;
  margin-top: 0 !important;
}

/* Subtle gradient fade at bottom of tall image so float card reads cleanly */
.hero__img--1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(6,15,58,.55));
  pointer-events: none;
}

/* Ambient glow orb sitting behind the image stack */
.hero__glow-orb {
  position: absolute;
  top: -80px; right: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.40) 0%, transparent 70%);
  filter: blur(52px);
  pointer-events: none;
  z-index: 0;
}

/* Floating impact card */
.hero__float-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 4px 12px rgba(0,0,0,.2);
  z-index: 10;
  min-width: 170px;
  animation: fadeUp .7s .85s both var(--ease);
}
.hero__float-card__num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero__float-card__label {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 6px;
}

/* Proof bar spacing */
.hero__proof {
  margin-top: var(--sp7);
}

/* Responsive: stack layout at 900px */
@media (max-width: 900px) {
  .hero__images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hero__img--1 {
    grid-column: 1;
    grid-row: 1;
    height: 190px !important;
  }
  .hero__img--2 {
    grid-column: 2;
    grid-row: 1;
    height: 190px !important;
    margin-top: 0 !important;
  }
  .hero__img--3 {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 140px !important;
  }
  .hero__float-card { display: none; }
  .hero__img--1::after { display: none; }
}
@media (max-width: 600px) {
  .hero__proof { flex-wrap: wrap; gap: var(--sp4); padding: 14px 20px; }
  .hero__img--1, .hero__img--2 { height: 150px !important; }
  .hero__img--3 { height: 110px !important; }
}

/* ============================================================
   MOBILE — COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   ============================================================ */

/* Mobile menu: scrollable so all sub-links are reachable on small devices */
.nav__mobile {
  overflow-y: auto;
  justify-content: flex-start;
  padding: 100px var(--sp6) 48px;
  gap: 0;
}
.nav__mobile ul { width: 100%; }

/* Tighten mobile menu item gap on very small screens */
@media (max-width: 400px) {
  .nav__mobile ul { gap: 14px !important; }
  .nav__mobile .nav__link { font-size: var(--t-xl); }
  .nav__mobile .nav__link[style] { font-size: .875rem; }
}

/* ---- 900px: tablet adjustments not already covered ---- */
@media (max-width: 900px) {
  .page-hero { padding-bottom: var(--sp8); }
  .donate-box { padding: var(--sp7); }
  .contact-form-wrap { padding: var(--sp7); }
  .initiative { padding: var(--sp7); }
}

/* ---- 600px: small screen component polish ---- */
@media (max-width: 600px) {
  /* Section header spacing */
  .section-header { margin-bottom: var(--sp7); }

  /* Page hero */
  .page-hero { min-height: auto; padding-bottom: var(--sp7); }
  .page-hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero__subtitle { font-size: var(--t-base); max-width: 100%; }

  /* Oversized card padding → mobile-friendly */
  .donate-box { padding: var(--sp5); }
  .contact-form-wrap { padding: var(--sp5); }
  .pub-item { padding: var(--sp5); }
  .path-card { padding: var(--sp5); }
  .path-card__title { font-size: var(--t-2xl); }
  .mv-card { padding: var(--sp5); }
  .initiative { padding: var(--sp6) var(--sp5); }
  .initiative__visual { height: 180px; }

  /* Buttons: full-width CTAs where stacking helps */
  .donate-box .btn { width: 100%; text-align: center; justify-content: center; }
  .path-card__cta { width: 100%; justify-content: center; }

  /* News tabs: smaller pills */
  .news-tab { padding: 8px 14px; font-size: var(--t-xs); }
  .news-tabs { gap: var(--sp2); margin-bottom: var(--sp6); }

  /* Offer grid: always single column on phones */
  .offer-grid { grid-template-columns: 1fr !important; }

  /* Partners grid: already 1col at 900px, keep */
  .partners-grid { grid-template-columns: 1fr; }

  /* Contact layout already 1col at 900px */
  .contact-form-wrap h3 { font-size: var(--t-xl); }

  /* CTA section text */
  .cta-section__title { font-size: var(--t-3xl); }

  /* Hero proof bar: hide on tiny screens to keep hero clean */
  .hero__proof { display: none; }

  /* Footer badges and socials */
  .footer__badge { font-size: var(--t-xs); }

  /* Values grid: already 1col from earlier rule but reinforce */
  .values-grid { grid-template-columns: 1fr; }

  /* About page: team cards take full width */
  .team-card { padding: var(--sp5); }

  /* Download cards: keep horizontal but reduce internal padding */
  .download-card { padding: var(--sp5) var(--sp5); }
}

/* ---- 480px: very small phones ---- */
@media (max-width: 480px) {
  /* Download cards: stack icon + text + button vertically */
  .download-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp4);
  }
  .download-card__btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  /* Role tiles: single column on very small phones */
  .roles-section__grid { grid-template-columns: 1fr; }

  /* Impact grid: 1col */
  .impact-grid { grid-template-columns: 1fr; }

  /* Reduce heading sizes further */
  .page-hero__title { font-size: 1.65rem; }
  .heading { font-size: var(--t-2xl); }
}

/* ---- INTRO SECTION (typewriter + quote) ---- */
.intro { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.intro__wrap { text-align: left; }
.intro__quote { max-width: none; margin: 0; }
.intro__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--blue-dark);
  margin: var(--sp4) 0 var(--sp7);
  letter-spacing: -.01em;
  min-height: 1.15em;
}
.intro__heading.typing::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: .9em;
  margin-left: 4px;
  vertical-align: -.08em;
  background: var(--orange);
  animation: caret 1s steps(2) infinite;
}
.intro__heading.done::after { display: none; }
@keyframes caret { 50% { opacity: 0; } }

.intro__quote {
  position: relative;
  padding: var(--sp5) 0 0 clamp(20px, 4vw, 56px);
  border: 0;
  margin: 0;
}
.intro__quote::before {
  content: '\201C';
  position: absolute;
  top: -28px;
  left: -8px;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 1;
  color: var(--blue);
  opacity: .18;
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}
.intro__para {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 var(--sp5);
}
.intro__para--muted { color: var(--text-2); margin-bottom: 0; }

.intro__hl {
  font-weight: 700;
  position: relative;
  padding: 0 2px;
}
.intro__hl--blue   { color: var(--blue); }
.intro__hl--orange { color: var(--orange); }
.intro__hl--green  { color: var(--green); }
.intro__hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  border-radius: 3px;
  z-index: -1;
  opacity: .25;
}
.intro__hl--blue::after   { background: var(--blue); }
.intro__hl--orange::after { background: var(--orange); }
.intro__hl--green::after  { background: var(--green); }
