.page-about {
  --about-gold: var(--c-gold);
  --about-gold-soft: rgba(212, 175, 55, 0.18);
  --about-cyan-soft: rgba(0, 229, 255, 0.16);
  --about-purple-soft: rgba(155, 92, 255, 0.16);
  --about-panel: rgba(22, 42, 74, 0.72);
  --about-line: rgba(212, 175, 55, 0.22);
  position: relative;
  background: var(--c-deep-navy);
  color: var(--c-off-white);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

.page-about::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-about img {
  max-width: 100%;
  height: auto;
}

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

.page-about .section-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.page-about h2 {
  font-family: var(--font-headline);
  line-height: 1.25;
  color: var(--c-off-white);
}

.page-about .about-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--about-line);
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-neon-purple), var(--c-cyan));
  z-index: 3;
}

.page-about .about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}

.page-about .about-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 26, 47, 0.74) 0%, rgba(10, 26, 47, 0.55) 48%, rgba(10, 26, 47, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 26, 47, 0.72) 0%, transparent 72%);
}

.page-about .about-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.page-about .about-hero .breadcrumbs {
  margin-bottom: 28px;
}

.page-about .about-hero .section-kicker {
  color: var(--c-light-gold);
  letter-spacing: 0.3em;
}

.page-about .about-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  max-width: 820px;
  margin-bottom: 20px;
  background: linear-gradient(120deg, var(--c-off-white) 30%, var(--c-light-gold) 68%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-about .about-hero-lead {
  font-size: 17px;
  color: rgba(245, 247, 250, 0.86);
  max-width: 720px;
  margin-bottom: 28px;
  border-left: 3px solid var(--c-gold);
  padding-left: 18px;
}

.page-about .about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-about .about-timeline {
  position: relative;
  padding: 88px 0 96px;
}

.page-about .about-section-head {
  position: relative;
  max-width: 680px;
  margin-bottom: 56px;
}

.page-about .about-section-head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 72px;
  height: 10px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  opacity: 0.55;
}

.page-about .about-section-head .section-kicker {
  color: var(--c-cyan);
}

.page-about .about-section-head h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  margin-bottom: 12px;
}

.page-about .about-section-desc {
  color: var(--c-slate-gray);
  font-size: 15px;
}

.page-about .timeline-grid {
  position: relative;
  display: grid;
  gap: 64px;
}

.page-about .timeline-grid::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-gold), var(--c-neon-purple) 55%, var(--c-cyan));
  opacity: 0.4;
}

.page-about .timeline-item {
  position: relative;
  padding-left: 44px;
}

.page-about .timeline-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 3px solid var(--c-deep-navy);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.page-about .timeline-item:last-child::before {
  background: var(--c-cyan);
  border-color: var(--c-deep-navy);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.18);
}

.page-about .timeline-year {
  margin-bottom: 8px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-light-gold);
  letter-spacing: 0.16em;
}

.page-about .timeline-year-num {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.page-about .timeline-card {
  background: var(--about-panel);
  border: 1px solid var(--about-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(212, 175, 55, 0.06);
  backdrop-filter: blur(4px);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), border-color var(--tr-fast);
}

.page-about .timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3), 8px 8px 0 rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.page-about .timeline-figure {
  margin: 0;
}

.page-about .timeline-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-about .timeline-card-body {
  padding: 24px;
}

.page-about .timeline-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-about .timeline-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--c-off-white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-about .timeline-card p {
  color: rgba(245, 247, 250, 0.78);
  font-size: 15px;
}

.page-about .timeline-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.page-about .timeline-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(245, 247, 250, 0.72);
}

.page-about .timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0.7;
}

.page-about .timeline-card--now {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(135deg, rgba(22, 42, 74, 0.85), rgba(11, 27, 58, 0.55));
}

.page-about .timeline-now-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.page-about .timeline-now-stats span {
  background: var(--about-cyan-soft);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--c-cyan);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.page-about .about-team {
  padding: 88px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 27, 58, 0.9) 18%, rgba(11, 27, 58, 0.9) 82%, transparent 100%);
}

.page-about .about-team-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-about .about-team-copy .section-kicker {
  color: var(--c-neon-purple);
}

.page-about .about-team-copy h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 16px;
}

.page-about .about-team-intro {
  color: rgba(245, 247, 250, 0.8);
  margin-bottom: 24px;
}

.page-about .team-bars {
  margin: 24px 0;
  display: grid;
  gap: 16px;
}

.page-about .team-bar {
  display: grid;
  grid-template-columns: 92px 1fr 56px;
  align-items: center;
  gap: 14px;
}

.page-about .team-bar-label {
  font-size: 14px;
  color: rgba(245, 247, 250, 0.72);
}

.page-about .team-bar-track {
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(245, 247, 250, 0.08);
  overflow: hidden;
}

.page-about .team-bar-fill {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-gold), var(--c-light-gold));
}

.page-about .team-bar:nth-child(1) .team-bar-fill { width: 33%; }

.page-about .team-bar:nth-child(2) .team-bar-fill { width: 44%; }

.page-about .team-bar:nth-child(3) .team-bar-fill { width: 22%; }

.page-about .team-bar strong {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--c-light-gold);
  text-align: right;
}

.page-about .team-note {
  font-size: 13px;
  color: var(--c-slate-gray);
}

.page-about .about-team-figure {
  margin: 0;
}

.page-about .about-team-figure img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(155, 92, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.page-about .about-ecosystem {
  padding: 88px 0;
  position: relative;
}

.page-about .about-ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(155, 92, 255, 0.1), transparent 50%),
    radial-gradient(ellipse at 82% 72%, rgba(0, 229, 255, 0.08), transparent 50%);
  pointer-events: none;
}

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

.page-about .eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-about .eco-card {
  background: rgba(22, 42, 74, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), border-color var(--tr-fast);
}

.page-about .eco-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  border-color: rgba(212, 175, 55, 0.45);
}

.page-about .eco-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: var(--c-cyan);
}

.page-about .eco-icon svg {
  width: 100%;
  height: 100%;
  color: inherit;
  fill: none;
}

.page-about .eco-card .stat-value {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.page-about .eco-card .stat-label {
  font-size: 14px;
  color: var(--c-slate-gray);
}

.page-about .eco-card--wide {
  grid-column: 1 / -1;
}

.page-about .about-credentials {
  padding: 88px 0;
  background: linear-gradient(180deg, transparent, rgba(10, 26, 47, 0.6) 30%, rgba(10, 26, 47, 0.6) 70%, transparent);
}

.page-about .about-credentials .about-section-head .section-kicker {
  color: var(--c-light-gold);
}

.page-about .credential-grid {
  display: grid;
  gap: 24px;
}

.page-about .credential-card {
  background: rgba(22, 42, 74, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.page-about .credential-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.page-about .credential-card svg {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--c-gold);
}

.page-about .credential-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--c-off-white);
}

.page-about .credential-card p {
  font-size: 14px;
  color: var(--c-slate-gray);
}

.page-about .about-trace {
  padding: 88px 0 104px;
}

.page-about .about-trace-inner {
  background: linear-gradient(135deg, rgba(22, 42, 74, 0.9), rgba(11, 27, 58, 0.95));
  border: 1px solid var(--about-line);
  border-radius: 28px;
  padding: 48px 32px;
  display: grid;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.page-about .about-trace-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-neon-purple), var(--c-cyan));
}

.page-about .about-trace-text .section-kicker {
  color: var(--c-light-gold);
}

.page-about .about-trace h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 14px;
  line-height: 1.3;
}

.page-about .about-trace-text p {
  color: rgba(245, 247, 250, 0.78);
  font-size: 15px;
}

.page-about .about-trace-text p:not(.section-kicker) {
  margin-bottom: 12px;
}

.page-about .about-trace-text .section-kicker {
  margin-bottom: 10px;
}

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

.page-about .about-trace-note {
  background: var(--about-purple-soft);
  border: 1px solid rgba(155, 92, 255, 0.22);
  border-radius: var(--r-lg);
  padding: 24px;
}

.page-about .about-trace-note p:first-child {
  font-family: var(--font-headline);
  color: var(--c-light-gold);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-about .about-trace-note p {
  margin-bottom: 6px;
  color: rgba(245, 247, 250, 0.82);
  font-size: 14px;
}

.page-about .about-trace-note a {
  display: inline-block;
  margin-top: 10px;
  color: var(--c-cyan);
  text-decoration: none;
  font-size: 14px;
}

.page-about .about-trace-note a:hover {
  color: var(--c-light-gold);
}

@media (min-width: 768px) {
  .page-about .eco-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-about .eco-card--wide {
    grid-column: 2 / 4;
  }

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

@media (min-width: 820px) {
  .page-about .timeline-grid {
    gap: 72px;
  }

  .page-about .timeline-grid::before {
    left: 147px;
  }

  .page-about .timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 64px;
    padding-left: 0;
  }

  .page-about .timeline-item::before {
    left: 140px;
    top: 28px;
  }

  .page-about .timeline-year {
    padding-top: 6px;
    text-align: right;
    font-size: 22px;
    letter-spacing: 0.12em;
    margin-bottom: 0;
  }
}

@media (min-width: 860px) {
  .page-about .about-trace-inner {
    grid-template-columns: 1.4fr 0.6fr;
    padding: 56px;
  }
}

@media (min-width: 900px) {
  .page-about .about-team-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-about .about-team-figure {
    justify-self: end;
  }
}
