.page-about {
  --pg-about-line: rgba(0, 168, 255, 0.38);
  --pg-about-glow: rgba(198, 255, 58, 0.55);
  --pg-about-bg-card: var(--bg-elevated);
  background: var(--bg-deep);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  display: block;
}

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

.page-about h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.22;
  color: var(--text-bright);
  margin: var(--space-3) 0 var(--space-4);
}

.page-about .page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.page-about .page-title {
  font-size: clamp(2rem, 5.5vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: var(--space-2) 0 0;
}

.page-about .page-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  line-height: 1.35;
  color: var(--accent-blue);
  margin: 0;
}

.about-hero {
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 168, 255, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(0, 168, 255, 0.06), transparent 60%);
}

.about-hero__grid {
  display: grid;
  gap: var(--space-6);
}

.about-hero__copy {
  display: grid;
  gap: var(--space-3);
}

.about-hero__lead {
  max-width: 36em;
  font-size: 1.05rem;
  color: var(--text-body);
  margin: var(--space-2) 0 0;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: 0;
  padding: var(--space-5) var(--space-4);
  background: linear-gradient(135deg, var(--bg-elevated), transparent 88%);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--accent-lime);
  border-radius: var(--radius-md);
}

.hero-stat dt {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-stat dd {
  margin: var(--space-1) 0 0;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

.origin-section {
  padding: var(--space-7) 0;
}

.origin-section__grid {
  display: grid;
  gap: var(--space-6);
}

.origin-section__content {
  max-width: 42rem;
}

.origin-section__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-bright);
}

.origin-section__content p:last-child {
  margin-bottom: 0;
}

.origin-media {
  margin: 0;
}

.origin-media img {
  width: 100%;
  border-radius: var(--radius-md);
}

.origin-media figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

.timeline-section {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line-soft);
}

.timeline-heading__intro,
.retro-section__intro,
.team-section__intro {
  max-width: 38em;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.timeline-block {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(32, 36, 51, 0.92), rgba(11, 13, 20, 0.96));
}

.timeline-scene {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

.timeline-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.1);
}

.years-strip {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding: var(--space-2) 0 var(--space-4);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-blue) transparent;
}

.years-strip__item {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  background: rgba(42, 46, 62, 0.42);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.years-strip__item:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  background: rgba(0, 168, 255, 0.08);
}

.timeline-track {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  position: relative;
}

.timeline-entry {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.timeline-year {
  flex: 0 0 auto;
  width: 72px;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-blue);
  padding-top: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.timeline-entry:hover .timeline-year {
  color: var(--accent-lime);
  transform: translateX(4px);
}

.timeline-node {
  flex: 0 0 28px;
  position: relative;
  align-self: stretch;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 14px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(198, 255, 58, 0.75), rgba(0, 168, 255, 0.3));
}

.timeline-entry:last-child .timeline-node::before {
  display: none;
}

.timeline-node::after {
  content: "";
  position: absolute;
  left: calc(50% - 7px);
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 14px var(--pg-about-glow);
  border: 2px solid var(--bg-deep);
}

.timeline-content {
  flex: 1;
  min-width: 0;
  padding-bottom: var(--space-5);
}

.timeline-tag {
  display: inline-block;
  margin: 0 0 var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-lime);
  text-transform: uppercase;
}

.timeline-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--text-bright);
  margin: 0 0 var(--space-2);
}

.timeline-content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-body);
}

.timeline-footnote {
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px dashed var(--line-soft);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.retro-section {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line-soft);
}

.retro-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(0, 168, 255, 0.42);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.retro-card__figure {
  margin: 0;
  overflow: hidden;
}

.retro-card__figure img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.retro-card__body {
  padding: var(--space-5);
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.retro-episode {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bg-deep);
  background: var(--accent-lime);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

.retro-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text-bright);
  margin: 0;
}

.retro-card__body p {
  margin: 0;
  color: var(--text-body);
}

.retro-chart {
  width: 100%;
  height: auto;
  margin: var(--space-2) 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(11, 13, 20, 0.5);
}

.retro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.retro-list li {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
  color: var(--text-body);
}

.retro-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--accent-blue);
  align-self: center;
}

.retro-note {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.retro-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.team-section {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line-soft);
}

.team-grid {
  display: grid;
  gap: var(--space-4);
}

.team-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  border-color: var(--line-strong);
  background: #242939;
  transform: translateY(-2px);
}

.team-card__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
}

.team-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--text-bright);
  margin: var(--space-2) 0 var(--space-2);
}

.team-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
}

.team-extra {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.08), transparent 70%);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--radius-md);
  color: var(--text-body);
  display: grid;
  gap: var(--space-4);
}

.team-extra p {
  margin: 0;
  max-width: 44rem;
}

.about-outro {
  padding: var(--space-7) 0 var(--space-7);
  display: grid;
  gap: var(--space-3);
  justify-items: start;
}

.about-outro__lead {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.2;
  color: var(--text-bright);
  margin: 0;
}

.about-outro__text {
  max-width: 34em;
  margin: 0;
  color: var(--text-muted);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--bg-deep);
  background: var(--accent-lime);
  border: 1px solid var(--accent-lime);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-btn:hover,
.page-btn:focus-visible {
  background: var(--text-bright);
  border-color: var(--text-bright);
  color: var(--bg-deep);
  outline: none;
}

.page-btn--ghost {
  background: transparent;
  color: var(--text-bright);
  border-color: var(--line-strong);
}

.page-btn--ghost:hover,
.page-btn--ghost:focus-visible {
  background: rgba(0, 168, 255, 0.1);
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .timeline-year {
    width: 112px;
    font-size: 3rem;
    text-align: right;
    padding-top: 10px;
  }

  .timeline-node {
    flex-basis: 48px;
  }

  .timeline-entry {
    gap: var(--space-4);
  }

  .timeline-block {
    padding: var(--space-6) var(--space-6);
  }
}

@media (min-width: 820px) {
  .origin-section__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: var(--space-7);
  }

  .about-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: var(--space-7);
  }

  .hero-stats {
    padding: var(--space-6) var(--space-5);
  }

  .retro-card {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }

  .retro-card__figure img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }

  .retro-card__body {
    padding: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
