.page-about {
  background: var(--paper);
  color: var(--ink);
}

.page-about .about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.94), rgba(10, 20, 40, 0.86)), var(--space-blue);
  color: var(--white);
  padding: 2rem 0 3rem;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: -2rem;
  width: 18rem;
  height: 12rem;
  background: var(--vivid-orange);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  opacity: 0.28;
  pointer-events: none;
}

.page-about .about-hero::after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -3rem;
  width: 14rem;
  height: 10rem;
  background: var(--neon-green);
  clip-path: polygon(20% 0, 100% 40%, 80% 100%, 0 60%);
  opacity: 0.18;
  pointer-events: none;
}

.page-about .about-hero-inner {
  position: relative;
  z-index: 2;
}

.page-about .about-hero .breadcrumb {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.page-about .about-hero .breadcrumb a {
  color: var(--mint);
  text-decoration: none;
}

.page-about .about-hero .breadcrumb a:hover {
  color: var(--neon-green);
}

.page-about .about-hero .breadcrumb-current {
  color: var(--white);
  font-weight: 700;
}

.page-about .about-hero-kicker {
  margin: 0 0 0.75rem;
  color: var(--neon-green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-about .about-hero h1 {
  margin: 0 0 1.25rem;
  max-width: 56rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-about .about-hero-lead {
  max-width: 42rem;
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(245, 248, 252, 0.82);
}

.page-about .about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-about .about-story {
  position: relative;
  padding: 3rem 0;
}

.page-about .about-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

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

.page-about .about-story-copy p {
  margin: 0 0 1rem;
}

.page-about .about-story-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem;
}

.page-about .about-story-points li {
  padding-left: 1.75rem;
  position: relative;
  font-weight: 500;
}

.page-about .about-story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--neon-green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.page-about .about-story-media {
  margin: 0;
  position: relative;
}

.page-about .about-story-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.page-about .about-story-media figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate);
}

.page-about .about-milestones {
  background: var(--white);
  padding: 3rem 0;
}

.page-about .about-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.page-about .about-stat-strip .stat-item {
  flex: 1 1 160px;
  background: var(--paper);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.page-about .about-stat-strip .stat-item::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: -0.75rem;
  width: 3rem;
  height: 3rem;
  background: var(--mint);
  clip-path: polygon(45% 0, 100% 0, 100% 60%, 0 100%);
  opacity: 0.4;
}

.page-about .about-stat-strip .stat-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--space-blue);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.page-about .about-stat-strip .stat-label {
  font-size: 0.875rem;
  color: var(--slate);
}

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

.page-about .timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--steel);
}

.page-about .timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.page-about .timeline-item::before {
  content: "";
  position: absolute;
  left: -0.625rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--neon-green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--neon-green);
}

.page-about .timeline-year {
  display: inline-block;
  margin-bottom: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--space-blue);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.page-about .timeline-content {
  background: var(--paper);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.page-about .timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--space-blue);
}

.page-about .timeline-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
}

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

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

.page-about .about-cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-about .about-cert-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.page-about .cert-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--space-blue);
  color: var(--neon-green);
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.page-about .about-cert-list h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 900;
}

.page-about .about-cert-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate);
}

.page-about .about-ecosystem {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  color: var(--white);
  background: var(--space-blue);
}

.page-about .about-eco-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-about .about-eco-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-about .about-eco-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 27, 58, 0.94), rgba(10, 20, 40, 0.76));
}

.page-about .about-eco-content {
  position: relative;
  z-index: 2;
}

.page-about .about-eco-content .section-head {
  color: var(--white);
}

.page-about .about-eco-content .section-head h2 {
  color: var(--white);
}

.page-about .about-eco-content .section-kicker {
  color: var(--neon-green);
}

.page-about .about-eco-content .section-sub {
  color: rgba(245, 248, 252, 0.8);
}

.page-about .about-eco-strip {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.page-about .eco-block {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  backdrop-filter: blur(2px);
}

.page-about .eco-geo {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-green), var(--green-deep));
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  margin-bottom: 0.5rem;
}

.page-about .eco-name {
  font-weight: 900;
  color: var(--white);
}

.page-about .eco-tag {
  font-size: 0.8125rem;
  color: var(--mint);
  border-bottom: 1px dashed currentColor;
  transition: color 0.2s ease, border-bottom-style 0.2s ease;
}

.page-about .eco-block:hover .eco-tag {
  color: var(--neon-green);
  border-bottom-style: solid;
}

.page-about .about-team {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 3rem 0;
}

.page-about .about-team-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-about .about-team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-about .about-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.88), rgba(11, 27, 58, 0.92));
}

.page-about .about-team-content {
  position: relative;
  z-index: 2;
}

.page-about .about-team-content .section-head {
  color: var(--white);
}

.page-about .about-team-content .section-head h2 {
  color: var(--white);
}

.page-about .about-team-content .section-kicker {
  color: var(--neon-green);
}

.page-about .about-team-content .section-sub {
  color: rgba(245, 248, 252, 0.8);
}

.page-about .about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.page-about .about-team-grid .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.page-about .about-team-grid .card h3 {
  margin: 0 0 0.5rem;
  color: var(--neon-green);
  font-size: 1.0625rem;
}

.page-about .about-team-grid .card p {
  margin: 0;
  color: rgba(245, 248, 252, 0.82);
  font-size: 0.9375rem;
}

.page-about .about-team-note {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(245, 248, 252, 0.8);
}

.page-about .about-team-note a {
  color: var(--neon-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 900px) {
  .page-about .about-hero {
    padding: 4rem 0 5rem;
  }

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

  .page-about .about-story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }

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

  .page-about .about-stat-strip {
    flex-wrap: nowrap;
  }

  .page-about .about-stat-strip .stat-item {
    flex: 1;
  }

  .page-about .about-timeline {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-about .about-cert-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }

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

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

  .page-about .about-eco-strip {
    grid-template-columns: repeat(5, 1fr);
  }

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

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