.page-about {
  --page-blue-light: #102A44;
  --page-gold-faint: rgba(201, 163, 106, 0.18);
  --page-gold-line: rgba(201, 163, 106, 0.45);
  background: var(--white);
  color: var(--text-color);
  font-family: var(--font-body);
}
.page-about .breadcrumb {
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.page-about .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.page-about .breadcrumb a:hover,
.page-about .breadcrumb a:focus-visible {
  color: var(--royal-gold);
}
.page-about .breadcrumb__sep {
  color: var(--royal-gold);
  margin: 0 0.4rem;
}
.page-about .about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0c2036 62%, var(--page-blue-light) 100%);
  border-bottom: 1px solid var(--page-gold-line);
  color: var(--white);
  padding: 2.75rem 0 3.5rem;
  overflow: hidden;
}
.page-about .about-hero::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(201, 163, 106, 0.25);
  transform: rotate(40deg);
  pointer-events: none;
}
.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: 3.5rem;
  bottom: -5.5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(201, 163, 106, 0.16);
  transform: rotate(25deg);
  pointer-events: none;
}
.page-about .about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
}
.page-about .about-hero__content {
  min-width: 0;
}
.page-about .about-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--royal-gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page-about .about-hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.14;
  margin: 0 0 1.25rem;
  color: var(--white);
  max-width: 12ch;
}
.page-about .about-hero__title em {
  display: block;
  font-style: normal;
  color: var(--royal-gold);
}
.page-about .about-hero__lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
  margin-bottom: 1rem;
  max-width: 58ch;
}
.page-about .about-hero__text {
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
  max-width: 64ch;
}
.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.page-about .about-hero__actions .btn,
.page-about .team-content .btn {
  border: 1px solid var(--royal-gold);
  background: transparent;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 100%, 0 10px);
  transition: background 0.2s ease, color 0.2s ease;
}
.page-about .about-hero__actions .btn:hover,
.page-about .about-hero__actions .btn:focus-visible,
.page-about .team-content .btn:hover,
.page-about .team-content .btn:focus-visible {
  background: var(--royal-gold);
  color: var(--deep-blue);
  outline: none;
}
.page-about .about-hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
}
.page-about .about-hero__figure {
  margin: 0;
  align-self: center;
}
.page-about .about-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 100%, 0 14px);
}
.page-about .about-journey {
  padding: 4rem 0;
  background: var(--white);
}
.page-about .about-journey__layout {
  display: grid;
  gap: 2.5rem;
}
.page-about .about-journey__side {
  background: var(--cloud);
  border-left: 3px solid var(--royal-gold);
  padding: 1.5rem 1.4rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%, 0 0);
}
.page-about .about-journey__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--dark-gold);
  text-transform: uppercase;
}
.page-about .about-journey__quote {
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--deep-blue);
  margin: 0.8rem 0 1.5rem;
  border: 0;
  padding: 0;
}
.page-about .about-journey__stats {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-about .about-journey__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.5rem;
  gap: 1rem;
}
.page-about .about-journey__stat dt {
  font-size: 0.8rem;
  color: var(--mist);
}
.page-about .about-journey__stat dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  color: var(--deep-blue);
  font-weight: 600;
}
.page-about .about-journey__main {
  min-width: 0;
}
.page-about .section-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}
.page-about .section-heading__index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--royal-gold);
  border: 1px solid var(--royal-gold);
  padding: 0.15rem 0.4rem;
  line-height: 1;
}
.page-about .section-heading__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0;
  color: var(--deep-blue);
}
.page-about .section-heading__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--page-gold-line), transparent);
}
.page-about .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-about .timeline__item {
  display: grid;
  grid-template-columns: 4.4rem 14px 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
}
.page-about .timeline__item:last-child {
  padding-bottom: 0;
}
.page-about .timeline__year {
  font-family: var(--font-mono);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--royal-gold);
  text-align: right;
  line-height: 1.6;
  padding-top: 0.15rem;
}
.page-about .timeline__line {
  position: relative;
  display: block;
  width: 14px;
}
.page-about .timeline__line::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.3rem;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--royal-gold), rgba(201, 163, 106, 0.25));
}
.page-about .timeline__item:last-child .timeline__line::before {
  bottom: 0;
}
.page-about .timeline__line::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--deep-blue);
  border: 2px solid var(--royal-gold);
  transform: rotate(45deg);
}
.page-about .timeline__content {
  background: var(--cloud);
  border-left: 3px solid rgba(201, 163, 106, 0.5);
  padding: 1rem 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-about .timeline__item:hover .timeline__content {
  background: var(--wheat);
  transform: translateX(2px);
}
.page-about .timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--deep-blue);
  margin: 0 0 0.4rem;
}
.page-about .timeline__content p {
  font-size: 0.88rem;
  line-height: 1.66;
  color: var(--text-color);
  margin: 0;
}
.page-about .about-capability {
  background: var(--cloud);
  padding: 4rem 0;
}
.page-about .about-capability__intro {
  max-width: 62ch;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-about .capability-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.page-about .capability-stat {
  background: var(--white);
  border-top: 2px solid var(--royal-gold);
  padding: 1.15rem 0.9rem;
  box-shadow: 0 1px 8px rgba(10, 27, 46, 0.05);
}
.page-about .capability-stat dt {
  font-size: 0.76rem;
  color: var(--mist);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}
.page-about .capability-stat dd {
  margin: 0;
}
.page-about .capability-stat__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
}
.page-about .capability-details {
  display: grid;
  gap: 0.9rem;
}
.page-about .capability-details__item {
  background: var(--white);
  border-right: 3px solid var(--royal-gold);
  padding: 1.4rem 1.25rem;
}
.page-about .capability-details__item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--deep-blue);
  margin: 0 0 0.55rem;
}
.page-about .capability-details__item p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-color);
  margin: 0;
}
.page-about .about-certification {
  padding: 4rem 0;
  background: var(--white);
}
.page-about .certification-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2rem;
}
.page-about .certification-hero h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin: 0 0 0.6rem;
}
.page-about .certification-hero p {
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 55ch;
}
.page-about .certification-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-about .certification-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.9rem;
}
.page-about .certification-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.42rem;
  font-size: 0.65rem;
  color: var(--royal-gold);
}
.page-about .certification-awards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.page-about .cert-card {
  perspective: 1400px;
  height: 210px;
}
.page-about .cert-card__inner {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.page-about .cert-card:hover .cert-card__inner,
.page-about .cert-card:focus-within .cert-card__inner {
  transform: rotateY(180deg);
}
.page-about .cert-card__front,
.page-about .cert-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 100%, 0 14px);
}
.page-about .cert-card__front {
  background: var(--deep-blue);
  color: var(--white);
}
.page-about .cert-card__back {
  background: var(--royal-gold);
  color: var(--deep-blue);
  transform: rotateY(180deg);
}
.page-about .cert-card__icon {
  color: var(--royal-gold);
  margin-bottom: 0.55rem;
}
.page-about .cert-card__front h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: inherit;
  margin: 0 0 0.3rem;
}
.page-about .cert-card__front p,
.page-about .cert-card__back p {
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}
.page-about .cert-card:focus-visible {
  outline: 2px solid var(--royal-gold);
  outline-offset: 4px;
}
.page-about .certification-figure {
  margin: 0;
}
.page-about .certification-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.page-about .about-team {
  position: relative;
  background: var(--deep-blue);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}
.page-about .about-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.page-about .about-team .container {
  position: relative;
  z-index: 1;
}
.page-about .about-team .section-heading__title {
  color: var(--white);
}
.page-about .about-team .section-heading__rule {
  background: linear-gradient(to right, var(--page-gold-line), transparent);
}
.page-about .team-layout {
  display: grid;
  gap: 2rem;
}
.page-about .team-content p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.page-about .team-figure {
  margin: 0;
}
.page-about .team-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 100%, 0 18px);
}
.page-about .about-principles {
  background: var(--cloud);
  padding: 4rem 0;
}
.page-about .principles-grid {
  display: grid;
  gap: 1.25rem;
}
.page-about .principle {
  background: var(--white);
  border-top: 3px solid var(--royal-gold);
  padding: 1.6rem 1.4rem;
}
.page-about .principle__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--royal-gold);
}
.page-about .principle h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin: 0.45rem 0 0.6rem;
}
.page-about .principle p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-color);
  margin: 0;
}
.page-about .principles-note {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--wheat);
  border-left: 4px solid var(--royal-gold);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-about .principles-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--deep-blue);
}
.page-about .principles-note a {
  color: var(--dark-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--dark-gold);
  white-space: nowrap;
}
@supports (animation-timeline: view()) {
  .page-about .timeline__item {
    animation: page-about-reveal linear both;
    animation-timeline: view(block 80% 10%);
  }
}
@keyframes page-about-reveal {
  from {
    opacity: 0.2;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 620px) {
  .page-about .about-journey__layout {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }
  .page-about .capability-details {
    grid-template-columns: 1fr 1fr;
  }
  .page-about .certification-awards {
    grid-template-columns: 1fr 1fr;
  }
  .page-about .principles-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .page-about .about-hero {
    padding: 3.5rem 0 4.5rem;
  }
  .page-about .about-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
  .page-about .about-hero__title {
    font-size: 2.6rem;
  }
  .page-about .capability-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-about .capability-details {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-about .certification-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
  .page-about .team-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .page-about .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1080px) {
  .page-about .about-journey__layout {
    grid-template-columns: 270px 1fr;
    gap: 3.5rem;
  }
  .page-about .about-journey__side {
    position: sticky;
    top: 6.5rem;
    align-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-about .cert-card__inner {
    transition: none;
    transform: none;
  }
  .page-about .about-hero__actions .btn,
  .page-about .team-content .btn,
  .page-about .timeline__content {
    transition: none;
  }
  .page-about .timeline__item {
    animation: none;
  }
}
