.page-about {
  --about-bg-dark: #14061F;
  --about-bg-deep: #1A0B2E;
  --about-line: rgba(155, 48, 255, 0.18);
  --about-grid-size: 42px;
  --about-gold-soft: rgba(255, 215, 0, 0.14);
  --about-cyan-soft: rgba(0, 217, 255, 0.12);
  --about-ink: #0D0518;
  --about-cream: #F8F0FF;
  --about-radius: 14px;
  background: var(--about-bg-dark);
  background-image:
    linear-gradient(rgba(155, 48, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 48, 255, 0.06) 1px, transparent 1px);
  background-size: var(--about-grid-size) var(--about-grid-size);
  color: var(--text-white);
  min-height: 80vh;
  position: relative;
}

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

.page-about .breadcrumb {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.page-about .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .breadcrumb a:hover {
  color: var(--electric-blue);
}

.page-about .breadcrumb .current {
  color: var(--gold);
}

.page-about .breadcrumb .sep {
  opacity: 0.5;
}

.page-about .about-hero {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 64px 0 56px;
  position: relative;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(155, 48, 255, 0.22) 0%, transparent 70%);
  filter: blur(14px);
  z-index: 0;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: 40px;
  width: 360px;
  height: 200px;
  border-left: 2px solid rgba(0, 217, 255, 0.2);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  transform: skewX(-12deg);
  z-index: 0;
  opacity: 0.6;
}

.page-about .about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

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

.page-about .about-hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--electric-blue);
  padding: 6px 14px;
  border: 1px solid rgba(0, 217, 255, 0.4);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: rgba(0, 217, 255, 0.08);
  margin-bottom: 20px;
}

.page-about .about-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--text-white);
  position: relative;
  max-width: 800px;
}

.page-about .about-hero h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue), var(--gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-about .about-hero__lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
  max-width: 760px;
  margin: 0 0 24px;
}

.page-about .about-hero__indicator {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-about .about-hero__panel {
  background: rgba(26, 11, 46, 0.85);
  border: 1px solid rgba(155, 48, 255, 0.35);
  border-radius: var(--about-radius);
  padding: 24px 26px;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-about .about-hero__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  border-radius: 0 0 4px 4px;
}

.page-about .about-hero__panel-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

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

.page-about .about-hero__stat {
  border-left: 2px solid rgba(0, 217, 255, 0.4);
  padding-left: 14px;
}

.page-about .about-hero__stat dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.page-about .about-hero__stat dd {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--electric-blue);
}

.page-about .about-hero__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(155, 48, 255, 0.5);
}

.page-about .about-layout {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 40px 0 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-about .about-layout__aside {
  order: 1;
}

.page-about .about-layout__main {
  order: 2;
  min-width: 0;
}

.page-about .about-layout__extra {
  order: 3;
}

.page-about .about-toc {
  background: rgba(13, 5, 24, 0.82);
  border: 1px solid rgba(155, 48, 255, 0.28);
  border-radius: var(--about-radius);
  padding: 20px;
  position: sticky;
  top: calc(var(--header-h, 74px) + 18px);
  backdrop-filter: blur(8px);
}

.page-about .about-toc__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(155, 48, 255, 0.3);
}

.page-about .about-toc a {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 2px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.page-about .about-toc a:hover,
.page-about .about-toc a.is-active {
  background: linear-gradient(90deg, rgba(155, 48, 255, 0.22), rgba(155, 48, 255, 0.05));
  color: var(--text-white);
  padding-left: 16px;
}

.page-about .about-toc a.is-active {
  border-left: 3px solid var(--electric-blue);
}

.page-about .about-sidecard {
  margin-top: 18px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: var(--about-radius);
  padding: 20px;
}

.page-about .about-sidecard__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-about .about-sidecard a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease;
}

.page-about .about-sidecard a::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.2s ease;
}

.page-about .about-sidecard a:hover {
  color: var(--electric-blue);
}

.page-about .about-sidecard a:hover::after {
  transform: translateX(4px);
}

.page-about .about-sidecard a:last-child {
  border-bottom: none;
}

.page-about .about-extra {
  background: rgba(26, 11, 46, 0.7);
  border: 1px solid rgba(155, 48, 255, 0.22);
  border-radius: var(--about-radius);
  padding: 22px;
  margin-bottom: 18px;
}

.page-about .about-extra__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

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

.page-about .about-extra__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.page-about .about-extra__list li:last-child {
  border-bottom: none;
}

.page-about .about-extra__list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  flex-shrink: 0;
}

.page-about .about-extra__list strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}

.page-about .about-extra--contact .about-extra__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 0 0 10px;
}

.page-about .about-extra--contact .btn {
  margin-top: 12px;
}

.page-about .about-extra--contact .btn-outline {
  border-color: rgba(0, 217, 255, 0.5);
  color: var(--electric-blue);
}

.page-about .about-extra--contact .btn-outline:hover {
  background: rgba(0, 217, 255, 0.14);
}

.page-about .chapter {
  margin-bottom: 72px;
  scroll-margin-top: calc(var(--header-h, 74px) + 24px);
}

.page-about .chapter h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  margin: 0 0 20px;
  color: var(--text-white);
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.page-about .chapter h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-about .section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--neon-purple);
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(155, 48, 255, 0.5);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: rgba(155, 48, 255, 0.08);
}

.page-about .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 32px;
  max-width: 640px;
  line-height: 1.7;
}

.page-about .about-story__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-about .about-story__text p,
.page-about .about-trust p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
  font-size: 15px;
}

.page-about .about-story__text p + p {
  margin-top: 16px;
}

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

.page-about .about-story__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(155, 48, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.page-about .about-story__visual::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.35), transparent 70%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 0;
}

.page-about .about-story__visual::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 0%, rgba(155, 48, 255, 0.3) 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}

.page-about .about-milestone__wrap {
  position: relative;
  margin: 44px 0 0;
  padding-left: 30px;
}

.page-about .about-milestone__track {
  position: absolute;
  inset: 0;
  color: rgba(0, 217, 255, 0.34);
  pointer-events: none;
  display: none;
}

.page-about .about-milestone__track svg {
  width: 100%;
  height: 100%;
}

.page-about .about-milestone__item {
  position: relative;
  padding: 0 0 36px 8px;
}

.page-about .about-milestone__item::before {
  content: "";
  position: absolute;
  left: calc(-30px + 8px);
  top: 24px;
  width: 2px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.5), rgba(155, 48, 255, 0.2), transparent);
}

.page-about .about-milestone__item:last-child::before {
  display: none;
}

.page-about .about-milestone__node {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.page-about .about-milestone__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.45);
  flex-shrink: 0;
}

.page-about .about-milestone__year {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.page-about .about-milestone__card {
  background: rgba(26, 11, 46, 0.9);
  border: 1px solid rgba(155, 48, 255, 0.3);
  border-radius: var(--about-radius);
  padding: 18px 20px;
  margin-top: 12px;
  margin-left: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-about .about-milestone__item:hover .about-milestone__card,
.page-about .about-milestone__node:focus + .about-milestone__card {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.18), 0 16px 32px rgba(0, 0, 0, 0.25);
  transform: translateX(4px);
}

.page-about .about-milestone__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--electric-blue);
  background: rgba(0, 217, 255, 0.12);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 3px 10px;
  margin: 0 0 10px;
}

.page-about .about-milestone__card h3 {
  font-size: 18px;
  color: var(--text-white);
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}

.page-about .about-milestone__card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin: 0;
}

.page-about .about-milestone__image {
  margin-top: 44px;
}

.page-about .about-milestone__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(0, 217, 255, 0.28);
}

.page-about .about-license__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

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

.page-about .about-license__badge {
  background: linear-gradient(145deg, rgba(26, 11, 46, 0.9), rgba(13, 5, 24, 0.85));
  border: 1px solid rgba(155, 48, 255, 0.35);
  border-radius: var(--about-radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about .about-license__badge:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.18), 0 16px 36px rgba(0, 0, 0, 0.3);
}

.page-about .about-license__icon {
  width: 74px;
  height: 74px;
  color: var(--electric-blue);
  margin-bottom: 4px;
}

.page-about .about-license__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-about .about-license__badge .about-license__icon path:first-of-type + text {
  fill: var(--electric-blue);
}

.page-about .about-license__badge:hover .about-license__icon {
  color: var(--gold);
}

.page-about .about-license__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.page-about .about-license__value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.5px;
}

.page-about .about-license__detail {
  margin-top: 10px;
  background: rgba(0, 217, 255, 0.06);
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
}

.page-about .about-license__detail p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
  margin: 0;
}

.page-about .about-license__visual {
  margin-top: 36px;
}

.page-about .about-license__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(155, 48, 255, 0.3);
}

.page-about .about-honor__list {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-about .about-honor__item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  background: linear-gradient(145deg, rgba(26, 11, 46, 0.8), rgba(13, 5, 24, 0.6));
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: var(--about-radius);
  padding: 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-about .about-honor__item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.page-about .about-honor__year {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 1px;
  padding-top: 2px;
}

.page-about .about-honor__content h3 {
  font-size: 18px;
  color: var(--text-white);
  margin: 0 0 8px;
}

.page-about .about-honor__content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin: 0;
}

.page-about .about-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-about .about-trust__item {
  background: rgba(26, 11, 46, 0.72);
  border: 1px solid rgba(155, 48, 255, 0.25);
  border-radius: var(--about-radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.page-about .about-trust__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-purple), var(--electric-blue), var(--gold));
}

.page-about .about-trust__num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(155, 48, 255, 0.45);
  font-style: italic;
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.page-about .about-trust__item h3 {
  font-size: 18px;
  color: var(--text-white);
  margin: 0 0 10px;
}

.page-about .about-trust__item p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.page-about .about-cta {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(155, 48, 255, 0.28) 0%, rgba(13, 5, 24, 0.9) 60%, rgba(0, 217, 255, 0.16) 100%);
  border: 1px solid rgba(155, 48, 255, 0.45);
  border-radius: 16px;
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
}

.page-about .about-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
  border-radius: 50%;
}

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

.page-about .about-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-white);
  margin: 0 0 16px;
  line-height: 1.12;
}

.page-about .about-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 24px;
}

.page-about .about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-about .about-cta .btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--purple-dark, #4A1675));
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-about .about-cta .btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.page-about .about-cta .btn-outline {
  background: transparent;
  color: var(--electric-blue);
  border: 1px solid rgba(0, 217, 255, 0.55);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-about .about-cta .btn-outline:hover {
  background: rgba(0, 217, 255, 0.12);
  transform: translateY(-2px);
}

.page-about .tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

.page-about .tag-green {
  background: rgba(0, 255, 136, 0.16);
  border: 1px solid rgba(0, 255, 136, 0.5);
  color: var(--neon-green);
}

.page-about .tag-purple {
  background: rgba(155, 48, 255, 0.16);
  border: 1px solid rgba(155, 48, 255, 0.5);
  color: var(--purple-light, #C57BFF);
}

.page-about .tag-cyan {
  background: rgba(0, 217, 255, 0.16);
  border: 1px solid rgba(0, 217, 255, 0.5);
  color: var(--electric-blue);
}

@media (min-width: 768px) {
  .page-about .about-hero__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: start;
  }

  .page-about .about-hero__panel {
    padding: 32px;
  }

  .page-about .about-story__content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .page-about .about-milestone__wrapper {
    padding-left: 0;
  }

  .page-about .about-milestone__wrap {
    padding-left: 32px;
  }

  .page-about .about-milestone__item {
    padding-left: 22px;
  }

  .page-about .about-milestone__item::before {
    left: -2px;
  }

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

  .page-about .about-milestone__item:nth-child(even) {
    margin-right: 12%;
  }

  .page-about .about-milestone__item:nth-child(odd) {
    margin-left: 12%;
  }

  .page-about .about-milestone__item:nth-child(even) .about-milestone__card {
    margin-left: auto;
    margin-right: -8px;
  }

  .page-about .about-license__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-about .about-honor__item {
    padding: 28px 32px;
  }

  .page-about .about-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-about .about-cta {
    padding: 56px 48px;
  }
}

@media (min-width: 1080px) {
  .page-about .about-layout {
    grid-template-columns: 220px minmax(0, 1fr) 240px;
    gap: 32px;
    align-items: start;
  }

  .page-about .about-layout__aside {
    order: 1;
  }

  .page-about .about-layout__main {
    order: 2;
  }

  .page-about .about-layout__extra {
    order: 3;
  }

  .page-about .about-milestone__track {
    display: block;
  }

  .page-about .about-milestone__card {
    width: calc(76%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-milestone__node:focus + .about-milestone__card,
  .page-about .about-milestone__item:hover .about-milestone__card {
    transform: none;
  }

  .page-about .about-honor__item:hover,
  .page-about .about-cta .btn-primary:hover,
  .page-about .about-cta .btn-outline:hover {
    transform: none;
  }
}
