:root {
  --page-shell: 960px;
  --page-gutter: 20px;
  --green: #16ab6d;
  --text-dark: #111111;
  --text-soft: #4f5557;
  --line-soft: rgba(15, 31, 25, 0.08);
  --card-line: rgba(20, 29, 28, 0.08);
  --type-micro: 12px;
  --type-support: 14px;
  --type-body: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'InterVariable', 'Inter', 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-family: 'InterVariable', 'Inter', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: 'InterVariable', 'Inter', sans-serif;
  font-weight: 600;
  transition:
    transform var(--motion-duration-fast) var(--motion-ease-standard),
    box-shadow var(--motion-duration-fast) ease,
    background-color var(--motion-duration-fast) ease,
    border-color var(--motion-duration-fast) ease,
    color var(--motion-duration-fast) ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  min-height: 40px;
  padding: 0 14px;
  background: #191919;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(18, 18, 18, 0.18);
  gap: 8px;
}

.btn-ghost {
  min-height: 40px;
  padding: 0 8px;
  color: #1f2625;
  background: transparent;
  gap: 8px;
}

.btn-light {
  min-height: 40px;
  padding: 0 18px;
  background: #ffffff;
  color: #0f1113;
  border: 1px solid rgba(16, 28, 24, 0.08);
}

.about-page {
  min-height: 100vh;
  background: #ffffff;
}

.about-hero,
.process-section,
.leadership-section,
.faq-section,
.about-testimonials .section-title-split,
.presence-section .section-head {
  max-width: var(--page-shell);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.about-hero {
  position: relative;
  padding-top: 42px;
}

/* Gradient layer — extends through nav + hero. */
.about-hero::before {
  content: '';
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: -120px;
  height: clamp(440px, 54vw, 560px);
  background:
    linear-gradient(180deg, rgba(120, 214, 174, 0.9) 0%, rgba(189, 238, 215, 0.68) 34%, rgba(245, 255, 250, 0.4) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #73d4ac 0%, #d8f2e4 28%, rgba(255, 255, 255, 0) 78%);
  background-size:
    100% 100%,
    100% 100%;
  background-position:
    center top,
    center top;
  background-repeat: no-repeat, no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 95%);
          mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 95%);
  z-index: -1;
  pointer-events: none;
}

/* Column-line layer — fades out BEFORE the main title. */
.about-hero::after {
  content: '';
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  top: -120px;
  height: clamp(440px, 54vw, 560px);
  background: linear-gradient(90deg, rgba(22, 171, 109, 0.18) 1px, transparent 1px);
  background-size: 72px 100%;
  background-repeat: repeat-x;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 120px, transparent 220px);
          mask-image: linear-gradient(180deg, #000 0%, #000 120px, transparent 220px);
  z-index: -1;
  pointer-events: none;
}

.about-hero-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 22, 0.1);
  background: rgba(255, 255, 255, 0.92);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e3634;
}

.about-hero h1 {
  max-width: 520px;
  margin: 18px auto 12px;
  font-size: clamp(2.2rem, 3.1vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.about-hero h1 span,
.about-hero h1 em {
  display: block;
}

.about-hero h1 em {
  color: var(--green);
  font-style: normal;
  margin-top: 2px;
}

.about-hero p {
  max-width: 474px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #3b4544;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.about-hero-action-icon {
  flex: 0 0 auto;
  display: block;
}

.hero-actions .btn-dark {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 0.74rem;
  line-height: 1;
  border-radius: 7px;
  background: #181818;
  border-color: #181818;
  color: #ffffff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-actions .btn-ghost {
  min-height: 34px;
  padding: 10px 6px;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #171717;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-actions .btn-dark .about-hero-action-icon {
  width: 12px;
  height: 12px;
}

.hero-actions .btn-ghost .about-hero-action-icon {
  width: 14px;
  height: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--page-shell);
  margin: 58px auto 0;
  padding: 0 var(--page-gutter);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 15px;
  border-radius: 8px;
  background: #f4f4f4;
  border: 1px solid rgba(17, 25, 23, 0.04);
  transition:
    transform var(--motion-duration-md) var(--motion-ease-standard),
    box-shadow var(--motion-duration-md) ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--motion-shadow-lift);
}

.stat-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.stat-icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.stat-card strong {
  display: block;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #5d6364;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 305px);
  align-items: start;
  gap: 22px;
}

.section-head-light {
  color: #ffffff;
}

.section-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: inherit;
  opacity: 0.86;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.section-title h2 span,
.section-title h2 em {
  display: block;
}

.section-title h2 em {
  color: var(--green);
  font-style: normal;
}

.presence-section {
  margin-top: 28px;
  padding: 54px 0 50px;
  background: #141414;
  color: #ffffff;
}

.presence-map-shell {
  max-width: 100%;
  margin: 24px 0 0;
  padding: 0;
}

.presence-map-shell img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.process-section {
  padding-top: 52px;
}

.process-grid {
  margin-top: 22px;
}

.process-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-flow-item {
  position: relative;
  text-align: center;
}

.process-flow-item::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  border-top: 1px solid #c8cfcc;
}

.process-flow-item:last-child::after {
  display: none;
}

.process-flow-index {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #c8cfcc;
  display: grid;
  place-items: center;
  font-family: 'InterVariable', 'Inter', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #2a8e68;
}

.process-flow-item strong {
  display: block;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-flow-item p {
  margin: 10px auto 0;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.45;
  color: #66726f;
}

.partner-strip {
  margin-top: 48px;
  background: #dbf4e4;
}

.partner-strip-inner {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 20px var(--page-gutter) 16px;
  text-align: center;
}

.partner-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5c6865;
}

.partner-logos {
  max-width: 860px;
  margin: 14px auto 0;
}

.leadership-section {
  padding-top: 50px;
}

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

.leader-card {
  position: relative;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  background: #dedede;
}

.leader-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.88) 100%);
  color: #ffffff;
  pointer-events: none;
}

.leader-summary,
.leader-detail {
  padding: 14px 12px 12px;
}

.leader-summary {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.leader-summary h3,
.leader-detail h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.leader-summary span,
.leader-detail > span:nth-of-type(2) {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.leader-detail {
  position: absolute;
  inset: auto 0 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 18px;
  background: rgba(28, 28, 28, 0.97);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.leader-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
}

.leader-detail p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}

.leader-card:hover .leader-summary,
.leader-card:focus-within .leader-summary {
  opacity: 0;
  transform: translateY(6px);
}

.leader-card:hover .leader-detail,
.leader-card:focus-within .leader-detail {
  opacity: 1;
  transform: translateY(0);
}

.about-testimonials {
  margin-top: 50px;
  padding: 58px 0 60px;
  background: #151515;
  color: #ffffff;
}

.about-testimonials .section-head {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  gap: 34px;
}

.about-testimonials .section-title h2 {
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  line-height: 0.96;
}

.about-testimonials .section-head p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-shell {
  max-width: calc(var(--page-shell) + 76px);
  margin: 40px auto 0;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 16px;
}

.testimonial-arrow {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.35s ease;
}

.testimonial-card {
  padding: 0 24px;
  box-sizing: border-box;
}

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

.testimonial-column {
  min-height: 286px;
  padding: 8px 34px 8px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-column + .testimonial-column {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 34px;
  padding-right: 18px;
}

.testimonial-column p {
  margin: 0;
  max-width: 390px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-person {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.testimonial-person strong {
  display: block;
  font-size: 17px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.testimonial-person span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.64);
}

.testimonial-person img {
  height: 34px;
  width: auto;
  max-width: 160px;
  opacity: 0.72;
}

.faq-section {
  padding-top: 50px;
  padding-bottom: 62px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-item {
  border-radius: 6px;
  border: 1px solid rgba(18, 29, 25, 0.06);
  background: #ffffff;
}

.faq-item.is-open {
  background: #f6f6f4;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 16px;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.34s ease;
}

.faq-answer-inner {
  padding: 0 16px 14px;
}

.faq-answer p {
  margin: 0;
  max-width: 840px;
  font-size: 13px;
  line-height: 1.68;
  color: #535b5b;
}

[data-animate] {
  opacity: var(--motion-opacity-start, 0);
  transform: translate3d(0, var(--motion-y-start, 22px), 0);
  transition:
    opacity var(--motion-duration, var(--motion-duration-md)) var(--motion-ease-standard) var(--motion-delay, 0ms),
    transform var(--motion-duration, var(--motion-duration-md)) var(--motion-ease-standard) var(--motion-delay, 0ms);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

[data-animate].in-view,
.site-header[data-animate] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-hero-copy > *,
.about-hero-copy .hero-actions > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--motion-duration-md) var(--motion-ease-standard),
    transform var(--motion-duration-md) var(--motion-ease-standard);
}

.about-hero-copy.in-view > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-hero-copy.in-view .hero-actions > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-hero-copy.in-view > *:nth-child(1) {
  transition-delay: 30ms;
}

.about-hero-copy.in-view > *:nth-child(2) {
  transition-delay: 90ms;
}

.about-hero-copy.in-view > *:nth-child(3) {
  transition-delay: 150ms;
}

.about-hero-copy .hero-actions > *:first-child {
  transition-delay: 190ms;
}

.about-hero-copy .hero-actions > *:last-child {
  transition-delay: 230ms;
}

@media (max-width: 1100px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .about-hero {
    padding-top: 34px;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .about-stats {
    margin-top: 44px;
  }

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

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    display: none;
  }

  .about-testimonials .section-head {
    gap: 18px;
  }

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

  .testimonial-column {
    min-height: 0;
    padding: 0 0 24px;
  }

  .testimonial-column + .testimonial-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 24px 0 0;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .process-section,
  .leadership-section,
  .faq-section,
  .about-testimonials .section-title-split,
  .presence-section .section-head {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-hero {
    padding-top: 26px;
  }

  .about-hero-copy {
    max-width: 100%;
  }

  .pill {
    min-height: 24px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .about-hero h1 {
    max-width: 290px;
    margin: 16px auto 12px;
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.04;
  }

  .about-hero p {
    max-width: 288px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-actions .btn-dark,
  .hero-actions .btn-ghost {
    min-height: 34px;
    font-size: 0.74rem;
  }

  .hero-actions .btn-dark {
    padding: 8px 12px;
  }

  .hero-actions .btn-ghost {
    padding: 10px 6px;
  }

  .about-stats,
  .testimonial-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 34px;
  }

  .stat-card {
    min-height: 52px;
    padding: 10px 10px 10px 12px;
    gap: 9px;
  }

  .stat-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .stat-card strong {
    font-size: 16px;
  }

  .stat-card span {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.35;
  }

  .section-head {
    gap: 12px;
    text-align: center;
  }

  .section-title h2 {
    font-size: 1.95rem;
    line-height: 1;
  }

  .section-head p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .presence-section {
    margin-top: 22px;
    padding: 36px 0 30px;
  }

  .presence-map-shell {
    margin-top: 20px;
  }

  .process-section {
    padding-top: 34px;
  }

  .process-grid {
    margin-top: 18px;
    overflow: visible;
    padding-bottom: 0;
  }

  .process-flow {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-flow-item {
    text-align: left;
    padding-left: 68px;
    min-height: 56px;
  }

  .process-flow-index {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .process-flow-item::after {
    top: 54px;
    left: 26px;
    width: 0;
    height: calc(100% - 38px);
    border-top: 0;
    border-left: 1px solid #c8cfcc;
  }

  .process-flow-item strong {
    margin-top: 2px;
    font-size: 16px;
  }

  .process-flow-item p {
    max-width: none;
    font-size: 13px;
  }

  .partner-strip {
    margin-top: 32px;
  }

  .partner-strip-inner {
    padding: 16px 12px 14px;
  }

  .partner-kicker {
    font-size: 10px;
  }

  .partner-logos {
    max-width: 100%;
    margin-top: 10px;
  }

  .leadership-section {
    padding-top: 34px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .leader-card {
    min-height: 200px;
  }

  .leader-summary,
  .leader-detail {
    padding: 10px 8px 8px;
  }

  .leader-summary h3,
  .leader-detail h3 {
    font-size: 12px;
  }

  .leader-summary span,
  .leader-detail > span:nth-of-type(2) {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.35;
  }

  .leader-detail {
    padding-top: 10px;
  }

  .leader-detail-icon {
    width: 14px;
    height: 14px;
    margin-bottom: 10px;
    font-size: 9px;
  }

  .leader-detail p {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
  }

  .about-testimonials {
    margin-top: 34px;
    padding: 36px 0 38px;
  }

  .about-testimonials .section-head {
    text-align: center;
  }

  .about-testimonials .section-head p {
    max-width: 250px;
    font-size: 12px;
  }

  .testimonial-shell {
    margin-top: 20px;
  }

  .testimonial-column {
    padding: 0 0 18px;
  }

  .testimonial-column + .testimonial-column {
    padding-top: 18px;
  }

  .testimonial-column p {
    font-size: 13px;
    line-height: 1.72;
  }

  .testimonial-person {
    margin-top: 18px;
    gap: 10px;
  }

  .testimonial-person strong {
    font-size: 12px;
  }

  .testimonial-person span {
    margin-top: 3px;
    font-size: 10px;
  }

  .testimonial-person img {
    height: 18px;
    max-width: 92px;
  }

  .faq-section {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .faq-list {
    gap: 8px;
    margin-top: 16px;
  }

  .faq-question {
    padding: 12px 12px;
    font-size: 12px;
    line-height: 1.48;
  }

  .faq-icon {
    font-size: 14px;
  }

  .faq-answer-inner {
    padding: 0 12px 12px;
  }

  .faq-answer p {
    font-size: 11px;
    line-height: 1.58;
  }

}
