.page-about {
  --about-marker: 18px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 107, 0, .16), transparent 30%),
    linear-gradient(180deg, var(--clr-bg-deep) 0%, var(--clr-bg-deep) 540px, var(--clr-bg-silver) 540px, var(--clr-bg-silver) 100%);
  color: var(--clr-text);
  padding-bottom: 72px;
}
.page-about .breadcrumb {
  padding-top: 24px;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, .66);
}
.page-about .breadcrumb a {
  color: rgba(255, 255, 255, .86);
}
.page-about .about-breadcrumb-sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255, 255, 255, .45);
}
.page-about .section-index {
  display: block;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-about .section-head {
  margin-bottom: 20px;
}
.page-about .about-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 24px 56px;
  background: linear-gradient(135deg, var(--clr-bg-deep) 0%, #132a5d 68%, var(--clr-jewel-teal) 150%);
  border-radius: 20px;
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  color: var(--clr-white);
}
.page-about .about-hero::before {
  content: "";
  position: absolute;
  right: -44px;
  top: 110px;
  width: 230px;
  height: 48px;
  background: var(--clr-accent);
  opacity: .9;
  transform: rotate(-14deg);
  border-radius: 4px;
}
.page-about .about-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -48px;
  width: 260px;
  height: 72px;
  background: var(--clr-jewel-indigo);
  opacity: .55;
  transform: rotate(9deg);
  border-radius: 6px;
}
.page-about .about-hero-copy,
.page-about .about-hero-media {
  position: relative;
  z-index: 1;
}
.page-about .about-hero .section-index {
  color: var(--clr-accent-soft);
}
.page-about .about-hero-title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 5.4vw, 3.2rem);
  line-height: 1.08;
  color: var(--clr-white);
  max-width: 15em;
}
.page-about .about-hero-lead {
  margin: 0 0 14px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  max-width: 36em;
}
.page-about .about-hero-text {
  margin: 0 0 24px;
  font-size: .94rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .7);
  max-width: 40em;
}
.page-about .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.page-about .about-hero .btn-primary {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}
.page-about .about-hero .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: var(--clr-white);
}
.page-about .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.page-about .about-hero-stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  padding: 14px 14px 12px;
}
.page-about .about-hero-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-accent-soft);
}
.page-about .about-hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .64);
}
.page-about .about-hero-media {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 30px 66px -36px rgba(0, 0, 0, .7);
}
.page-about .about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about .about-mission-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.page-about .about-mission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--clr-white);
  border: 1px solid rgba(10, 31, 68, .1);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.page-about .about-mission-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .92rem;
  color: var(--clr-accent);
}
.page-about .about-mission-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}
.page-about .about-timeline-panel {
  margin-top: 48px;
  padding: 36px 22px 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f1f4f9 0%, var(--clr-bg-silver) 100%);
  border: 1px solid rgba(10, 31, 68, .08);
  box-shadow: var(--shadow-panel);
}
.page-about .about-timeline-swoosh {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 44px;
  margin: 8px 0 4px;
}
.page-about .about-timeline-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0 42px;
  padding: 18px;
  background: var(--clr-white);
  border-left: 4px solid var(--clr-accent);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.page-about .about-timeline-note-copy h3 {
  margin: 10px 0 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.page-about .about-timeline-note-copy p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--clr-text);
}
.page-about .about-timeline-note-media {
  aspect-ratio: 600 / 400;
  border-radius: 12px;
  overflow: hidden;
  background: var(--clr-jewel-teal);
}
.page-about .about-timeline-note-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-about .about-timeline-rail {
  position: relative;
  margin: 0;
}
.page-about .about-timeline-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 2px;
  background: var(--clr-accent);
  opacity: .32;
}
.page-about .about-timeline-item {
  position: relative;
  padding: 0 0 36px 56px;
}
.page-about .about-timeline-marker {
  position: absolute;
  left: 8px;
  top: 6px;
  width: var(--about-marker);
  height: var(--about-marker);
  border-radius: 50%;
  background: var(--clr-accent);
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-accent);
}
.page-about .about-timeline-card {
  background: var(--clr-white);
  border-radius: 14px;
  padding: 18px 18px 16px;
  border-top: 3px solid var(--clr-jewel-teal);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-about .about-timeline-item:nth-child(even) .about-timeline-card {
  border-top-color: var(--clr-jewel-wine);
}
.page-about .about-timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, .4);
  border-top-color: var(--clr-accent);
}
.page-about .about-timeline-year {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--clr-accent);
  background: rgba(255, 107, 0, .1);
  border-radius: 999px;
}
.page-about .about-timeline-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.3;
}
.page-about .about-timeline-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(30, 42, 56, .82);
}
.page-about .about-timeline-footnote {
  margin: 8px 0 0;
  font-size: .84rem;
  color: rgba(30, 42, 56, .68);
  text-align: right;
}
.page-about .about-timeline-footnote a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-about .about-philosophy-panel {
  margin-top: 48px;
  padding: 36px 22px 40px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--clr-jewel-indigo) 0%, #211744 96%);
  color: var(--clr-white);
  overflow: hidden;
  position: relative;
}
.page-about .about-philosophy-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 107, 0, .13);
}
.page-about .about-philosophy-panel .section-title {
  color: var(--clr-white);
}
.page-about .about-philosophy-panel .section-lead {
  color: rgba(255, 255, 255, .68);
}
.page-about .about-philosophy-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.page-about .about-philosophy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  transition: background .2s ease, border-color .2s ease;
}
.page-about .about-philosophy-item:hover {
  border-color: var(--clr-accent);
  background: rgba(255, 255, 255, .11);
}
.page-about .about-philosophy-num {
  min-width: 2.1em;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-accent-soft);
}
.page-about .about-philosophy-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--clr-white);
}
.page-about .about-philosophy-item p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}
.page-about .about-philosophy-more {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}
.page-about .about-philosophy .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: var(--clr-white);
}
.page-about .about-team-panel {
  margin-top: 48px;
  padding: 36px 22px 40px;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--clr-jewel-wine) 0%, #431620 97%);
  color: var(--clr-white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.page-about .about-team-copy,
.page-about .about-team-media {
  position: relative;
  z-index: 1;
}
.page-about .about-team-copy .section-index {
  color: #ffb27a;
}
.page-about .about-team-copy .section-title {
  color: var(--clr-white);
}
.page-about .about-team-copy > p {
  margin: 0 0 20px;
  font-size: .93rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
}
.page-about .about-team-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.page-about .about-team-facts li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  font-size: .86rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .82);
}
.page-about .about-team-fact-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffb27a;
  margin-bottom: 2px;
}
.page-about .about-team-honors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.page-about .about-team-honors .tag {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: var(--clr-white);
  font-size: .78rem;
}
.page-about .about-team-contact {
  margin: 0 0 18px;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .76);
}
.page-about .about-team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-about .about-team .btn-primary {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}
.page-about .about-team .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: var(--clr-white);
}
.page-about .about-team-media {
  aspect-ratio: 700 / 500;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 50px -30px rgba(0, 0, 0, .6);
}
.page-about .about-team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  .page-about .about-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-about .about-mission-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-about .about-timeline-note {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .page-about .about-timeline-note-copy {
    order: 2;
  }
  .page-about .about-timeline-note-media {
    order: 1;
  }
  .page-about .about-team-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 900px) {
  .page-about .about-hero {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 48px;
    padding: 68px 64px 82px;
  }
  .page-about .about-hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  }
  .page-about .about-mission-strip {
    margin-top: 24px;
  }
  .page-about .about-timeline-panel,
  .page-about .about-philosophy-panel,
  .page-about .about-team-panel {
    padding: 56px 64px;
  }
  .page-about .about-timeline-rail::before {
    left: 50%;
    transform: translateX(-1px);
    opacity: .45;
    background: linear-gradient(180deg, var(--clr-accent) 0%, var(--clr-jewel-indigo) 90%);
  }
  .page-about .about-timeline-item {
    width: calc(50% - 54px);
    margin-left: calc(50% + 54px);
    padding: 0;
  }
  .page-about .about-timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
  }
  .page-about .about-timeline-marker {
    left: -63px;
    right: auto;
    top: 4px;
  }
  .page-about .about-timeline-item:nth-child(odd) .about-timeline-marker {
    left: calc(100% + 45px);
    right: auto;
  }
  .page-about .about-philosophy-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page-about .about-philosophy-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 18px;
  }
  .page-about .about-philosophy-item:nth-child(2) {
    margin-top: 24px;
  }
  .page-about .about-philosophy-item:nth-child(3) {
    margin-top: 8px;
  }
  .page-about .about-team-panel {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }
  .page-about .about-team-copy {
    order: 2;
  }
  .page-about .about-team-media {
    order: 1;
  }
}
