.page-about {
  --pg-grid-line: rgba(42, 45, 51, 0.5);
  --pg-blue-glow: rgba(18, 58, 102, 0.35);
  --pg-green-glow: rgba(24, 225, 143, 0.2);
  --pg-card-bg: rgba(255, 255, 255, 0.03);
  --pg-line-light: rgba(255, 255, 255, 0.12);
  --pg-muted: #7A8699;
  position: relative;
  background:
    linear-gradient(var(--pg-grid-line) 1px, transparent 1px) 0 0 / 100% 72px,
    linear-gradient(90deg, var(--pg-grid-line) 1px, transparent 1px) 0 0 / 72px 100%;
  background-attachment: scroll;
  color: #F8FAFC;
}

.page-about .container {
  width: min(1380px, 100% - 48px);
  margin-inline: auto;
}

.page-about .mono {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  letter-spacing: 0.06em;
}

.page-about a {
  color: #F8FAFC;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about a:hover,
.page-about a:focus-visible {
  color: #18E18F;
  outline: 2px solid transparent;
}

.page-about .orange {
  color: #FF6D00;
}

.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.625rem 1.5rem;
  border: 1px solid currentColor;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #F8FAFC;
  background: transparent;
}

.page-about .btn-outline:hover,
.page-about .btn-outline:focus-visible {
  border-color: #18E18F;
  color: #18E18F;
  background: rgba(24, 225, 143, 0.06);
}

.page-about .pg-hero {
  position: relative;
  border-bottom: 1px solid var(--pg-line-light);
  overflow: hidden;
  background: linear-gradient(140deg, rgba(18, 58, 102, 0.5) 0%, rgba(10, 11, 13, 0) 60%);
}

.page-about .pg-hero__inner {
  position: relative;
  width: min(1380px, 100% - 48px);
  margin-inline: auto;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
}

.page-about .pg-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 92%);
}

.page-about .pg-hero__content {
  position: relative;
  max-width: 880px;
  z-index: 2;
}

.page-about .pg-hero__index,
.page-about .pg-hero__kicker,
.page-about .pg-hero__meta {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F8FAFC;
}

.page-about .pg-hero__index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #18E18F;
}

.page-about .pg-hero__index::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18E18F;
  box-shadow: 0 0 12px rgba(24, 225, 143, 0.8);
  animation: pg-about-blink 1.8s ease-in-out infinite;
}

@keyframes pg-about-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-about .pg-hero__kicker {
  margin: 0 0 1rem;
  color: rgba(248, 250, 252, 0.85);
}

.page-about .pg-hero__title {
  margin: 0 0 1.75rem;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.page-about .pg-hero__lead {
  margin: 0 0 2.5rem;
  max-width: 54ch;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.85);
}

.page-about .pg-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(248, 250, 252, 0.5);
}

.page-about .pg-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.page-about .pg-hero__meta-item::before {
  content: "▲";
  font-size: 0.5625rem;
  color: #2E6E9E;
}

.page-about .pg-hero__fig {
  position: relative;
  margin-top: 3rem;
  border: 1px solid var(--pg-line-light);
  background: #0A0B0D;
}

.page-about .pg-hero__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
}

.page-about .pg-hero__fig-note,
.page-about .pg-arch__fig-note,
.page-about .pg-team__fig-note {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(10, 11, 13, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(4px);
}

.page-about .pg-breadcrumb {
  padding-block: 1.25rem 0.25rem;
}

.page-about .pg-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  color: var(--pg-muted);
}

.page-about .pg-breadcrumb__list a {
  color: rgba(248, 250, 252, 0.75);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-breadcrumb__list a:hover,
.page-about .pg-breadcrumb__list a:focus-visible {
  color: #18E18F;
}

.page-about .pg-breadcrumb__list [aria-current="page"] {
  color: #F8FAFC;
}

.page-about .pg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding-block: 2rem 5rem;
}

.page-about .pg-index {
  position: sticky;
  top: 1rem;
  align-self: start;
  border: 1px solid var(--pg-line-light);
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.page-about .pg-index__head {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--pg-line-light);
}

.page-about .pg-index__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pg-muted);
}

.page-about .pg-index__list {
  margin: 0;
  padding: 0.875rem 1.25rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
}

.page-about .pg-index__list a {
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.85);
  padding-block: 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-about .pg-index__list a::before {
  content: "→";
  color: #2E6E9E;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-index__list a:hover,
.page-about .pg-index__list a:focus-visible {
  color: #18E18F;
}

.page-about .pg-index__list a:hover::before,
.page-about .pg-index__list a:focus-visible::before {
  color: #18E18F;
}

.page-about .pg-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-about .pg-section {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--pg-line-light);
  scroll-margin-top: 2rem;
}

.page-about .pg-section:last-child {
  border-bottom: none;
}

.page-about .pg-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-about .pg-section__no {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 0.875rem;
  color: #18E18F;
  white-space: nowrap;
}

.page-about .pg-section__title {
  margin: 0;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #F8FAFC;
}

.page-about .pg-why__lead {
  margin: 0 0 1.75rem;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: #F8FAFC;
}

.page-about .pg-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-about .pg-why__text p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
}

.page-about .pg-why__panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border: 1px solid var(--pg-line-light);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
}

.page-about .pg-why__stat {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.page-about .pg-why__stat-num {
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #18E18F;
  line-height: 1.1;
}

.page-about .pg-why__stat-label {
  font-size: 0.75rem;
  color: var(--pg-muted);
  letter-spacing: 0.04em;
}

.page-about .pg-why__quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-left: 3px solid #123A66;
  background: rgba(18, 58, 102, 0.2);
}

.page-about .pg-why__quote p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.9);
}

.page-about .pg-why__quote cite {
  display: block;
  font-size: 0.6875rem;
  font-style: normal;
  color: #7A8699;
}

.page-about .pg-timeline {
  position: relative;
}

.page-about .pg-timeline__rail {
  display: none;
}

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

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

.page-about .pg-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #123A66;
  border: 2px solid #2E6E9E;
  box-shadow: 0 0 0 4px rgba(18, 58, 102, 0.3);
}

.page-about .pg-timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2.5rem;
  bottom: -2rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.page-about .pg-timeline__card {
  padding: 1.5rem;
  border: 1px solid var(--pg-line-light);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-timeline__card:hover,
.page-about .pg-timeline__card:focus-within {
  border-color: rgba(24, 225, 143, 0.5);
  box-shadow: 0 0 30px rgba(24, 225, 143, 0.06);
}

.page-about .pg-timeline__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-about .pg-timeline__ver {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #2E6E9E;
  border: 1px solid rgba(46, 110, 158, 0.5);
  padding: 0.25rem 0.5rem;
}

.page-about .pg-timeline__tag {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--pg-muted);
  text-transform: uppercase;
}

.page-about .pg-timeline__tag.orange {
  color: #FF6D00;
}

.page-about .pg-timeline__card-title {
  margin: 0 0 0.75rem;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #F8FAFC;
}

.page-about .pg-timeline__card-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(248, 250, 252, 0.78);
}

.page-about .pg-timeline__link {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #18E18F;
}

.page-about .pg-timeline__link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-timeline__link:hover,
.page-about .pg-timeline__link:focus-visible {
  color: #F8FAFC;
}

.page-about .pg-timeline__link:hover::after,
.page-about .pg-timeline__link:focus-visible::after {
  transform: translateX(4px);
}

.page-about .pg-arch__intro {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
  max-width: 72ch;
}

.page-about .pg-arch {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-about .pg-arch__fig {
  position: relative;
  border: 1px solid var(--pg-line-light);
  background: #0A0B0D;
  overflow: hidden;
}

.page-about .pg-arch__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about .pg-arch__diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 11, 13, 0.65);
  border: 1px solid var(--pg-line-light);
  padding: clamp(1rem, 2vw, 1.75rem);
}

.page-about .pg-arch__layer {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(18, 58, 102, 0.7);
  background: rgba(18, 58, 102, 0.18);
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-arch__layer:hover,
.page-about .pg-arch__layer:focus-visible {
  border-color: #2E6E9E;
  background: rgba(18, 58, 102, 0.3);
  box-shadow: 0 0 24px var(--pg-blue-glow);
  outline: none;
}

.page-about .pg-arch__layer-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.page-about .pg-arch__layer-no {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: #18E18F;
  border: 1px solid rgba(24, 225, 143, 0.4);
  padding: 0.1875rem 0.375rem;
}

.page-about .pg-arch__layer-title {
  margin: 0;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F8FAFC;
}

.page-about .pg-arch__layer-text {
  margin: 0 0 0.875rem;
  font-size: 0.84375rem;
  line-height: 1.75;
  color: rgba(248, 250, 252, 0.75);
}

.page-about .pg-arch__layer-stat {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #18E18F;
}

.page-about .pg-arch__connector {
  position: relative;
  height: 28px;
  width: 1px;
  margin-left: 1.25rem;
  background: rgba(46, 110, 158, 0.5);
}

.page-about .pg-arch__connector::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(46, 110, 158, 0.7);
  border-right: 1px solid rgba(46, 110, 158, 0.7);
  transform: translateX(-50%) rotate(135deg);
  transform-origin: center;
}

.page-about .pg-team {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-about .pg-team__visual {
  position: relative;
  border: 1px solid var(--pg-line-light);
  overflow: hidden;
  background: #0A0B0D;
}

.page-about .pg-team__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.page-about .pg-team__content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
}

.page-about .pg-team__list {
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--pg-line-light);
  background: rgba(255, 255, 255, 0.03);
}

.page-about .pg-team__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pg-line-light);
}

.page-about .pg-team__item:last-child {
  border-bottom: none;
}

.page-about .pg-team__item-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18E18F;
}

.page-about .pg-team__item-label {
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.78);
}

.page-about .pg-eco__lead {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.82);
  max-width: 72ch;
}

.page-about .pg-eco__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-about .pg-eco__card {
  padding: 1.5rem;
  border: 1px solid var(--pg-line-light);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-about .pg-eco__card:hover,
.page-about .pg-eco__card:focus-within {
  border-color: rgba(18, 58, 102, 0.9);
  background: rgba(18, 58, 102, 0.12);
}

.page-about .pg-eco__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.page-about .pg-eco__card-no {
  font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #2E6E9E;
  border: 1px solid rgba(46, 110, 158, 0.5);
  padding: 0.25rem 0.5rem;
}

.page-about .pg-eco__card-title {
  margin: 0;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F8FAFC;
}

.page-about .pg-eco__card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(248, 250, 252, 0.75);
}

.page-about .pg-eco__cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-left: 3px solid #FF6D00;
  background: rgba(255, 109, 0, 0.06);
}

.page-about .pg-eco__cta-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.85);
}

.page-about .pg-eco__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-about .pg-section[data-reveal] {
  transition-delay: 0ms;
}

@media (min-width: 768px) {
  .page-about .pg-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .page-about .pg-index {
    position: sticky;
    top: 1.5rem;
  }

  .page-about .pg-index__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .page-about .pg-index__list a {
    padding-block: 0.5rem;
  }

  .page-about .pg-why__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .page-about .pg-why__panel {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    padding: 1.5rem;
  }

  .page-about .pg-timeline__item {
    padding-left: 2.5rem;
  }

  .page-about .pg-timeline__rail {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 242px;
    width: 200px;
    color: #2E6E9E;
    pointer-events: none;
    opacity: 0.7;
  }

  .page-about .pg-timeline__track-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 99px;
    width: 1px;
    background: rgba(46, 110, 158, 0.35);
  }

  .page-about .pg-timeline__pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
  }

  .page-about .pg-arch {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: stretch;
  }

  .page-about .pg-arch__diagram {
    justify-content: space-between;
  }

  .page-about .pg-team {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
  }

  .page-about .pg-team__visual {
    position: sticky;
    top: 1.5rem;
  }

  .page-about .pg-eco__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-about .pg-eco__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-about .pg-eco__cta-text {
    max-width: 56ch;
  }
}

@media (min-width: 1024px) {
  .page-about .pg-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: end;
  }

  .page-about .pg-hero__fig {
    margin-top: 0;
  }

  .page-about .pg-timeline__list {
    margin-left: 0;
  }

  .page-about .pg-timeline__rail {
    left: 262px;
  }

  .page-about .pg-timeline__item {
    padding-left: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about {
    scroll-behavior: auto;
  }

  .page-about .pg-hero__index::before {
    animation: none;
  }

  .page-about .pg-timeline__pulse circle {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-about a,
  .page-about .btn {
    transition: none;
  }
}

@media (max-width: 767px) {
  .page-about .pg-hero__meta {
    gap: 0.875rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-about .pg-timeline__card {
    padding: 1.25rem;
  }

  .page-about .pg-team__list {
    margin-inline: 0;
  }
}

.page-about {
  --reveal-delay: 0.3s;
}
