.page-about {
  --ab-line: 1px solid var(--ink-700);
  --ab-pad: clamp(40px, 7vw, 88px);
  --ab-radius: var(--r-lg);
  background: var(--ink-900);
  color: var(--fog-300);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

.page-about .shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.page-about .mono {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

.page-about h1,
.page-about h2,
.page-about h3 {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-about p {
  margin: 0 0 1em;
}

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

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

.page-about .grid-texture {
  background-image:
    linear-gradient(to right, rgba(22, 50, 77, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 50, 77, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
}

.page-about .prose p {
  max-width: 68ch;
  color: var(--fog-300);
  font-size: 15.5px;
}

/* ---------- 面包屑 ---------- */
.page-about .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fog-300);
}

.page-about .breadcrumbs a {
  color: var(--cyan-400);
  text-decoration: none;
}

.page-about .breadcrumbs__sep {
  color: var(--ink-700);
}

/* ---------- 按钮 ---------- */
.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.page-about .btn--amber {
  background: var(--amber-400);
  color: var(--ink-900);
}

.page-about .btn--amber:hover {
  background: #ffbe5c;
  transform: translateY(-2px);
}

.page-about .btn--ghost {
  border-color: var(--ink-700);
  color: var(--white);
}

.page-about .btn--ghost:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-400);
}

/* ---------- 首屏 ---------- */
.page-about .about-hero {
  padding: clamp(28px, 5vw, 56px) 0 var(--ab-pad);
  border-bottom: var(--ab-line);
}

.page-about .frame {
  position: relative;
  padding: clamp(24px, 4.5vw, 56px);
  border: var(--ab-line);
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, rgba(13, 31, 51, 0.94), rgba(7, 19, 32, 0.7));
  overflow: hidden;
}

.page-about .frame__ticks {
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(47, 227, 218, 0.22);
  border-radius: calc(var(--r-xl) - 9px);
  pointer-events: none;
}

.page-about .about-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan-400);
}

.page-about .about-hero__title {
  max-width: 22ch;
  font-size: clamp(29px, 6.2vw, 58px);
  font-weight: 900;
}

.page-about .about-hero__lead {
  max-width: 64ch;
  margin-top: 20px;
  font-size: clamp(15px, 1.6vw, 16.5px);
  color: var(--fog-300);
}

.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-about .about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: var(--ab-line);
  border-radius: var(--r-md);
  background: var(--ink-700);
  overflow: hidden;
}

.page-about .about-stat {
  padding: 16px 16px 18px;
  background: var(--ink-800);
}

.page-about .about-stat__num {
  display: block;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cyan-400);
}

.page-about .about-stat--amber .about-stat__num {
  color: var(--amber-400);
}

.page-about .about-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fog-300);
}

/* ---------- 通用区块头 ---------- */
.page-about .section-head {
  margin-bottom: clamp(22px, 3.4vw, 40px);
}

.page-about .section-head__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan-400);
}

.page-about .section-head__title {
  max-width: 30ch;
  font-size: clamp(22px, 3.4vw, 37px);
}

.page-about .section-head__note {
  max-width: 66ch;
  margin-top: 14px;
  font-size: 15px;
  color: var(--fog-300);
}

/* ---------- 媒体框 ---------- */
.page-about .media-frame {
  margin: 0;
  border: var(--ab-line);
  border-radius: var(--ab-radius);
  background: var(--ink-800);
  overflow: hidden;
}

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

.page-about .media-frame__caption {
  padding: 12px 18px;
  border-top: var(--ab-line);
  font-size: 12.5px;
  color: var(--fog-300);
}

/* ---------- 发展历程 ---------- */
.page-about .about-timeline {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-timeline__figure {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.page-about .layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.page-about .layout-split__aside,
.page-about .layout-split__main {
  min-width: 0;
}

.page-about .about-rail {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: var(--ab-line);
  overflow-x: auto;
  scrollbar-width: none;
}

.page-about .about-rail::-webkit-scrollbar {
  display: none;
}

.page-about .about-rail__item {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: var(--ab-line);
  border-radius: var(--r-pill);
  background: var(--ink-800);
  color: var(--fog-300);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.page-about .about-rail__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-700);
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.page-about .about-rail__year {
  font-size: 13px;
  color: inherit;
}

.page-about .about-rail__label {
  display: none;
}

.page-about .about-rail__item.is-active {
  border-color: var(--cyan-400);
  background: rgba(47, 227, 218, 0.08);
  color: var(--white);
}

.page-about .about-rail__item.is-active .about-rail__dot {
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(47, 227, 218, 0.18);
}

.page-about .about-year {
  position: relative;
  margin-bottom: 14px;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(26px, 3.6vw, 36px);
  border: var(--ab-line);
  border-radius: var(--ab-radius);
  background: var(--ink-800);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease;
}

.page-about .about-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--ink-700);
  transition: background-color 0.2s ease;
}

.page-about .about-year.is-active {
  border-color: rgba(47, 227, 218, 0.42);
}

.page-about .about-year.is-active::before {
  background: var(--cyan-400);
}

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

.page-about .about-year__year {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--cyan-400);
}

.page-about .about-year__title {
  margin-bottom: 14px;
  font-size: clamp(17px, 2.2vw, 22px);
}

.page-about .about-year__facts li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-size: 14.5px;
  color: var(--fog-300);
}

.page-about .about-year__facts li:last-child {
  margin-bottom: 0;
}

.page-about .about-year__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--cyan-400);
}

/* ---------- 产品族 ---------- */
.page-about .about-families {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-families__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-about .about-family {
  padding: 22px 20px;
  border: var(--ab-line);
  border-radius: var(--r-md);
  background: var(--ink-800);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.page-about .about-family:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-400);
}

.page-about .about-family--t {
  border-top: 3px solid var(--cyan-400);
}

.page-about .about-family--s {
  border-top: 3px solid var(--sz);
}

.page-about .about-family--c {
  border-top: 3px solid var(--gz);
}

.page-about .about-family--m {
  border-top: 3px solid var(--szh);
}

.page-about .about-family__code {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fog-300);
  opacity: 0.72;
}

.page-about .about-family__name {
  font-size: 18px;
  margin-bottom: 10px;
}

.page-about .about-family__text {
  font-size: 14.5px;
  color: var(--fog-300);
}

.page-about .about-family__models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.page-about .about-family__models span {
  padding: 4px 11px;
  border: 1px solid var(--ink-700);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cyan-200);
}

.page-about .about-families__figure {
  margin-top: 22px;
}

/* ---------- 四城 ---------- */
.page-about .about-cities {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-cities__list {
  display: grid;
  gap: 12px;
}

.page-about .about-city {
  border: var(--ab-line);
  border-radius: var(--ab-radius);
  background: var(--ink-800);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.page-about .about-city:hover {
  border-color: rgba(47, 227, 218, 0.4);
}

.page-about .about-city--sz {
  border-left: 3px solid var(--sz);
}

.page-about .about-city--cd {
  border-left: 3px solid var(--cd);
}

.page-about .about-city--gz {
  border-left: 3px solid var(--gz);
}

.page-about .about-city--szh {
  border-left: 3px solid var(--szh);
}

.page-about .about-city__head {
  margin: 0;
}

.page-about .about-city__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.page-about .about-city__topic {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
}

.page-about .about-city__arrow {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--cyan-400);
  border-bottom: 2px solid var(--cyan-400);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.page-about .about-city__trigger[aria-expanded="true"] .about-city__arrow {
  transform: rotate(-135deg);
}

.page-about .about-city__panel {
  padding: 4px 18px 20px;
  border-top: 1px dashed var(--ink-700);
  margin-top: 2px;
  padding-top: 16px;
}

.page-about .about-city__panel p {
  font-size: 14.5px;
  color: var(--fog-300);
}

.page-about .about-city__panel li {
  position: relative;
  padding-left: 16px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--fog-300);
}

.page-about .about-city__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 1px;
  background: var(--cyan-400);
}

.page-about .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 4px 11px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  line-height: 1.5;
  white-space: nowrap;
}

.page-about .tag__code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.page-about .tag--sz {
  color: var(--sz);
  background: rgba(90, 169, 255, 0.12);
}

.page-about .tag--cd {
  color: var(--cd);
  background: rgba(185, 140, 255, 0.12);
}

.page-about .tag--gz {
  color: var(--gz);
  background: rgba(255, 138, 91, 0.12);
}

.page-about .tag--szh {
  color: var(--szh);
  background: rgba(87, 227, 155, 0.12);
}

/* ---------- 履约能力 ---------- */
.page-about .about-capacity {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-capacity__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.page-about .about-metrics {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-about .about-metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 15px 17px;
  border: var(--ab-line);
  border-radius: var(--r-md);
  background: var(--ink-800);
}

.page-about .about-metric__num {
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--amber-400);
}

.page-about .about-metric__label {
  font-size: 13.5px;
  color: var(--fog-300);
}

.page-about .about-metric__track {
  display: block;
  height: 3px;
  margin-top: 8px;
  border-radius: var(--r-pill);
  background: var(--ink-700);
  overflow: hidden;
}

.page-about .about-metric__fill {
  display: block;
  width: var(--pct, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-400), var(--amber-400));
}

/* ---------- 资质 ---------- */
.page-about .about-cert {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-cert__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

.page-about .about-cert__list {
  display: grid;
  gap: 10px;
}

.page-about .about-cert__item {
  border: var(--ab-line);
  border-radius: var(--r-md);
  background: var(--ink-800);
  overflow: hidden;
  transition: border-color 0.18s ease;
}

.page-about .about-cert__item:hover {
  border-color: rgba(47, 227, 218, 0.4);
}

.page-about .about-cert__head {
  margin: 0;
}

.page-about .about-cert__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.page-about .about-cert__idx {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--cyan-400);
}

.page-about .about-cert__name {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
}

.page-about .about-cert__trigger[aria-expanded="true"] .about-city__arrow {
  transform: rotate(-135deg);
}

.page-about .about-cert__panel {
  padding: 0 18px 18px;
  border-top: 1px dashed var(--ink-700);
  padding-top: 16px;
  margin-top: 2px;
}

.page-about .about-cert__panel p {
  font-size: 14.5px;
  color: var(--fog-300);
}

/* ---------- 伙伴 ---------- */
.page-about .about-partners {
  padding: var(--ab-pad) 0;
  border-bottom: var(--ab-line);
}

.page-about .about-partners__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-about .about-partner {
  padding: 20px;
  border: var(--ab-line);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(13, 31, 51, 0.95), rgba(7, 19, 32, 0.75));
}

.page-about .about-partner__code {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan-200);
  opacity: 0.85;
}

.page-about .about-partner__title {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-about .about-partner p:last-child {
  font-size: 14.5px;
  color: var(--fog-300);
}

.page-about .about-partners__foot {
  max-width: 70ch;
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--fog-300);
}

/* ---------- 更新节奏 ---------- */
.page-about .about-freshness {
  position: relative;
  margin: var(--ab-pad) 0;
  padding: clamp(24px, 4vw, 44px);
  border: var(--ab-line);
  border-radius: var(--r-xl);
  background: var(--ink-800);
  overflow: hidden;
}

.page-about .slash-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sz), var(--cd), var(--gz), var(--szh));
  z-index: 0;
}

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

.page-about .about-freshness__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber-400);
}

.page-about .about-freshness__title {
  max-width: 26ch;
  margin-bottom: 22px;
  font-size: clamp(20px, 2.8vw, 28px);
}

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

.page-about .about-freshness__item {
  padding-left: 16px;
  border-left: 2px solid var(--ink-700);
}

.page-about .about-freshness__lead {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan-400);
}

.page-about .about-freshness__item p:last-child {
  font-size: 14.5px;
  color: var(--fog-300);
}

.page-about .about-freshness__link {
  margin-top: 24px;
  font-size: 14px;
}

.page-about .about-freshness__link a {
  color: var(--cyan-400);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 227, 218, 0.35);
  padding-bottom: 2px;
}

.page-about .about-freshness__link a:hover {
  border-bottom-color: var(--cyan-400);
}

/* ---------- 结尾行动区 ---------- */
.page-about .about-cta {
  padding: 0 0 clamp(56px, 8vw, 96px);
}

.page-about .about-cta__inner {
  padding: clamp(26px, 4.5vw, 52px);
  border: var(--ab-line);
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(242, 169, 59, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(13, 31, 51, 0.96), rgba(7, 19, 32, 0.8));
}

.page-about .about-cta__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber-400);
}

.page-about .about-cta__title {
  max-width: 24ch;
  font-size: clamp(22px, 3.4vw, 34px);
}

.page-about .about-cta__text {
  max-width: 66ch;
  margin-top: 16px;
  font-size: 15.5px;
  color: var(--fog-300);
}

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

.page-about .about-cta__contact {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--fog-300);
  opacity: 0.85;
  word-break: break-word;
}

/* ---------- 响应式 ---------- */
@media (min-width: 600px) {
  .page-about .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-about .about-stat:last-child:nth-child(3n + 2) {
    grid-column: span 2;
  }

  .page-about .about-families__grid,
  .page-about .about-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-about .about-metric {
    grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
    align-items: baseline;
    column-gap: 16px;
  }

  .page-about .about-metric__track {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .page-about .about-rail {
    position: sticky;
    top: 96px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 6px 0 6px 22px;
    border: 0;
    border-left: 2px solid var(--ink-700);
    border-radius: 0;
    overflow: visible;
  }

  .page-about .about-rail__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .page-about .about-rail__dot {
    position: absolute;
    left: -27px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--ink-700);
  }

  .page-about .about-rail__item.is-active {
    background: transparent;
  }

  .page-about .about-rail__item.is-active .about-rail__dot {
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(47, 227, 218, 0.16);
  }

  .page-about .about-rail__year {
    font-size: 19px;
    letter-spacing: 0.12em;
  }

  .page-about .about-rail__label {
    display: block;
    font-size: 12px;
    color: inherit;
    opacity: 0.72;
  }

  .page-about .layout-split {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 32px;
  }

  .page-about .about-capacity__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .page-about .about-cert__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .page-about .about-cert__figure {
    position: sticky;
    top: 96px;
  }
}

@media (min-width: 1120px) {
  .page-about .about-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .page-about .about-stat:last-child:nth-child(3n + 2) {
    grid-column: auto;
  }

  .page-about .about-families__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-about .layout-split {
    grid-template-columns: 148px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about .btn,
  .page-about .about-family,
  .page-about .about-year,
  .page-about .about-city,
  .page-about .about-city__arrow,
  .page-about .about-rail__item,
  .page-about .about-rail__dot {
    transition: none;
  }

  .page-about .btn--amber:hover,
  .page-about .about-family:hover {
    transform: none;
  }
}

.page-about {
  --pct: 1rem;
}
