.page-about {
  --about-grid-bg:
    linear-gradient(rgba(138, 155, 176, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 155, 176, 0.08) 1px, transparent 1px);
  position: relative;
  color: var(--cream);
}

.page-about .breadcrumb {
  position: relative;
  padding-top: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(138, 155, 176, 0.18);
}

.page-about__lead {
  position: relative;
  padding: 56px 0 62px;
  background:
    var(--about-grid-bg),
    radial-gradient(circle at 84% 12%, rgba(255, 107, 53, 0.18), transparent 36%),
    linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-raised) 100%);
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
  overflow: hidden;
}

.page-about__lead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--neon) 55%, transparent 80%);
}

.page-about__lead-inner {
  display: grid;
  gap: 28px;
}

.page-about__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--rock);
  text-transform: uppercase;
}

.page-about__kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.page-about__lead-title {
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.page-about__lead-summary {
  margin: 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(237, 231, 224, 0.85);
}

.page-about__lead-summary strong {
  color: var(--cream);
  font-weight: 700;
}

.page-about__stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.page-about__stat {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(10, 27, 61, 0.55);
  border: 1px solid rgba(138, 155, 176, 0.22);
}

.page-about__stat-value {
  display: block;
  font-family: var(--font-data);
  font-size: 28px;
  line-height: 1;
  color: var(--neon);
}

.page-about__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--rock);
}

.page-about__lead-note {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(20, 38, 71, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.page-about__lead-index {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 12px;
}

.page-about__lead-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--rock);
}

.page-about__layout {
  padding: 44px 0 20px;
}

.page-about__content {
  min-width: 0;
}

.page-about__toc-wrap {
  margin-bottom: 36px;
}

.page-about__toc-title {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rock);
  margin-bottom: 12px;
}

.page-about__toc {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

.page-about__toc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--blue-raised);
  border: 1px solid rgba(138, 155, 176, 0.2);
  color: var(--rock);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-about__toc-link span {
  font-family: var(--font-data);
  color: var(--orange);
  font-size: 13px;
}

.page-about__toc-link:hover,
.page-about__toc-link:focus-visible {
  border-color: var(--orange);
  color: var(--cream);
  background: rgba(255, 107, 53, 0.12);
}

.page-about__section {
  scroll-margin-top: 24px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(138, 155, 176, 0.15);
  margin-bottom: 64px;
}

.page-about__section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.page-about__section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.page-about__section-num {
  font-family: var(--font-data);
  font-size: 32px;
  line-height: 0.8;
  color: var(--orange);
  margin-top: 4px;
}

.page-about__section-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  color: var(--cream);
}

.page-about__section-note {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--rock);
  margin-left: auto;
  text-transform: uppercase;
}

.page-about__section-intro {
  margin: 0 0 32px 48px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(237, 231, 224, 0.8);
}

.page-about__narrative-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-about__narrative-copy p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: rgba(237, 231, 224, 0.82);
  font-size: 16px;
}

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

.page-about__narrative-copy strong {
  color: var(--cream);
  font-weight: 700;
}

.page-about__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 155, 176, 0.22);
  background: var(--blue-raised);
}

.page-about__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about__figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--rock);
  border-top: 1px solid rgba(138, 155, 176, 0.18);
  background: rgba(10, 27, 61, 0.5);
}

.page-about__trust {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(138, 154, 91, 0.15), rgba(20, 38, 71, 0.6));
  border-left: 4px solid var(--moss);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(237, 231, 224, 0.85);
}

.page-about__trust strong {
  color: var(--moss);
  font-weight: 700;
}

.page-about__journey-figure {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 155, 176, 0.2);
}

.page-about__journey-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about__timeline-svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 24px;
}

.page-about__timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 10%, var(--neon) 90%);
  opacity: 0.45;
}

.page-about__timeline-item {
  position: relative;
  padding: 0 0 36px 56px;
}

.page-about__timeline-item:last-child {
  padding-bottom: 0;
}

.page-about__timeline-dot {
  position: absolute;
  left: 13px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--deep-blue);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}

.page-about__timeline-item:hover .page-about__timeline-dot,
.page-about__timeline-item:focus-within .page-about__timeline-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.55);
}

.page-about__timeline-season {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--terra);
  background: rgba(209, 123, 90, 0.12);
  border: 1px solid rgba(209, 123, 90, 0.3);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 10px;
}

.page-about__timeline-copy {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--blue-raised);
  border: 1px solid rgba(138, 155, 176, 0.16);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.page-about__timeline-item:hover .page-about__timeline-copy,
.page-about__timeline-item:focus-within .page-about__timeline-copy {
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.page-about__timeline-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.3;
  color: var(--cream);
}

.page-about__timeline-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(237, 231, 224, 0.78);
}

.page-about__standards-figure {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 155, 176, 0.22);
}

.page-about__standards-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about__standards-grid {
  display: grid;
  gap: 18px;
}

.page-about__standard-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(138, 155, 176, 0.18);
  background: linear-gradient(145deg, rgba(20, 38, 71, 0.9), rgba(20, 38, 71, 0.4));
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  margin: 0;
}

.page-about__standard-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(20, 38, 71, 1);
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
}

.page-about__standard-num {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
}

.page-about__standard-card h3 {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--cream);
}

.page-about__standard-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(237, 231, 224, 0.78);
}

.page-about__commitment-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.page-about__commitment-card {
  padding: 24px;
  background: var(--blue-raised);
  border: 1px solid rgba(138, 155, 176, 0.16);
  border-top: 3px solid var(--terra);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.page-about__commitment-card:nth-child(2) {
  border-top-color: var(--orange);
}

.page-about__commitment-card:nth-child(3) {
  border-top-color: var(--moss);
}

.page-about__commitment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 155, 176, 0.35);
}

.page-about__commitment-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--cream);
}

.page-about__commitment-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(237, 231, 224, 0.78);
}

.page-about__cta {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 107, 53, 0.14), transparent),
    var(--blue-raised);
  border: 1px solid rgba(255, 107, 53, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-about__cta-title {
  flex: 1 1 100%;
  margin: 0;
  font-size: 20px;
  font-family: var(--font-head);
  color: var(--cream);
}

@media (min-width: 640px) {
  .page-about__stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .page-about__lead-inner {
    grid-template-columns: 1.5fr 0.8fr;
    gap: 48px;
    align-items: end;
  }

  .page-about__narrative-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 48px;
  }

  .page-about__timeline-item {
    padding-left: 68px;
  }

  .page-about__timeline::before {
    left: 24px;
  }

  .page-about__timeline-dot {
    left: 16px;
  }

  .page-about__timeline-copy h3 {
    font-size: 20px;
  }

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

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

  .page-about__cta-title {
    flex: 1 1 auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .page-about__layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 48px;
    padding-top: 60px;
  }

  .page-about__toc-wrap {
    position: sticky;
    top: 32px;
    align-self: start;
    margin-bottom: 0;
  }

  .page-about__toc {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .page-about__toc-link {
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
  }
}

@media (max-width: 480px) {
  .page-about__section-note {
    display: none;
  }

  .page-about__section-intro {
    margin-left: 0;
  }
}
