/* ===================================================== subpages */
/* Note: .subpage padding-top is set in the shader-banner section below. */
.page-foot-note {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ----- legal / prose document ----- */
.doc {
  max-width: 46rem;
  padding-bottom: 40px;
}
.doc section {
  margin-bottom: 48px;
}
.doc h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.doc h2 .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.doc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 10px;
}
.doc p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.doc ul {
  margin: 0 0 14px 0;
  padding-left: 22px;
  color: var(--ink-soft);
}
.doc li {
  margin-bottom: 8px;
}
.doc a {
  color: var(--signal);
  text-underline-offset: 3px;
}
.doc .todo {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 2px;
  background: #ecdca0;
  color: #5a4a10;
  font-size: 0.85em;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ----- team ----- */
.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.member {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.member:hover {
  transform: translateY(-5px);
  border-color: #d2d2cd;
  z-index: 1;
  box-shadow: 0 24px 50px rgba(20, 20, 19, 0.1);
}

.member .photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint, #e9e9e5);
  border-bottom: 1px solid var(--hairline);
}

.member .photo .portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.member:hover .photo .portrait {
  transform: scale(1.035);
}
.member .photo .tag {
  z-index: 2;
}

.member .photo .glyph {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  font-size: clamp(3rem, 9vw, 5rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 20, 19, 0.2);
  transition:
    -webkit-text-stroke-color 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.member:hover .photo .glyph {
  -webkit-text-stroke-color: var(--signal);
  transform: scale(1.07);
}
.member .photo .tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  background: rgba(244, 244, 242, 0.85);
  padding: 3px 8px;
}

.member .info {
  padding: 22px 22px 24px;
}
.member .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.member .role {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.member .bio {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.member .links {
  margin-top: 16px;
  padding-top: 14px;
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--hairline);
}
.member .links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.member .links a:hover {
  color: var(--signal);
}
.member .accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.member:hover .accent {
  transform: scaleX(1);
}

/* open-roles CTA panel */
.team-cta {
  margin-top: 48px;
  padding: 40px;
  border: 1px solid var(--hairline);
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 700px) {
  .team-cta {
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 48px;
  }
}
.team-cta .eyebrow {
  border: 0;
  padding: 0;
  margin: 0 0 14px;
  color: var(--grey);
  letter-spacing: 0.2em;
}
.team-cta h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}
.team-cta p {
  margin-top: 12px;
  max-width: 38rem;
  color: var(--ink-soft);
}
.team-cta .btn {
  white-space: nowrap;
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover {
  background: var(--ink-soft);
}

.team-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--grey);
}

/* ---- numbered step timeline (volunteering: how to become a volunteer) ---- */
.steps {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 8px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 0 0 40px;
}
.step:last-child {
  padding-bottom: 0;
}
/* connecting line running down behind the nodes */
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 54px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.step-n {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--signal-soft);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step-body {
  padding-top: 5px;
}
.step-body .step-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-dim);
  margin-bottom: 8px;
}
.step-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  letter-spacing: -0.02em;
}
.step-body p {
  margin-top: 10px;
  max-width: 46rem;
  color: var(--txt-soft);
}
.step-body .step-meta {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-dim);
}
.step-body .step-meta a {
  color: var(--signal-soft);
  text-decoration: none;
}
.step-body .step-meta a:hover {
  text-decoration: underline;
}

/* ---- feature cards (builders: what you get) ---- */
.feature-cards {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 820px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 28px;
  transition:
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.fcard:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
}
.fcard .fkicker {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-dim);
}
.fcard .fkicker .fnum {
  color: var(--signal-soft);
}
.fcard h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.fcard p {
  margin-top: 14px;
  color: var(--txt-soft);
  flex: 1;
}
.fcard .fmeta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--txt-dim);
}
@media (prefers-reduced-motion: reduce) {
  .fcard:hover {
    transform: none;
  }
}

/* back link on subpages */
.back {
  display: inline-block;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.back:hover {
  color: var(--ink);
}

/* ===================================================== shader banner (association pages) */
.subpage {
  padding-top: 0;
}
.page-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-height: 44vh;
  padding-top: 128px;
}
@media (min-width: 768px) {
  .page-banner {
    min-height: 50vh;
    padding-top: 148px;
  }
}
.dither-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.page-banner .banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 19, 0.5),
    rgba(20, 20, 19, 0.22) 45%,
    rgba(20, 20, 19, 0.82)
  );
}
.banner-inner {
  position: relative;
  width: 100%;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .banner-inner {
    padding-bottom: 64px;
  }
}
.page-banner .back {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 26px;
}
.page-banner .back:hover {
  color: #fff;
}
.page-banner .eyebrow {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
}
.page-banner h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.page-banner .lede {
  margin-top: 22px;
  max-width: 42rem;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.page-banner .page-foot-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
}
.subpage-body {
  padding-top: 72px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .subpage-body {
    padding-top: 96px;
  }
}

/* The numbered section dividers used to provide the break here; restore a
   clear gap between the lead section and the step timeline / feature cards. */
.subpage-body .steps,
.subpage-body .feature-cards + .cols {
  margin-top: 56px;
}
@media (min-width: 768px) {
  .subpage-body .steps,
  .subpage-body .feature-cards + .cols {
    margin-top: 80px;
  }
}

/* ===================================================== home: richer sections */

/* mid-page dithering accent band (matches the banner shader) */
.accent-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 42vh;
  padding: 96px 0;
}
.accent-band .banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 20, 19, 0.72),
    rgba(20, 20, 19, 0.28) 60%,
    rgba(20, 20, 19, 0.65)
  );
}
.accent-inner {
  position: relative;
  width: 100%;
}
.accent-quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 20ch;
}
.accent-quote .em {
  color: #9aa6ff;
}

/* "more coming" event row */
.event.event-soon {
  align-items: center;
}
.event.event-soon .desc {
  margin: 0;
  color: var(--grey);
}

/* =====================================================================
     DARK THEME OVERRIDES — these win over the light-palette defaults
     defined earlier (tokens themselves now live in the single :root above).
     ===================================================================== */

/* soft body copy across sections */
.cols p,
.events-intro,
.doc p,
.doc ul,
.doc li,
.team-cta p,
.dark .body {
  color: var(--txt-soft);
}
.member .name {
  color: var(--txt);
}
.member .bio {
  color: var(--txt-soft);
}

/* eyebrows */
.eyebrow {
  border-top-color: var(--line);
  color: var(--txt-dim);
}

/* events list */
.event-list {
  border-top-color: var(--line);
}
.event {
  border-bottom-color: var(--line);
}
.event .idx,
.event .partners,
.status {
  color: var(--txt-dim);
}
.status .dot {
  background: var(--line);
}
.status .dot.up {
  background: var(--signal);
}

/* community role chips */
.roles li {
  border-color: var(--line);
  color: var(--txt-soft);
}
.roles li:hover {
  border-color: var(--txt);
  color: var(--txt);
}

/* quiet underlined links */
.link-quiet {
  text-decoration-color: var(--line);
}

/* the ink button would disappear on dark — make it the accent */
.btn-ink {
  background: var(--signal);
  color: #fff;
}
.btn-ink:hover {
  background: var(--signal-soft);
}

/* accent band highlight */
.accent-quote .em {
  color: var(--signal-soft);
}

/* subpage prose */
.back {
  color: var(--txt-dim);
}
.back:hover {
  color: var(--txt);
}
.doc h2 .n {
  color: var(--txt-dim);
}
.doc a {
  color: var(--signal-soft);
}
.doc .todo {
  background: #2a2410;
  color: #e7cf7a;
}

/* team cards */
.member {
  background: var(--surface);
  border-color: var(--line);
}
.member:hover {
  border-color: #3a3a3d;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}
.member .photo {
  background: var(--surface-2);
  border-bottom-color: var(--line);
}
.member .photo .glyph {
  -webkit-text-stroke-color: rgba(241, 241, 238, 0.2);
}
.member .photo .tag {
  background: rgba(12, 12, 13, 0.72);
  color: var(--txt-dim);
}
.member .links {
  border-top-color: var(--line);
}
.member .links a {
  color: var(--txt-soft);
}
.member .links a:hover {
  color: var(--signal-soft);
}
.team-cta {
  border-color: var(--line);
}
.team-cta h3 {
  color: var(--txt);
}
.team-note {
  color: var(--txt-dim);
}

/* footer unified with the page background */
footer {
  background: var(--bg);
}

/* ---------- THE MOVEMENT — alternating media + text feature ---------- */
.movement .lead-statement {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 22ch;
}
.movement .lead-sub {
  margin-top: 22px;
  max-width: 46rem;
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt-soft);
}

.features {
  margin-top: 12px;
}
.feature {
  display: grid;
  gap: 30px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    padding: 96px 0;
  }
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--txt-dim);
}
.feature-kicker .k-num {
  color: var(--signal);
}
.feature-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line);
}

.feature-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.feature-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 24px 0 4px;
  background: var(--signal);
  transform-origin: left;
}
@media (prefers-reduced-motion: no-preference) {
  .js .feature-rule {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  }
  .js .feature.is-visible .feature-rule {
    transform: scaleX(1);
  }
}

.feature-list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 31rem;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--txt-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.56em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.13);
}
.feature-list a {
  color: var(--signal-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-list a:hover {
  color: var(--signal);
}

.feature-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(139, 92, 246, 0.16),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature-media:hover img {
  transform: scale(1.04);
}
.feature-media:hover::after {
  opacity: 1;
}
.media-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 6px 11px;
  color: var(--txt);
  font-size: 10px;
  background: rgba(12, 12, 13, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  backdrop-filter: blur(8px) saturate(160%);
}
@supports not (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .media-tag {
    background: rgba(12, 12, 13, 0.82);
  }
}

.movement-cta {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

/* =====================================================================
     ABOUT PAGE  — stylized hero with the animated globe + supporting
     sections. Built entirely on the existing tokens / type system.
     ===================================================================== */

/* ----- hero (matches the dithered dark banners on other pages) ----- */
.about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  padding-top: 116px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
  }
}
.about-hero .banner-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 19, 0.55),
    rgba(20, 20, 19, 0.28) 45%,
    rgba(20, 20, 19, 0.85)
  );
}
.about-hero .hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 920px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.about-hero-copy {
  max-width: 38rem;
}
.about-hero .back {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.about-hero .back:hover {
  color: #fff;
}
.about-hero .eyebrow {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.22em;
}
.about-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 15ch;
}
.about-hero .lede {
  margin-top: 22px;
  max-width: 40rem;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.about-hero .ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* interactive globe stage */
.about-hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero .globe-wrap {
  position: relative;
  width: min(80vw, 400px);
  aspect-ratio: 1 / 1;
}
@media (min-width: 920px) {
  .about-hero .globe-wrap {
    width: min(46vw, 560px);
  }
}
/* darken the textured banner right behind the globe so the dots read cleanly */
.about-hero .globe-wrap::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 10, 12, 0.85) 42%,
    rgba(10, 10, 12, 0.4) 64%,
    transparent 76%
  );
}
.about-hero .globe-wrap canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}
.about-hero .globe-wrap canvas:active {
  cursor: grabbing;
}
.about-hero .globe-hint {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.34);
  letter-spacing: 0.18em;
}

@media (max-width: 919px) {
  .about-hero-copy {
    max-width: none;
  }
  .about-hero-stage {
    margin-top: 8px;
  }
}

/* ----- about page: home-page aligned sections, keeping the globe hero intact ----- */
.about-intro {
  padding-top: 112px;
}
section.about-intro {
  padding-bottom: 32px;
}
section.about-movement {
  padding-top: 64px;
}
@media (min-width: 768px) {
  .about-intro {
    padding-top: 140px;
  }
  section.about-intro {
    padding-bottom: 44px;
  }
  section.about-movement {
    padding-top: 84px;
  }
}

/* tighten the gap between "Designed to travel" and "Questions, answered" */
section.about-network {
  padding-bottom: 36px;
}
section.about-faq {
  padding-top: 60px;
}
@media (min-width: 768px) {
  section.about-network {
    padding-bottom: 52px;
  }
  section.about-faq {
    padding-top: 80px;
  }
}

.about-cols .statement,
.about-network .statement,
.about-join .statement {
  max-width: 18ch;
}

.about-copy p,
.network-lede {
  margin-top: 0;
  color: var(--txt-soft);
  font-size: 17px;
  line-height: 1.68;
}
.about-copy p + p {
  margin-top: 22px;
}

/* section 01 — refined supporting column + accent under the statement */
.about-intro .stmt-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 30px;
  background: var(--signal);
}
.about-copy .copy-label {
  margin: 0 0 16px;
  color: var(--txt-dim);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.about-copy .about-copy-lead {
  margin-top: 0;
  color: var(--txt);
  font-size: 19px;
  line-height: 1.6;
}

.about-movement .lead-statement {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 22ch;
}
.about-movement .lead-sub {
  margin-top: 22px;
  max-width: 46rem;
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt-soft);
}

/* section 02 — pillar cards (reuse .feature-cards / .fcard) + image pair */
.about-pillars {
  margin-top: 44px;
}
/* keep the card text aligned to the top (don't let the kicker/copy stretch) */
.about-pillars .fcard p {
  flex: 0 0 auto;
}
.about-gallery {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.about-gallery .feature-media img {
  aspect-ratio: 16 / 10;
}

/* section — FAQ accordion (native <details>, styled to match) */
.about-faq .faq-head {
  margin-bottom: 44px;
}
.about-faq .faq-head .statement {
  max-width: 16ch;
}
.about-faq .faq-lede {
  margin-top: 18px;
  max-width: 42rem;
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt-soft);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--txt);
  transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::marker {
  content: "";
}
.faq-q:hover {
  color: #fff;
}
.faq-item[open] .faq-q {
  color: #fff;
}
.faq-icon {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--signal-soft);
}
.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-a {
  padding: 0 44px 28px 0;
  max-width: 66ch;
  color: var(--txt-soft);
}
.faq-a p {
  font-size: 16px;
  line-height: 1.7;
}
.faq-a a {
  color: var(--signal-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-a a:hover {
  color: var(--signal);
}
@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-a {
    animation: faqReveal 0.35s ease;
  }
}

.about-belief {
  min-height: 48vh;
  margin: 18px 0 0;
}
.about-belief .belief-kicker {
  margin-bottom: 22px;
  color: rgba(244, 244, 242, 0.54);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-belief .accent-quote {
  max-width: 21ch;
}

.about-network-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 920px) {
  .about-network-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 84px;
  }
}

.about-network .network-lede {
  margin-top: 28px;
  max-width: 40rem;
}

.about-rows {
  border-top: 1px solid var(--line);
}
.about-row {
  display: grid;
  gap: 14px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .about-row {
    grid-template-columns: 64px minmax(160px, 0.55fr) 1fr;
    gap: 28px;
    align-items: baseline;
  }
}
.about-row span {
  color: var(--signal);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.about-row h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.about-row p {
  color: var(--txt-soft);
  line-height: 1.62;
}

.about-join {
  margin-top: 0;
  padding-top: 112px;
  padding-bottom: 128px;
}
.about-final-ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* current nav item (About page) */
.nav ul a[aria-current="page"] {
  color: #fff;
}

/* =====================================================================
   VOLUNTEERING PAGE — scoped polish (team + volunteering merged page).
   Namespaced under .volunteering so no other subpage is affected.
   ===================================================================== */

.volunteering .subpage-body {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .volunteering .subpage-body {
    padding-top: 80px;
  }
}

/* breathing room between the merged sections (team -> why -> steps) now
   that the labelled chapter rules are gone */
.volunteering .cols {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .volunteering .cols {
    margin-top: 88px;
  }
}
.volunteering .roles {
  margin-top: 26px;
}

/* the "Four steps" header that sits above the timeline */
.volunteering .vol-head {
  margin-top: 80px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .volunteering .vol-head {
    margin-top: 104px;
  }
}
.volunteering .vol-head .statement {
  max-width: 20ch;
}

/* ---- four steps, rebuilt as a 2x2 card grid --------------------------
   Each step is a panel with a big outlined stage number that echoes the
   team-card glyphs and lights violet on hover. */
.volunteering .subpage-body .steps {
  margin-top: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .volunteering .subpage-body .steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.volunteering .step {
  position: relative;
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 28px 28px 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}
.volunteering .step:hover {
  transform: translateY(-3px);
  border-color: #3a3a3d;
}
/* drop the old connecting timeline line */
.volunteering .step::before {
  content: none;
}
/* big outlined stage number, parked top-right */
.volunteering .step-n {
  position: absolute;
  top: 14px;
  right: 22px;
  width: auto;
  height: auto;
  border: 0;
  background: none;
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 241, 238, 0.14);
  transition: -webkit-text-stroke-color 0.35s ease;
  z-index: 0;
}
.volunteering .step:hover .step-n {
  -webkit-text-stroke-color: var(--signal);
}
.volunteering .step-body {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-right: 38px; /* keep text clear of the ghost number */
}
.volunteering .step-body .step-kicker {
  color: var(--signal-soft);
  margin-bottom: 10px;
}
.volunteering .step-body h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
}
.volunteering .step-body p {
  max-width: none;
}
.volunteering .step-body .step-meta {
  margin-top: 16px;
}

