.page-about .about-hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-green);
  color: var(--frost);
  padding-top: 2rem;
  padding-bottom: clamp(2.5rem, 8vw, 6rem);
}
.page-about .about-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -12%;
  width: 46%;
  height: 76%;
  background: var(--grad-red);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
  pointer-events: none;
}
.page-about .about-hero .container {
  position: relative;
  z-index: 1;
}
.page-about .about-hero .breadcrumb {
  margin-bottom: 1.75rem;
}
.page-about .about-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .about-hero__content {
  order: 1;
}
.page-about .about-hero__media {
  order: 2;
}
.page-about .about-hero__media .img-frame {
  border-color: rgba(248, 252, 248, 0.3);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}
.page-about .about-hero__media img,
.page-about .about-assets__media img,
.page-about .about-team__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-about .about-hero .display-title {
  font-size: clamp(1.7rem, 6vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.012em;
  max-width: 13em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.page-about .about-hero .section-label {
  color: var(--gold-dark);
}
.page-about .about-hero .lead-text {
  color: rgba(248, 252, 248, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.8;
  margin-top: 1.25rem;
}
.page-about .about-hero__content > p:not(.lead-text):not(.section-label) {
  color: rgba(248, 252, 248, 0.76);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.page-about .about-hero__content .btn {
  margin-top: 1.8rem;
}

.page-about .about-mission {
  position: relative;
  background: var(--paper);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}
.page-about .about-mission__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-about .about-mission__body {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border: 1px solid rgba(11, 61, 46, 0.18);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.page-about .about-mission__body::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(11, 61, 46, 0.14);
  background: rgba(245, 240, 230, 0.8);
  z-index: -1;
}
.page-about .about-mission__body > p {
  margin-top: 1rem;
  line-height: 1.85;
  color: rgba(30, 30, 30, 0.85);
}
.page-about .about-mission__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.page-about .about-mission__stats {
  background: var(--green-deep);
  color: var(--frost);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
.page-about .about-mission__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page-about .about-mission__stat-num {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--frost);
  letter-spacing: 0.02em;
}
.page-about .about-mission__stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(248, 252, 248, 0.72);
}

.page-about .about-journey {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 74%, var(--green-deep) 74%, var(--green-deep) 100%);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}
.page-about .about-journey__header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.page-about .about-timeline {
  position: relative;
  padding-left: 32px;
}
.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dark) 0%, var(--green-deep) 55%, var(--red-arena) 100%);
}
.page-about .about-timeline__item {
  position: relative;
  margin-bottom: 2.25rem;
}
.page-about .about-timeline__item:last-child {
  margin-bottom: 0;
}
.page-about .about-timeline__year {
  display: inline-block;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.page-about .about-timeline__dot {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.18);
}
.page-about .about-timeline__card {
  background: var(--paper);
  border: 1px solid rgba(11, 61, 46, 0.18);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease);
}
.page-about .about-timeline__item:hover .about-timeline__card,
.page-about .about-timeline__item:focus-within .about-timeline__card {
  border-color: var(--red-arena);
}
.page-about .about-timeline__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.page-about .about-timeline__card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(30, 30, 30, 0.8);
}
.page-about .about-timeline__detail {
  color: var(--green-deep);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}
@media (hover: hover) {
  .page-about .about-timeline__detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s var(--ease), opacity 0.45s var(--ease), margin-top 0.45s var(--ease);
  }
  .page-about .about-timeline__item:hover .about-timeline__detail,
  .page-about .about-timeline__item:focus-within .about-timeline__detail {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.5rem;
  }
}

.page-about .about-assets {
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    170deg,
    rgba(11, 61, 46, 0.05) 0px,
    rgba(11, 61, 46, 0.05) 1px,
    transparent 1px,
    transparent 24px
  );
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}
.page-about .about-assets::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: rgba(11, 61, 46, 0.035);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.page-about .about-assets > .container {
  position: relative;
  z-index: 1;
}
.page-about .about-assets__header {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}
.page-about .about-assets__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .about-assets__media {
  order: 1;
}
.page-about .about-assets__content {
  order: 2;
}
.page-about .about-assets__media .img-frame {
  background: var(--paper);
  border-color: rgba(11, 61, 46, 0.18);
}
.page-about .about-assets__content > p {
  line-height: 1.85;
  color: rgba(30, 30, 30, 0.85);
  max-width: 60ch;
}
.page-about .about-assets__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.page-about .about-assets__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
}
.page-about .about-assets__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--red-arena);
  transform: rotate(45deg);
}
.page-about .about-assets__chart {
  margin-top: 2rem;
  background: var(--paper);
  border: 1px solid rgba(11, 61, 46, 0.16);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.page-about .about-assets__chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.page-about .about-chart__bar {
  fill: var(--green-deep);
  opacity: 0.9;
  transition: fill 0.3s var(--ease);
}
.page-about .about-chart__group:hover .about-chart__bar {
  fill: var(--red-arena);
}
.page-about .about-chart__value {
  font-family: var(--font-mono);
  fill: var(--ink);
  font-size: 17px;
  font-weight: 700;
}
.page-about .about-chart__label {
  font-family: var(--font-sans);
  fill: var(--green-deep);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.page-about .about-team {
  background: var(--green-deep);
  color: var(--frost);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
}
.page-about .about-team__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .about-team__media {
  order: 1;
}
.page-about .about-team__media .img-frame {
  border-color: rgba(192, 192, 192, 0.35);
}
.page-about .about-team__content {
  order: 2;
}
.page-about .about-team__content .section-label {
  color: var(--gold-dark);
}
.page-about .about-team__content h2 {
  color: var(--frost);
}
.page-about .about-team__content > p {
  color: rgba(248, 252, 248, 0.82);
  line-height: 1.85;
  margin-top: 1rem;
}
.page-about .about-team__principles {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.page-about .about-team__principle {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid rgba(192, 192, 192, 0.25);
  padding-top: 1rem;
}
.page-about .about-team__principle .mono {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  min-width: 2.2em;
}
.page-about .about-team__principle p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(248, 252, 248, 0.86);
}

.page-about .about-ecosystem {
  background: var(--paper);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 8vw, 6rem);
}
.page-about .about-ecosystem__header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.page-about .about-ecosystem__header .lead-text {
  max-width: 70ch;
  margin-top: 1rem;
  color: rgba(30, 30, 30, 0.85);
}
.page-about .about-ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-about .about-ecosystem__card {
  background: var(--paper);
  border: 1px solid rgba(11, 61, 46, 0.16);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.page-about .about-ecosystem__card:hover {
  border-color: var(--red-arena);
  transform: translateY(-2px);
}
.page-about .about-ecosystem__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.page-about .about-ecosystem__card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(30, 30, 30, 0.8);
}
.page-about .about-ecosystem__cta {
  margin-top: 2.5rem;
  background: var(--green-deep);
  color: var(--frost);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.page-about .about-ecosystem__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 100%;
  background: var(--grad-red);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.85;
  pointer-events: none;
}
.page-about .about-ecosystem__cta p {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  line-height: 1.85;
  color: rgba(248, 252, 248, 0.9);
  font-size: 0.98rem;
}
.page-about .about-ecosystem__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-about .about-ecosystem__actions .btn--ghost {
  border-color: rgba(248, 252, 248, 0.55);
  color: var(--frost);
}

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

@media (min-width: 768px) {
  .page-about .about-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .page-about .about-hero__content {
    order: 2;
  }
  .page-about .about-hero__media {
    order: 1;
  }
  .page-about .about-mission__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: stretch;
  }
  .page-about .about-mission__body {
    margin-right: -1rem;
    z-index: 2;
  }
  .page-about .about-mission__stats {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.6rem;
    margin-left: -1rem;
    z-index: 1;
    padding-left: clamp(2rem, 4vw, 3rem);
  }
  .page-about .about-mission__stat {
    flex-direction: row;
    align-items: baseline;
    gap: 0.65rem;
  }
  .page-about .about-mission__stat-num {
    font-size: clamp(2rem, 4vw, 2.9rem);
  }
  .page-about .about-mission__stat-label {
    font-size: 0.86rem;
  }
  .page-about .about-timeline {
    padding-left: 64px;
  }
  .page-about .about-timeline::before {
    left: 14px;
  }
  .page-about .about-timeline__dot {
    left: -57px;
    width: 16px;
    height: 16px;
    top: 8px;
    box-shadow: 0 0 0 6px rgba(184, 134, 11, 0.16);
  }
  .page-about .about-timeline__item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .page-about .about-timeline__item:last-child {
    margin-bottom: 0;
  }
  .page-about .about-timeline__year {
    grid-column: 1;
    margin: 0.3rem 0 0;
    text-align: right;
    font-size: 1.05rem;
  }
  .page-about .about-timeline__card {
    grid-column: 2;
  }
  .page-about .about-assets__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .page-about .about-assets__media {
    order: 1;
  }
  .page-about .about-assets__content {
    order: 2;
  }
  .page-about .about-team__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .page-about .about-team__media {
    order: 1;
  }
  .page-about .about-team__content {
    order: 2;
  }
}

@media (min-width: 900px) {
  .page-about .about-timeline__item:nth-child(odd) .about-timeline__card {
    max-width: 80%;
  }
  .page-about .about-timeline__item:nth-child(even) .about-timeline__card {
    max-width: 62%;
  }
  .page-about .about-ecosystem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
