.page-about {
  --about-orange: #ff5e18;
  --about-red: #e8302a;
  --about-yellow: #ffd400;
  --about-green: #ccff00;
  --about-deep: #0b1a2e;
  --about-gray: #2a2a2a;
  --about-line: rgba(255, 255, 255, 0.14);
  --about-muted: rgba(255, 255, 255, 0.55);
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

.page-about .container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.page-about .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-about .breadcrumb a:hover {
  color: #ff5e18;
  border-color: #ff5e18;
}

.page-about .about-hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 640px;
  background: linear-gradient(135deg, rgba(255, 94, 24, 0.5), rgba(232, 48, 42, 0));
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: rotate(12deg);
  z-index: 0;
  pointer-events: none;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff5e18 0%, #e8302a 40%, #ffd400 70%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 2;
}

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

.page-about .about-hero-copy {
  padding-right: 0;
}

.page-about .about-hero-kicker {
  display: block;
  width: fit-content;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd400;
  background: #0b1a2e;
  border: 1px solid rgba(255, 212, 0, 0.4);
  padding: 6px 14px;
  margin: 0 0 20px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.page-about .about-hero h1 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.page-about .about-hero h1::first-line {
  color: #ffffff;
}

.page-about .about-hero h1:not(::first-line) {
  color: #ff5e18;
}

.page-about .about-hero-lead {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 28px;
}

.page-about .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-about .btn-primary {
  background: #ff5e18;
  color: #ffffff;
  border-color: #ff5e18;
}

.page-about .btn-primary:hover {
  background: #e8302a;
  border-color: #e8302a;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.75);
}

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

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

.page-about .about-hero-media {
  position: relative;
}

.page-about .about-hero-media::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid #ff5e18;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  z-index: 0;
  pointer-events: none;
}

.page-about .img-frame {
  position: relative;
  display: block;
  width: 100%;
  background: #1a1a1a;
  overflow: hidden;
}

.page-about .img-frame.is-16x9 {
  aspect-ratio: 16 / 9;
}

.page-about .img-frame.is-4x3 {
  aspect-ratio: 4 / 3;
}

.page-about .img-frame-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.page-about .about-hero-strip {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 12px,
    transparent 12px,
    transparent 24px
  );
  z-index: 1;
  pointer-events: none;
}

.page-about .section-head {
  margin-bottom: 28px;
}

.page-about .section-sub {
  display: inline-block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff5e18;
  background: rgba(255, 94, 24, 0.1);
  border-left: 3px solid #ff5e18;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.page-about .section-title {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.page-about .section-title span {
  color: #ff5e18;
}

.page-about .about-story {
  padding: 56px 0;
  position: relative;
}

.page-about .about-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at top right, rgba(255, 94, 24, 0.12), transparent 65%);
  pointer-events: none;
}

.page-about .about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-about .about-story-main p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

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

.page-about .about-story-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-about .about-point-card {
  position: relative;
  background: #111111;
  border: 2px solid #2a2a2a;
  padding: 20px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: border-color 0.2s, background-color 0.2s;
}

.page-about .about-point-card:hover {
  border-color: #ff5e18;
  background-color: #161616;
}

.page-about .about-point-num {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 13px;
  color: #ffd400;
  display: block;
  margin-bottom: 6px;
}

.page-about .about-point-card h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #ffffff;
}

.page-about .about-point-card p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.page-about .about-stats {
  padding: 56px 0;
  background: #0b1a2e;
  border-top: 2px solid #ff5e18;
  border-bottom: 2px solid #ff5e18;
  position: relative;
  overflow: hidden;
}

.page-about .about-stats::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 94, 24, 0.25), transparent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: about-float 6s ease-in-out infinite alternate;
}

@keyframes about-float {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(15deg); }
}

.page-about .about-stats-head {
  margin-bottom: 32px;
}

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

.page-about .about-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 20px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}

.page-about .about-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #ff5e18;
  opacity: 0.7;
}

.page-about .about-stat-card:hover {
  background: rgba(255, 94, 24, 0.06);
  border-color: rgba(255, 94, 24, 0.4);
}

.page-about .about-stat-card-accent {
  background: linear-gradient(135deg, rgba(255, 94, 24, 0.18), transparent);
  border-color: rgba(255, 94, 24, 0.35);
}

.page-about .about-stat-label {
  display: block;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.page-about .data-number-lg {
  display: block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 42px;
  font-weight: 700;
  color: #ff5e18;
  line-height: 1.1;
  margin-bottom: 8px;
}

.page-about .about-stat-note {
  display: block;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.page-about .about-timeline-section {
  padding: 64px 0;
  position: relative;
}

.page-about .about-timeline-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 94, 24, 0.06), transparent);
  pointer-events: none;
}

.page-about .about-timeline {
  position: relative;
  padding-left: 24px;
  margin: 24px 0 32px;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, #ff5e18 0%, #ff5e18 15%, #2a2a2a 15%, #2a2a2a 100%);
  transform: rotate(0deg);
}

.page-about .about-timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

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

.page-about .about-timeline-node {
  position: absolute;
  left: -24px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #ff5e18;
  border: 3px solid #0a0a0a;
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px #ff5e18;
  z-index: 1;
}

.page-about .about-timeline-card {
  background: #111111;
  border: 2px solid #2a2a2a;
  padding: 18px;
  transition: border-color 0.2s, background-color 0.2s;
}

.page-about .about-timeline-card:hover {
  border-color: rgba(255, 94, 24, 0.5);
  background-color: #141414;
}

.page-about .about-timeline-item.is-featured .about-timeline-card {
  border-color: rgba(255, 94, 24, 0.6);
  background: linear-gradient(135deg, rgba(255, 94, 24, 0.1), transparent);
}

.page-about .about-timeline-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.page-about .about-timeline-version {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #ff5e18;
  letter-spacing: 0.04em;
}

.page-about .about-timeline-era {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-about .about-timeline-card h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.2;
}

.page-about .about-timeline-card > p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-about .about-timeline-detail {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.page-about .about-timeline-detail p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.page-about .about-timeline-media {
  margin-top: 32px;
}

.page-about .about-timeline-media .img-frame {
  border: 2px solid #2a2a2a;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-about .about-timeline-caption {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 12px 0 0;
  padding-left: 12px;
  border-left: 2px solid #ffd400;
}

.page-about .about-honors {
  padding: 56px 0;
  background: #0a0a0a;
  position: relative;
}

.page-about .about-honors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff5e18 0%, rgba(255, 94, 24, 0) 60%);
}

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

.page-about .about-honor-card {
  background: #0b1a2e;
  border: 2px solid #2a2a2a;
  padding: 20px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.2s, background-color 0.2s;
}

.page-about .about-honor-card:hover {
  border-color: #ff5e18;
  transform: translateY(-4px) rotate(-0.5deg);
  background-color: #0d2240;
}

.page-about .about-honor-year {
  display: inline-block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #0b1a2e;
  background: #ffd400;
  padding: 2px 10px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

.page-about .about-honor-card h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  line-height: 1.25;
}

.page-about .about-honor-card p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.page-about .about-ecosystem {
  padding: 60px 0;
  background: #0b1a2e;
  border-top: 2px solid rgba(255, 94, 24, 0.5);
  position: relative;
  overflow: hidden;
}

.page-about .about-ecosystem::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 94, 24, 0.12), transparent 65%);
}

.page-about .about-ecosystem-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-about .about-ecosystem-copy > p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
}

.page-about .about-ecosystem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-about .about-eco-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  transition: border-color 0.2s, background-color 0.2s;
}

.page-about .about-eco-item:hover {
  border-color: rgba(255, 94, 24, 0.5);
  background: rgba(255, 94, 24, 0.05);
}

.page-about .about-eco-icon {
  color: #ff5e18;
  font-size: 11px;
  line-height: 1;
}

.page-about .about-eco-item h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  min-width: 84px;
}

.page-about .about-eco-item p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.page-about .about-ecosystem-viz {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #2a2a2a;
  padding: 12px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

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

.page-about .about-eco-links path {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  fill: none;
  transition: stroke 0.2s, stroke-width 0.2s;
}

.page-about .about-eco-svg:hover .about-eco-links path {
  stroke: rgba(255, 94, 24, 0.55);
  stroke-width: 2;
}

.page-about .about-eco-nodes circle {
  fill: #0b1a2e;
  stroke: #ff5e18;
  stroke-width: 2;
  transition: fill 0.2s, stroke-width 0.2s;
}

.page-about .about-eco-svg:hover .about-eco-nodes circle {
  fill: #ff5e18;
  stroke-width: 3;
}

.page-about .about-eco-nodes circle.about-eco-core {
  fill: #ff5e18;
  stroke: #ffd400;
  stroke-width: 3;
}

.page-about .about-eco-label {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 11px;
  fill: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.page-about .about-eco-banner {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid #2a2a2a;
  background: #0a0a0a;
}

.page-about .about-eco-banner .img-frame {
  aspect-ratio: 16 / 7;
}

.page-about .about-eco-banner-copy {
  padding: 20px;
}

.page-about .about-eco-banner-copy h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
}

.page-about .about-eco-banner-copy p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-about .about-contact {
  padding: 60px 0 72px;
  background: #0a0a0a;
  position: relative;
}

.page-about .about-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 94, 24, 0) 10%, #ff5e18 50%, rgba(255, 94, 24, 0) 90%);
}

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

.page-about .about-contact-card {
  background: #111111;
  border: 2px solid #2a2a2a;
  padding: 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.page-about .about-contact-card:hover {
  border-color: rgba(255, 94, 24, 0.5);
  transform: translateY(-2px);
}

.page-about .about-contact-icon {
  display: inline-block;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 18px;
  color: #ff5e18;
  background: rgba(255, 94, 24, 0.08);
  border: 1px solid rgba(255, 94, 24, 0.25);
  width: 36px;
  text-align: center;
  line-height: 36px;
  margin-bottom: 14px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-about .about-contact-card h3 {
  font-family: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 10px;
}

.page-about .about-contact-value {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
  word-break: break-all;
  line-height: 1.5;
}

.page-about .about-contact-note {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.page-about .about-contact-cta {
  margin-top: 28px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 94, 24, 0.12), transparent);
  border-left: 3px solid #ffd400;
}

.page-about .about-contact-cta p {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.page-about .about-contact-cta a {
  color: #ff5e18;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 94, 24, 0.3);
  transition: border-color 0.2s;
}

.page-about .about-contact-cta a:hover {
  border-color: #ff5e18;
}

@media (min-width: 640px) {
  .page-about .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-about .about-story-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .about-ecosystem-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about .about-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-about .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-about .about-hero {
    padding: 64px 0 96px;
  }

  .page-about .about-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }

  .page-about .about-hero-copy {
    padding-right: 12px;
  }

  .page-about .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .page-about .about-story-main {
    padding-right: 24px;
  }

  .page-about .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-about .about-stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
  }

  .page-about .about-stat-card:last-child {
    border-right: none;
  }

  .page-about .about-timeline-section {
    padding: 80px 0;
  }

  .page-about .about-timeline {
    padding-left: 0;
    margin-left: 0;
  }

  .page-about .about-timeline::before {
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% - 24px);
  }

  .page-about .about-timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }

  .page-about .about-timeline-item:nth-child(odd) {
    padding-right: 48px;
    text-align: right;
  }

  .page-about .about-timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 48px;
    text-align: left;
  }

  .page-about .about-timeline-item:first-child {
    margin-bottom: 24px;
  }

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

  .page-about .about-timeline-node {
    left: auto;
    right: -7px;
    top: 26px;
  }

  .page-about .about-timeline-item:nth-child(even) .about-timeline-node {
    left: -7px;
    right: auto;
  }

  .page-about .about-timeline-item:nth-child(odd) .about-timeline-card-head {
    align-items: flex-end;
  }

  .page-about .about-timeline-item:nth-child(odd) .about-timeline-version,
  .page-about .about-timeline-item:nth-child(odd) .about-timeline-era {
    display: inline-block;
  }

  .page-about .about-timeline-media {
    max-width: 520px;
    margin: 48px auto 0;
  }

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

  .page-about .about-ecosystem-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }

  .page-about .about-eco-banner {
    grid-template-columns: 1.2fr 1fr;
    margin-top: 40px;
  }

  .page-about .about-eco-banner-copy {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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