


.about-hero {
  padding: var(--space-5) 0 var(--space-10);
  overflow: hidden;
  background: var(--color-white);
}

.about-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.about-hero__content {
  max-width: 680px;
}

.about-hero h1 {
  max-width: 700px;
  margin-bottom: var(--space-5);
  font-size: clamp(46px, 4.55vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about-hero__summary {
  max-width: 650px;
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
  font-size: 20px;
  line-height: 1.65;
}

.about-hero__note {
  padding-left: var(--space-4);
  margin-bottom: var(--space-6);
  border-left: 3px solid var(--color-emphasis);
  color: var(--color-text-muted);
  font-size: 15px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.about-hero__visual {
  position: relative;
  width: min(100%, 530px);
  justify-self: end;
  margin: 0;
}

.about-hero__visual::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -32px;
  width: 66%;
  height: 46%;
  border-radius: var(--radius-xl);
  background: var(--color-blue-tint);
  content: "";
}

.about-hero__photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgb(0 36 107 / 10%);
  border-radius: var(--radius-xl);
  background: var(--color-blue-tint);
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
}

.about-hero__visual figcaption {
  position: relative;
  z-index: 2;
  width: 76%;
  padding: var(--space-4) var(--space-5);
  margin: -42px 0 0 -28px;
  border: var(--border-default);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-overlay);
}

.about-hero__visual figcaption span,
.about-hero__visual figcaption strong {
  display: block;
}

.about-hero__visual figcaption span {
  margin-bottom: 2px;
  color: var(--color-action);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-hero__visual figcaption strong {
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.4;
}

.about-story {
  background: var(--color-surface);
}

.about-story__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
}

.about-story h2 {
  max-width: 520px;
  font-size: clamp(36px, 4vw, 52px);
}

.about-story__copy > p {
  color: var(--color-text-secondary);
  font-size: 18px;
}

.about-story blockquote {
  padding: var(--space-6) 0 0 var(--space-6);
  margin: var(--space-7) 0 0;
  border-top: var(--border-default);
  border-left: 4px solid var(--color-emphasis);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

.about-purpose {
  padding-block: var(--space-10);
  background: var(--color-white);
}

.about-purpose__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--color-blue-tint);
}

.about-purpose article {
  min-height: 340px;
  padding: clamp(32px, 5vw, 64px);
  background: var(--color-blue-tint);
}

.about-purpose article:first-of-type {
  border-right: var(--border-default);
}

.about-purpose article:first-of-type h3,
.about-purpose article:first-of-type p:not(.section-eyebrow) {
  color: inherit;
}

.about-purpose article:first-of-type h3,
.about-purpose article:last-of-type h3 {
  color: var(--color-brand);
}

.about-purpose article:first-of-type p:not(.section-eyebrow),
.about-purpose article:last-of-type p:not(.section-eyebrow) {
  color: var(--color-text-secondary);
}

.about-purpose h3 {
  max-width: 510px;
  font-size: clamp(28px, 3vw, 38px);
}

.about-purpose article > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--color-text-secondary);
}

.about-approach {
  padding-top: var(--space-9);
}

.approach-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--color-brand);
}

.approach-rail article {
  position: relative;
  padding: var(--space-7) var(--space-5) 0 0;
}

.approach-rail article + article {
  padding-left: var(--space-5);
  border-left: var(--border-default);
}

.approach-rail article::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-action);
  box-shadow: 0 0 0 1px var(--color-action);
  content: "";
}

.approach-rail article + article::before {
  left: var(--space-5);
}

.approach-rail span {
  display: block;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.approach-rail h3 {
  margin-bottom: var(--space-3);
  font-size: 24px;
}

.approach-rail p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.about-founders {
  background: var(--color-surface);
}

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

.founder-profile {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  min-height: 540px;
  overflow: hidden;
  border: var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--color-white);
}

.founder-profile__image {
  min-height: 100%;
  overflow: hidden;
  background: var(--color-blue-tint);
}

.founder-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-profile__content {
  display: flex;
  flex-direction: column;
  padding: var(--space-7) var(--space-6);
}

.founder-profile__role {
  margin-bottom: var(--space-2);
  color: var(--color-action);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin-bottom: var(--space-2);
  font-size: 28px;
}

.founder-profile__specialism {
  margin-bottom: var(--space-5);
  color: var(--color-text-strong);
  font-weight: 600;
  line-height: 1.5;
}

.founder-profile ul {
  display: grid;
  gap: var(--space-3);
  padding: 0;
  margin: 0 0 var(--space-6);
  color: var(--color-text-secondary);
  font-size: 15px;
  list-style: none;
}

.founder-profile li {
  position: relative;
  padding-left: var(--space-5);
}

.founder-profile li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--color-emphasis);
  content: "";
}

.founder-profile .text-link {
  margin-top: auto;
}

.about-system {
  overflow: hidden;
  background: var(--color-navy);
}

.growth-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(250px, 0.42fr);
  align-items: center;
  gap: var(--space-5);
}

.growth-system__inputs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-3);
}

.growth-system__inputs span {
  display: grid;
  min-height: 106px;
  place-items: center;
  padding: var(--space-4);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-md);
  background: var(--color-navy-surface);
  color: rgb(255 255 255 / 82%);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.growth-system__connector {
  position: relative;
  height: 2px;
  background: rgb(45 115 253 / 58%);
}

.growth-system__connector::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-action);
  border-right: 2px solid var(--color-action);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.growth-system__outcome {
  display: grid;
  min-height: 176px;
  align-content: center;
  padding: var(--space-6);
  border: 2px solid rgb(45 115 253 / 72%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 9%);
  box-shadow: 0 18px 44px rgb(0 0 0 / 18%);
}

.growth-system__outcome small {
  margin-bottom: var(--space-2);
  color: var(--color-emphasis);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.growth-system__outcome strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.35;
}

.service-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  padding-top: var(--space-7);
  margin-top: var(--space-7);
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.service-link-row a {
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.service-link-row a:hover,
.service-link-row a:focus-visible {
  color: var(--color-white);
}

.about-team__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.about-team .section-header {
  margin-bottom: 0;
}

.team-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.team-placeholder {
  display: grid;
  min-height: 224px;
  align-content: center;
  justify-items: center;
  padding: var(--space-5);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  text-align: center;
}

.team-placeholder > span {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-5);
  border-radius: 50%;
  background: var(--color-blue-tint);
}

.team-placeholder > span::before,
.team-placeholder > span::after {
  position: absolute;
  left: 50%;
  border: 2px solid var(--color-action);
  content: "";
  transform: translateX(-50%);
}

.team-placeholder > span::before {
  top: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.team-placeholder > span::after {
  bottom: 13px;
  width: 34px;
  height: 18px;
  border-radius: 20px 20px 8px 8px;
}

.team-placeholder strong {
  margin-bottom: var(--space-2);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 15px;
}

.team-placeholder small {
  color: var(--color-text-muted);
  font-size: 13px;
}

.about-proof {
  padding-block: var(--space-7);
  border-block: var(--border-default);
  background: var(--color-blue-tint);
}

.about-proof__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.65fr)) minmax(260px, 1.25fr);
  align-items: center;
}

.about-proof__row > div {
  padding: 0 var(--space-6);
  border-right: var(--border-default);
}

.about-proof__row > div:first-child {
  padding-left: 0;
}

.about-proof__row strong,
.about-proof__row span {
  display: block;
}

.about-proof__row strong {
  margin-bottom: var(--space-2);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.about-proof__row span {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.about-proof__row nav {
  display: grid;
  justify-items: end;
  gap: var(--space-2);
  padding-left: var(--space-6);
}

.about-logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: var(--border-default);
  border-left: var(--border-default);
}

.about-logo-wall > div {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: var(--space-5);
  border-right: var(--border-default);
  border-bottom: var(--border-default);
}

.about-logo-wall img {
  width: 100%;
  max-width: 168px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter var(--motion-fast), opacity var(--motion-fast);
}

.about-logo-wall > div:hover img {
  filter: grayscale(1);
  opacity: 1;
}

.about-industries {
  background: var(--color-surface);
}

.about-industries__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-brand);
  list-style: none;
}

.industry-list li {
  position: relative;
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-7);
  border-bottom: var(--border-default);
  color: var(--color-text-strong);
  font-weight: 600;
}

.industry-list li::before {
  position: absolute;
  top: 50%;
  left: var(--space-4);
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-action);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.working-rhythm {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.working-rhythm li {
  position: relative;
  min-height: 220px;
  padding: var(--space-6) var(--space-5);
  border-top: 2px solid var(--color-brand);
  border-bottom: var(--border-default);
}

.working-rhythm li + li {
  border-left: var(--border-default);
}

.working-rhythm li::after {
  position: absolute;
  z-index: 1;
  top: 47px;
  right: -7px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-action);
  border-right: 2px solid var(--color-action);
  background: var(--color-white);
  content: "";
  transform: rotate(45deg);
}

.working-rhythm li:last-child::after {
  content: none;
}

.working-rhythm span,
.working-rhythm strong {
  display: block;
}

.working-rhythm span {
  margin-bottom: var(--space-5);
  color: var(--color-action);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.working-rhythm strong {
  margin-bottom: var(--space-3);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 20px;
}

.working-rhythm p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.working-practices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  padding-top: var(--space-6);
}

.working-practices span {
  padding: var(--space-2) var(--space-4);
  border: var(--border-default);
  border-radius: 999px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.about-discovery {
  padding-block: var(--space-9);
  background: var(--color-blue-tint);
}

.about-discovery__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.about-discovery h2 {
  max-width: 530px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 50px);
}

.about-discovery__layout > div:last-child p {
  color: var(--color-text-secondary);
  font-size: 17px;
}

.about-reviews {
  background: var(--color-white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.review-grid figure {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: var(--space-6);
  margin: 0;
  border-top: 3px solid var(--color-brand);
  background: var(--color-surface);
}

.review-stars {
  margin-bottom: var(--space-5);
  color: #1e5ed8;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-grid blockquote {
  margin: 0 0 var(--space-6);
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.review-grid figcaption {
  margin-top: auto;
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-values {
  background: var(--color-surface);
}

.about-values__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.about-values .section-header {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.value-list {
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--color-brand);
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: var(--border-default);
}

.value-list li > span {
  color: var(--color-action);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.value-list h3 {
  margin-bottom: var(--space-2);
  font-size: 22px;
}

.value-list p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.about-office__panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(260px, 0.72fr) minmax(280px, 0.78fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border: var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: 0 20px 60px rgb(7 20 38 / 7%);
}

.about-office__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--color-blue-tint);
}

.about-office__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-office__intro h2 {
  max-width: 690px;
  font-size: clamp(34px, 3.7vw, 48px);
}

.about-office__intro > p:last-child {
  margin: 0;
  color: var(--color-text-secondary);
}

.about-office address {
  display: grid;
  gap: var(--space-5);
  padding-left: var(--space-7);
  border-left: 2px solid var(--color-brand);
  font-style: normal;
}

.about-office address div {
  display: grid;
  gap: var(--space-1);
}

.about-office address span {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-office address strong,
.about-office address a {
  color: var(--color-text-strong);
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  text-decoration: none;
}

.about-final-cta {
  padding-block: var(--space-9);
  background: var(--color-navy);
}

.about-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-8);
  align-items: center;
}

.about-final-cta h2 {
  max-width: 760px;
  margin-bottom: var(--space-4);
  color: var(--color-white);
  font-size: clamp(34px, 4vw, 50px);
}

.about-final-cta p:not(.section-eyebrow) {
  margin: 0;
  color: rgb(255 255 255 / 72%);
}

.about-final-cta__actions {
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}

.about-footer {
  padding-top: var(--space-9);
  background: var(--color-navy-surface);
  color: var(--color-white);
}

.about-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
}

.about-footer__logo {
  display: inline-flex;
  width: 190px;
  margin-bottom: var(--space-5);
}

.about-footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-footer__grid p,
.about-footer__grid span {
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
}

.about-footer nav,
.about-footer address {
  display: grid;
  align-content: start;
  gap: var(--space-3);
  font-style: normal;
}

.about-footer h2 {
  margin-bottom: var(--space-2);
  color: var(--color-white);
  font-size: 16px;
}

.about-footer nav a,
.about-footer address a {
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
  text-decoration: none;
}

.about-footer nav a:hover,
.about-footer address a:hover {
  color: var(--color-white);
}

.about-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-5);
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.about-footer__bottom p {
  margin: 0;
  color: rgb(255 255 255 / 48%);
  font-size: 12px;
}

@media (max-width: 1199px) {
  .about-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: var(--space-7);
  }

  .about-hero h1 {
    font-size: clamp(44px, 4.7vw, 56px);
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-profile__image {
    min-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .founder-profile__image img {
    object-position: center 18%;
  }

  .growth-system {
    grid-template-columns: minmax(0, 1fr) 64px minmax(210px, 0.34fr);
  }

  .about-office__panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  .about-office__intro {
    grid-column: 1 / -1;
  }

  .growth-system__inputs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .growth-system__inputs span:nth-child(n + 4) {
    grid-column: span 1;
  }

  .about-proof__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: var(--space-6);
  }

  .about-proof__row nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    padding: var(--space-5) 0 0;
    border-top: var(--border-default);
  }

  .about-footer__grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: var(--space-5);
  }
}

@media (max-width: 899px) {
  .about-hero {
    padding-top: var(--space-4);
  }


  .about-hero__layout,
  .about-story__layout,
  .about-team__layout,
  .about-industries__layout,
  .about-discovery__layout,
  .about-values__layout,
  .about-office__panel,
  .about-final-cta__layout {
    grid-template-columns: 1fr;
  }

  .about-hero__layout {
    gap: var(--space-8);
  }

  .about-hero__visual {
    width: min(100%, 570px);
    justify-self: center;
  }

  .about-purpose__panel,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose article:first-of-type {
    border-right: 0;
    border-bottom: var(--border-default);
  }

  .about-purpose article {
    min-height: 0;
  }

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

  .approach-rail article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .approach-rail article:nth-child(3)::before {
    left: 0;
  }

  .founder-profile {
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    min-height: 500px;
  }

  .founder-profile__image {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .growth-system {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .growth-system__connector {
    width: 2px;
    height: 54px;
    justify-self: center;
  }

  .growth-system__connector::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .growth-system__outcome {
    min-height: 124px;
    text-align: center;
  }

  .about-team__layout {
    gap: var(--space-7);
  }

  .team-placeholder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .working-rhythm {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .working-rhythm li:nth-child(4) {
    border-left: 0;
  }

  .working-rhythm li:nth-child(3)::after,
  .working-rhythm li:last-child::after {
    content: none;
  }

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

  .review-grid figure:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .about-values .section-header {
    position: static;
  }

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

  .about-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding-bottom: var(--space-8);
  }

  .about-hero h1 {
    font-size: clamp(38px, 10.5vw, 44px);
  }

  .about-hero__summary {
    font-size: var(--mobile-body-large);
  }

  .about-hero__actions {
    display: grid;
  }

  .about-hero__visual::before {
    right: -16px;
  }

  .about-hero__visual figcaption {
    width: calc(100% - 32px);
    padding: var(--space-3) var(--space-4);
    margin: -32px auto 0;
  }

  .about-story blockquote {
    padding: var(--space-5) 0 0 var(--space-4);
    font-size: 22px;
  }

  .about-purpose {
    padding-block: var(--space-8);
  }

  .about-purpose article {
    padding: var(--space-6);
  }

  .approach-rail {
    grid-template-columns: 1fr;
  }

  .approach-rail article,
  .approach-rail article + article {
    padding: var(--space-6) 0;
    border-left: 0;
    border-bottom: var(--border-default);
  }

  .approach-rail article + article::before,
  .approach-rail article::before {
    left: 0;
  }

  .approach-rail span {
    margin-bottom: var(--space-3);
  }

  .founder-profile {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .founder-profile__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .founder-profile__content {
    padding: var(--space-6) var(--space-5);
  }

  .growth-system__inputs,
  .team-placeholder-grid,
  .about-logo-wall,
  .industry-list,
  .working-rhythm,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .growth-system__inputs span {
    min-height: 72px;
  }

  .service-link-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-placeholder-grid {
    gap: var(--space-3);
  }

  .team-placeholder {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 108px;
    align-items: center;
    justify-items: start;
    column-gap: var(--space-4);
    text-align: left;
  }

  .team-placeholder > span {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .team-placeholder > span::before {
    top: 10px;
    width: 14px;
    height: 14px;
  }

  .team-placeholder > span::after {
    bottom: 9px;
    width: 26px;
    height: 14px;
  }

  .about-proof__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
  }

  .about-proof__row > div,
  .about-proof__row > div:first-child {
    padding: 0 var(--space-2);
  }

  .about-proof__row strong {
    font-size: 28px;
  }

  .about-proof__row span {
    font-size: 13px;
  }

  .about-proof__row nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .about-logo-wall > div {
    min-height: 104px;
    padding: var(--space-4);
  }

  .about-logo-wall img {
    height: 54px;
  }

  .working-rhythm li,
  .working-rhythm li:nth-child(4) {
    min-height: 0;
    padding: var(--space-5) 0;
    border-left: 0;
  }

  .working-rhythm li::after {
    top: auto;
    right: auto;
    bottom: -7px;
    left: 18px;
    transform: rotate(135deg);
  }

  .working-rhythm li:nth-child(3)::after {
    content: "";
  }

  .working-rhythm span {
    margin-bottom: var(--space-2);
  }

  .review-grid figure,
  .review-grid figure:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .value-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--space-3);
  }

  .about-office__panel {
    padding: var(--space-6) var(--space-5);
  }

  .about-office__visual {
    aspect-ratio: 4 / 3;
  }

  .about-office address {
    padding: var(--space-6) 0 0;
    border-top: 2px solid var(--color-brand);
    border-left: 0;
  }

  .about-final-cta__actions {
    justify-items: stretch;
  }

  .about-final-cta__actions .text-link {
    justify-content: center;
  }

  .about-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-footer__grid > div:first-child {
    grid-column: auto;
  }

  .about-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .about-hero__photo {
    aspect-ratio: 4 / 5;
  }

  .about-proof__row {
    gap: 0;
  }

  .about-proof__row > div {
    min-height: 112px;
  }

  .about-proof__row > div:last-of-type {
    border-right: 0;
  }

  .service-link-row {
    grid-template-columns: 1fr;
  }
}
