.page-about {
  --about-card-bg: rgba(26, 58, 92, 0.55);
  --about-border: rgba(168, 195, 224, 0.16);
  background: var(--ink-blue);
  color: var(--text-primary);
}

.page-about .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.page-about .breadcrumbs a {
  color: var(--mist-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.page-about .breadcrumbs a:hover {
  border-color: var(--bright-orange);
  color: var(--bright-orange);
}

.page-about .breadcrumbs-sep {
  color: rgba(168, 195, 224, 0.4);
}

.page-about .about-hero {
  position: relative;
  padding: 3rem 0 4rem;
  background:
    linear-gradient(115deg, transparent 72%, rgba(255, 107, 0, 0.16) 72.5%, rgba(255, 107, 0, 0.16) 74%, transparent 74.5%),
    linear-gradient(115deg, transparent 84%, rgba(212, 175, 55, 0.12) 84.5%, rgba(212, 175, 55, 0.12) 86%, transparent 86.5%),
    radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, var(--ink-blue) 0%, var(--deep-blue) 60%, var(--light-blue) 100%);
  overflow: hidden;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 52%;
  height: 60%;
  background: linear-gradient(135deg, transparent 65%, var(--bright-orange) 65%, var(--bright-orange) 68%, transparent 68%);
  opacity: 0.2;
  transform: rotate(8deg);
  pointer-events: none;
}

.page-about .about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.page-about .about-hero-copy .eyebrow {
  color: var(--pale-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.page-about .about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 1.25rem;
  color: var(--off-white);
  position: relative;
  z-index: 1;
}

.page-about .about-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin-top: 1rem;
  background: var(--bright-orange);
  transform: skewX(-24deg);
}

.page-about .about-hero-lead {
  max-width: 36rem;
  color: var(--mist-blue);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.page-about .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 36rem;
}

.page-about .hero-stat {
  background: var(--about-card-bg);
  border: 1px solid var(--about-border);
  padding: 0.875rem 0.5rem 0.75rem;
  text-align: center;
  border-radius: 2px;
  transition: border-color 0.25s;
}

.page-about .hero-stat:hover {
  border-color: var(--gold);
}

.page-about .hero-stat .stat-number {
  display: block;
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.2;
}

.page-about .hero-stat .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.page-about .about-hero-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 24px 60px rgba(5, 16, 36, 0.5);
}

.page-about .about-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 12 / 5;
}

.page-about .about-hero-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(5, 16, 36, 0.72));
  color: var(--off-white);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.page-about .about-mission {
  padding: 4rem 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.page-about .about-mission::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: 2rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  transform: rotate(45deg);
  pointer-events: none;
}

.page-about .about-mission-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.page-about .about-mission-copy .eyebrow {
  color: var(--dark-orange);
  margin-bottom: 1rem;
}

.page-about .about-mission-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--deep-blue);
  margin: 0 0 1rem;
}

.page-about .about-mission-copy p {
  color: var(--slate);
  line-height: 1.75;
  max-width: 32rem;
  margin: 0 0 0.5rem;
}

.page-about .about-text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--dark-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--bright-orange);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}

.page-about .about-text-link:hover {
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}

.page-about .about-mission-points {
  display: grid;
  gap: 1rem;
}

.page-about .mission-point {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 58, 92, 0.12);
  border-left: 4px solid var(--bright-orange);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.page-about .mission-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(5, 16, 36, 0.08);
}

.page-about .mission-point-num {
  font-family: var(--font-data);
  font-size: 0.875rem;
  color: var(--bright-orange);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page-about .mission-point h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 0.25rem 0 0.5rem;
}

.page-about .mission-point p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.page-about .about-timeline {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(26, 58, 92, 0.85), transparent 42%),
    linear-gradient(180deg, var(--deep-blue) 0%, var(--light-blue) 100%);
  color: var(--off-white);
  overflow: hidden;
}

.page-about .about-mountain-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 0;
}

.page-about .about-timeline .container {
  position: relative;
  z-index: 1;
}

.page-about .about-section-head {
  margin-bottom: 3rem;
}

.page-about .about-section-head .eyebrow {
  color: var(--bright-orange);
  margin-bottom: 0.75rem;
}

.page-about .about-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--off-white);
  margin: 0 0 1rem;
}

.page-about .about-section-head p {
  color: var(--text-secondary);
  max-width: 38rem;
  line-height: 1.75;
  margin: 0;
}

.page-about .about-timeline-wrap {
  position: relative;
}

.page-about .about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.page-about .about-timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--bright-orange));
  border-radius: 2px;
}

.page-about .timeline-item {
  position: relative;
  padding-left: 2.5rem;
}

.page-about .timeline-dot {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
}

.page-about .timeline-item:hover .timeline-dot,
.page-about .timeline-item:focus-within .timeline-dot {
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.3), 0 0 24px rgba(212, 175, 55, 0.4);
  transform: scale(1.08);
}

.page-about .timeline-card {
  background: var(--about-card-bg);
  border-radius: 4px;
  padding: 1.5rem;
  border: 1px solid var(--about-border);
  border-top: 3px solid var(--bright-orange);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.page-about .timeline-item:hover .timeline-card,
.page-about .timeline-item:focus-within .timeline-card {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(5, 16, 36, 0.5);
}

.page-about .timeline-year {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.page-about .timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin: 0 0 0.625rem;
}

.page-about .timeline-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.page-about .timeline-data {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(168, 195, 224, 0.22);
}

.page-about .timeline-data-item {
  display: flex;
  flex-direction: column;
}

.page-about .timeline-data-num {
  font-family: var(--font-data);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
}

.page-about .timeline-data-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.page-about .about-growth-heading {
  margin: 3.5rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--off-white);
  text-align: center;
}

.page-about .about-growth-note {
  margin: 0 auto 1.5rem;
  max-width: 42rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
  text-align: center;
}

.page-about .about-growth-figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.page-about .about-growth-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-about .about-growth-figure figcaption {
  padding: 0.875rem 1rem;
  background: rgba(5, 16, 36, 0.6);
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.page-about .about-team {
  padding: 5rem 0;
  background: var(--off-white);
}

.page-about .about-team-head {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.page-about .about-team-head .eyebrow {
  color: var(--dark-orange);
  margin-bottom: 0.75rem;
}

.page-about .about-team-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--deep-blue);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.page-about .about-team-head p {
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

.page-about .about-team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-about .team-stat {
  background: var(--deep-blue);
  padding: 1.75rem 1rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.page-about .team-stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-orange), var(--gold));
}

.page-about .team-stat .stat-number {
  display: block;
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.2;
}

.page-about .team-stat .stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--mist-blue);
  margin-top: 0.375rem;
}

.page-about .about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-about .team-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 58, 92, 0.14);
  border-left: 4px solid var(--bright-orange);
  padding: 1.5rem;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.page-about .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(5, 16, 36, 0.1);
}

.page-about .team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 0 0 0.5rem;
}

.page-about .team-card-num {
  display: block;
  font-family: var(--font-data);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--bright-orange);
  line-height: 1.2;
  margin: 0.5rem 0 0.375rem;
}

.page-about .team-card-num em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--slate);
}

.page-about .team-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.page-about .about-cert {
  padding: 5rem 0;
  background: linear-gradient(150deg, var(--deep-blue) 0%, var(--ink-blue) 70%);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.page-about .about-cert::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 20%;
  width: 130%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.page-about .about-cert-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

.page-about .about-cert-copy .eyebrow {
  color: var(--pale-gold);
  margin-bottom: 0.75rem;
}

.page-about .about-cert-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.page-about .about-cert-copy > p {
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 34rem;
  margin: 0;
}

.page-about .about-cert-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.page-about .about-cert-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--off-white);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.page-about .about-cert-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.page-about .about-cert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-about .about-cert-actions .btn-ghost {
  border-color: var(--mist-blue);
  color: var(--off-white);
}

.page-about .about-cert-actions .btn-ghost:hover {
  background: var(--off-white);
  color: var(--deep-blue);
}

.page-about .about-cert-visual {
  display: grid;
  place-items: center;
  gap: 1rem;
}

.page-about .about-cert-flip {
  width: 220px;
  height: 220px;
  perspective: 1000px;
  cursor: pointer;
}

.page-about .about-cert-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.page-about .about-cert-flip:hover .about-cert-flip-inner,
.page-about .about-cert-flip:focus-within .about-cert-flip-inner {
  transform: rotateY(180deg);
}

.page-about .about-cert-front,
.page-about .about-cert-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-about .about-cert-front {
  border: 2px solid var(--gold);
}

.page-about .about-cert-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about .about-cert-back {
  background: var(--gold);
  color: var(--ink-blue);
  transform: rotateY(180deg);
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
  padding: 1.5rem;
}

.page-about .cert-back-code {
  display: block;
  font-family: var(--font-data);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.page-about .cert-back-name {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.page-about .about-cert-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}

.page-about .about-cta {
  padding: 4.5rem 0;
  background: var(--ink-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about .about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--bright-orange), var(--gold), var(--bright-orange));
}

.page-about .about-cta .eyebrow {
  color: var(--bright-orange);
}

.page-about .about-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--off-white);
  margin: 0 0 0.75rem;
}

.page-about .about-cta p {
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 auto 0.25rem;
  line-height: 1.7;
}

.page-about .about-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.page-about .about-cta-links .btn-ghost {
  border-color: var(--mist-blue);
  color: var(--off-white);
}

.page-about .about-cta-links .btn-ghost:hover {
  background: var(--off-white);
  color: var(--deep-blue);
}

@media (min-width: 640px) {
  .page-about .about-team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .page-about .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .about-cert-flip {
    width: 260px;
    height: 260px;
  }
}

@media (min-width: 960px) {
  .page-about .about-hero {
    padding: 5rem 0 6rem;
  }

  .page-about .about-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }

  .page-about .about-hero-figure img {
    aspect-ratio: 12 / 5;
  }

  .page-about .about-mission-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }

  .page-about .about-mission-points {
    gap: 1.25rem;
  }

  .page-about .about-timeline {
    padding: 6rem 0;
  }

  .page-about .about-timeline-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
    row-gap: 2.75rem;
  }

  .page-about .about-timeline-list::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-about .timeline-item {
    padding-left: 0;
  }

  .page-about .timeline-item:nth-child(odd) {
    grid-column: 1;
    padding-right: 3.5rem;
    text-align: right;
  }

  .page-about .timeline-item:nth-child(even) {
    grid-column: 2;
    padding-left: 3.5rem;
    margin-top: 4rem;
  }

  .page-about .timeline-item:nth-child(odd) .timeline-dot {
    left: auto;
    right: calc(-1.75rem - 8px);
  }

  .page-about .timeline-item:nth-child(even) .timeline-dot {
    left: calc(-1.75rem - 8px);
  }

  .page-about .timeline-item:nth-child(odd) .timeline-data {
    justify-items: end;
  }

  .page-about .about-growth-heading {
    margin-top: 5rem;
  }

  .page-about .about-team {
    padding: 6rem 0;
  }

  .page-about .about-team-stats {
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-about .about-team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-about .about-cert {
    padding: 6rem 0;
  }

  .page-about .about-cert-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }

  .page-about .about-cert-list {
    gap: 1rem;
  }

  .page-about .about-cta {
    padding: 5.5rem 0;
  }
}
