.page-about {
  --about-dot: 0.9rem;
  background: var(--ink-900);
  color: var(--cream);
  overflow-x: hidden;
}

/* ---------------- HERO ---------------- */

.page-about .about-hero {
  position: relative;
  padding: 6.5rem 0 3.4rem;
  isolation: isolate;
}

.page-about .about-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.page-about .about-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.4;
}

.page-about .about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 23, 18, 0.5) 0%, rgba(28, 23, 18, 0.92) 64%, var(--ink-900) 100%),
    linear-gradient(112deg, rgba(200, 107, 60, 0.34) 0%, rgba(200, 107, 60, 0) 52%);
}

.page-about .about-hero__inner {
  position: relative;
}

.page-about .about-hero__title {
  margin: 0.9rem 0 1.1rem;
  max-width: 17ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 8.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--cream);
}

.page-about .about-hero__title::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 4px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--ochre), var(--lava) 52%, var(--zap));
}

.page-about .about-hero__lead {
  max-width: 48ch;
  margin: 0 0 1.7rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244, 237, 228, 0.83);
}

.page-about .about-hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 1rem;
  max-width: 660px;
  margin-bottom: 1.9rem;
}

.page-about .about-fact {
  padding-top: 0.75rem;
  border-top: 2px solid var(--ochre-line);
}

.page-about .about-fact__num {
  display: block;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--neon);
}

.page-about .about-fact__cap {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  color: var(--muted);
}

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

/* ---------------- ORIGIN ---------------- */

.page-about .about-origin__grid {
  display: grid;
  gap: 1.7rem;
}

.page-about .about-origin__aside {
  position: relative;
  padding: 1.4rem 1.25rem 1.5rem;
}

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

.page-about .about-origin__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--line-mid);
}

.page-about .about-origin__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-about .about-origin__list .pmt-num {
  flex: 0 0 auto;
  min-width: 4.4rem;
  font-size: 1.32rem;
  color: var(--amber);
}

.page-about .about-origin__list span:last-child {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
}

.page-about .about-origin__note {
  margin: 1.1rem 0 0;
  padding-left: 0.8rem;
  border-left: 2px solid var(--ochre);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(244, 237, 228, 0.62);
}

/* ---------------- CONTENT SYSTEM ---------------- */

.page-about .about-content {
  background: linear-gradient(158deg, rgba(200, 107, 60, 0.2) 0%, rgba(43, 35, 32, 0.94) 48%, var(--ink-900) 100%);
}

.page-about .about-content__intro {
  max-width: 62ch;
  margin: 0.9rem 0 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(244, 237, 228, 0.76);
}

.page-about .about-content__split {
  display: grid;
  gap: 1rem;
  margin-top: 1.9rem;
}

.page-about .about-pillar {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  background: var(--ink-900);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-about .about-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.page-about .about-pillar--lava::before {
  background: linear-gradient(90deg, var(--lava) 0%, rgba(224, 138, 75, 0.06) 100%);
}

.page-about .about-pillar--zap::before {
  background: linear-gradient(90deg, var(--zap) 0%, rgba(47, 212, 255, 0.06) 100%);
}

.page-about .about-pillar--neon::before {
  background: linear-gradient(90deg, var(--neon) 0%, rgba(57, 255, 136, 0.06) 100%);
}

.page-about .about-pillar:hover,
.page-about .about-pillar:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 212, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(47, 212, 255, 0.16), var(--shadow-deep);
}

.page-about .about-pillar h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.page-about .about-pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(244, 237, 228, 0.72);
}

.page-about .about-pillar__meta {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--zap);
  text-transform: uppercase;
}

/* ---------------- YOUTH ---------------- */

.page-about .about-youth__grid {
  display: grid;
  gap: 1.7rem;
}

.page-about .about-youth__media {
  margin: 0;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.page-about .about-youth__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(92%) contrast(106%);
}

/* ---------------- PARTNER BAND ---------------- */

.page-about .about-band-wrap {
  margin-top: 2.2rem;
  overflow: hidden;
}

.page-about .about-band-scroll {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 1rem 1.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.page-about .about-band-scroll::-webkit-scrollbar {
  display: none;
}

.page-about .about-partner {
  position: relative;
  flex: 0 0 15.5rem;
  scroll-snap-align: start;
  padding: 1.3rem 1.15rem 1.4rem;
  background: var(--ink-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-about .about-partner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.page-about .about-partner--ochre::after { background: var(--ochre); }
.page-about .about-partner--zap::after { background: var(--zap); }
.page-about .about-partner--neon::after { background: var(--neon); }
.page-about .about-partner--amber::after { background: var(--amber); }

.page-about .about-partner:hover,
.page-about .about-partner:focus-within {
  transform: translateY(-4px);
  border-color: var(--ochre-line);
  background: #332924;
}

.page-about .about-partner__num {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--cream);
}

.page-about .about-partner h3 {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--amber);
}

.page-about .about-partner p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.72;
  color: rgba(244, 237, 228, 0.66);
}

/* ---------------- TEAM ---------------- */

.page-about .about-team {
  background: var(--ink-800);
}

.page-about .about-team__grid {
  display: grid;
  gap: 1.7rem;
}

.page-about .about-team__media {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-about .about-team__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about .about-roles {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.page-about .about-roles__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.8rem;
  padding: 0.7rem 0.85rem;
  border-left: 2px solid var(--line-mid);
  background: rgba(28, 23, 18, 0.55);
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.page-about .about-roles__item:hover,
.page-about .about-roles__item:focus-within {
  border-left-color: var(--neon);
  background: rgba(28, 23, 18, 0.9);
}

.page-about .about-roles__tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  text-transform: uppercase;
  white-space: nowrap;
}

.page-about .about-roles__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(244, 237, 228, 0.72);
}

/* ---------------- TIMELINE ---------------- */

.page-about .about-timeline {
  position: relative;
  display: grid;
  gap: 1.3rem;
  margin: 1.9rem 0 0;
  padding: 0 0 0 1.9rem;
  list-style: none;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, var(--ochre) 0%, rgba(200, 107, 60, 0.5) 62%, rgba(57, 255, 136, 0.5) 100%);
}

.page-about .about-timeline__item {
  position: relative;
}

.page-about .about-timeline__item::before {
  content: "";
  position: absolute;
  left: -1.93rem;
  top: 1.15rem;
  width: var(--about-dot);
  height: var(--about-dot);
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--ochre);
}

.page-about .about-timeline__item--now::before {
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 0 5px rgba(57, 255, 136, 0.16);
}

.page-about .about-timeline__card {
  padding: 1.15rem 1.15rem 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-about .about-timeline__card:hover,
.page-about .about-timeline__card:focus-within {
  transform: translateX(4px);
  border-color: var(--ochre-line);
}

.page-about .about-timeline__ver {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--lava);
}

.page-about .about-timeline__item--now .about-timeline__ver {
  color: var(--neon);
}

.page-about .about-timeline__card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--cream);
}

.page-about .about-timeline__card p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(244, 237, 228, 0.7);
}

/* ---------------- PLEDGE ---------------- */

.page-about .about-pledge__glass {
  position: relative;
  padding: 1.8rem 1.25rem 1.9rem;
  overflow: hidden;
}

.page-about .about-pledge__glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ochre), var(--lava) 32%, var(--zap) 66%, var(--neon));
}

.page-about .about-pledge__lead {
  max-width: 62ch;
  margin: 0.9rem 0 0;
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(244, 237, 228, 0.78);
}

.page-about .about-pledge__grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.page-about .about-pledge__cell {
  padding: 1rem 1rem 1.05rem;
  background: rgba(28, 23, 18, 0.62);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.page-about .about-pledge__cell h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber);
}

.page-about .about-pledge__cell p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(244, 237, 228, 0.68);
}

.page-about .about-pledge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

/* ---------------- FOCUS ---------------- */

.page-about a:focus-visible,
.page-about .about-band-scroll:focus-visible,
.page-about [tabindex]:focus-visible {
  outline: 2px solid var(--zap);
  outline-offset: 3px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (min-width: 720px) {
  .page-about .about-hero {
    padding: 8rem 0 4.4rem;
  }

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

  .page-about .about-pledge__glass {
    padding: 2.4rem 2rem 2.4rem;
  }
}

@media (min-width: 900px) {
  .page-about .about-origin__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 2.6rem;
    align-items: start;
  }

  .page-about .about-content__split {
    grid-template-columns: 1.12fr 0.96fr 0.9fr;
    gap: 1.1rem;
  }

  .page-about .about-pillar:nth-child(2) {
    margin-top: 2.2rem;
  }

  .page-about .about-pillar:nth-child(3) {
    margin-top: 4.2rem;
  }

  .page-about .about-youth__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
  }

  .page-about .about-team__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.8rem;
    align-items: center;
  }

  .page-about .about-timeline {
    padding-left: 2.4rem;
  }

  .page-about .about-timeline::before {
    left: 0.62rem;
  }

  .page-about .about-timeline__item::before {
    left: -2.23rem;
  }

  .page-about .about-timeline__card {
    padding: 1.35rem 1.5rem 1.45rem;
  }
}

@media (min-width: 1180px) {
  .page-about .about-band-scroll {
    padding-inline: calc((100vw - var(--shell-max)) / 2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-pillar,
  .page-about .about-partner,
  .page-about .about-timeline__card,
  .page-about .about-roles__item {
    transition: none;
  }

  .page-about .about-pillar:hover,
  .page-about .about-partner:hover,
  .page-about .about-timeline__card:hover,
  .page-about .about-pillar:focus-within,
  .page-about .about-partner:focus-within,
  .page-about .about-timeline__card:focus-within {
    transform: none;
  }
}
