/* About-only styles moved unchanged from pineverse.css. */
/* ══════════════════════════════════════════════════════
   ABOUT US  —  Figma node 210:1477 (1440 canvas)

   Every gutter uses the same canvas lock as the homepage:
   max(<figma px>, calc(50% - (720px - <figma px>))) — exact
   px below 1440, pinned to the centred 1440 canvas above it.

   The bands overlap by design (rounded cards stacking), so
   each one carries an explicit z-index: the EARLIER band
   must paint on top of the one that follows it.
══════════════════════════════════════════════════════ */

.about-page {
  --ab-g65:  var(--pv-gutter);
  --ab-g120: var(--pv-gutter);
  --ab-g131: var(--pv-gutter);
  --ab-radius: 38px;

  /* ── ONE vertical rhythm for the whole page ──
     Every section breathes by --ab-section top and bottom; the gaps inside a
     section only ever come from these three steps. Nothing bespoke. */
  --ab-section: clamp(72px, 8.34vw, 120px);   /* section ↔ section             */
  --ab-gap-lg:  clamp(36px, 4.17vw, 60px);    /* heading → grid / media / form */
  --ab-gap-md:  clamp(20px, 2.22vw, 32px);    /* tag → heading, block → block  */
  --ab-gap-sm:  clamp(12px, 1.39vw, 20px);    /* heading → copy, label → field */

  /* How far each band tucks under the one above it (rounded card stacking).
     Each band gives its overlap back as padding, so the *visible* gap stays
     exactly --ab-section everywhere. */
  --ab-ov-values: 75px;
  --ab-ov-band:   42px;
  --ab-ov-team:   41px;
  --ab-ov-dark:  114px;
  --ab-dark: #080808;
  --ab-card: #131312;
  --ab-green: #18c03d;
  --ab-lime: #b7f66e;
  --ab-ink: #021717;
  --ab-paper: #f3fff8;
  --ab-muted: #696969;
  overflow-x: clip;
}

/* ── Shared bits ─────────────────────────────────────── */
.ab-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.ab-media img,
.ab-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stand-ins so a not-yet-exported image reads as a deliberate
   block instead of a broken-image icon (the <img> removes
   itself via onerror and this shows through). */
.ab-ph--dark { background: linear-gradient(135deg, #16261f 0%, #0a1310 48%, #1b2f26 100%); }
.ab-ph--glow {
  background:
    radial-gradient(58% 66% at 50% 56%, rgba(167,252,0,0.38), rgba(167,252,0,0.05) 58%, transparent 76%),
    #080808;
}

.ab-accent {
  color: var(--ab-green);
  font-weight: 600;
}

.about-page em {
  font-family: 'Behind The Nineties', sans-serif;
  font-style: italic;
  font-weight: 500;
}

/* ── Section tag pill ────────────────────────────────── */
.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 23px;
  height: 51px;
  padding: 0 18px;
  border-radius: 7px;
  background: #e5ffe5;
}

.ab-tag-dot {
  width: 15px;
  height: 13px;
  border-radius: 3px;
  background: var(--ab-lime);
  flex-shrink: 0;
}

.ab-tag-label {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 116%;
  color: var(--ab-ink);
  white-space: nowrap;
}

.ab-tag--dark .ab-tag-dot { background: #a7fc00; }

/* ══════════════════════════════════════════════════════
   HERO  (Figma y 0 → 810)
══════════════════════════════════════════════════════ */
.ab-hero {
  position: relative;
  z-index: 2;
  border-radius: 0 0 var(--ab-radius) var(--ab-radius);
  overflow: hidden;
}

.ab-hero .ab-media { aspect-ratio: 1440 / 810; }

/* ══════════════════════════════════════════════════════
   WHAT PINEVERSE IS BUILDING  (810 → 1614)
══════════════════════════════════════════════════════ */
.ab-building {
  background: #ffffff;
  text-align: center;
  padding: var(--ab-section) var(--pv-gutter);
}

.ab-building-title {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(28px, 3.34vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ab-ink);
}

/* ══════════════════════════════════════════════════════
   OUR VISION  (1614 → 2539)
══════════════════════════════════════════════════════ */
.ab-vision {
  position: relative;
  z-index: 4;
  background: var(--ab-dark);
  border-radius: var(--ab-radius);
  text-align: center;
  padding: var(--ab-section) var(--pv-gutter)
           calc(var(--ab-ov-values) + var(--ab-section));
  overflow: hidden;
}

/* gradientbg.mp4 sits behind the vision copy + 3D mark */
.ab-vision-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.ab-vision > *:not(.ab-vision-bg) {
  position: relative;
  z-index: 1;
}

.ab-vision-title {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(26px, 2.78vw, 40px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #ffffff;
}

.ab-vision-copy {
  margin: var(--ab-gap-sm) auto 0;
  max-width: 741px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ab-vision-media {
  margin: var(--ab-gap-lg) auto 0;
  max-width: 1200px;
  aspect-ratio: 1200 / 582;
  border-radius: 24px;
}

.ab-vision-media {
  overflow: hidden;
}

.ab-vision-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════
   VALUES — three cards  (2464 → 3266)
══════════════════════════════════════════════════════ */
.ab-values {
  position: relative;
  z-index: 5;
  /* This band paints ON TOP of the vision band, so its own top edge IS the
     visible seam — no overlap compensation here, just the plain rhythm.
     (Only a band that gets *covered* pads for the hidden strip; that's why
     .ab-vision below has the +--ab-ov-values on its padding-bottom.) */
  margin-top: calc(-1 * var(--ab-ov-values));
  background: var(--ab-dark);
  border-radius: var(--ab-radius);
  padding: var(--ab-section) var(--ab-g65);
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4.03vw, 58px);
}

.ab-value {
  background: var(--ab-card);
  border-radius: var(--ab-radius);
  padding: clamp(40px, 4.17vw, 60px) clamp(24px, 2.78vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ab-value-icon {
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-value-icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}

/* If an icon hasn't been exported yet its <img> removes itself — leave a
   soft glow disc behind so the card still reads as designed. */
.ab-value-icon:empty::before {
  content: '';
  width: 128px;
  height: 128px;
  border-radius: 30px;
  border: 1px dashed rgba(167, 252, 0, 0.16);
  background: radial-gradient(circle at 50% 45%,
    rgba(167, 252, 0, 0.20), rgba(167, 252, 0, 0.04) 58%, transparent 72%);
}

/* Figma icon sizes: 140x136 / 152x152 / 108x104 */
.ab-value:nth-child(1) .ab-value-icon img { max-width: 140px; max-height: 136px; }
.ab-value:nth-child(2) .ab-value-icon img { max-width: 152px; max-height: 152px; }
.ab-value:nth-child(3) .ab-value-icon img { max-width: 108px; max-height: 104px; }

.ab-value-title {
  margin-top: var(--ab-gap-lg);
  min-height: 62px;
  max-width: 215px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #ffffff;
}

.ab-value-copy {
  margin-top: var(--ab-gap-md);
  max-width: 273px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════
   FULL-BLEED BANDS
══════════════════════════════════════════════════════ */
.ab-band {
  position: relative;
  border-radius: var(--ab-radius);
  overflow: hidden;
}

.ab-band .ab-media { aspect-ratio: 1440 / 810; }

.ab-band--workshop {
  z-index: 2;
  margin-top: calc(-1 * var(--ab-ov-band));
}

/* the careers band sits inside the dark section */
.ab-band--careers { margin-top: var(--ab-section); }

/* ══════════════════════════════════════════════════════
   THE PEOPLE BEHIND THE SYSTEM  (3993 → 4789)
══════════════════════════════════════════════════════ */
.ab-team-intro {
  position: relative;
  z-index: 3;
  /* Paints on top of both neighbours, so both its edges are the visible
     seams — plain rhythm on both sides. */
  margin-top: calc(-1 * var(--ab-ov-team));
  background: var(--ab-lime);
  border-radius: var(--ab-radius);
  color: var(--ab-ink);
  padding: var(--ab-section) var(--ab-g120);
}

.ab-team-heading,
.ab-leadership-heading,
.ab-careers-heading {
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(28px, 3.34vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.ab-team-heading {
  margin-top: var(--ab-gap-md);
  color: var(--ab-ink);
}

.ab-team-copy {
  margin-top: var(--ab-gap-sm);
  max-width: 1200px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(18px, 2.22vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ab-ink);
}

/* ══════════════════════════════════════════════════════
   DARK BAND — leadership + careers  (4675 → 9183)
══════════════════════════════════════════════════════ */
.ab-dark {
  position: relative;
  z-index: 1;
  /* tuck under the green band, then give the overlap back as padding so the
     first heading still sits exactly --ab-section below the band above it */
  margin-top: calc(-1 * var(--ab-ov-dark));
  padding-top: var(--ab-ov-dark);
  background: var(--ab-dark);
}

/* ── Leadership ── */
.ab-leadership { padding: var(--ab-section) var(--ab-g120) 0; }

.ab-leadership-heading { color: #f1f1f1; }

.ab-leader-grid {
  margin-top: var(--ab-gap-lg);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 7.19vw, 104px);
  row-gap: clamp(40px, 4.86vw, 70px);
}

.ab-leader-photo {
  position: relative;
  overflow: hidden;              /* without this the photo spills over the gap */
  aspect-ratio: 331 / 422;
  border-radius: 23px;
}

.ab-leader-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.ab-leader.is-featured .ab-leader-photo img,
.ab-leader:hover .ab-leader-photo img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.ab-leader-name {
  margin-top: var(--ab-gap-md);
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(22px, 2.22vw, 32px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ab-leader-role {
  margin-top: 8px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.01em;
  color: #484848;
}

/* ══════════════════════════════════════════════════════
   CAREERS
══════════════════════════════════════════════════════ */
.ab-careers {
  padding: var(--ab-section) var(--ab-g120);
}

.ab-careers-heading {
  margin-top: var(--ab-gap-md);
  color: var(--ab-paper);
  text-transform: capitalize;
}

/* ── Field label (shared by search + filters + table head) ── */
.ab-field-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.761px;
  font-weight: 400;
  line-height: 1.461;
  color: var(--ab-muted);
}

/* ── Search ── */
.ab-search { margin-top: var(--ab-gap-lg); }

.ab-search-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: var(--ab-gap-sm);
  max-width: 797px;
  border-bottom: 1px solid rgba(243, 255, 248, 0.28);
}

.ab-search-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  background: none;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(18px, 1.69vw, 24.313px);
  font-weight: 400;
  line-height: 1.217;
  color: var(--ab-paper);
}

.ab-search-input::placeholder { color: rgba(243, 255, 248, 0.45); }
.ab-search-input::-webkit-search-cancel-button { filter: invert(1); }

.ab-search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ab-paper);
}

/* ── Filters ── */
.ab-filters {
  /* the GSAP reveal leaves an inline transform on every .ab-job, which makes
     each row its own stacking context; without this the open panel is painted
     under them */
  position: relative;
  z-index: 5;
  margin-top: var(--ab-gap-lg);
  max-width: 1076px;
  display: grid;
  /* Figma: 249 / 301 / 344 underlines inside a 1076 block */
  grid-template-columns: 249fr 301fr 344fr;
  column-gap: clamp(24px, 6.32vw, 91px);
  row-gap: 32px;
}

/* ── Premium dropdown ───────────────────────────────────
   Custom listbox: glass panel, rule that wipes in, chevron
   flip, staggered options, tick on the selected row.     */
.ab-dd {
  position: relative;
  margin-top: 14px;
}

/* the whole filter row lifts while a panel is open */
.ab-filters:has(.ab-dd.is-open) { z-index: 50; }
.ab-filters.dd-open { z-index: 50; }
.ab-filter { position: relative; }
.ab-filter:has(.ab-dd.is-open) { z-index: 2; }
.ab-filter.dd-open { z-index: 2; }

.ab-dd-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(243, 255, 248, 0.28);
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.69vw, 24.313px);
  font-weight: 400;
  line-height: 1.217;
  color: var(--ab-paper);
  transition: border-color 0.25s ease;
}

.ab-dd-trigger:focus { outline: none; }

.ab-dd-trigger:focus-visible {
  outline: 2px solid #a7fc00;
  outline-offset: 6px;
  border-radius: 4px;
}

/* the rule that wipes in under the field */
.ab-dd-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #a7fc00;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ab-dd-trigger:hover .ab-dd-rule,
.ab-dd.is-open .ab-dd-rule,
.ab-dd.has-value .ab-dd-rule { transform: scaleX(1); }

.ab-dd-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(243, 255, 248, 0.45);
  transition: color 0.25s ease;
}

.ab-dd.has-value .ab-dd-value,
.ab-dd.is-open .ab-dd-value { color: var(--ab-paper); }

.ab-dd-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 10px;
  flex-shrink: 0;
  color: rgba(243, 255, 248, 0.55);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.ab-dd-chevron svg { width: 100%; height: 100%; display: block; }

.ab-dd-trigger:hover .ab-dd-chevron { color: var(--ab-paper); }
.ab-dd.is-open .ab-dd-chevron { transform: rotate(180deg); color: #a7fc00; }

/* ── Panel ── */
.ab-dd-panel {
  position: absolute;
  z-index: 40;
  left: -10px;
  right: -10px;
  top: calc(100% + 14px);
  padding: 8px;
  background: rgba(16, 19, 17, 0.88);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(167, 252, 0, 0.16);
  border-radius: 18px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.62),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  max-height: 322px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.26s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s;
}

.ab-dd.is-open .ab-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* drops upward when there is no room below */
.ab-dd.is-up .ab-dd-panel {
  top: auto;
  bottom: calc(100% + 14px);
  transform-origin: bottom center;
  transform: translateY(10px) scale(0.98);
}

.ab-dd.is-up.is-open .ab-dd-panel { transform: translateY(0) scale(1); }

.ab-dd-panel::-webkit-scrollbar { width: 6px; }
.ab-dd-panel::-webkit-scrollbar-track { background: transparent; }
.ab-dd-panel::-webkit-scrollbar-thumb {
  background: rgba(243, 255, 248, 0.16);
  border-radius: 99px;
}

/* ── Option rows ── */
.ab-dd-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  background: none;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(243, 255, 248, 0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: background 0.2s ease, color 0.2s ease;
}

.ab-dd.is-open .ab-dd-option {
  opacity: 1;
  transform: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.3s ease var(--ab-dd-delay, 0s),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) var(--ab-dd-delay, 0s);
}

.ab-dd.is-open .ab-dd-option:nth-child(1) { --ab-dd-delay: 0.02s; }
.ab-dd.is-open .ab-dd-option:nth-child(2) { --ab-dd-delay: 0.05s; }
.ab-dd.is-open .ab-dd-option:nth-child(3) { --ab-dd-delay: 0.08s; }
.ab-dd.is-open .ab-dd-option:nth-child(4) { --ab-dd-delay: 0.11s; }
.ab-dd.is-open .ab-dd-option:nth-child(5) { --ab-dd-delay: 0.14s; }
.ab-dd.is-open .ab-dd-option:nth-child(6) { --ab-dd-delay: 0.17s; }
.ab-dd.is-open .ab-dd-option:nth-child(n + 7) { --ab-dd-delay: 0.2s; }

.ab-dd-option:hover,
.ab-dd-option.is-active {
  background: rgba(167, 252, 0, 0.1);
  color: var(--ab-paper);
}

.ab-dd-option:focus { outline: none; }

.ab-dd-option.is-selected { color: #a7fc00; }

.ab-dd-option-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ab-dd-check {
  display: flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #a7fc00;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.ab-dd-check svg { width: 100%; height: 100%; display: block; }

.ab-dd-option.is-selected .ab-dd-check { opacity: 1; transform: none; }

/* ── Clear filters ── */
.ab-filters-reset {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 10px 20px;
  border: 1px solid rgba(243, 255, 248, 0.2);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: rgba(243, 255, 248, 0.68);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.ab-filters-reset svg { width: 15px; height: 15px; }

.ab-filters-reset:hover {
  border-color: #a7fc00;
  color: #a7fc00;
  background: rgba(167, 252, 0, 0.07);
}

.ab-filters-reset[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  .ab-dd-panel,
  .ab-dd-option,
  .ab-dd-rule,
  .ab-dd-chevron,
  .ab-dd-check { transition-duration: 0.01ms !important; }
}

/* ── Job listing ── */
.ab-jobs {
  margin-top: var(--ab-gap-lg);
  max-width: 1175px;
}

.ab-jobs-head,
.ab-job {
  display: grid;
  /* Figma columns inside the 1175 track: 0 / 483 / 909 */
  grid-template-columns: 41.106% 36.255% minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}

.ab-jobs-head {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.761px;
  line-height: 1.461;
  color: var(--ab-muted);
}

.ab-jobs-list { margin-top: var(--ab-gap-md); }

.ab-job {
  padding: 29px 0;
  border-bottom: 1px solid rgba(243, 255, 248, 0.14);
  text-decoration: none;
  color: var(--ab-paper);
  transition: background 0.28s ease, color 0.28s ease,
              margin 0.28s ease, padding 0.28s ease;
}

.ab-job-cell {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.69vw, 24.313px);
  font-weight: 400;
  line-height: 1.217;
  min-height: 46px;
  display: flex;
  align-items: center;
}

.ab-job-arrow {
  width: 31px;
  height: 30px;
  flex-shrink: 0;
  justify-self: end;
  color: currentColor;
  transition: transform 0.28s ease;
}

.ab-job-arrow svg { width: 100%; height: 100%; display: block; }

.ab-job:hover,
.ab-job:focus-visible {
  /* Figma highlight row: bleeds 19px past the track, no rule */
  background: #a7fc00;
  color: var(--ab-ink);
  margin: 0 -19px;
  padding: 29px 19px;
  border-bottom-color: transparent;
  outline: none;
}

.ab-job:hover .ab-job-arrow,
.ab-job:focus-visible .ab-job-arrow { transform: translateX(4px); }

.ab-job[hidden] { display: none; }

.ab-jobs-empty {
  margin-top: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: rgba(243, 255, 248, 0.55);
}

/* `.pv-footer` already carries position:relative / z-index:6, so the old
   `.about-page > .site-footer` clear is no longer needed. Kept as a note:
   if the footer ever loses that, the About page's bands paint over it. */

/* ══════════════════════════════════════════════════════
   ABOUT — RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .about-page {
    --ab-g65: var(--pv-gutter);
    --ab-g120: var(--pv-gutter);
    --ab-g131: var(--pv-gutter);
  }
  .ab-value { min-height: 0; }
}

@media (max-width: 1024px) {
  .about-page {
    --ab-g65: var(--pv-gutter);
    --ab-g120: var(--pv-gutter);
    --ab-g131: var(--pv-gutter);
    --ab-radius: 28px;
  }

  .ab-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ab-value-title,
  .ab-value-copy { max-width: 100%; }

  .ab-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }
}

@media (max-width: 900px) {
  .ab-leader-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ab-jobs-head { display: none; }

  .ab-job {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 6px;
    padding: 22px 0;
  }
  .ab-job-cell {
    min-height: 0;
    font-size: 18px;
  }
  .ab-job-title {
    grid-column: 1;
    font-size: 20px;
  }
  .ab-job-cell:not(.ab-job-title) {
    grid-column: 1;
    color: inherit;
    opacity: 0.62;
    font-size: 15px;
  }
  .ab-job-arrow {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
  .ab-job:hover,
  .ab-job:focus-visible { margin: 0 -14px; padding: 22px 14px; }
}

@media (max-width: 640px) {
  .about-page {
    --ab-g65: var(--pv-gutter);
    --ab-g120: var(--pv-gutter);
    --ab-g131: var(--pv-gutter);
    --ab-radius: 20px;
    --ab-ov-values: 20px;
    --ab-ov-band: 20px;
    --ab-ov-team: 20px;
    --ab-ov-dark: 20px;
  }

  .ab-values-grid,
  .ab-leader-grid,
  .ab-filters { grid-template-columns: minmax(0, 1fr); }

  .ab-value { padding: 36px 22px 40px; }
  .ab-value-icon { height: 110px; }
  .ab-value-icon img { max-height: 110px; max-width: 110px; }
  .ab-value-title { min-height: 0; }

  .ab-tag { height: 44px; gap: 14px; padding: 0 14px; }
}

