/**
 * @file
 * About Us — self-contained styles.
 *
 * The About page uses its own `about-*` classes and ships every layout,
 * hero, sidebar, newsletter band and final-CTA rule it needs here, so it
 * does not depend on the theme's blog/bloglist/home stylesheets. Design
 * tokens (var(--al-navy)…), the `.al-btn` button and `.container` still come
 * from the global general.css. This duplicates CSS on purpose; a future
 * refactor will unify the shared pieces.
 *
 * Mirrors the static design reference design-review/about_us/about_us.html.
 */
/**
 * @file
 * Shared LESS variables — imported by general.less and component files.
 *
 * Breakpoint variables used in @media queries across the theme.
 */
/* =========================================================================
   Design tokens supplement (extend those from general.less)
   ========================================================================= */
:root {
  --border-2: var(--al-gray-100);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;
  --iso-9001: #2a6f8a;
  --iso-13485: #2e8056;
  --iso-17100: #5b3a8c;
  --fs-5xl: 48px;
  --fs-6xl: 60px;
  --container-narrow: 720px;
  --container-md: 960px;
  --container-lg: 1140px;
  --container-xl: 1280px;
}
/* =========================================================================
   HERO
   ========================================================================= */
/* Hide Drupal's default page title — the hero supplies its own h1 */
.node--type-about-us .block-page-title-block {
  display: none;
}
.about-hero {
  background: var(--al-navy);
  color: #fff;
  position: relative;
  overflow: clip;
  overflow-clip-margin: 20px;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.about-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -110px;
  width: 480px;
  height: 270px;
  border: 2px solid rgba(224, 144, 48, 0.3);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.about-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border: 1.5px solid rgba(224, 144, 48, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero .container {
  position: relative;
}
.about-hero__figure {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 380px;
  z-index: 1;
  pointer-events: none;
}
.about-hero__figure svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1080px) {
  .about-hero__figure {
    display: none;
  }
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  padding: 56px 0 60px;
  max-width: 880px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 80px 0 0;
  text-wrap: balance;
}
.about-hero__title .accent {
  color: var(--al-orange);
}
.about-hero__standfirst {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.6;
  color: #cfe0ec;
  max-width: 62ch;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.about-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.12s;
}
.about-hero .breadcrumb a:hover {
  color: #fff;
}
.about-hero .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}
.about-hero .breadcrumb__current {
  color: var(--al-orange-300);
  font-weight: 600;
}
.about-hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
}
.about-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: background 0.14s, border-color 0.14s;
}
.about-hero__ghost svg {
  width: 17px;
  height: 17px;
  transition: transform 0.14s;
}
.about-hero__ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.about-hero__ghost:hover svg {
  transform: translateX(3px);
}
/* =========================================================================
   BODY SHELL — two-column grid (sidebar left)
   ========================================================================= */
.about-body {
  background: var(--bg-page);
  padding: 54px 0 6px;
}
.about-grid {
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.about-article {
  min-width: 0;
}
.about-intro {
  max-width: none;
}
/* article typography (About type scale) */
/* `.about-article p` (0,0,1,1) would otherwise out-specify a bare `.about-lead`
   (0,0,1,0) and force the lead back to the body size; scope it to win. */
.about-article .about-lead {
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 1.62;
  color: var(--fg-1);
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 740px;
}
.about-article p {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.78;
  color: var(--fg-2);
  margin: 0 0 18px;
  max-width: 740px;
}
.about-article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 37px;
  line-height: 1.25;
  color: var(--al-navy);
  margin: 64px 0 14px;
  scroll-margin-top: 100px;
  max-width: 740px;
}
.about-article h2#story {
  margin-bottom: 28px;
}
.about-article strong {
  color: var(--al-navy);
  font-weight: 700;
}
.about-q {
  margin: 30px 0;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--al-orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.4;
  color: var(--al-navy);
  max-width: 720px;
}
/* =========================================================================
   SIDEBAR — TOC card + CTA card
   ========================================================================= */
.about-side {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-toc-card {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-xs);
}
.about-toc-card__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border-1);
}
.about-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow-y: auto;
  max-height: 40vh;
}
.about-toc::-webkit-scrollbar {
  width: 4px;
}
.about-toc::-webkit-scrollbar-track {
  background: transparent;
}
.about-toc::-webkit-scrollbar-thumb {
  background: var(--border-1);
  border-radius: 2px;
}
.about-toc a {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--fg-2);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.about-toc a:hover {
  background: var(--bg-alt);
  color: var(--al-navy);
}
.about-toc a.is-active {
  color: var(--al-orange-700);
  border-left-color: var(--al-orange);
  background: #fff6ec;
  font-weight: 600;
}
.about-cta-card {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: var(--al-navy);
  color: #fff;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.about-cta-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 170px;
  height: 110px;
  border: 2px solid rgba(224, 144, 48, 0.34);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}
.about-cta-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
  position: relative;
}
.about-cta-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: #bcd6e7;
  margin: 0 0 16px;
  position: relative;
}
.about-cta-card .al-btn {
  width: 100%;
  justify-content: center;
  position: relative;
}
/* =========================================================================
   CORNERSTONES
   ========================================================================= */
.about-corner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 10px;
  max-width: 740px;
}
.about-corner__item {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-corner__item .about-corner__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.9;
  color: var(--al-navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  opacity: 0.92;
}
.about-corner__num::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--al-orange);
  border-radius: 2px;
  margin: 14px 0 16px;
}
.about-corner__item b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--al-navy);
  line-height: 1.2;
  margin-bottom: 7px;
}
.about-corner__item span {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--fg-3);
}
/* =========================================================================
   LEADERSHIP
   ========================================================================= */
.about-leader {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
  max-width: 740px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 18px 0 6px;
}
.about-leader__photo {
  position: relative;
  background: var(--al-navy);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 22px 30px;
}
.about-leader__photo::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(224, 144, 48, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.about-leader__slot {
  position: relative;
  z-index: 2;
  width: 184px;
  height: 184px;
  display: block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-leader__slot--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  background: #0a4f74;
}
.about-leader__main {
  padding: 26px 30px 28px;
  display: flex;
  flex-direction: column;
}
.about-leader__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 25px;
  color: var(--al-navy);
  line-height: 1.12;
}
.about-leader__role {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: #c47a1e;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 7px;
}
.about-leader__rule {
  height: 3px;
  width: 46px;
  background: #e09030;
  border-radius: 3px;
  margin: 16px 0 18px;
}
.about-leader__body p {
  margin: 0 0 14px;
}
.about-leader__body p:last-child {
  margin: 0;
}
@media (max-width: 560px) {
  .about-leader {
    grid-template-columns: 1fr;
  }
  .about-leader__photo {
    padding: 30px 22px 34px;
  }
}
/* =========================================================================
   TIMELINE
   ========================================================================= */
.about-tl {
  max-width: 760px;
  margin: 14px 0 6px;
  position: relative;
}
.about-tl::before {
  content: "";
  position: absolute;
  left: 73px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border-1);
}
.about-tl__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 0 0 26px;
}
.about-tl__item:last-child {
  padding-bottom: 0;
}
.about-tl__year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--al-navy);
  text-align: right;
  line-height: 1.1;
  padding-top: 1px;
}
.about-tl__dot {
  position: absolute;
  left: 67px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--al-orange);
  border: 3px solid var(--bg-page);
  box-shadow: 0 0 0 1px var(--al-orange);
}
.about-tl__body p {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
}
.about-tl__item--mark .about-tl__year {
  color: var(--al-orange-700);
}
.about-tl__chip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--al-orange-700);
  background: #fff6ec;
  border: 1px solid rgba(224, 144, 48, 0.4);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
/* =========================================================================
   PILLARS CAROUSEL
   ========================================================================= */
.about-pillars-wrap {
  max-width: 760px;
  margin: 18px 0 6px;
}
.about-carousel {
  position: relative;
}
.about-pillars {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 16px;
  margin: 0 -2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about-pillars::-webkit-scrollbar {
  display: none;
}
.about-pillar {
  scroll-snap-align: start;
  flex: 0 0 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.about-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: var(--al-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.about-pillar:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--al-navy-100);
  transform: translateY(-3px);
}
.about-pillar:hover::before {
  transform: scaleX(1);
}
.about-pillar__ghost {
  position: absolute;
  right: 18px;
  bottom: -22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 132px;
  line-height: 1;
  color: var(--al-navy);
  opacity: 0.05;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about-pillar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-pillar__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--al-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.about-pillar__icon svg {
  width: 27px;
  height: 27px;
}
.about-pillar__idx {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--al-orange-700);
}
.about-pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--al-navy);
  margin: 2px 0 0;
  position: relative;
}
.about-pillar p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  position: relative;
}
.about-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}
.about-carousel__nav--top {
  margin-top: 0;
  margin-bottom: 16px;
}
.about-carousel__dots {
  display: flex;
  gap: 8px;
}
.about-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-2, #cdd7df);
  cursor: pointer;
  transition: background 0.15s, width 0.15s;
}
.about-carousel__dots button.is-active {
  width: 24px;
  border-radius: 5px;
  background: var(--al-orange);
}
.about-carousel__arrows {
  display: flex;
  gap: 10px;
}
.about-carousel__arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-1);
  background: #fff;
  color: var(--al-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
}
.about-carousel__arrows button svg {
  width: 19px;
  height: 19px;
}
.about-carousel__arrows button:hover {
  background: #013753;
  border-color: #013753;
  color: #fff;
}
.about-carousel__arrows button:disabled {
  opacity: 0.35;
  cursor: default;
}
.about-carousel__arrows button:disabled:hover {
  background: #fff;
  border-color: var(--border-1);
  color: var(--al-navy);
}
.about-brochure {
  margin: 24px 0 6px;
}
/* Mockup renders this download button as a solid-navy secondary. The global
   .al-btn--secondary is an orange outline (used elsewhere), so override only here. */
.about-brochure .al-btn--secondary {
  background: var(--al-navy);
  color: #fff;
  border-color: var(--al-navy);
}
.about-brochure .al-btn--secondary:hover {
  background: var(--al-navy-700);
  border-color: var(--al-navy-700);
  color: #fff;
}
/* =========================================================================
   CERTIFICATIONS
   ========================================================================= */
.about-certs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
}
.about-cert {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  padding: 14px 18px;
}
.about-cert__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
}
.about-cert b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--al-navy);
  line-height: 1.1;
}
.about-cert span {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-3);
}
/* =========================================================================
   TECHNOLOGY
   ========================================================================= */
.about-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 16px 0 6px;
}
.about-tech__card {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-tech__name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  color: var(--al-navy);
}
.about-tech__name svg {
  width: 22px;
  height: 22px;
  color: var(--al-orange);
}
.about-tech__card p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
/* =========================================================================
   ARTICLE TYPE BUMP (scoped to About)
   The reference renders every paragraph inside the article body at 22px:
   a late `.about-intro p` rule out-orders the smaller per-component sizes
   (.about-pillar p 17, .about-tl__body p 19, .about-tech__card p 17), which
   share its specificity. Placed last on purpose to reproduce that cascade.
   The lead keeps 25px via `.about-article .about-lead` (higher specificity).
   ========================================================================= */
.about-intro p {
  font-size: 22px;
}
/* =========================================================================
   NEWSLETTER BAND
   ========================================================================= */
.about-newsband {
  background: var(--al-navy);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-newsband::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 330px;
  height: 190px;
  border: 2px solid rgba(224, 144, 48, 0.28);
  border-radius: 50%;
  transform: rotate(14deg);
  pointer-events: none;
}
.about-newsband__in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  padding: 46px 0;
}
.about-newsband h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  max-width: 17ch;
}
.about-newsband p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #bcd6e7;
  margin: 9px 0 0;
  max-width: 46ch;
}
.about-newsband form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-newsband input {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  min-width: 250px;
}
.about-newsband input::-moz-placeholder {
  color: #8fb1c8;
}
.about-newsband input::placeholder {
  color: #8fb1c8;
}
.about-newsband input:focus {
  outline: none;
  border-color: var(--al-orange);
  background: rgba(255, 255, 255, 0.12);
}
/* =========================================================================
   FINAL CTA
   ========================================================================= */
.about-finalcta {
  background: var(--al-navy-900);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.about-finalcta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-15deg) scale(1, 0.34);
  opacity: 0.22;
  pointer-events: none;
}
.about-finalcta::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(28deg) scale(1, 0.4);
  opacity: 0.14;
  pointer-events: none;
}
.about-finalcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.about-finalcta__inner.with-form {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.about-finalcta__copy {
  padding-top: 8px;
}
.about-finalcta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.15vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.about-finalcta p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
  max-width: 60ch;
}
.about-finalcta .about-finalcta__microcopy {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}
/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-cta-card {
    flex: 1;
    min-width: 260px;
  }
  .about-finalcta__inner,
  .about-finalcta__inner.with-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 680px) {
  .about-corner {
    grid-template-columns: 1fr;
  }
  .about-pillars,
  .about-tech {
    grid-template-columns: 1fr;
  }
  .about-tl::before {
    left: 53px;
  }
  .about-tl__item {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }
  .about-tl__year {
    font-size: 16px;
  }
  .about-tl__dot {
    left: 47px;
  }
  .about-newsband__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
/* =========================================================================
   DARK MODE
   ========================================================================= */
body.dark .about-body {
  background: var(--al-navy);
}
body.dark .about-lead {
  color: rgba(255, 255, 255, 0.92);
}
body.dark .about-article p {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .about-article h2 {
  color: #fff;
}
body.dark .about-article strong {
  color: #fff;
}
body.dark .about-q {
  color: #fff;
}
body.dark .about-toc-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.dark .about-toc-card__h {
  color: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.dark .about-toc a {
  color: rgba(255, 255, 255, 0.72);
}
body.dark .about-toc a:hover {
  background: var(--al-navy-700);
  color: #fff;
}
body.dark .about-toc a.is-active {
  color: var(--al-orange-300);
  background: rgba(224, 144, 48, 0.14);
  border-left-color: var(--al-orange);
}
body.dark .about-toc::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}
body.dark .about-corner__item {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .about-corner__item b {
  color: #fff;
}
body.dark .about-corner__item .about-corner__num {
  color: #fff;
  opacity: 0.85;
}
body.dark .about-leader {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.dark .about-leader__name {
  color: #fff;
}
body.dark .about-leader__role {
  color: #f3c993;
}
body.dark .about-leader__body {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .about-tl::before {
  background: rgba(255, 255, 255, 0.14);
}
body.dark .about-tl__year {
  color: #fff;
}
body.dark .about-tl__dot {
  border-color: var(--al-navy);
}
body.dark .about-pillar,
body.dark .about-tech__card,
body.dark .about-cert {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.dark .about-pillar h3,
body.dark .about-tech__name,
body.dark .about-cert b {
  color: #fff;
}
body.dark .about-pillar p,
body.dark .about-tech__card p {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .about-pillar__ghost {
  color: #fff;
  opacity: 0.06;
}
body.dark .about-carousel__arrows button {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
body.dark .about-carousel__arrows button:disabled:hover {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
body.dark .about-carousel__dots button {
  background: rgba(255, 255, 255, 0.22);
}
body.dark .about-tl__chip {
  background: rgba(224, 144, 48, 0.14);
  color: var(--al-orange-300);
}
