.page-about {
  --pale-ink: #162B4A;
  --pale-dim: rgba(11, 30, 54, .68);
  --gold-deep: #8a6d14;
  background:
    repeating-linear-gradient(135deg, rgba(201, 162, 39, .025) 0, rgba(201, 162, 39, .025) 1px, transparent 1px, transparent 14px),
    linear-gradient(168deg, #0B1E36 0%, #151f3d 52%, #0d1330 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page-about .breadcrumb {
  padding-top: 1.5rem;
}

.page-about .about-hero {
  position: relative;
  padding: 2.75rem 0 1.5rem;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: -4rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 47, 47, .12), transparent 70%);
  pointer-events: none;
}

.page-about .about-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.page-about .about-hero__content {
  max-width: 41rem;
}

.page-about .about-hero__slogan {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--gold);
  margin-top: .25rem;
}

.page-about .about-hero__lead {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 39rem;
}

.page-about .about-hero__stats {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.page-about .about-hero__stat {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  min-width: 6.4rem;
  text-align: center;
  backdrop-filter: blur(4px);
  flex: 1 1 auto;
}

.page-about .about-hero__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.page-about .about-hero__label {
  font-size: .8rem;
  color: var(--text-dim);
}

.page-about .about-hero__emblem {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 13.5rem;
  height: 13.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(201, 162, 39, .18), rgba(11, 30, 54, .42) 65%);
  border: 1px solid rgba(201, 162, 39, .32);
  flex-shrink: 0;
}

.page-about .about-hero__emblem::before,
.page-about .about-hero__emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, .34);
}

.page-about .about-hero__emblem::before {
  inset: -12px;
}

.page-about .about-hero__emblem::after {
  inset: -24px;
  opacity: .5;
}

.page-about .about-hero__emblem-num {
  font-family: var(--font-display);
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 8px 32px rgba(201, 162, 39, .35);
}

.page-about .about-hero__emblem-unit {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: .35rem;
}

.page-about .about-story__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.page-about .about-story__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .35);
}

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

.page-about .about-story__content p {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

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

.page-about .about-milestones {
  position: relative;
}

.page-about .about-milestones .chapter__title,
.page-about .about-milestones .chapter__lead,
.page-about .about-data .chapter__title,
.page-about .about-data .chapter__lead {
  color: var(--pale-ink);
}

.page-about .about-milestones .chapter__number,
.page-about .about-data .chapter__number {
  color: var(--gold-deep);
}

.page-about .about-timeline {
  position: relative;
  margin-top: 2.5rem;
  max-width: 48rem;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-deep) 0%, rgba(138, 109, 20, .55) 65%, rgba(138, 109, 20, .12) 100%);
}

.page-about .about-timeline__item {
  position: relative;
  padding-left: 3.2rem;
  padding-bottom: 1.5rem;
}

.page-about .about-timeline__item:last-child {
  padding-bottom: 0;
}

.page-about .about-timeline__item::after {
  content: "";
  position: absolute;
  left: .85rem;
  top: 2.2rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .18);
  z-index: 1;
}

.page-about .about-timeline__node {
  position: absolute;
  left: 0;
  top: .65rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
}

.page-about .about-timeline__node svg {
  width: 19px;
  height: 19px;
}

.page-about .about-timeline__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}

.page-about .about-timeline__card .disclosure {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 162, 39, .18);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}

.page-about .about-timeline__card .disclosure[data-open] {
  border-color: rgba(201, 162, 39, .42);
}

.page-about .about-timeline__card .disclosure__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .95rem 1.1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background .2s var(--ease);
}

.page-about .about-timeline__card .disclosure__toggle:hover {
  background: rgba(201, 162, 39, .06);
}

.page-about .about-timeline__title {
  display: flex;
  flex-direction: column;
  gap: .22rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: .01em;
  color: var(--text);
}

.page-about .about-timeline__title i {
  font-family: var(--font-body);
  font-style: italic;
  font-size: .86rem;
  font-weight: 400;
  color: var(--text-dim);
}

.page-about .about-timeline__card .disclosure__inner {
  padding: 0 1.1rem .95rem;
}

.page-about .about-timeline__card p {
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text);
}

.page-about .section--pale .about-timeline__card .disclosure {
  background: rgba(255, 255, 255, .55);
  border-color: rgba(138, 109, 20, .28);
}

.page-about .section--pale .about-timeline__card .disclosure[data-open] {
  border-color: rgba(138, 109, 20, .5);
}

.page-about .section--pale .about-timeline__card .disclosure__toggle:hover {
  background: rgba(138, 109, 20, .07);
}

.page-about .section--pale .about-timeline__title {
  color: var(--pale-ink);
}

.page-about .section--pale .about-timeline__title i {
  color: var(--pale-dim);
}

.page-about .section--pale .about-timeline__card p {
  color: var(--pale-ink);
}

.page-about .about-team__media {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .3);
}

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

.page-about .about-team__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
}

.page-about .about-team__intro p {
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 32rem;
}

.page-about .about-bar + .about-bar {
  margin-top: 1.15rem;
}

.page-about .about-bar__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .4rem;
}

.page-about .about-bar__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
}

.page-about .about-bar__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--gold);
}

.page-about .about-bar__track {
  height: .5rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.page-about .about-bar__fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), #e2c34d);
  transform-origin: left center;
}

.page-about .about-data .chapter {
  margin-bottom: 2.5rem;
}

.page-about .about-data__grid {
  display: grid;
  gap: 1.25rem;
}

.page-about .about-data__block {
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(138, 109, 20, .22);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.page-about .about-data__block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 30, 54, .1);
}

.page-about .about-data__block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pale-ink);
  margin-bottom: .75rem;
}

.page-about .about-data__block p,
.page-about .about-data__block li {
  font-family: var(--font-body);
  font-size: .93rem;
  line-height: 1.75;
  color: var(--pale-ink);
}

.page-about .about-data__block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.page-about .about-data__block li + li {
  margin-top: .45rem;
}

.page-about .about-data__award {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-about .about-data__award img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, .55);
  flex-shrink: 0;
}

.page-about .about-data__award p {
  flex: 1 1 12rem;
  margin: 0;
}

.page-about .about-cta {
  text-align: center;
}

.page-about .about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-about .about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
}

.page-about .about-cta p {
  font-family: var(--font-body);
  color: var(--text-dim);
  max-width: 28rem;
  line-height: 1.7;
}

.page-about .about-cta__links {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

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

  .page-about .about-data__block:nth-child(3) {
    grid-column: 1 / -1;
  }

  .page-about .about-data__award img {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 768px) {
  .page-about .about-hero {
    padding: 4rem 0 2.5rem;
  }

  .page-about .about-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }

  .page-about .about-hero__emblem {
    width: 18rem;
    height: 18rem;
    margin-inline: 0;
  }

  .page-about .about-hero__emblem-num {
    font-size: 9rem;
  }

  .page-about .about-hero__emblem-unit {
    font-size: 1.75rem;
  }

  .page-about .about-story__grid {
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 2.75rem;
  }

  .page-about .about-team__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 900px) {
  .page-about .about-timeline {
    max-width: 54rem;
    margin-inline: auto;
  }

  .page-about .about-timeline::before {
    left: calc(8rem + 2.05rem - 1px);
  }

  .page-about .about-timeline__item {
    display: grid;
    grid-template-columns: 8rem 4.1rem 1fr;
    align-items: start;
    padding-left: 0;
  }

  .page-about .about-timeline__item::after {
    left: calc(8rem + 1.6rem);
    top: 1.15rem;
  }

  .page-about .about-timeline__node {
    left: 8rem;
    top: .45rem;
  }

  .page-about .about-timeline__year {
    text-align: right;
    padding-right: 1.1rem;
    padding-top: .45rem;
    margin-bottom: 0;
    font-size: 1.8rem;
  }

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

  .page-about .about-data__block:nth-child(3) {
    grid-column: auto;
  }
}
