.page-about {
  --about-journey-bg: #425768;
  background: var(--warm-paper);
  color: var(--dark-ink);
  overflow-x: hidden;
}

.page-about .container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.page-about .breadcrumb {
  padding-block: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.page-about .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.page-about .breadcrumb a:hover {
  text-decoration: underline;
}

.page-about .breadcrumb-sep {
  color: var(--grey-blue);
}

.page-about .section-block {
  padding-block: 3.25rem;
}

.page-about .section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.page-about .section-index {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--primary-red);
  text-transform: uppercase;
}

.page-about .section-index::before {
  content: '';
  width: 1.75rem;
  height: 0.5rem;
  background: repeating-linear-gradient(135deg, var(--primary-red) 0 4px, var(--gold) 4px 8px);
}

.page-about .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
}

.page-about a:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 3px;
}

.page-about .about-hero {
  position: relative;
  padding-block: 2.25rem 3rem;
}

.page-about .about-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 1rem;
  width: 42%;
  height: 12rem;
  background: linear-gradient(135deg, var(--primary-red) 0 32%, transparent 32% 68%, var(--grey-blue) 68%);
  opacity: 0.08;
  pointer-events: none;
}

.page-about .about-hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-about .about-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-about .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--grey-blue);
  text-transform: uppercase;
}

.page-about .hero-kicker::before {
  content: '';
  width: 2.25rem;
  height: 2px;
  background: var(--primary-red);
}

.page-about .about-hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--dark-ink);
  max-width: 12em;
}

.page-about .hero-lead {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
}

.page-about .hero-desc {
  max-width: 34rem;
  margin: 0;
  line-height: 1.75;
}

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

.page-about .hero-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--glass-white);
  border: 1px solid var(--card-bg);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.page-about .hero-meta b {
  color: var(--primary-red);
  font-weight: 700;
}

.page-about .hero-actions {
  display: flex;
}

.page-about .about-hero-figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
  background: var(--card-bg);
}

.page-about .about-hero-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-origin {
  background: var(--warm-paper);
}

.page-about .origin-layout {
  display: grid;
  gap: 2.5rem;
}

.page-about .origin-statement {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: var(--dark-ink);
  color: var(--warm-paper);
  border-radius: var(--radius-card);
}

.page-about .origin-statement::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 100%;
  background: linear-gradient(135deg, transparent 0 45%, var(--primary-red) 45% 55%, transparent 55% 70%, var(--gold) 70%);
  opacity: 0.16;
  pointer-events: none;
}

.page-about .origin-quote {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-about .origin-statement p {
  max-width: 30rem;
  margin: 0;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.92);
}

.page-about .origin-cards {
  display: grid;
  gap: 1.1rem;
}

.page-about .origin-card {
  padding: 1.5rem;
  background: var(--card-bg);
  border-left: 4px solid var(--primary-red);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .origin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.page-about .origin-num {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--primary-red);
}

.page-about .origin-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.page-about .origin-card p {
  margin: 0;
  line-height: 1.7;
}

.page-about .about-journey {
  background: var(--about-journey-bg);
  color: var(--warm-paper);
}

.page-about .about-journey .section-index {
  color: var(--gold);
}

.page-about .about-journey .section-index::before {
  background: repeating-linear-gradient(135deg, var(--gold) 0 4px, rgba(255, 255, 255, 0.25) 4px 8px);
}

.page-about .about-journey .section-title {
  color: var(--warm-paper);
}

.page-about .journey-layout {
  display: grid;
  gap: 2.25rem;
}

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

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

.page-about .timeline-list::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.35));
  opacity: 0.55;
}

.page-about .timeline-item {
  position: relative;
  padding: 0 0 2rem 3.5rem;
}

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

.page-about .timeline-marker {
  position: absolute;
  left: 0.35rem;
  top: 1.9rem;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--warm-paper);
  border: 2px solid var(--gold);
  color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.page-about .timeline-marker svg {
  width: 0.95rem;
  height: 0.95rem;
}

.page-about .timeline-card {
  padding: 1.2rem 1.35rem;
  background: var(--warm-paper);
  color: var(--dark-ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .timeline-item:hover .timeline-card,
.page-about .timeline-item:focus-within .timeline-card {
  transform: translateX(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 16px 28px rgba(0, 0, 0, 0.14);
}

.page-about .timeline-tag {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--primary-red);
}

.page-about .timeline-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.page-about .timeline-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.page-about .journey-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-about .journey-figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: rgba(255, 255, 255, 0.06);
}

.page-about .journey-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .journey-note {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  line-height: 1.7;
}

.page-about .journey-note p {
  margin: 0 0 0.9rem;
}

.page-about .journey-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-about .journey-link:hover {
  border-bottom-color: var(--gold);
}

.page-about .about-coverage {
  background: var(--warm-paper);
}

.page-about .coverage-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.page-about .coverage-info h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.page-about .coverage-info > p {
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.page-about .coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.page-about .stat-box {
  padding: 0.9rem 0.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  text-align: center;
}

.page-about .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-red);
}

.page-about .stat-label {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--grey-blue);
}

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

.page-about .coverage-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--card-bg);
}

.page-about .coverage-list li::before {
  content: '▸';
  color: var(--primary-red);
  font-family: var(--font-mono);
}

.page-about .coverage-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-about .coverage-figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 10 / 7;
  background: var(--card-bg);
}

.page-about .coverage-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .coverage-note {
  margin: 0.5rem 0 -0.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--grey-blue);
  text-transform: uppercase;
}

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

.page-about .coverage-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--dark-ink);
}

.page-about .loc-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .coverage-loc:hover .loc-dot,
.page-about .coverage-loc:focus-within .loc-dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(201, 160, 99, 0.35);
}

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

.page-about .about-tech .section-index {
  color: var(--gold);
}

.page-about .about-tech .section-index::before {
  background: repeating-linear-gradient(135deg, var(--gold) 0 4px, var(--primary-red) 4px 8px);
}

.page-about .about-tech .section-title {
  color: var(--warm-paper);
}

.page-about .tech-grid {
  display: grid;
  gap: 1.1rem;
}

.page-about .tech-card {
  display: block;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-about .tech-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.page-about .tech-card--feature {
  background: linear-gradient(135deg, rgba(140, 58, 43, 0.28), rgba(255, 255, 255, 0.06));
  border-color: rgba(201, 160, 99, 0.55);
}

.page-about .tech-card--feature:hover {
  background: linear-gradient(135deg, rgba(140, 58, 43, 0.36), rgba(255, 255, 255, 0.08));
}

.page-about .tech-card--action {
  position: relative;
  border: 1px dashed rgba(201, 160, 99, 0.65);
}

.page-about .tech-arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
}

.page-about .tech-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.page-about .tech-card h3 {
  margin: 0.55rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.page-about .tech-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.88);
}

.page-about .about-team {
  background: var(--warm-paper);
}

.page-about .team-layout {
  display: grid;
  gap: 2.25rem;
}

.page-about .team-copy {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  line-height: 1.8;
}

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

.page-about .team-copy p:last-of-type {
  margin-bottom: 1.6rem;
}

.page-about .team-values {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-about .team-values li {
  padding: 1.4rem;
  background: var(--warm-paper);
  border: 1px solid var(--card-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.page-about .team-values strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-ink);
}

.page-about .team-values span {
  line-height: 1.65;
  font-size: 0.95rem;
  color: var(--grey-blue);
}

@media (min-width: 56rem) {
  .page-about .about-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3.5rem;
  }

  .page-about .origin-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: stretch;
  }

  .page-about .origin-statement {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .page-about .origin-card {
    display: flex;
    flex-direction: column;
  }

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

  .page-about .coverage-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .page-about .coverage-info {
    order: 1;
  }

  .page-about .coverage-map {
    order: 2;
  }

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

  .page-about .tech-card--feature {
    grid-column: 1 / -1;
  }

  .page-about .team-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: stretch;
  }

  .page-about .team-values {
    grid-template-columns: repeat(3, 1fr);
    align-content: stretch;
  }

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