:root {
  --anb-navy: #08152f;
  --anb-blue: #2563eb;
  --anb-violet: #6d28d9;
  --anb-green: #16a34a;
  --anb-emerald: #059669;
  --anb-green-soft: #ecfdf5;
  --anb-ink: #0f172a;
  --anb-muted: #64748b;
  --anb-line: rgba(15, 23, 42, 0.08);
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-premium-hero {
  position: relative;
  overflow: hidden;

  padding: 150px 0 100px;

  color: #fff;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(34, 197, 94, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 25%,
      rgba(124, 58, 237, 0.28),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #071126,
      #17275f 54%,
      #3d176f
    );
}

.about-premium-hero::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;

  height: 68px;

  background:
    linear-gradient(
      to bottom right,
      transparent 49%,
      #fff 50%
    );
}

.about-premium-hero .container {
  position: relative;
  z-index: 2;
}

.about-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 9px 13px;

  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;

  color: #dbeafe;
  background: rgba(255,255,255,0.07);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-brand-pill i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 5px rgba(34,197,94,0.13);
}

.about-premium-hero h1 {
  max-width: 820px;

  margin: 0;

  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-premium-hero h1 span {
  display: block;

  color: #9fc3ff;
}

.about-premium-hero p {
  max-width: 700px;

  margin: 24px 0 0;

  color: #cbd5e1;

  font-size: 17px;
  line-height: 1.75;
}

.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;

  margin-top: 28px;
}

.about-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 12px;

  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;

  color: #e2e8f0;
  background: rgba(255,255,255,0.055);

  font-size: 10px;
  font-weight: 800;
}

.about-trust-chip.green {
  color: #dcfce7;

  border-color: rgba(34,197,94,0.22);

  background:
    rgba(34,197,94,0.1);
}


/* =========================================================
   COMPANY PROFILE
   ========================================================= */

.about-section {
  padding: 86px 0;
}

.about-section.soft {
  background: #f8faff;
}

.company-story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.company-story-copy .eyebrow-green {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 13px;

  color: var(--anb-emerald);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-story-copy h2 {
  margin: 0;

  color: var(--anb-ink);

  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.company-story-copy p {
  margin: 17px 0 0;

  color: var(--anb-muted);

  font-size: 14px;
  line-height: 1.82;
}

.company-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;

  margin-top: 26px;
}

.company-fact-card {
  padding: 17px;

  border: 1px solid var(--anb-line);
  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 10px 30px rgba(15,23,42,0.04);
}

.company-fact-card span {
  display: block;

  margin-bottom: 5px;

  color: #2563eb;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.company-fact-card.green span {
  color: var(--anb-emerald);
}

.company-fact-card strong {
  color: var(--anb-ink);

  font-size: 13px;
  line-height: 1.5;
}

.company-story-visual {
  position: relative;

  min-height: 420px;

  overflow: hidden;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(34,197,94,0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #0b1735,
      #243983 56%,
      #561e8c
    );

  box-shadow:
    0 28px 75px rgba(30,41,59,0.19);
}

.company-story-visual img {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 90%;
  max-height: 385px;

  object-fit: contain;

  transform: translateX(-50%);
}

.company-story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 13px;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  color: #fff;
  background: rgba(255,255,255,0.09);

  backdrop-filter: blur(14px);

  font-size: 10px;
  font-weight: 850;
}

.company-story-badge i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #22c55e;
}


/* =========================================================
   MISSION / VISION
   ========================================================= */

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}

.about-purpose-card {
  min-height: 280px;

  padding: 31px;

  border-radius: 29px;

  color: #fff;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(124,58,237,0.3),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #09172f,
      #1d3277 60%,
      #4c1d95
    );
}

.about-purpose-card.green {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(34,197,94,0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #0b2632,
      #115e59 62%,
      #166534
    );
}

.about-purpose-card span {
  color: #bfdbfe;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.about-purpose-card.green span {
  color: #bbf7d0;
}

.about-purpose-card h3 {
  margin: 28px 0 0;

  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.about-purpose-card p {
  margin: 15px 0 0;

  color: #d6dfeb;

  font-size: 13px;
  line-height: 1.8;
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-heading {
  max-width: 760px;

  margin-bottom: 40px;
}

.leadership-heading .mini-label {
  color: var(--anb-emerald);
}

.leadership-heading h2 {
  margin: 0;

  color: var(--anb-ink);

  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.leadership-heading p {
  margin: 15px 0 0;

  color: var(--anb-muted);

  font-size: 14px;
  line-height: 1.75;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.leader-card {
  overflow: hidden;

  border: 1px solid var(--anb-line);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 22px 55px rgba(15,23,42,0.07);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.leader-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 30px 72px rgba(15,23,42,0.11);
}

.leader-photo {
  position: relative;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #eff6ff,
      #f5f3ff
    );
}

.leader-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center top;
}

.leader-badge {
  position: absolute;
  left: 15px;
  bottom: 15px;

  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;

  color: #fff;
  background: rgba(15,23,42,0.68);

  backdrop-filter: blur(12px);

  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-badge.green {
  background: rgba(5,150,105,0.84);
}

.leader-info {
  padding: 22px;
}

.leader-info h3 {
  margin: 0;

  color: var(--anb-ink);

  font-size: 21px;
  letter-spacing: -0.025em;
}

.leader-role {
  display: block;

  margin-top: 7px;

  color: #2563eb;

  font-size: 11px;
  font-weight: 900;
  line-height: 1.55;
}

.leader-role.green {
  color: var(--anb-emerald);
}

.leader-info p {
  margin: 13px 0 0;

  color: var(--anb-muted);

  font-size: 12px;
  line-height: 1.72;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 16px;
}

.leader-tags span {
  padding: 7px 9px;

  border-radius: 999px;

  color: #475569;
  background: #f1f5f9;

  font-size: 8px;
  font-weight: 800;
}

.leader-tags span.green {
  color: #047857;
  background: #ecfdf5;
}


/* =========================================================
   PLATFORM / VALUES
   ========================================================= */

.platform-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.platform-card {
  padding: 24px;

  border: 1px solid var(--anb-line);
  border-radius: 23px;

  background: #fff;

  box-shadow:
    0 16px 42px rgba(15,23,42,0.05);
}

.platform-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #6d28d9
    );

  font-size: 18px;
}

.platform-card.green .platform-icon {
  background:
    linear-gradient(
      135deg,
      #059669,
      #16a34a
    );
}

.platform-card h3 {
  margin: 17px 0 8px;

  color: var(--anb-ink);

  font-size: 16px;
}

.platform-card p {
  margin: 0;

  color: var(--anb-muted);

  font-size: 11px;
  line-height: 1.72;
}

.value-card {
  padding: 24px;

  border-radius: 23px;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #101d3d,
      #27377c
    );
}

.value-card:nth-child(2) {
  background:
    linear-gradient(
      145deg,
      #182453,
      #4c1d95
    );
}

.value-card:nth-child(3) {
  background:
    linear-gradient(
      145deg,
      #0e3b38,
      #047857
    );
}

.value-card:nth-child(4) {
  background:
    linear-gradient(
      145deg,
      #173d32,
      #166534
    );
}

.value-card span {
  color: #bfdbfe;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.value-card:nth-child(3) span,
.value-card:nth-child(4) span {
  color: #bbf7d0;
}

.value-card h3 {
  margin: 15px 0 8px;

  font-size: 17px;
}

.value-card p {
  margin: 0;

  color: #d6dfeb;

  font-size: 11px;
  line-height: 1.72;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1020px) {

  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .leader-card:first-child {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 460px;

    justify-self: center;
  }

  .platform-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

}

@media (max-width: 820px) {

  .company-story-grid,
  .about-purpose-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {

  .about-premium-hero {
    padding: 120px 0 80px;
  }

  .about-premium-hero h1 {
    font-size: 43px;
  }

  .about-premium-hero p {
    font-size: 14px;
  }

  .about-section {
    padding: 64px 0;
  }

  .company-facts-grid {
    grid-template-columns: 1fr;
  }

  .company-story-visual {
    min-height: 290px;

    border-radius: 24px;
  }

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

  .leader-card:first-child {
    grid-column: auto;

    max-width: none;
  }

  .leader-card {
    border-radius: 23px;
  }

  .leader-photo {
    aspect-ratio: 4 / 4.8;
  }

  .platform-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-card {
    min-height: auto;

    padding: 25px;

    border-radius: 23px;
  }

}

/* =========================================================
   ABOUT PAGE — CENTERED + COLORFUL BRAND POLISH
   ========================================================= */


/* ---------------------------------------------------------
   HERO — CENTER EVERYTHING
   --------------------------------------------------------- */

.about-premium-hero .container {
  text-align: center;
}

.about-brand-pill {
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-premium-hero h1 {
  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}

.about-premium-hero p {
  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}

.about-trust-row {
  justify-content: center !important;
}


/* ---------------------------------------------------------
   COMPANY PROFILE COPY — CENTER
   --------------------------------------------------------- */

.company-story-copy {
  text-align: center;
}

.company-story-copy .eyebrow-green {
  justify-content: center;

  width: 100%;

  text-align: center;
}

.company-story-copy h2 {
  max-width: 650px;

  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center;
}

.company-story-copy > p {
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center;
}


/* ---------------------------------------------------------
   COMPANY FACT CARDS — FOUR DISTINCT COLORS
   --------------------------------------------------------- */

.company-facts-grid {
  gap: 15px !important;
}


/* 01 — COMPANY : BLUE */

.company-fact-card:nth-child(1) {
  border:
    1px solid rgba(37,99,235,.18) !important;

  background:
    linear-gradient(
      145deg,
      #eff6ff,
      #dbeafe
    ) !important;

  box-shadow:
    0 16px 34px rgba(37,99,235,.10) !important;
}

.company-fact-card:nth-child(1) span {
  color: #2563eb !important;
}

.company-fact-card:nth-child(1) strong {
  color: #102a56 !important;
}


/* 02 — CORE MARKET : PURPLE */

.company-fact-card:nth-child(2) {
  border:
    1px solid rgba(124,58,237,.17) !important;

  background:
    linear-gradient(
      145deg,
      #f5f3ff,
      #ede9fe
    ) !important;

  box-shadow:
    0 16px 34px rgba(124,58,237,.09) !important;
}

.company-fact-card:nth-child(2) span {
  color: #7c3aed !important;
}

.company-fact-card:nth-child(2) strong {
  color: #38216d !important;
}


/* 03 — PLATFORM : TEAL / CYAN */

.company-fact-card:nth-child(3) {
  border:
    1px solid rgba(8,145,178,.17) !important;

  background:
    linear-gradient(
      145deg,
      #ecfeff,
      #cffafe
    ) !important;

  box-shadow:
    0 16px 34px rgba(8,145,178,.09) !important;
}

.company-fact-card:nth-child(3) span {
  color: #0891b2 !important;
}

.company-fact-card:nth-child(3) strong {
  color: #164e63 !important;
}


/* 04 — DIRECTION : GREEN */

.company-fact-card:nth-child(4) {
  border:
    1px solid rgba(22,163,74,.18) !important;

  background:
    linear-gradient(
      145deg,
      #ecfdf5,
      #dcfce7
    ) !important;

  box-shadow:
    0 16px 34px rgba(22,163,74,.10) !important;
}

.company-fact-card:nth-child(4) span {
  color: #059669 !important;
}

.company-fact-card:nth-child(4) strong {
  color: #14532d !important;
}


/* Give each fact card a premium lift */

.company-fact-card {
  position: relative;

  overflow: hidden;

  min-height: 100px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  text-align: center;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.company-fact-card:hover {
  transform: translateY(-3px);
}


/* ---------------------------------------------------------
   NEW FLEET VISUAL
   --------------------------------------------------------- */

.company-story-visual {
  display: flex;

  align-items: flex-end;

  justify-content: center;

  padding:
    30px
    18px
    10px;
}

.company-story-visual img {
  position: relative !important;

  left: auto !important;
  bottom: auto !important;

  width: 100% !important;
  max-width: 620px !important;

  height: auto !important;
  max-height: 390px !important;

  object-fit: contain !important;

  transform: none !important;

  filter:
    drop-shadow(
      0 22px 28px
      rgba(0,0,0,.24)
    );
}

.company-story-badge {
  top: 18px !important;
  left: 50% !important;

  transform: translateX(-50%);

  white-space: nowrap;
}


/* ---------------------------------------------------------
   ALL MAJOR SECTION HEADINGS — CENTER
   --------------------------------------------------------- */

.info-heading,
.leadership-heading {
  max-width: 780px !important;

  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}

.info-heading .mini-label,
.leadership-heading .mini-label {
  display: block;

  width: 100%;

  text-align: center !important;
}

.info-heading h2,
.leadership-heading h2 {
  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}

.info-heading p,
.leadership-heading p {
  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}


/* Purpose section cards retain their own internal content,
   but section headline itself stays centered. */

.about-purpose-grid {
  margin-top: 30px;
}


/* Leadership section */

.leadership-heading {
  margin-bottom: 42px !important;
}


/* Platform / Values headings */

.about-section .info-heading {
  margin-bottom: 34px;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {

  .about-premium-hero h1 {
    font-size:
      clamp(40px, 11vw, 52px) !important;
  }

  .about-premium-hero p {
    max-width: 92%;

    font-size: 13px !important;
  }

  .company-story-copy h2 {
    font-size:
      clamp(32px, 9vw, 42px) !important;
  }

  .company-story-copy > p {
    font-size: 12px !important;

    line-height: 1.75 !important;
  }

  .company-facts-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 10px !important;
  }

  .company-fact-card {
    min-height: 96px;

    padding:
      14px
      10px !important;

    border-radius: 17px !important;
  }

  .company-fact-card span {
    font-size: 7px !important;
  }

  .company-fact-card strong {
    font-size: 10px !important;

    line-height: 1.45 !important;
  }

  .company-story-visual {
    min-height: 300px !important;

    padding:
      55px
      8px
      8px !important;

    border-radius: 24px !important;
  }

  .company-story-visual img {
    width: 108% !important;

    max-height: 270px !important;
  }

  .company-story-badge {
    top: 14px !important;

    max-width: calc(100% - 28px);

    font-size: 8px !important;
  }

  .info-heading,
  .leadership-heading {
    width: 100%;

    text-align: center !important;
  }

  .leadership-heading h2,
  .info-heading h2 {
    text-align: center !important;
  }

}

