.page-about .breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mid-gray);
}
.page-about .breadcrumbs a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-about .breadcrumbs a:hover {
  color: var(--accent-orange);
}
.page-about .breadcrumbs__sep {
  margin: 0 6px;
  color: var(--mid-gray);
}

.page-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 14px;
}
.page-about__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.page-about__hero {
  position: relative;
  padding: 32px 0 56px;
  overflow: hidden;
}
.page-about__hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--light-gray);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 0;
}
.page-about__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-about__hero-copy h1 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary-blue);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.page-about__hero-copy .lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0 0 16px;
}
.page-about__hero-copy > p:not(.lead) {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-gray);
  margin: 0 0 24px;
}
.page-about__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.page-about .page-about__mini-stats .stat-block {
  background: var(--light-gray);
  padding: 16px 12px;
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 6px 6px 0;
}
.page-about .page-about__mini-stats .stat-block__value {
  display: block;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 6px;
}
.page-about .page-about__mini-stats .stat-block__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.4;
}
.page-about__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-about__hero-media .image-frame {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.page-about .image-frame.page-about__hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about__milestone {
  position: relative;
}
.page-about__milestone-grid {
  display: grid;
  gap: 36px;
  margin-top: 36px;
}
.page-about__timeline {
  position: relative;
  padding-left: 28px;
}
.page-about__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    135deg,
    var(--accent-orange) 0px,
    var(--accent-orange) 6px,
    var(--secondary-blue) 6px,
    var(--secondary-blue) 12px
  );
  opacity: 0.6;
}
.page-about__timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.page-about__timeline-item:last-child {
  padding-bottom: 0;
}
.page-about__timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.18);
  border: 2px solid var(--white);
}
.page-about__timeline-year {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.page-about__timeline-year::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin-top: 6px;
}
.page-about__timeline-body {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent-orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-about__timeline-body:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.page-about__timeline-body h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 8px;
}
.page-about__timeline-body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0 0 12px;
}
.page-about__milestone-chart {
  align-self: start;
}
.page-about .image-frame.page-about__chart-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.page-about .image-frame.page-about__chart-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-about__chart-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
  background: var(--light-gray);
  border-left: 3px solid var(--secondary-blue);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0 0;
}

.page-about__team {
  position: relative;
}
.page-about__team-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.page-about__team-media {
  position: relative;
}
.page-about .image-frame.page-about__media-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.page-about .image-frame.page-about__media-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-about__hex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.page-about__hex {
  width: 36px;
  height: 42px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.page-about__hex:nth-child(1) {
  background: var(--accent-orange);
}
.page-about__hex:nth-child(2) {
  background: var(--secondary-blue);
}
.page-about__hex:nth-child(3) {
  background: var(--info-yellow);
}
.page-about__hex:nth-child(4) {
  background: var(--success-green);
}
.page-about__hex:nth-child(5) {
  background: var(--secondary-blue);
}
.page-about__hex:nth-child(6) {
  background: var(--accent-orange);
}
.page-about__hex:hover {
  transform: translateY(-6px);
  opacity: 0.85;
}
.page-about__team-copy h2 {
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--primary-blue);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.page-about__team-copy > p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-gray);
  margin: 0 0 12px;
}
.page-about__team-note {
  background: var(--light-gray);
  border-left: 3px solid var(--info-yellow);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  color: var(--dark-gray);
  margin: 0 0 20px;
}
.page-about__team-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-about__team-list li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.5;
}
.page-about__team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background: var(--accent-orange);
}
.page-about__team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.page-about .page-about__team-stats .stat-block {
  background: var(--light-gray);
  padding: 14px 12px;
  border-radius: 8px;
  border-top: 3px solid var(--secondary-blue);
}
.page-about .page-about__team-stats .stat-block__value {
  display: block;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 4px;
}
.page-about .page-about__team-stats .stat-block__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark-gray);
  line-height: 1.4;
}

.page-about__credential {
  position: relative;
  overflow: hidden;
}
.page-about__credential::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: var(--accent-orange);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.06;
  z-index: 0;
}
.page-about__credential > .page-container {
  position: relative;
  z-index: 1;
}
.page-about__credential-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.page-about__credential-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--primary-blue);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-about__credential-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.page-about__credential-card:nth-child(2) {
  border-top-color: var(--accent-orange);
}
.page-about__credential-card:nth-child(3) {
  border-top-color: var(--success-green);
}
.page-about__credential-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  background: var(--primary-blue);
  border-radius: 6px;
  margin-bottom: 16px;
}
.page-about__credential-card:nth-child(2) .page-about__credential-badge {
  background: var(--accent-orange);
}
.page-about__credential-card:nth-child(3) .page-about__credential-badge {
  background: var(--success-green);
}
.page-about__credential-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--primary-blue);
  margin: 0 0 10px;
  line-height: 1.4;
}
.page-about__credential-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-gray);
  margin: 0;
}

.page-about__mission {
  margin: 44px 0 0;
  padding: 28px 24px;
  background: var(--primary-blue);
  border-radius: 12px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-about__mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent-orange);
}
.page-about__mission-copy .page-about__eyebrow {
  color: var(--accent-orange);
}
.page-about__mission-copy h2 {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--white);
  margin: 0 0 14px;
}
.page-about__mission-copy p:last-child {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.page-about__mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 24px;
}
.page-about .page-about__mission-stats .stat-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-orange);
}
.page-about .page-about__mission-stats .stat-block__value {
  display: block;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.page-about .page-about__mission-stats .stat-block__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}
.page-about__trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-about .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.page-about .btn--ghost:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

@media (min-width: 768px) {
  .page-about__hero {
    padding: 56px 0 72px;
  }
  .page-about__hero-copy h1 {
    font-size: 40px;
  }
  .page-about__mini-stats {
    gap: 16px;
  }
  .page-about__milestone-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: start;
  }
  .page-about__team-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }
  .page-about__credential-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .page-about__mission {
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }
  .page-about__mission-copy {
    padding-right: 16px;
  }
  .page-about__mission-stats {
    margin: 0 0 20px;
  }
  .page-about__trust-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-about__hero {
    padding: 72px 0 96px;
  }
  .page-about__hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
  .page-about__hero-copy h1 {
    font-size: 46px;
    line-height: 1.15;
  }
  .page-about__hero-media {
    transform: translateY(12px);
  }
  .page-about__milestone-grid {
    gap: 72px;
    margin-top: 48px;
  }
  .page-about__team-grid {
    gap: 72px;
  }
  .page-about__team-copy h2 {
    font-size: 36px;
  }
  .page-about__credential-grid {
    gap: 28px;
  }
  .page-about__mission {
    padding: 44px 48px;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .page-about__mission-copy h2 {
    font-size: 30px;
  }
}
