.page-about {
  --about-muted: rgba(253, 246, 227, 0.72);
  --about-ink: rgba(44, 62, 80, 0.82);
  --about-line: rgba(44, 62, 80, 0.12);
  overflow-x: hidden;
}

.page-about .breadcrumb {
  margin-bottom: 3rem;
}

.page-about .breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  color: rgba(253, 246, 227, 0.7);
  font-size: 0.8rem;
}

.page-about .breadcrumb a {
  color: rgba(253, 246, 227, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 246, 227, 0.28);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-about .breadcrumb a:hover {
  color: #ffffff;
  border-color: rgba(253, 246, 227, 0.8);
}

.page-about__hero {
  position: relative;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.page-about__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(253, 246, 227, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}

.page-about__hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-about__hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.page-about__hero .section-kicker {
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}

.page-about__h1 {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  line-height: 1.12;
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.page-about__hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.page-about__hero-lead {
  max-width: 34em;
  line-height: 1.85;
  font-family: var(--font-serif);
  color: rgba(253, 246, 227, 0.88);
  margin: 0 0 2rem;
}

.page-about__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.page-about__hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  border-top: 1px solid rgba(253, 246, 227, 0.22);
  padding-top: 1.4rem;
}

.page-about__hero-index a {
  color: rgba(253, 246, 227, 0.78);
  font-size: 0.82rem;
  text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.page-about__hero-index a:hover {
  color: var(--color-gold);
}

.page-about__hero-art {
  display: none;
}

.page-about__hero-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  color: var(--color-white);
}

.page-about__hero-sun {
  fill: var(--color-gold);
}

.page-about__hero-mountain--far {
  fill: rgba(253, 246, 227, 0.28);
}

.page-about__hero-mountain--near {
  fill: rgba(26, 42, 58, 0.3);
}

.page-about__hero-water {
  fill: rgba(133, 193, 233, 0.3);
}

.page-about__stats {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 2.5rem 0;
}

.page-about__stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(230, 180, 80, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.page-about__stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1.2rem;
}

.page-about__stat strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.page-about__stat span {
  font-size: 0.85rem;
  color: rgba(253, 246, 227, 0.72);
}

.page-about__flag-stripe {
  height: 10px;
  background: repeating-linear-gradient(90deg,
    var(--color-primary) 0 20%,
    var(--color-accent) 0 40%,
    var(--color-green) 0 60%,
    var(--color-gold) 0 80%,
    var(--color-white) 0 100%);
  background-size: 240px 100%;
}

.page-about__mission {
  background: var(--color-white);
  color: var(--color-text);
  padding: 4rem 0 5rem;
}

.page-about__mission-grid {
  display: grid;
  gap: 2.5rem;
}

.page-about__mission-copy .section-kicker {
  color: var(--color-accent);
}

.page-about__mission-title {
  font-family: var(--font-sans);
  font-size: 1.9rem;
  color: var(--color-dark);
  margin: 0 0 1.25rem;
}

.page-about__mission-lead {
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.page-about__mission-copy p {
  max-width: 32em;
  line-height: 1.85;
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.page-about__mission-copy .btn {
  margin-top: 0.8rem;
}

.page-about__mission-figure {
  margin: 0;
}

.page-about__mission-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.page-about__mission-figure figcaption,
.page-about__timeline-figure figcaption,
.page-about__certs-figure figcaption {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(44, 62, 80, 0.55);
  border-left: 3px solid var(--color-gold);
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

.page-about__journey {
  background: linear-gradient(180deg, rgba(133, 193, 233, 0.18), rgba(253, 246, 227, 0.6));
  padding: 4rem 0 5rem;
}

.page-about__section-head {
  margin-bottom: 2.5rem;
}

.page-about__section-head .section-kicker {
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.page-about__section-title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.page-about__section-lead {
  color: rgba(44, 62, 80, 0.72);
  line-height: 1.8;
  max-width: 30em;
  margin: 0;
}

.page-about__timeline {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.page-about__timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 4px;
  height: 100%;
  color: var(--color-primary);
  opacity: 0.6;
}

.page-about__timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 2.8rem;
}

.page-about__timeline-year {
  position: absolute;
  left: 0;
  top: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(14, 111, 168, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__timeline-year span {
  color: var(--color-white);
}

.page-about__timeline-item:hover .page-about__timeline-year {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(230, 180, 80, 0.28);
}

.page-about__timeline-card {
  background: var(--color-white);
  padding: 1.3rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-about__timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 42, 58, 0.12);
}

.page-about__timeline-card .tag {
  margin-bottom: 0.5rem;
}

.page-about__timeline-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin: 0 0 0.4rem;
}

.page-about__timeline-card p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.page-about__timeline-figure {
  margin: 0;
  text-align: center;
}

.page-about__timeline-img {
  max-width: 240px;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.page-about__timeline-figure figcaption {
  display: inline-block;
  text-align: left;
  margin-top: 0.6rem;
}

.page-about__certs {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-about__certs::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(230, 180, 80, 0.14);
  pointer-events: none;
}

.page-about__section-head--light .section-kicker {
  color: var(--color-gold);
}

.page-about__section-head--light .page-about__section-title {
  color: var(--color-white);
}

.page-about__section-head--light .page-about__section-lead {
  color: rgba(253, 246, 227, 0.78);
}

.page-about__certs-content {
  display: grid;
  gap: 2.5rem;
  position: relative;
}

.page-about__certs-figure {
  margin: 0;
}

.page-about__certs-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.page-about__certs-figure figcaption {
  color: rgba(253, 246, 227, 0.7);
}

.page-about__certs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.page-about__certs-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(253, 246, 227, 0.08);
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.page-about__certs-item:hover {
  transform: translateY(-4px);
  background: rgba(253, 246, 227, 0.13);
}

.page-about__certs-badge {
  flex: none;
  width: 44px;
  height: 44px;
  color: var(--color-gold);
}

.page-about__certs-badge--green {
  color: var(--color-green);
}

.page-about__certs-badge--blue {
  color: var(--color-primary-light);
}

.page-about__certs-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-white);
  margin: 0 0 0.35rem;
}

.page-about__certs-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(253, 246, 227, 0.78);
  margin: 0;
}

.page-about__ecosystem {
  background: var(--color-white);
  padding: 4.5rem 0;
}

.page-about__ecosystem-grid {
  display: grid;
  gap: 2.5rem;
}

.page-about__ecosystem-copy .section-kicker {
  color: var(--color-accent);
}

.page-about__ecosystem-copy p {
  line-height: 1.9;
  max-width: 34em;
  margin: 0 0 1rem;
}

.page-about__ecosystem-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about__ecosystem-list li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-gray);
}

.page-about__ecosystem-list li:first-child {
  border-top: 1px solid var(--color-gray);
}

.page-about__ecosystem-list li > span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

.page-about__ecosystem-list strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.page-about__ecosystem-list small {
  color: rgba(44, 62, 80, 0.68);
  line-height: 1.6;
}

.page-about__team {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 4.5rem 0;
  overflow: hidden;
}

.page-about__team::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 111, 168, 0.45), transparent 70%);
  pointer-events: none;
}

.page-about__team .container {
  position: relative;
}

.page-about__team-grid {
  display: grid;
  gap: 1.5rem;
}

.page-about__team-role {
  background: rgba(253, 246, 227, 0.06);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.page-about__team-role:hover {
  transform: translateY(-4px);
  background: rgba(253, 246, 227, 0.1);
}

.page-about__team-role-num {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
}

.page-about__team-role h3 {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  color: var(--color-white);
  margin: 0.4rem 0 0.45rem;
}

.page-about__team-role p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(253, 246, 227, 0.75);
  margin: 0;
}

.page-about__cta {
  position: relative;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4rem 0;
  overflow: hidden;
}

.page-about__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(253, 246, 227, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.page-about__cta-inner {
  position: relative;
  text-align: center;
}

.page-about__cta .section-kicker {
  color: var(--color-gold);
}

.page-about__cta-title {
  max-width: 14em;
  margin: 0 auto 2rem;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--color-white);
}

.page-about__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.js .page-about [data-scroll-section] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .page-about [data-scroll-section][data-inview="true"] {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .page-about__h1 {
    font-size: 3rem;
  }

  .page-about__hero-subtitle {
    font-size: 1.3rem;
  }

  .page-about__stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-about__team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about__cta-title {
    font-size: 1.9rem;
  }
}

@media (min-width: 920px) {
  .page-about__hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .page-about__hero-art {
    display: block;
    position: relative;
  }

  .page-about__hero-note {
    position: absolute;
    right: -0.5rem;
    top: 1rem;
    writing-mode: vertical-rl;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: rgba(253, 246, 227, 0.55);
    border-left: 1px solid rgba(253, 246, 227, 0.28);
    padding-left: 0.5rem;
  }

  .page-about__mission-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
  }

  .page-about__mission-figure {
    transform: translateY(2rem);
  }

  .page-about__certs-content {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
  }

  .page-about__ecosystem-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-about__timeline {
    padding-top: 1rem;
  }

  .page-about__timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-about__timeline-item {
    width: calc(50% - 4rem);
    padding-left: 0;
    margin-bottom: 3.5rem;
  }

  .page-about__timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
  }

  .page-about__timeline-item:nth-child(odd) .page-about__timeline-card {
    border-left: none;
    border-right: 4px solid var(--color-gold);
    text-align: left;
  }

  .page-about__timeline-item:nth-child(odd) .page-about__timeline-year {
    left: auto;
    right: -3.5rem;
  }

  .page-about__timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3.5rem;
  }

  .page-about__timeline-item:nth-child(even) .page-about__timeline-year {
    left: -3.5rem;
  }

  .page-about__timeline-figure {
    margin-left: 50%;
    padding-left: 3.5rem;
    text-align: left;
  }

  .page-about__timeline-img {
    max-width: 300px;
  }
}
