.page-about {
  --about-green: #1B4D3E;
  --about-gold: #C9A227;
  --about-blue: #0F1B2D;
  --about-red: #9E2B25;
  --about-white: #F8F6F2;
  --about-charcoal: #2A2A2A;
  --about-mist: #C8D4C0;
  --about-orange: #FF8C42;
  background: var(--ayx-white);
  color: var(--ayx-charcoal);
  font-family: var(--ayx-font-sans);
  overflow-x: hidden;
  line-height: 1.7;
}

.page-about .ayx-wrap {
  max-width: var(--ayx-container);
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
}

.page-about .ayx-breadcrumb {
  margin-bottom: 32px;
  font-size: 14px;
}

.page-about .ayx-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about .ayx-breadcrumb a {
  color: rgba(248, 246, 242, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

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

.page-about .ayx-breadcrumb li[aria-current="page"] {
  color: var(--ayx-gold);
}

.page-about .ayx-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(248, 246, 242, 0.45);
}

.page-about__hero {
  position: relative;
  overflow: hidden;
  background: var(--ayx-green);
  color: var(--ayx-white);
  padding: 40px 0 64px;
}

.page-about__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(201, 162, 39, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 68%, rgba(201, 162, 39, 0.12) 0 2px, transparent 3px);
  background-size: 240px 200px, 320px 300px;
}

.page-about__hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border: 28px solid rgba(201, 162, 39, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-about__hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.page-about__hero-copy {
  position: relative;
  z-index: 1;
}

.page-about__hero-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ayx-gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
}

.page-about__hero-title {
  margin: 0 0 16px;
  font-family: var(--ayx-font-display);
  font-size: clamp(40px, 8vw, 68px);
  line-height: 1.04;
  color: var(--ayx-white);
}

.page-about__hero-title span {
  display: block;
  margin-top: 8px;
  font-family: var(--ayx-font-sans);
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 900;
  color: var(--ayx-gold);
}

.page-about__hero-lead {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(248, 246, 242, 0.92);
}

.page-about__hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
}

.page-about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(15, 27, 45, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 18px;
}

.page-about__stat-num {
  font-family: var(--ayx-font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--ayx-gold);
}

.page-about__stat-label {
  font-size: 13px;
  color: rgba(248, 246, 242, 0.8);
}

.page-about__hero-media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(9, 24, 18, 0.35);
}

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

.page-about__hero-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  font-size: 13px;
  background: rgba(15, 27, 45, 0.72);
  color: var(--ayx-white);
  border-radius: 999px;
}

@media (min-width: 768px) {
  .page-about__hero-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: end;
    gap: 48px;
  }

  .page-about__hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-about__hero-title {
    font-size: clamp(44px, 6vw, 68px);
  }
}

@media (min-width: 1024px) {
  .page-about__hero {
    padding: 56px 0 88px;
  }
}

.page-about__section {
  padding: 64px 0;
}

.page-about__timeline-section {
  position: relative;
  background: var(--ayx-white);
}

.page-about .ayx-section-head {
  margin-bottom: 40px;
}

.page-about .ayx-section-head__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ayx-orange);
}

.page-about .ayx-section-head__title {
  margin: 0;
  font-family: var(--ayx-font-display);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.12;
  color: var(--ayx-charcoal);
}

.page-about__section-note {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(42, 42, 42, 0.72);
  font-size: 15px;
}

.page-about__timeline {
  position: relative;
  padding-top: 8px;
}

.page-about__tl-line {
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), var(--ayx-gold) 10%, var(--ayx-gold) 90%, rgba(201, 162, 39, 0.08));
}

.page-about__tl-item {
  position: relative;
  padding-left: 88px;
  margin-bottom: 44px;
}

.page-about__tl-item:last-child {
  margin-bottom: 0;
}

.page-about__tl-node {
  position: absolute;
  left: 0;
  top: 4px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  text-align: center;
  background: var(--ayx-gold);
  color: var(--ayx-green);
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.16);
}

.page-about__tl-year {
  font-family: var(--ayx-font-display);
  font-size: 24px;
  line-height: 1;
}

.page-about__tl-phase {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.page-about__tl-card {
  position: relative;
  padding: 24px;
  background: var(--ayx-white);
  border: 1px solid rgba(200, 212, 192, 0.7);
  border-radius: 20px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  filter: drop-shadow(0 8px 20px rgba(15, 27, 45, 0.08));
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s;
}

.page-about__tl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ayx-gold), rgba(201, 162, 39, 0.2));
}

.page-about__tl-item:hover .page-about__tl-card,
.page-about__tl-item:focus-within .page-about__tl-card {
  transform: translateY(-4px);
  border-color: var(--ayx-gold);
}

.page-about__tl-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--ayx-charcoal);
  background: var(--ayx-mist);
  border-radius: 999px;
}

.page-about__tl-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ayx-charcoal);
}

.page-about__tl-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(42, 42, 42, 0.78);
}

@media (min-width: 900px) {
  .page-about__timeline {
    padding-top: 12px;
  }

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

  .page-about__tl-item {
    display: grid;
    grid-template-columns: 1fr 132px 1fr;
    column-gap: 40px;
    align-items: center;
    padding-left: 0;
    margin-bottom: 64px;
  }

  .page-about__tl-node {
    position: static;
    width: 108px;
    height: 108px;
    justify-self: center;
  }

  .page-about__tl-year {
    font-size: 30px;
  }

  .page-about__tl-card {
    grid-column: 1;
    grid-row: 1;
  }

  .page-about__tl-item--right .page-about__tl-card {
    grid-column: 3;
    grid-row: 1;
  }
}

.page-about__team-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(201, 162, 39, 0.08) 0 80px, transparent 82px),
    var(--ayx-mist);
}

.page-about__team-section .page-about .ayx-section-head__kicker {
  color: var(--ayx-primary, var(--ayx-orange));
}

.page-about__team-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.page-about__team-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ayx-shadow-card);
}

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

.page-about__team-copy > p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(42, 42, 42, 0.82);
}

.page-about__rolelist {
  display: grid;
  gap: 14px;
}

.page-about__role {
  background: var(--ayx-white);
  border-radius: 16px;
  box-shadow: var(--ayx-shadow-card);
  overflow: hidden;
}

.page-about__role summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ayx-charcoal);
}

.page-about__role summary::-webkit-details-marker {
  display: none;
}

.page-about__role summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--ayx-gold);
  transition: transform 0.2s;
}

.page-about__role[open] summary::after {
  transform: rotate(45deg);
}

.page-about__role summary strong {
  margin-left: auto;
  font-family: var(--ayx-font-display);
  font-size: 20px;
  color: var(--ayx-gold);
}

.page-about__role p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(42, 42, 42, 0.74);
}

@media (min-width: 900px) {
  .page-about__team-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: center;
    gap: 56px;
  }
}

.page-about__data-section {
  position: relative;
  overflow: hidden;
  background: var(--ayx-blue);
  color: var(--ayx-white);
}

.page-about__data-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-about__data-section .ayx-section-head__title {
  color: var(--ayx-white);
}

.page-about__data-section .ayx-section-head__kicker {
  color: var(--ayx-gold);
}

.page-about__data-panel {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 28px;
  background: rgba(248, 246, 242, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 24px;
}

.page-about__data-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-about__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: rgba(15, 27, 45, 0.5);
  border: 1px solid rgba(248, 246, 242, 0.08);
  border-radius: 16px;
}

.page-about__metric-num {
  font-family: var(--ayx-font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--ayx-gold);
}

.page-about__metric span:last-child {
  font-size: 13px;
  color: rgba(248, 246, 242, 0.72);
}

.page-about__data-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

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

.page-about__data-note {
  border-left: 3px solid var(--ayx-gold);
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(248, 246, 242, 0.88);
}

.page-about__data-note p {
  margin: 0 0 12px;
}

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

@media (min-width: 760px) {
  .page-about__data-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 36px;
  }

  .page-about__data-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-about__data-media {
    grid-column: 1;
  }

  .page-about__data-note {
    grid-column: 2;
    align-self: center;
  }
}

.page-about__honor-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 162, 39, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 84%, rgba(201, 162, 39, 0.08) 0 2px, transparent 3px),
    var(--ayx-green);
  background-size: 260px 220px, 320px 280px, auto;
  color: var(--ayx-white);
}

.page-about__honor-section .ayx-section-head__title {
  color: var(--ayx-white);
}

.page-about__honor-section .ayx-section-head__kicker {
  color: var(--ayx-orange);
}

.page-about__honor-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.page-about__honor-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 18px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ayx-gold), #F0D878);
  color: var(--ayx-green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.page-about__honor-badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(15, 27, 45, 0.25);
  border-radius: 50%;
}

.page-about__honor-year {
  font-family: var(--ayx-font-display);
  font-size: 44px;
  line-height: 1;
}

.page-about__honor-title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.page-about__honor-note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 27, 45, 0.62);
}

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

.page-about__honor-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(248, 246, 242, 0.88);
}

.page-about__honor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 10px;
  background: var(--ayx-gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-about__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.page-about__cta-row .ayx-btn {
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(9, 24, 18, 0.18);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
}

.page-about__cta-row .ayx-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ayx-shadow-pop);
}

@media (min-width: 860px) {
  .page-about__honor-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
  }
}

.page-about {
  --ayx-primary: currentColor;
}
