    /* =========================================================================
       PAGE: ABOUT US — page-specific CSS.
       Design tokens, body resets, .nav-bar-wrap / .main-nav* / .mobile-nav*,
       .footer-2026 and the global overflow-x / min-width rules all live in
       /css/new/global-2026.css. This file only contains about-page component
       CSS, all scoped under .page-about-us so it can't leak into other pages.
       ========================================================================= */

    /* ---------- Anti-cascade overrides (defeat layout.min.css + bootstrap.min.css) ---------- */
    .page-about-us a:link,
    .page-about-us a:visited,
    .page-about-us a:hover,
    .page-about-us a:focus,
    .page-about-us a:active { color: inherit; text-decoration: none; }

    .page-about-us button {
      font-family: inherit;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .page-about-us img { display: block; max-width: 100%; }

    .page-about-us .container {
      width: 1320px;
      max-width: 1320px;
      padding-left: 12px;
      padding-right: 12px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    /* Re-assert shared footer link colors (the link reset above out-specifies the
       shared .footer__links a rule and would otherwise turn them body-black). */
    .page-about-us .footer__links a:link,
    .page-about-us .footer__links a:visited,
    .page-about-us .footer__links a:active { color: var(--color-neutral-lighter); }
    .page-about-us .footer__links a:hover,
    .page-about-us .footer__links a:focus { color: #ffffff; }

    /* ---------- Page shell / sticky footer ---------- */
    .page-about-us {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .page-about-us .au-main {
      flex: 1 0 auto;
      display: flex;
      flex-direction: column;
      padding-top: 132px;       /* clears the fixed floating nav */
    }
    /* Footer is the shared blocks/footer-2026 partial (.footer-2026), not the
       prototype's .footer-wrap. Override the global 128px/24px margins to match
       the about page's tighter 80px/30px spacing. */
    .page-about-us .footer-2026 {
      margin-top: 80px;
      margin-bottom: 30px;
    }

    /* ===========================================================
       HERO HEADER — eyebrow + centered title.
       The eyebrow uses the global .page-eyebrow class (global-2026.css) — no
       local eyebrow rule here; that one class is the single source for the
       eyebrow on every 2026 page. It keeps the global left alignment; the
       .au-title centers itself.
       =========================================================== */
    .page-about-us .au-title {
      margin: 0;
      font-family: var(--font-family-headline);
      font-weight: 600;
      font-size: var(--fs-headline-large);
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--color-neutral-1000);
      text-align: center;
    }

    /* ===========================================================
       HERO COVER — team photo banner (radius 32)
       =========================================================== */
    .page-about-us .au-cover-wrap { margin-top: 32px; }
    .page-about-us .au-cover {
      width: 100%;
      height: auto;
      border-radius: 32px;
      display: block;
    }

    /* ===========================================================
       ABOUT MOBUPPS — intro + highlighted leadership card
       =========================================================== */
    .page-about-us .au-about {
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .page-about-us .au-about__intro { flex: 0 0 638px; max-width: 638px; }
    .page-about-us .au-about__title {
      margin: 0 0 16px;
    }
    .page-about-us .au-about__text {
      margin: 0 0 16px;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-large);
      line-height: 1.5;
      color: var(--color-neutral-400);
    }
    .page-about-us .au-about__text:last-child { margin-bottom: 0; }
    .page-about-us .au-about__lead {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
    }

    /* ===========================================================
       TEAM CARD (shared between leadership card + grid)
       =========================================================== */
    .page-about-us .team-card {
      display: flex;
      flex-direction: column;
      width: 100%;
      text-align: left;
      background: var(--color-neutral-0);
      border: 1px solid var(--color-neutral-200);
      border-radius: 16px;
      padding: 20px 20px 0;
      transition: box-shadow 0.18s ease, transform 0.18s ease;
    }
    .page-about-us .team-card:hover { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10); transform: translateY(-2px); }
    .page-about-us .team-card--lead { width: 328px; }

    /* Photo height derives from the card's inner width via aspect-ratio, so the
       same rule yields the exact Figma photo size at every breakpoint
       (desktop 266×300 / tablet 219×247 / mobile 157×177). */
    .page-about-us .team-card__photo {
      position: relative;
      display: block;
      aspect-ratio: 266 / 300;
      border-radius: 8px;
      overflow: hidden;
    }
    .page-about-us .team-card--lead .team-card__photo { aspect-ratio: 288 / 300; }
    .page-about-us .team-card__photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* Red→pink glow laid over the (black & white) photo via CSS. Adding a new
       member is just a B&W image swap — the gradient is never baked into the file.
       Matches the Figma radial gradient (focal ~82% / 106%, ~44% strength). */
    .page-about-us .team-card__photo::after,
    .page-about-us .team-popup__photo::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      background: radial-gradient(135% 120% at 82% 106%,
        rgba(228, 37, 33, 0.44) 0%,
        rgba(229, 44, 56, 0.41) 6%,
        rgba(229, 52, 79, 0.38) 12%,
        rgba(230, 66, 125, 0.32) 23%,
        rgba(232, 96, 216, 0.20) 46%,
        rgba(244, 175, 236, 0.10) 73%,
        rgba(255, 255, 255, 0) 100%);
    }
    .page-about-us .team-card__foot {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
    }
    .page-about-us .team-card__meta { display: flex; flex-direction: column; }
    .page-about-us .team-card__name {
      font-family: var(--font-family-body);
      font-weight: 700;
      font-size: var(--fs-body-medium);
      line-height: 1.3;
      color: var(--color-neutral-1000);
    }
    .page-about-us .team-card__role {
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-medium);
      line-height: 1.3;
      color: var(--color-neutral-1000);
    }
    .page-about-us .team-card__arrow {
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--color-neutral-1000);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.18s ease;
    }
    .page-about-us .team-card:hover .team-card__arrow { background: var(--color-btn-primary-bg-hover); }
    .page-about-us .team-card__arrow img { width: 13px; height: 13px; transform: rotate(-45deg); }

    /* Grid team cards (not the featured lead card): body text 16px, 4px gap
       between name/role, and arrows aligned across each row — space-between
       bottom-anchors the foot so every (flex-end) arrow lands on one line. */
    .page-about-us .au-team__grid .team-card { justify-content: space-between; }
    .page-about-us .au-team__grid .team-card__meta { gap: 4px; }
    .page-about-us .au-team__grid .team-card__name,
    .page-about-us .au-team__grid .team-card__role { font-size: 16px; }

    /* ===========================================================
       TEAM GRID
       =========================================================== */
    .page-about-us .au-team { margin-top: 64px; }
    .page-about-us .au-team__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px 24px;
    }

    /* ===========================================================
       SECTION TITLE (Key facts / Our story / Locations)
       =========================================================== */
    .page-about-us .au-section-title {
      margin: 0 0 32px;
    }

    /* ===========================================================
       KEY FACTS — 4 colored stat cards
       =========================================================== */
    .page-about-us .au-facts { margin-top: 128px; }
    .page-about-us .au-facts__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px 32px;
    }
    .page-about-us .fact-card {
      height: 172px;
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      backdrop-filter: blur(3.4px);
      -webkit-backdrop-filter: blur(3.4px);
    }
    .page-about-us .fact-card--blue    { background: var(--color-blue-100); }
    .page-about-us .fact-card--yellow  { background: var(--color-yellow-100); }
    .page-about-us .fact-card--red     { background: var(--color-red-100); }
    .page-about-us .fact-card--neutral { background: var(--color-neutral-100); }

    .page-about-us .fact-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .page-about-us .fact-card__num {
      margin: 0;
      font-family: var(--font-family-headline);
      font-weight: 600;
      font-size: var(--fs-title-large);
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--mobupps-black);
      white-space: nowrap;
    }
    .page-about-us .fact-card__chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 8px;
      border-radius: 4px;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-extra-small);
      line-height: 1.2;
      white-space: nowrap;
    }
    .page-about-us .fact-card__chip img { width: 16px; height: 16px; }
    .page-about-us .fact-card--blue    .fact-card__chip { background: var(--color-blue-200);    color: var(--color-blue-300); }
    .page-about-us .fact-card--yellow  .fact-card__chip { background: var(--color-yellow-300);  color: var(--color-yellow-600); }
    .page-about-us .fact-card--red     .fact-card__chip { background: var(--color-red-200);     color: var(--color-red-300); }
    .page-about-us .fact-card--neutral .fact-card__chip { background: var(--color-neutral-200); color: var(--color-neutral-400); }

    .page-about-us .fact-card__label {
      margin: 0;
      padding: 12px;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-small);
      line-height: 1.5;
      color: var(--color-neutral-1000);
    }

    /* ===========================================================
       OUR STORY — centered timeline slider
       =========================================================== */
    .page-about-us .au-story { margin-top: 128px; }
    .page-about-us .story-panel {
      position: relative;
      height: 259px;
      padding-top: 48px;
      overflow: hidden;
      background: var(--color-light-blue-100);
      border-radius: 16px;
      box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
    }
    /* Horizontal timeline line — 3px dashed, sits at the dots' vertical center
       (dot center is 118px from the panel top: 48 padding + 54 year + 10 gap +
       6 half-dot; the 3px stroke is offset up 1.5px so it centers on 118). */
    .page-about-us .story-line {
      position: absolute;
      left: 32px;
      right: 32px;
      top: 116.5px;
      height: 0;
      border-top: 3px dashed var(--color-neutral-200);
      z-index: 0;
    }
    .page-about-us .story-swiper {
      position: relative;
      z-index: 1;
      width: 100%;
      overflow: hidden;
    }
    .page-about-us .story-swiper .swiper-slide { height: auto; }

    .page-about-us .story-item {
      width: 242px;             /* max slide width per design (Swiper slidesPerView:auto) */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      filter: blur(2.75px);
      transition: filter 0.3s ease, color 0.3s ease;
      color: var(--color-neutral-300);
    }
    .page-about-us .story-item.swiper-slide-active { filter: none; color: var(--color-neutral-1000); }
    .page-about-us .story-item__year {
      margin: 0;
      font-family: var(--font-family-headline);
      font-weight: 600;
      font-size: var(--fs-title-large);
      line-height: 1.5;          /* box height = 1.5em (54px desktop / 48px mobile) */
      color: inherit;
    }
    /* Hollow ring dot (Figma Ellipse 3): white fill, 2px neutral-600 stroke.
       Same for active + inactive — the side items only differ by blur. */
    .page-about-us .story-item__dot {
      width: 12px;
      height: 12px;
      margin-top: 10px;
      border-radius: 50%;
      background: var(--color-neutral-0);
      border: 2px solid var(--color-neutral-600);
      flex: 0 0 12px;
    }
    .page-about-us .story-item__text {
      margin: 15px 0 0;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-small);
      line-height: 1.5;
      color: inherit;
    }

    /* Slider nav buttons — reuse the home reviews-slider component (.arrow-btn):
       40px circle, 2px black border, shared /images-new/common/icon-arrow-right.svg,
       black hover-fill, ghost icon rotated for "prev". Page-scoped so it
       out-specifies the .page-about-us button reset above. Only deviation from the
       home rule: rest background stays opaque (not transparent) so the dashed
       timeline line behind the circle doesn't bleed through. */
    .page-about-us .arrow-btn {
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: 300px;
      background: var(--color-neutral-0);
      border: 2px solid #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .page-about-us .arrow-btn img { width: 14px; height: 14px; filter: brightness(0); }
    .page-about-us .arrow-btn--ghost img { transform: rotate(180deg); }
    .page-about-us .arrow-btn:hover:not(:disabled) { background: #000; }
    .page-about-us .arrow-btn:hover:not(:disabled) img { filter: brightness(0) invert(1); }

    /* .story-arrow = timeline positioning only; appearance comes from .arrow-btn. */
    .page-about-us .story-arrow {
      position: absolute;
      top: 118px;
      transform: translateY(-50%);
      z-index: 3;
    }
    .page-about-us .story-arrow--prev { left: calc(50% - 210px); }
    .page-about-us .story-arrow--next { right: calc(50% - 210px); }
    .page-about-us .story-arrow.swiper-button-disabled { opacity: 0.35; cursor: default; }

    /* ===========================================================
       LOCATIONS — dotted world map + floating flags bar
       =========================================================== */
    .page-about-us .au-locations { margin-top: 128px; }
    /* The map SVG is taller than the design card; crop it to the Figma desktop
       card ratio (1296×640). The SVG bakes its own rounded bg, but cropping cuts
       those corners — so the container re-rounds + clips to keep clean corners. */
    .page-about-us .locations-stage {
      position: relative;
      aspect-ratio: 1296 / 640;
      border-radius: 32px;
      overflow: hidden;
    }
    .page-about-us .locations-map {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .page-about-us .locations-flags {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      width: 772px;
      max-width: calc(100% - 64px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.68);
      backdrop-filter: blur(3.8px);
      -webkit-backdrop-filter: blur(3.8px);
      border-radius: 8px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    }
    .page-about-us .locations-flags img {
      width: 49px;
      height: 27.43px;
      border-radius: 4px;
      object-fit: cover;
      flex: 0 0 auto;
    }

    /* ===========================================================
       TEAM MEMBER POPUP — scrim + centered modal.
       Scrim + close cross are the shared site treatment (unchanged).
       Card content matches the Figma concept (Card/Basic/Main):
       photo + name/role beside it, then bio. Appearance: ease-in on
       open, ease-out on close (opacity + subtle scale).
       =========================================================== */
    .page-about-us .team-popup {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(35, 27, 27, 0.66);
      backdrop-filter: blur(9.75px);
      -webkit-backdrop-filter: blur(9.75px);
      overflow-y: auto;
      opacity: 0;
      transition: opacity 0.22s ease-out;          /* close = ease-out */
    }
    .page-about-us .team-popup.is-hidden { display: none; }
    .page-about-us .team-popup.is-open {
      opacity: 1;
      transition: opacity 0.3s ease-in;            /* open = ease-in */
    }
    body.popup-open { overflow: hidden; }

    .page-about-us .team-popup__modal {
      width: 582px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      padding: 10px 20px 20px;
      background: var(--color-light-blue-100);
      border-radius: 16px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
      opacity: 0;
      transform: translateY(10px) scale(0.97);
      transform-origin: center;
      transition: opacity 0.22s ease-out, transform 0.22s ease-out;   /* close */
    }
    .page-about-us .team-popup.is-open .team-popup__modal {
      opacity: 1;
      transform: none;
      transition: opacity 0.3s ease-in, transform 0.34s ease-in;      /* open */
    }
    .page-about-us .team-popup__close-row {
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .page-about-us .team-popup__close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      line-height: 0;
    }
    .page-about-us .team-popup__close img { width: 16px; height: 16px; }

    .page-about-us .team-popup__slot { display: flex; flex-direction: column; gap: 24px; }
    .page-about-us .team-popup__head { display: flex; gap: 12px; align-items: flex-end; }
    .page-about-us .team-popup__photo {
      position: relative;
      flex: 0 0 184px;
      width: 184px;
      height: 207px;
      border-radius: 8px;
      overflow: hidden;
    }
    .page-about-us .team-popup__photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .page-about-us .team-popup__meta { flex: 1 1 0; min-width: 0; }
    .page-about-us .team-popup__name {
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 700;
      font-size: var(--fs-body-medium);
      line-height: 1.5;
      color: var(--color-neutral-1000);
    }
    .page-about-us .team-popup__role {
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-medium);
      line-height: 1.5;
      color: var(--color-neutral-1000);
    }
    .page-about-us .team-popup__bio { margin: 0; }
    .page-about-us .team-popup__bio p {
      margin: 0;
      font-family: var(--font-family-body);
      font-weight: 400;
      font-size: var(--fs-body-medium);
      line-height: 1.5;
      color: var(--color-neutral-1000);
    }
    .page-about-us .team-popup__bio p + p { margin-top: 18px; }

    @media (prefers-reduced-motion: reduce) {
      .page-about-us .team-popup,
      .page-about-us .team-popup__modal { transition: none; }
    }

    /* =========================================================================
       TABLET (768–1023) — also sets the compact card sizing shared with mobile.
       ========================================================================= */
    @media (max-width: 1023px) {
      .page-about-us .container {
        width: 100%;
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
      }
      .page-about-us .au-main { padding-top: 116px; }

      /* About: two equal halves; the lead card is centered in its half (the
         visual gap comes from that centering, like the design — no flex gap). */
      .page-about-us .au-about { gap: 0; }
      .page-about-us .au-about__intro { flex: 0 0 50%; max-width: 50%; }

      /* Team grid → 3 columns, compact card padding (photo auto-sizes). */
      .page-about-us .au-team { margin-top: 32px; }
      .page-about-us .au-team__grid { grid-template-columns: repeat(3, 1fr); gap: 22px 20px; }
      .page-about-us .au-team__grid .team-card { padding: 12px 12px 0; }
      .page-about-us .au-team__grid .team-card__name,
      .page-about-us .au-team__grid .team-card__role { font-size: 16px; }

      /* Key facts → 4 across × 2 rows on tablet. Cards narrow, so the badge
         drops BELOW the number (num + chip stacked vertically), matching MAFO. */
      .page-about-us .au-facts { margin-top: 80px; }
      .page-about-us .au-facts__grid { gap: 32px 16px; }
      .page-about-us .fact-card { height: 149px; padding: 12px 20px; }
      .page-about-us .fact-card__top { flex-direction: column; align-items: flex-start; gap: 4px; }
      .page-about-us .fact-card__num { font-size: 28px; }
      .page-about-us .fact-card__label { padding: 12px 0 0; }

      .page-about-us .au-story { margin-top: 80px; }
      .page-about-us .au-locations { margin-top: 80px; }
      /* Tablet design barely clips the map — show it (near) full height. */
      .page-about-us .locations-stage { aspect-ratio: auto; }
      .page-about-us .locations-map { height: auto; }
    }

    /* =========================================================================
       MOBILE (<768)
       ========================================================================= */
    @media (max-width: 767px) {
      .page-about-us .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      .page-about-us .au-main { padding-top: 96px; }

      .page-about-us .au-title { text-align: left; }
      .page-about-us .au-cover { border-radius: 16px; }
      .page-about-us .au-section-title { margin-bottom: 16px; }

      /* About → stacked, lead card centered */
      .page-about-us .au-about {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
      }
      .page-about-us .au-about__intro { flex: 1 1 auto; max-width: 100%; }
      .page-about-us .au-about__lead { justify-content: center; }
      .page-about-us .team-card--lead { width: 328px; max-width: 100%; }

      /* Team grid → 2 columns, tight gutter, smaller arrow */
      .page-about-us .au-team { margin-top: 24px; }
      .page-about-us .au-team__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; }
      .page-about-us .au-team__grid .team-card__arrow { width: 20px; height: 20px; }
      .page-about-us .au-team__grid .team-card__arrow img { width: 12px; height: 12px; }

      /* Key facts → 2 columns */
      .page-about-us .au-facts { margin-top: 40px; }
      .page-about-us .au-facts__grid { grid-template-columns: repeat(2, 1fr); gap: 16px 13px; }

      /* Our story → compact 259px panel, arrows centered below the timeline */
      .page-about-us .au-story { margin-top: 40px; }
      .page-about-us .story-panel { height: 259px; padding-top: 21px; }
      .page-about-us .story-line { top: 83.5px; }
      .page-about-us .story-arrow {
        top: auto;
        bottom: 22px;
        transform: none;
      }
      .page-about-us .story-arrow--prev { left: calc(50% - 56px); }
      .page-about-us .story-arrow--next { right: calc(50% - 56px); }

      /* Locations → no world map on mobile; flags become a full-width 5+4 grid.
         Keep the same white card + shadow as desktop/tablet. */
      .page-about-us .au-locations { margin-top: 40px; }
      .page-about-us .locations-map { display: none; }
      /* The stage's overflow:hidden (crops the map corners on desktop) would clip
         the card's shadow now that the map is gone and the stage shrinks to the
         card. Let the shadow render. */
      .page-about-us .locations-stage { overflow: visible; }
      .page-about-us .locations-flags {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 18px 24px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(3.8px);
        -webkit-backdrop-filter: blur(3.8px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
      }

      /* Team popup → photo on top, name/role stacked below (Figma mobile concept) */
      .page-about-us .team-popup { padding: 16px; }
      .page-about-us .team-popup__head { flex-direction: column; align-items: flex-start; }
    }
  
