.page-about {
  --fold: 18px;
  --fold-accent: var(--c-orange);
  background: var(--c-light);
  color: var(--c-body);
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .9rem;
  color: var(--c-pale);
  position: relative;
  z-index: 1;
}

.page-about .breadcrumb a {
  color: var(--c-pale);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 106, 0, .7);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.page-about .breadcrumb a:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.page-about .breadcrumb [aria-hidden="true"] {
  color: rgba(255, 255, 255, .55);
}

.page-about .about-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 52px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, .04) 18px 20px),
    linear-gradient(135deg, #08192B 0%, var(--c-deep) 55%, #0B3A5E 100%);
  border-bottom: 8px solid var(--c-orange);
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--c-orange) 0 24px, var(--c-gold) 24px 26px, transparent 26px 44px);
  z-index: 1;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  border: 6px solid rgba(255, 209, 102, .28);
  transform: rotate(12deg);
  border-radius: 12px;
  pointer-events: none;
}

.page-about .about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

.page-about .about-hero-main h1 {
  margin: 12px 0 18px;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  color: var(--c-pale);
  letter-spacing: .01em;
  max-width: 15em;
}

.page-about .about-hero-main .hero-lede {
  max-width: 46em;
  color: rgba(232, 237, 242, .86);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.page-about .about-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 12px;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--font-data);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-about .about-hero-aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 4px solid var(--c-line);
}

.page-about .hero-fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, .06);
  min-height: 110px;
}

.page-about .hero-fact-num {
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

.page-about .hero-fact-label {
  color: var(--c-pale);
  font-size: .88rem;
  letter-spacing: .04em;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .page-about .about-hero {
    padding: 56px 0 68px;
  }

  .page-about .about-hero-grid {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, .8fr);
    gap: 56px;
    align-items: end;
    margin-top: 44px;
  }

  .page-about .about-hero-aside {
    grid-template-columns: 1fr;
    border-width: 6px;
    transform: rotate(1deg);
    box-shadow: 10px 12px 0 rgba(0, 0, 26, .35);
  }

  .page-about .hero-fact {
    min-height: 104px;
    padding: 22px 18px;
  }
}

.page-about .section-block {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .page-about .section-block {
    padding: 88px 0;
  }
}

.page-about .section-head {
  margin-bottom: 28px;
}

.page-about .section-note {
  font-family: var(--font-data);
  color: var(--c-orange);
  letter-spacing: .06em;
  font-size: .86rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.page-about .section-desc {
  color: var(--c-body);
  opacity: .78;
  max-width: 58em;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 8px;
}

.page-about .section-head h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.18;
  color: var(--c-deep);
  letter-spacing: -.01em;
}

.page-about .notes-grid {
  gap: 32px;
}

.page-about .notes-aside {
  position: relative;
  padding-top: 8px;
}

.page-about .aside-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: var(--c-teal);
  color: #fff;
  font-family: var(--font-data);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.page-about .aside-label-2 {
  margin-top: 28px;
}

.page-about .page-index {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 4px solid var(--c-deep);
}

.page-about .page-index li {
  border-bottom: 2px solid var(--c-line);
}

.page-about .page-index a {
  display: block;
  padding: 12px 4px 10px;
  color: var(--c-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.page-about .page-index a:hover {
  color: var(--c-orange);
  padding-left: 10px;
}

.page-about .aside-note {
  font-size: .9rem;
  color: var(--c-body);
  opacity: .72;
  line-height: 1.6;
  margin: 0;
}

.page-about .notes-aside .pull-quote {
  font-family: var(--font-quote);
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--c-deep);
  border-left: 6px solid var(--c-orange);
  padding-left: 18px;
  margin: 0 0 18px;
  max-width: 15em;
}

@media (min-width: 900px) {
  .page-about .notes-grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 64px;
  }

  .page-about .notes-aside {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .page-about .notes-aside .pull-quote {
    font-size: 1.4rem;
  }
}

.page-about .notes-main p {
  line-height: 1.8;
  color: var(--c-body);
  margin: 0 0 16px;
  max-width: 65em;
}

.page-about .notes-main p:last-child {
  margin-bottom: 0;
}

.page-about .notes-main a {
  color: var(--c-orange);
  font-weight: 700;
  text-underline-offset: 4px;
}

.page-about .brand-overview {
  background: linear-gradient(180deg, var(--c-light) 0%, #FFFFFF 12%, #FFFFFF 100%);
}

.page-about .about-stat-grid {
  margin: 28px 0;
  border-top: 4px solid var(--c-deep);
  border-bottom: 4px solid var(--c-deep);
  padding: 18px 0;
}

.page-about .milestones {
  background:
    linear-gradient(180deg, var(--c-ink) 0%, var(--c-deep) 100%);
  color: var(--c-pale);
}

.page-about .milestones .section-head h2 {
  color: #fff;
}

.page-about .milestones .section-desc {
  color: rgba(232, 237, 242, .8);
}

.page-about .milestones .section-note {
  color: var(--c-gold);
}

.page-about .milestone-track {
  margin: 40px 0;
}

.page-about .milestone-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-about .milestone-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 4px;
  background: repeating-linear-gradient(180deg, var(--c-orange) 0 10px, transparent 10px 18px);
  opacity: .7;
}

.page-about .milestone-item {
  position: relative;
  padding-left: 56px;
}

.page-about .milestone-dot {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 999px;
  border: 4px solid var(--c-pale);
  box-shadow: 0 0 0 4px var(--c-orange);
  z-index: 2;
}

.page-about .milestone-dot span {
  font-family: var(--font-data);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.page-about .milestone-card {
  position: relative;
  background: var(--c-light);
  color: var(--c-body);
  padding: 22px;
  border: 3px solid var(--c-line);
  box-shadow: 8px 8px 0 rgba(0, 0, 26, .25);
  border-radius: 0 14px 0 0;
}

.page-about .milestone-card::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 36px;
  height: 36px;
  background: var(--c-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-about .milestone-year {
  margin: 0 0 8px;
  font-family: var(--font-data);
  font-size: .82rem;
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: .08em;
}

.page-about .milestone-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--c-deep);
  line-height: 1.25;
}

.page-about .milestone-card p:last-child {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--c-body);
  opacity: .86;
}

@media (min-width: 768px) {
  .page-about .milestone-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 24px;
  }

  .page-about .milestone-timeline::before {
    top: 48px;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--c-orange) 0 16px, transparent 16px 28px);
  }

  .page-about .milestone-item {
    padding: 74px 0 0;
  }

  .page-about .milestone-dot {
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
    min-width: 52px;
    height: 52px;
  }

  .page-about .milestone-item:first-child .milestone-dot,
  .page-about .milestone-item:last-child .milestone-dot {
    background: var(--c-gold);
    box-shadow: 0 0 0 4px var(--c-gold);
    color: var(--c-ink);
  }
}

.page-about .milestone-img {
  margin: 48px 0 0;
}

.page-about .data-origin {
  background: var(--c-light);
}

.page-about .process-steps {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .page-about .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.page-about .process-steps li {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 3px solid var(--c-line);
  padding: 20px 18px;
  box-shadow: 6px 6px 0 rgba(0, 0, 26, .12);
  border-radius: 0 10px 0 0;
}

.page-about .step-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-orange);
  line-height: 1;
  min-width: 1.6em;
  padding-top: 4px;
}

.page-about .process-steps h3 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--c-deep);
}

.page-about .process-steps p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--c-body);
  opacity: .86;
}

.page-about .data-origin-img {
  margin-top: 24px;
}

.page-about .experts {
  background: var(--c-deep);
}

.page-about .experts .section-head h2 {
  color: #fff;
}

.page-about .experts .section-desc {
  color: rgba(232, 237, 242, .8);
}

.page-about .experts .section-note {
  color: var(--c-gold);
}

.page-about .experts-grid {
  margin: 40px 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .page-about .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .page-about .experts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about .expert-card {
  background: var(--c-light);
  border: 3px solid var(--c-line);
  border-radius: 0 14px 0 0;
  box-shadow: 8px 8px 0 rgba(0, 0, 26, .3);
  padding: 18px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.page-about .expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 14px 0 rgba(0, 0, 26, .34);
}

.page-about .expert-card::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 26px;
  height: 26px;
  background: var(--c-gold);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-about .expert-tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  background: var(--c-teal);
  color: #fff;
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.page-about .expert-card-head h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--c-deep);
  line-height: 1.2;
}

.page-about .expert-card-body {
  margin-top: 12px;
  border-top: 2px solid var(--c-line);
  padding-top: 12px;
}

.page-about .expert-card-body p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--c-body);
  opacity: .86;
}

.page-about .experts-img {
  margin-top: 8px;
}

.page-about .partners {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--c-light) 100%);
}

.page-about .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}

@media (max-width: 600px) {
  .page-about .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-about .partner-card {
  background: var(--c-deep);
  color: var(--c-pale);
  border: 3px solid var(--c-line);
  padding: 20px 14px;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(0, 0, 26, .14);
  border-radius: 0 12px 0 0;
}

.page-about .partner-count {
  display: block;
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.page-about .partner-label {
  font-size: .9rem;
  color: var(--c-pale);
  letter-spacing: .04em;
}

.page-about .honor-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

@media (min-width: 700px) {
  .page-about .honor-list {
    grid-template-columns: 1fr 1fr;
  }
}

.page-about .honor-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 3px solid var(--c-line);
  padding: 20px 18px;
  box-shadow: 6px 6px 0 rgba(0, 0, 26, .12);
}

.page-about .honor-year {
  margin: 0;
  min-width: 2.8em;
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--c-orange);
  font-size: 1.2rem;
  line-height: 1.1;
}

.page-about .honor-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: 1.02rem;
  color: var(--c-deep);
}

.page-about .honor-item p:last-child {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--c-body);
  opacity: .82;
}

.page-about .img-frame {
  border: 3px solid var(--c-line);
  box-shadow: 8px 8px 0 rgba(0, 0, 26, .14);
  background: var(--c-ink);
  padding: 8px;
  margin: 0;
}

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

.page-about .img-frame figcaption {
  padding: 12px 4px 0;
  color: var(--c-pale);
  font-size: .84rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .page-about .img-frame-milestone {
    padding-bottom: 8px;
  }
}
