.page-about {
  --about-card-border: rgba(106, 76, 147, 0.45);
  --about-glow-gold: rgba(245, 185, 66, 0.14);
  background: var(--color-deep-space);
  color: var(--color-white);
  overflow-x: hidden;
}

.page-about .about-section__head {
  margin-bottom: 40px;
}

.page-about .about-section__kicker {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
}

.page-about .about-section__heading {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  padding-bottom: 18px;
  position: relative;
}

.page-about .about-section__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), rgba(245, 185, 66, 0.05));
}

.page-about .about-hero {
  position: relative;
  padding: 32px 0 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(59, 42, 140, 0.65), transparent 70%),
    radial-gradient(700px 360px at 0% 100%, rgba(42, 27, 94, 0.55), transparent 70%);
}

.page-about .about-hero__text {
  margin-top: 32px;
  max-width: 860px;
  position: relative;
}

.page-about .about-hero__text::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--color-gold), rgba(245, 185, 66, 0.05));
  border-radius: 999px;
}

.page-about .about-hero__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin: 0 0 14px;
}

.page-about .about-hero__title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.page-about .about-hero__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-mist);
  max-width: 720px;
  margin: 0;
}

.page-about .about-hero__media {
  margin: 44px 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-space-purple);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  aspect-ratio: 8 / 3;
}

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

.page-about .about-hero__media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--color-mist);
  background: rgba(11, 27, 59, 0.85);
  border-top: 1px solid rgba(106, 76, 147, 0.3);
  letter-spacing: 0.02em;
}

.page-about .about-intro {
  background: linear-gradient(180deg, rgba(11, 27, 59, 0.3), rgba(26, 27, 77, 0.2));
}

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

.page-about .about-intro__head {
  align-self: start;
}

.page-about .about-intro__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-mist);
  margin: 0 0 16px;
  max-width: 760px;
}

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

.page-about .about-timeline {
  position: relative;
  background: var(--color-deep-space);
}

.page-about .about-timeline__orbit {
  position: absolute;
  top: 48px;
  right: 24px;
  opacity: 0.3;
  pointer-events: none;
}

.page-about .about-timeline__list {
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 24px;
}

.page-about .about-timeline__list::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-space-purple), var(--color-gold));
  opacity: 0.7;
}

.page-about .about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
}

.page-about .about-timeline__dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px var(--about-glow-gold), 0 0 14px rgba(245, 185, 66, 0.4);
}

.page-about .about-timeline__card {
  background: linear-gradient(150deg, rgba(42, 27, 94, 0.55), rgba(11, 27, 59, 0.4));
  border: 1px solid var(--about-card-border);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-timeline__card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 185, 66, 0.4);
  box-shadow: 0 12px 34px rgba(42, 27, 94, 0.45);
}

.page-about .about-timeline__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.page-about .about-timeline__card h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-about .about-timeline__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-mist);
  margin: 0;
}

.page-about .about-metrics {
  background: linear-gradient(180deg, rgba(30, 42, 58, 0.25), rgba(11, 27, 59, 0.45), rgba(42, 27, 94, 0.25));
}

.page-about .about-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 0;
}

.page-about .about-metrics__item {
  background: var(--color-deep-purple);
  border: 1px solid rgba(106, 76, 147, 0.35);
  border-radius: 18px;
  padding: 20px 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-metrics__item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 185, 66, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.page-about .about-metrics__item dt {
  font-size: 14px;
  color: var(--color-mist);
  margin-bottom: 10px;
}

.page-about .about-metrics__item dd {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  white-space: nowrap;
}

.page-about .about-metrics__num {
  font-size: 34px;
}

.page-about .about-metrics__unit {
  font-size: 15px;
  color: var(--color-mist);
  font-family: var(--font-body);
  font-weight: 400;
}

.page-about .about-metrics__lt {
  font-size: 22px;
  font-weight: 700;
}

.page-about .about-metrics__bottom {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  align-items: center;
}

.page-about .about-metrics__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-space-purple);
}

.page-about .about-metrics__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-about .about-metrics__note h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.page-about .about-metrics__note p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-mist);
  margin: 0 0 12px;
}

.page-about .about-awards {
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(42, 27, 94, 0.5), transparent 70%),
    var(--color-deep-space);
}

.page-about .about-awards__grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.page-about .about-awards__item {
  position: relative;
  padding: 28px 24px 24px;
  background: linear-gradient(160deg, rgba(42, 27, 94, 0.85), rgba(26, 27, 77, 0.7));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: transform 0.3s ease;
}

.page-about .about-awards__item:hover {
  transform: translateY(-4px);
}

.page-about .about-awards__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.page-about .about-awards__item h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
}

.page-about .about-awards__item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 0;
}

.page-about .about-awards__foot {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
}

.page-about .about-awards__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-space-purple);
}

.page-about .about-awards__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-about .about-awards__note {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-mist);
  max-width: 680px;
  margin: 0;
}

.page-about .about-portal {
  background:
    radial-gradient(700px 360px at 90% 10%, rgba(106, 76, 147, 0.3), transparent 70%),
    linear-gradient(155deg, rgba(42, 27, 94, 0.6), rgba(11, 27, 59, 0.85));
}

.page-about .about-portal__grid {
  display: grid;
  gap: 36px;
  margin-top: 36px;
}

.page-about .about-portal__intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-white);
  max-width: 760px;
  margin: 0 0 12px;
}

.page-about .about-portal__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-about .about-portal__list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(106, 76, 147, 0.28);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-mist);
}

.page-about .about-portal__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(245, 185, 66, 0.5);
}

.page-about .about-portal__list strong {
  color: var(--color-white);
  font-weight: 700;
}

.page-about .about-portal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.page-about .about-portal__link {
  color: var(--color-gold);
  font-size: 15px;
  text-underline-offset: 4px;
}

.page-about .about-portal__aside {
  background: rgba(11, 27, 59, 0.65);
  border: 1px solid var(--about-card-border);
  border-radius: 24px;
  padding: 24px;
  align-self: start;
}

.page-about .about-portal__aside h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.page-about .about-portal__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about .about-portal__aside li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(106, 76, 147, 0.22);
  font-size: 15px;
  color: var(--color-mist);
  line-height: 1.4;
}

.page-about .about-portal__aside li span {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.page-about .about-portal__aside-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-mist);
  margin: 16px 0 0;
}

.page-about .about-portal__aside-note a {
  color: var(--color-gold);
}

@media (min-width: 760px) {
  .page-about .about-awards__foot {
    flex-direction: row;
    gap: 40px;
  }

  .page-about .about-awards__media {
    width: 260px;
  }
}

@media (min-width: 900px) {
  .page-about .about-awards__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (min-width: 960px) {
  .page-about .about-intro__grid {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
    gap: 72px;
    align-items: start;
  }

  .page-about .about-timeline__list {
    gap: 0;
  }

  .page-about .about-timeline__list::before {
    left: 50%;
    transform: translateX(-1px);
    top: 8px;
    bottom: 8px;
  }

  .page-about .about-timeline__item {
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 24px;
    padding: 18px 0;
  }

  .page-about .about-timeline__dot {
    position: static;
    justify-self: center;
    align-self: start;
    margin-top: 22px;
    grid-column: 2;
    grid-row: 1;
  }

  .page-about .about-timeline__card {
    grid-column: 3;
    grid-row: 1;
  }

  .page-about .about-timeline__item:nth-child(even) .about-timeline__card {
    grid-column: 1;
  }

  .page-about .about-metrics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
  }

  .page-about .about-metrics__item {
    padding: 26px 22px;
  }

  .page-about .about-metrics__bottom {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .page-about .about-portal__grid {
    grid-template-columns: 1.6fr 0.9fr;
    gap: 64px;
    align-items: start;
  }
}
