.page-about {
  --about-red: #E63946;
  --about-black: #0A0A0A;
  --about-gold: #F4A623;
  --about-blue: #2A9DF4;
  --about-dark: #1F1F1F;
  --about-white: #FFFFFF;
  --about-gray: #CCCCCC;
  --about-font-display: Impact, Anton, "Arial Narrow", "Noto Sans SC", sans-serif;
  --about-font-body: Roboto, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --about-radius: 4px;
  --about-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  background: var(--about-black);
  color: var(--about-white);
  font-family: var(--about-font-body);
  overflow-x: hidden;
}

.page-about .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.page-about .container--narrow {
  max-width: 960px;
}

.page-about .section {
  padding: 4rem 0;
}

.page-about .section--dark {
  background: var(--about-dark);
}

.page-about .section--red {
  background: linear-gradient(135deg, #E63946 0%, #B41E2A 60%, #87161E 100%);
  color: var(--about-white);
}

.page-about .section--diagonal {
  background: linear-gradient(160deg, var(--about-black) 0%, #141414 70%, var(--about-dark) 100%);
  position: relative;
}

.page-about .section--diagonal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--about-red), var(--about-blue), var(--about-gold));
}

.page-about .section-head {
  margin-bottom: 3rem;
}

.page-about .section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-gold);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-left: 3px solid var(--about-red);
  background: rgba(230, 57, 70, 0.08);
}

.page-about .title-section {
  font-family: var(--about-font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.page-about .prose {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

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

.page-about .btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--about-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-about .btn--primary {
  background: var(--about-red);
  color: #fff;
  border: 2px solid var(--about-red);
}

.page-about .btn--primary:hover {
  background: #D62C39;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.page-about .btn--outline {
  background: transparent;
  color: var(--about-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.page-about .btn--outline:hover {
  border-color: var(--about-gold);
  color: var(--about-gold);
  transform: translateY(-2px);
}

.page-about .btn--large {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.page-about .tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}

.page-about .tag--red {
  background: rgba(230, 57, 70, 0.18);
  color: #FF6B77;
  border-color: rgba(230, 57, 70, 0.4);
}

.page-about .tag--gold {
  background: rgba(244, 166, 35, 0.15);
  color: var(--about-gold);
  border-color: rgba(244, 166, 35, 0.4);
}

.page-about .tag--blue {
  background: rgba(42, 157, 244, 0.15);
  color: #7CC0F8;
  border-color: rgba(42, 157, 244, 0.4);
}

.page-about .media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--about-radius);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(42, 157, 244, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .media-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}

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

.page-about .media-frame--hero img {
  min-height: 300px;
  object-fit: cover;
}

.page-about .media-frame--portrait img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-about .media-frame--wide img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.page-about .breadcrumbs {
  margin-bottom: 2rem;
}

.page-about .breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about .breadcrumbs-item {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
}

.page-about .breadcrumbs-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.page-about .breadcrumbs-item a {
  color: var(--about-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .breadcrumbs-item a:hover {
  color: var(--about-white);
  text-decoration: underline;
}

.page-about .breadcrumbs-current {
  color: rgba(255, 255, 255, 0.85);
}

.page-about .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-gold);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-left: 3px solid var(--about-red);
}

/* Hero */
.page-about .about-hero {
  position: relative;
  padding: 2rem 0 4rem;
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(28, 28, 28, 0.45) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 21px),
    radial-gradient(circle at 85% 20%, rgba(230, 57, 70, 0.15), transparent 45%);
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--about-red), var(--about-blue)) 1;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 40%, rgba(42, 157, 244, 0.08) 40%, rgba(42, 157, 244, 0.08) 45%, transparent 45%, transparent 46%, rgba(230, 57, 70, 0.05) 46%, rgba(230, 57, 70, 0.05) 50%, transparent 50%);
  pointer-events: none;
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
}

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

.page-about .about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-about .about-hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
  text-shadow: 4px 4px 0 rgba(230, 57, 70, 0.35);
}

.page-about .about-hero__content .lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 2rem;
}

.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.page-about .about-hero__media::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border-top: 3px solid var(--about-red);
  border-right: 3px solid var(--about-gold);
  border-radius: var(--about-radius);
  z-index: -1;
}

/* Mission */
.page-about .about-mission {
  background: var(--about-black);
  position: relative;
  padding: 4rem 0;
}

.page-about .about-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) calc(100% - 1px), rgba(255, 255, 255, 0.04) calc(100% - 0px), transparent 100%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 40px, 60px 60px;
  pointer-events: none;
}

.page-about .about-mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.page-about .about-mission__panel {
  margin-top: 0.5rem;
}

.page-about .data-panel {
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.95), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(244, 166, 35, 0.3);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--about-shadow);
  position: relative;
}

.page-about .data-panel::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: var(--about-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(244, 166, 35, 0.6);
}

.page-about .data-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(244, 166, 35, 0.25);
}

.page-about .data-panel__label {
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--about-gold);
}

.page-about .data-panel__status {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-about .data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-about .data-row:last-child {
  border-bottom: none;
}

.page-about .data-key {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-about .data-value {
  font-family: var(--about-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--about-white);
  letter-spacing: 0.02em;
}

.page-about .data-row:nth-child(even) .data-value {
  color: var(--about-gold);
}

/* Journey Timeline */
.page-about .about-journey {
  background:
    linear-gradient(180deg, #1F1F1F 0%, #141414 100%);
  position: relative;
  overflow: hidden;
}

.page-about .about-journey::before {
  content: "HISTORY";
  position: absolute;
  top: 80px;
  right: -30px;
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.page-about .about-journey__intro {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.page-about .about-journey__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.page-about .timeline {
  position: relative;
  padding-left: 1.5rem;
}

.page-about .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(to bottom, #E63946 0%, #F4A623 50%, #2A9DF4 100%);
  border-radius: 2px;
  opacity: 0.85;
}

.page-about .timeline__item {
  position: relative;
  margin-bottom: 2.25rem;
}

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

.page-about .timeline__dot {
  position: absolute;
  left: -1.5rem;
  top: 4px;
  width: 19px;
  height: 19px;
  background: var(--about-black);
  border: 3px solid var(--about-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: default;
}

.page-about .timeline__dot:hover,
.page-about .timeline__dot:focus {
  transform: translateX(-50%) scale(1.35);
  box-shadow: 0 0 18px rgba(244, 166, 35, 0.65);
  background: var(--about-gold);
  outline: none;
}

.page-about .timeline__dot-year {
  position: absolute;
  left: 24px;
  top: 0;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--about-gold);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.page-about .timeline__dot:hover .timeline__dot-year,
.page-about .timeline__dot:focus .timeline__dot-year {
  opacity: 1;
}

.page-about .timeline__card {
  background: linear-gradient(135deg, #222222 0%, #1A1A1A 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--about-red);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about .timeline__card:hover {
  transform: translateX(6px);
  border-left-color: var(--about-gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.page-about .timeline__card .tag {
  margin-bottom: 0.75rem;
}

.page-about .timeline__title {
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--about-white);
}

.page-about .timeline__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.page-about .about-journey__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Chart Card */
.page-about .chart-card {
  background: linear-gradient(145deg, #1A1A1A, #242424);
  border: 1px solid rgba(42, 157, 244, 0.25);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--about-shadow);
}

.page-about .chart-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-about .chart-card__label {
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7CC0F8;
}

.page-about .chart-card__figure {
  width: 100%;
  margin: 1rem 0;
}

.page-about .chart-card__figure svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-about .chart-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.page-about .chart-card__stat {
  text-align: center;
  padding: 0.4rem 0.2rem;
}

.page-about .chart-card__stat-num {
  display: block;
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--about-gold);
}

.page-about .chart-card__stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
}

/* Tech */
.page-about .about-tech {
  padding: 4rem 0;
  background: var(--about-black);
  position: relative;
}

.page-about .about-tech::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 15% 85%, rgba(42, 157, 244, 0.09), transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(230, 57, 70, 0.07), transparent 50%);
  pointer-events: none;
}

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

.page-about .about-tech__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.page-about .about-tech__copy {
  max-width: 760px;
}

.page-about .about-tech__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-about .metric-card {
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.page-about .metric-card::after {
  content: "";
  position: absolute;
  right: -30%;
  top: -60%;
  width: 80%;
  height: 200%;
  background: linear-gradient(135deg, transparent 0%, rgba(42, 157, 244, 0.06) 50%, transparent 100%);
  transform: rotate(-25deg);
  transition: transform 0.4s ease;
}

.page-about .metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 166, 35, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.page-about .metric-card:hover::after {
  transform: rotate(-25deg) translateX(40%);
}

.page-about .metric-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.page-about .metric-value {
  display: block;
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--about-white);
  line-height: 1.1;
}

.page-about .metric-trend {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--about-blue);
  margin-top: 0.5rem;
  background: rgba(42, 157, 244, 0.12);
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
}

/* Team */
.page-about .about-team {
  padding: 4.5rem 0;
}

.page-about .about-team__intro {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.page-about .about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-about .about-team__media .media-frame {
  height: 100%;
}

.page-about .team-list {
  display: flex;
  flex-direction: column;
}

.page-about .team-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: padding-left 0.3s ease;
}

.page-about .team-list__item:hover {
  padding-left: 0.5rem;
}

.page-about .team-list__item:first-child {
  padding-top: 0;
}

.page-about .team-list__num {
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(230, 57, 70, 0.7);
  line-height: 1;
  min-width: 48px;
}

.page-about .team-list__body {
  flex: 1;
}

.page-about .team-list__title {
  font-family: var(--about-font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--about-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-about .team-list__title::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--about-red), transparent);
}

.page-about .team-list__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

/* QA / Red CTA */
.page-about .about-qa {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-about .about-qa::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 70%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 14px, rgba(255, 255, 255, 0.04) 14px, rgba(255, 255, 255, 0.04) 15px);
  pointer-events: none;
}

.page-about .about-qa__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-about .about-qa__badge {
  margin-bottom: 1.5rem;
}

.page-about .about-qa__badge svg {
  filter: drop-shadow(0 0 20px rgba(244, 166, 35, 0.4));
}

.page-about .about-qa .title-section {
  margin-bottom: 1rem;
}

.page-about .about-qa__text {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-about .about-qa__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.page-about .about-qa__tags .tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--about-white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== 平板 / 桌面端适配 ===== */
@media (min-width: 640px) {
  .page-about .about-tech__metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .page-about .about-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .page-about .about-mission__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }

  .page-about .about-journey__layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
  }

  .page-about .about-journey__aside {
    position: sticky;
    top: 88px;
  }

  .page-about .about-tech__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .page-about .about-tech__copy {
    flex: 1.2;
  }

  .page-about .about-tech__metrics {
    flex: 1;
    grid-template-columns: 1fr;
  }

  .page-about .about-team__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-about .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-about .about-hero {
    padding: 3rem 0 5rem;
  }

  .page-about .about-hero__title {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }

  .page-about .about-journey__layout {
    grid-template-columns: 1fr 0.85fr;
  }

  .page-about .timeline {
    padding-left: 2rem;
  }

  .page-about .about-tech__metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .page-about .metric-value {
    font-size: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .page-about .about-tech__grid {
    gap: 6rem;
  }

  .page-about .about-journey__layout {
    gap: 5rem;
  }

  .page-about .timeline__card {
    padding: 1.5rem 2rem;
  }
}
