.page-about {
  --about-axis-x: 26px;
  --about-node-size: 12px;
  background: var(--night);
  color: var(--chalk);
}

.page-about h1,
.page-about h2,
.page-about h3 {
  font-family: var(--font-head);
  letter-spacing: -.01em;
}

.page-about h1 {
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.02;
  margin: 14px 0 0;
  text-transform: none;
}

.page-about h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  margin: 0;
}

.page-about h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.25;
  margin: 0 0 8px;
}

.page-about p {
  margin: 0 0 14px;
  line-height: 1.75;
}

.page-about p:last-child {
  margin-bottom: 0;
}

.page-about .eyebrow {
  margin: 0 0 10px;
}

/* ---------- hero ---------- */
.about-hero {
  padding: clamp(24px, 4vw, 44px) 0 clamp(32px, 5vw, 60px);
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(31, 191, 107, .14) 0%, transparent 58%),
    linear-gradient(180deg, var(--night) 0%, #081422 100%);
  border-bottom: 1px solid var(--line);
}

.about-hero .crumb {
  margin-bottom: clamp(20px, 3.4vw, 40px);
}

.about-hero__grid {
  display: grid;
  gap: clamp(22px, 3.4vw, 42px);
  grid-template-columns: 1fr;
}

.about-hero__lead .lead {
  max-width: 60ch;
  color: var(--chalk);
  font-size: clamp(16px, 1.05vw, 18px);
  margin-top: 16px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-hero__figure {
  margin: 0;
}

.about-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ---------- shared band tweaks for this page ---------- */
.page-about .band {
  padding: clamp(34px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}

.page-about .band__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: clamp(18px, 2.6vw, 30px);
  margin-bottom: clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--line-soft);
}

.page-about .band__head h2 {
  color: var(--chalk);
}

.about-timeline-band__meta,
.about-lines-band__meta,
.about-data-band__meta,
.about-team-band__meta,
.about-culture-band__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate);
  margin: 0;
}

/* ---------- timeline ---------- */
.about-timeline-band {
  background: var(--ink);
}

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

.about-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--turf) 0%, rgba(71, 215, 224, .5) 52%, rgba(140, 154, 166, .18) 100%);
}

.about-timeline__item {
  position: relative;
  padding-bottom: clamp(20px, 3vw, 34px);
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__dot {
  position: absolute;
  left: -30px;
  top: 22px;
  width: var(--about-node-size);
  height: var(--about-node-size);
  border-radius: 50%;
  background: var(--night);
  border: 2px solid var(--slate);
  box-shadow: 0 0 0 4px var(--ink);
  transition: border-color var(--t), background var(--t);
}

.about-timeline__item.is-active .about-timeline__dot {
  background: var(--turf);
  border-color: var(--turf);
}

.about-timeline__item:hover .about-timeline__dot,
.about-timeline__item:focus-within .about-timeline__dot {
  background: var(--turf);
  border-color: var(--turf);
}

.about-timeline__body {
  background: var(--panel);
}

.about-timeline__title {
  margin-top: 4px;
  color: var(--chalk);
}

.about-timeline__body p {
  color: var(--slate);
  font-size: 15px;
}

.about-year {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--corner);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

/* ---------- four lines ---------- */
.about-lines-band {
  background: var(--night);
}

.about-lines {
  gap: clamp(14px, 1.8vw, 22px);
}

.about-line {
  padding: clamp(18px, 2vw, 26px);
  background: linear-gradient(160deg, rgba(5, 9, 15, .7) 0%, rgba(11, 26, 43, .5) 100%);
  border: 1px solid var(--line);
  position: relative;
}

.about-line::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-top: 1px solid var(--slate);
  border-right: 1px solid var(--slate);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: border-color var(--t);
  pointer-events: none;
}

.about-line:hover::after,
.about-line:focus-within::after {
  border-color: var(--turf);
}

.about-line .panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.about-line__no {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--turf);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.about-line p {
  color: var(--slate);
  font-size: 15px;
}

/* ---------- follow band (chalk) ---------- */
.about-follow-band {
  background: var(--chalk);
  color: var(--ink);
}

.about-follow-band .eyebrow {
  color: var(--turf-deep);
}

.about-follow-band h2 {
  color: var(--ink);
}

.about-follow__grid {
  display: grid;
  gap: clamp(24px, 3.4vw, 46px);
  grid-template-columns: 1fr;
}

.about-follow__copy .lead {
  color: #1c2b38;
  margin-top: 14px;
}

.about-follow__list {
  list-style: none;
  margin: 22px 0 20px;
  padding: 0;
  border-top: 1px solid rgba(11, 26, 43, .16);
}

.about-follow__list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 26, 43, .16);
  align-items: baseline;
}

.about-follow__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--turf-deep);
  text-transform: uppercase;
}

.about-follow__v {
  font-size: 15px;
  line-height: 1.7;
  color: #1c2b38;
}

.about-follow__note {
  font-size: 14px;
  color: #3c4d5b;
  padding-left: 14px;
  border-left: 2px solid var(--turf);
}

.about-follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-follow__stats {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.about-follow__stats .stat {
  background: var(--ink);
  border: 1px solid rgba(11, 26, 43, .2);
  padding: 18px 20px;
  border-radius: 0;
}

.about-follow__stats .stat__num {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 600;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
}

.about-follow__stats .stat--corner .stat__num {
  color: var(--corner);
}

.about-follow__stats .stat--possession .stat__num {
  color: var(--possess);
}

.about-follow__stats .stat__unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  margin-left: 6px;
}

.about-follow__stats .stat__label {
  display: block;
  font-size: 13px;
  color: var(--slate);
  margin-top: 6px;
}

/* ---------- data band ---------- */
.about-data-band {
  background: var(--ink);
}

.about-data__grid {
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.about-data__text p {
  color: var(--chalk);
  font-size: 16px;
}

.about-data__figure {
  margin: 0;
}

.about-data__figure svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 360px;
  margin: 0 auto;
}

.about-data__notes {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: clamp(24px, 3.4vw, 40px);
}

.about-data__note {
  padding: 18px 20px;
  background: rgba(31, 191, 107, .06);
  border: 1px solid var(--line);
  border-left: 2px solid var(--turf);
}

.about-data__note .panel__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--turf);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.about-data__note p:last-child {
  color: var(--slate);
  font-size: 14px;
}

/* ---------- team ---------- */
.about-team-band {
  background: var(--night);
}

.about-team__grid {
  display: grid;
  gap: clamp(24px, 3.4vw, 44px);
  grid-template-columns: 1fr;
}

.about-team__chart svg {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.about-team__node {
  cursor: default;
}

.about-team__node circle {
  transition: r var(--t), opacity var(--t);
}

.about-team__node:hover circle,
.about-team__node:focus circle {
  r: 10;
}

.about-team__node:focus {
  outline: 2px solid var(--turf);
  outline-offset: 2px;
}

.about-team__panels {
  display: grid;
  gap: 14px;
}

.about-team__card {
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 2px solid var(--slate);
  transition: border-left-color var(--t), background var(--t);
}

.about-team__card:hover {
  border-left-color: var(--turf);
  background: rgba(31, 191, 107, .05);
}

.about-team__card .panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.about-team__card p {
  color: var(--slate);
  font-size: 14px;
}

/* ---------- partners ---------- */
.about-partners-band {
  background: linear-gradient(180deg, var(--ink) 0%, #060d16 100%);
}

.about-partners__grid {
  display: grid;
  gap: clamp(24px, 3.4vw, 44px);
  grid-template-columns: 1fr;
  align-items: start;
}

.about-partners__figure {
  margin: 0;
}

.about-partners__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-partners__copy .lead {
  margin-top: 14px;
  color: var(--chalk);
}

.about-partners__cols {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  grid-template-columns: 1fr;
}

.about-partners__col {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.about-partners__col h3 {
  color: var(--turf);
  font-size: 16px;
}

.about-partners__col p {
  color: var(--slate);
  font-size: 14px;
}

.about-partners__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ---------- culture ---------- */
.about-culture-band {
  background: var(--ink);
  border-bottom: none;
}

.about-culture {
  gap: clamp(12px, 1.6vw, 20px);
}

.about-culture__item {
  padding: 20px 16px 20px 0;
  border-top: 2px solid var(--line);
  transition: border-top-color var(--t);
}

.about-culture__item:hover {
  border-top-color: var(--turf);
}

.about-culture__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--slate);
  display: block;
  margin-bottom: 10px;
}

.about-culture__item h3 {
  color: var(--chalk);
  font-size: 19px;
}

.about-culture__item p {
  color: var(--slate);
  font-size: 14px;
}

.about-culture__cta {
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(20px, 2.6vw, 32px);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: center;
  background: linear-gradient(120deg, rgba(31, 191, 107, .09) 0%, rgba(5, 9, 15, .7) 62%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--turf);
}

.about-culture__cta .panel__title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--chalk);
  margin: 0 0 8px;
}

.about-culture__cta p:last-child {
  color: var(--slate);
  font-size: 14px;
}

.about-culture__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- responsive ---------- */
@media (min-width: 620px) {
  .about-follow__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-data__notes {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-partners__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (min-width: 900px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
  }

  .about-timeline {
    padding-left: 46px;
  }

  .about-timeline::before {
    left: 7px;
  }

  .about-timeline__dot {
    left: -46px;
    top: 26px;
  }

  .about-timeline__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60px;
    gap: 0;
  }

  .about-timeline__item:nth-child(even) .about-timeline__body {
    margin-left: auto;
    max-width: 82%;
  }

  .about-timeline__item:nth-child(odd) .about-timeline__body {
    max-width: 82%;
  }

  .about-follow__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
  }

  .about-data__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: center;
  }

  .about-follow__stats {
    grid-template-columns: 1fr;
  }

  .about-team__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: start;
  }

  .about-team__chart {
    position: sticky;
    top: 24px;
  }

  .about-partners__grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .about-culture__cta {
    grid-template-columns: minmax(0, 1.6fr) auto;
  }
}

@media (min-width: 1180px) {
  .about-lines {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-culture {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
</｜｜DSML｜｜ parameter>
</｜｜DSML｜｜ invoke>
</｜｜DSML｜｜ calls>
