.page-about {
  --about-slant: 7deg;
  background: var(--light);
  color: var(--text);
}

.page-about .about-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  padding: 36px 0 96px;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(242, 101, 34, 0.22), transparent 40%), linear-gradient(320deg, rgba(46, 110, 78, 0.55), transparent 42%);
  pointer-events: none;
}

.page-about .about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.875rem;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.page-about .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.page-about .breadcrumb a:hover {
  color: var(--orange);
}

.page-about .breadcrumb-sep {
  opacity: 0.5;
}

.page-about .about-hero-grid {
  display: grid;
  gap: 28px;
}

.page-about .about-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}

.page-about .about-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  opacity: 0.92;
  max-width: 62ch;
}

.page-about .about-hero-note {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  max-width: 62ch;
}

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

.page-about .about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-about .about-hero-stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-light);
}

.page-about .about-hero-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}

.page-about .about-hero-label {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-about .about-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.page-about .about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.page-about .about-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.page-about .about-eyebrow--light {
  color: var(--orange);
}

.page-about .about-toc {
  position: sticky;
  z-index: 20;
  top: var(--header-h);
  background: var(--light);
  border-bottom: 1px solid var(--line);
}

.page-about .about-toc-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .about-toc-list {
  display: flex;
  list-style: none;
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  overflow-x: auto;
}

.page-about .about-toc-list a {
  display: block;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--pill);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(46, 110, 78, 0.08);
  border: 1px solid transparent;
}

.page-about .about-toc-list a:hover {
  border-color: rgba(242, 101, 34, 0.4);
}

.page-about .about-toc-list a[aria-current="location"] {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.page-about .about-mission {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  padding: 84px 0;
}

.page-about .about-mission::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: var(--teal);
  opacity: 0.4;
  border-radius: 999px;
}

.page-about .about-mission::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  background: var(--orange);
  opacity: 0.18;
  border-radius: 34%;
  transform: rotate(12deg);
}

.page-about .about-mission-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  gap: 40px;
}

.page-about .about-mission-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.22;
  margin: 12px 0 20px;
}

.page-about .about-mission-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.page-about .about-mission-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.page-about .about-values {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-about .about-value {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.page-about .about-value-mark {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange);
  display: grid;
  place-items: center;
  color: #fff;
}

.page-about .about-value-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.page-about .about-value strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.page-about .about-value span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-about .about-mission-figure {
  position: relative;
  margin: 0;
}

.page-about .about-mission-figure::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 70%;
  height: 70%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), rgba(242, 101, 34, 0.2));
  z-index: 0;
}

.page-about .about-mission-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transform: rotate(-1.2deg);
}

.page-about .about-mission-figure figcaption {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  padding-left: 4px;
}

.page-about .about-milestones {
  background: var(--teal);
  color: #fff;
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-about .about-milestones::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  top: -200px;
  right: -120px;
}

.page-about .about-milestones .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .about-section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.page-about .about-section-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 8px 0 14px;
}

.page-about .about-section-head p:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.page-about .about-timeline {
  list-style: none;
  margin: 0 0 28px;
  padding: 8px 4px 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  position: relative;
}

.page-about .about-timeline-item {
  position: relative;
  scroll-snap-align: start;
  padding: 52px 18px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  min-height: 190px;
}

.page-about .about-timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.page-about .about-timeline-item::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 40px;
  right: -16px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(242, 101, 34, 0.1));
}

.page-about .about-timeline-item:last-child::after {
  display: none;
}

.page-about .about-timeline-index {
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.page-about .about-timeline-title {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #fff;
}

.page-about .about-timeline-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0;
}

.page-about .about-timeline-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
}

.page-about .about-timeline-note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-about .about-scale {
  background: var(--light);
  padding: 84px 0;
}

.page-about .about-scale .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .about-scale .about-section-head p:last-child {
  color: var(--text-secondary);
}

.page-about .about-scale-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-about .about-scale-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.page-about .about-scale-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0.8;
}

.page-about .about-scale-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0.06;
  right: -44px;
  bottom: -44px;
}

.page-about .about-scale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-about .about-scale-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}

.page-about .about-scale-unit {
  margin-left: 2px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
}

.page-about .about-scale-label {
  margin: 8px 0 4px;
  font-weight: 700;
  color: var(--text);
}

.page-about .about-scale-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.page-about .about-team {
  background: var(--blue);
  color: #fff;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.page-about .about-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(242, 101, 34, 0.14), transparent 38%), linear-gradient(120deg, rgba(46, 110, 78, 0.2), transparent 45%);
}

.page-about .about-team-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  gap: 40px;
}

.page-about .about-team-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.page-about .about-team-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.24;
  margin: 10px 0 18px;
}

.page-about .about-team-figure {
  margin: 28px 0 0;
}

.page-about .about-team-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.page-about .about-team-figure figcaption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 8px;
}

.page-about .about-team-cards {
  display: grid;
  gap: 16px;
}

.page-about .about-team-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}

.page-about .about-team-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #fff;
}

.page-about .about-team-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-about .about-team-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.page-about .about-honor {
  background: var(--light);
  padding: 84px 0;
}

.page-about .about-honor .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .about-honor-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.24;
  margin: 10px 0 14px;
}

.page-about .about-honor .about-section-head p:last-child {
  color: var(--text-secondary);
}

.page-about .about-honor-wrap {
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.page-about .about-honor-figure img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.page-about .about-honor-figure figcaption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

.page-about .about-honor-grid {
  display: grid;
  gap: 16px;
}

.page-about .about-honor-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 6px solid var(--purple);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.page-about .about-honor-card:nth-child(2) {
  border-left-color: var(--orange);
}

.page-about .about-honor-card:nth-child(3) {
  border-left-color: var(--wine);
}

.page-about .about-honor-card:nth-child(4) {
  border-left-color: var(--teal);
}

.page-about .about-honor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-about .about-honor-svg {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(90, 74, 119, 0.1);
  color: var(--purple);
  margin-bottom: 14px;
}

.page-about .about-honor-svg svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.page-about .about-honor-card:nth-child(2) .about-honor-svg {
  background: rgba(242, 101, 34, 0.12);
  color: var(--orange);
}

.page-about .about-honor-card:nth-child(3) .about-honor-svg {
  background: rgba(122, 46, 79, 0.1);
  color: var(--wine);
}

.page-about .about-honor-card:nth-child(4) .about-honor-svg {
  background: rgba(14, 94, 110, 0.12);
  color: var(--teal);
}

.page-about .about-honor-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.page-about .about-honor-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.page-about .about-upsell {
  position: relative;
  background: var(--green);
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.page-about .about-upsell::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-5deg);
  top: 40px;
  left: -30%;
}

.page-about .about-upsell .container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.page-about .about-upsell-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 8px;
}

.page-about .about-upsell p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
}

.page-about .about-upsell-grid {
  display: grid;
  gap: 16px;
}

.page-about .about-upsell-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-light);
  text-decoration: none;
  color: #fff;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}

.page-about .about-upsell-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.page-about .about-upsell-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange);
}

.page-about .about-upsell-card span:last-child {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

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

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

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

@media (min-width: 700px) {
  .page-about .about-scale-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .page-about .about-hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    align-items: center;
    gap: 40px;
  }

  .page-about .about-hero-stat {
    padding: 22px;
  }

  .page-about .about-mission-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 56px;
  }

  .page-about .about-honor-wrap {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .page-about .about-team-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 56px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-about * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
