/* ==========================================================================
   MSP Process — About Us page
   Dual-brand (green + cyan, matches the home page). Reuses sa-hero / sa-section.
   Non-boxy world-class typography — left-accent feature lists, timeline,
   outcomes-pattern stats. All page-specific styles are about-* namespaced.
   ========================================================================== */

.about-hero .sa-hero__title-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.about-hero .sa-hero__pulse-eyebrow {
  color: var(--brand-green);
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
}
.about-hero .sa-hero__pulse-eyebrow .sa-pulse {
  background: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green), 0 0 0 4px rgba(10, 154, 86, 0.18);
}
.about-hero .sa-hero__glow { background: rgba(10, 154, 86, 0.30); }
.about-hero .sa-hero__inner { grid-template-columns: 1fr; max-width: 920px; text-align: center; }
.about-hero .sa-hero__copy { align-items: center; }
.about-hero .sa-hero__sub { margin-left: auto; margin-right: auto; }
.about-hero .sa-hero__stats { max-width: 760px; margin-inline: auto; }

.about-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --- Mission split — 2 non-boxy left-accent items ---------------------- */
.about-mw {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.about-mw__card {
  position: relative;
  padding: 26px 8px 26px 26px;
  border-left: 3px solid rgba(10, 154, 86, 0.30);
  background: transparent;
}
.about-mw__card--cyan { border-left-color: rgba(0, 186, 251, 0.30); }
.about-mw__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
  color: var(--brand-green);
  margin-bottom: 14px;
}
.about-mw__card--cyan .about-mw__icon {
  background: rgba(0, 186, 251, 0.10);
  border-color: rgba(0, 186, 251, 0.30);
  color: var(--brand-cyan);
}
.about-mw__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.about-mw__h { font-family: var(--font-brand); font-weight: 600; font-size: clamp(1.25rem, 0.9rem + 1vw, 1.5rem); color: var(--heading); margin: 0 0 12px; letter-spacing: -0.3px; }
.about-mw__p { font-weight: 300; font-size: 14.5px; line-height: 1.6; color: var(--text); margin: 0; }
.about-mw__p em { color: var(--brand-green); font-style: normal; font-weight: 600; }
@media (max-width: 900px) { .about-mw { grid-template-columns: 1fr; } }

/* --- Timeline — single-column with connecting spine ------------------- */
.about-timeline {
  position: relative;
  max-width: 760px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-left: 32px;
  list-style: none;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  border-radius: 999px;
}
.about-tl-event {
  position: relative;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.about-tl-event:last-child { padding-bottom: 0; }
.about-tl-event::before {
  content: "";
  position: absolute; left: -28px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(10, 154, 86, 0.45);
}
.about-tl-year {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 13px; letter-spacing: 0.16em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
}
.about-tl-h { font-family: var(--font-brand); font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -0.2px; color: var(--heading); margin: 0 0 8px; }
.about-tl-p { font-weight: 300; font-size: 14.5px; line-height: 1.6; color: var(--text); margin: 0; }
.about-tl-p strong { color: var(--heading); font-weight: 600; }

/* --- Leadership — 3-up non-boxy cards --------------------------------- */
.about-team {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.about-team__card {
  position: relative;
  padding: 22px 4px 22px 22px;
  border-left: 2px solid rgba(10, 154, 86, 0.22);
  background: transparent;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-team__card:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.about-team__portrait {
  width: 72px; height: 72px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-brand); font-weight: 800; font-size: 22px;
  letter-spacing: 0.04em;
}
.about-team__name { font-family: var(--font-brand); font-weight: 700; font-size: 17px; color: var(--heading); margin: 0; }
.about-team__role {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.14em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green);
  margin-top: -4px;
}
.about-team__bio { font-weight: 300; font-size: 13.5px; line-height: 1.6; color: var(--text); margin: 0; }
.about-team__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.about-team__tag {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 9.5px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase;
  color: var(--text);
}
.about-team__link {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.10em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-cyan);
  text-decoration: none;
}
.about-team__link:hover { opacity: 0.8; }
@media (max-width: 1040px) { .about-team { grid-template-columns: repeat(2, 1fr); max-width: 760px; } }
@media (max-width: 700px) { .about-team { grid-template-columns: 1fr; max-width: 480px; } }

/* --- Values — 4 non-boxy items --------------------------------------- */
.about-vals {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px clamp(1.25rem, 2vw, 1.75rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.about-val {
  position: relative;
  padding: 22px 4px 22px 22px;
  display: flex; flex-direction: column; gap: 11px;
  border-left: 2px solid rgba(10, 154, 86, 0.20);
  background: transparent;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-val:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.about-val__icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--brand-green);
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.12), rgba(10, 154, 86, 0.03));
  border: 1px solid rgba(10, 154, 86, 0.24);
}
.about-val__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.about-val__h { font-family: var(--font-brand); font-weight: 600; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.2px; color: var(--heading); margin: 0; }
.about-val__p { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width: 1080px) { .about-vals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .about-vals { grid-template-columns: 1fr; } }

/* --- By the numbers — outcomes pattern ------------------------------- */
.about-numbers {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}
.about-numbers::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; max-width: 110%; height: 320px;
  background: radial-gradient(ellipse at center, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.07) 55%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.about-num {
  position: relative; z-index: 1;
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2.2vw, 2rem);
  text-align: center;
}
.about-num + .about-num::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline) 30%, var(--hairline) 70%, transparent);
  pointer-events: none;
}
.about-num__value {
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  line-height: 0.95; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin: 0 0 8px;
}
.about-num__lbl { font-family: var(--font-brand); font-weight: 600; font-size: 1.0625rem; color: var(--heading); margin-bottom: 6px; }
.about-num__sub { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); }
@media (max-width: 960px) {
  .about-numbers { grid-template-columns: repeat(2, 1fr); row-gap: clamp(2.25rem, 5vw, 3rem); }
  .about-num + .about-num::before { display: none; }
}
@media (max-width: 480px) { .about-numbers { grid-template-columns: 1fr; } }

/* --- Centered quote --------------------------------------------------- */
.about-quote {
  max-width: 980px; margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2vw, 2rem);
  position: relative;
}
.about-quote::before {
  content: "\201C";
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, var(--font-brand), serif;
  font-size: clamp(7rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(10, 154, 86, 0.18);
  pointer-events: none;
}
.about-quote__text { color: var(--heading); font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem); font-weight: 500; line-height: 1.4; letter-spacing: -0.3px; margin: 0 0 24px; position: relative; z-index: 1; }
.about-quote__author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.about-quote__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; font-family: var(--font-brand);
}
.about-quote__name { font-family: var(--font-brand); font-weight: 700; font-size: 15.5px; color: var(--heading); }
.about-quote__meta { color: var(--text); font-size: 12.5px; font-weight: 500; }

/* --- Recognition strip — 4 non-boxy badges --------------------------- */
.about-rec {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px clamp(1.25rem, 2vw, 1.75rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.about-rec__card {
  position: relative;
  padding: 22px 4px 22px 22px;
  border-left: 2px solid rgba(255, 160, 40, 0.30);
  background: transparent;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.about-rec__card:hover { border-left-color: #ffa028; transform: translateX(2px); }
.about-rec__icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  color: #ffa028;
  background: rgba(255, 160, 40, 0.10);
  border: 1px solid rgba(255, 160, 40, 0.28);
  margin-bottom: 4px;
}
.about-rec__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.about-rec__name { font-family: var(--font-brand); font-weight: 700; font-size: 15px; color: var(--heading); margin: 0; }
.about-rec__meta { font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace); font-size: 10.5px; letter-spacing: 0.12em; font-weight: 700; color: var(--text); text-transform: uppercase; }
@media (max-width: 960px) { .about-rec { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-rec { grid-template-columns: 1fr; } }

/* --- Final CTA -------------------------------------------------------- */
.about-final {
  position: relative; overflow: hidden;
  max-width: 1080px; margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.04));
  border: 1px solid rgba(10, 154, 86, 0.22);
}
.about-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; max-width: 130%; height: 280px;
  background: rgba(10, 154, 86, 0.14); filter: blur(110px); border-radius: 700px;
  pointer-events: none;
}
.about-final__inner { position: relative; z-index: 1; }
.about-final__title { font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.4px; margin: 0 0 14px; }
.about-final__sub { font-weight: 300; font-size: 15.5px; line-height: 1.55; color: var(--text); max-width: 640px; margin: 0 auto 24px; }
.about-final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
