.page-about {
  --about-panel-radius: 18px;
  background: var(--light-gray);
  font-family: var(--font-body);
  color: var(--text-primary);
}

.page-about img {
  max-width: 100%;
  height: auto;
}

.page-about .about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 212, 255, 0.22), transparent 38%),
    radial-gradient(circle at 8% 84%, rgba(255, 107, 53, 0.16), transparent 42%),
    linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
  pointer-events: none;
}

.page-about .about-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-number);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.page-about .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.page-about .breadcrumb [aria-current="page"] {
  color: var(--electric-blue);
}

.page-about .about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  padding-top: 36px;
}

.page-about .about-hero__title {
  margin: 16px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-about .about-hero__lead {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-about .about-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-about .hero-data-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-number);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
}

.page-about .hero-data-chip .live-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
}

.page-about .about-hero .btn-ghost,
.page-about .about-outro .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.page-about .about-hero .btn-ghost:hover,
.page-about .about-outro .btn-ghost:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

.page-about .about-hero .btn-primary,
.page-about .about-outro .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.page-about .about-hero .btn-primary:hover,
.page-about .about-outro .btn-primary:hover {
  background: #e85520;
}

.page-about .about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.page-about .about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.page-about .about-mission-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 63, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(10, 26, 63, 0.08);
}

.page-about .about-mission-card h2 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--deep-blue);
}

.page-about .mission-statement {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  color: var(--deep-blue);
}

.page-about .about-mission-card p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.page-about .about-key-facts {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 26, 63, 0.08);
  border-radius: 14px;
  padding: 20px 20px 8px;
}

.page-about .facts-heading {
  margin: 0 0 8px;
  font-family: var(--font-number);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.page-about .facts-list {
  margin: 0;
}

.page-about .fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(10, 26, 63, 0.12);
}

.page-about .fact-row:last-child {
  border-bottom: 0;
}

.page-about .fact-row dt {
  font-size: 14px;
  color: var(--text-secondary);
}

.page-about .fact-row dd {
  margin: 0;
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-blue);
}

.page-about .about-sidebar__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 18px 36px rgba(10, 26, 63, 0.12);
}

.page-about .about-sidebar__media img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

.page-about .about-sidebar__media figcaption {
  padding: 10px 14px;
  background: var(--white);
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.page-about .about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.page-about .about-section {
  background: var(--white);
  border: 1px solid rgba(10, 26, 63, 0.08);
  border-radius: var(--about-panel-radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(10, 26, 63, 0.06);
  min-width: 0;
}

.page-about .about-timeline {
  border-left: 4px solid var(--electric-blue);
}

.page-about .section-header {
  margin-bottom: 32px;
}

.page-about .section-header h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  color: var(--deep-blue);
}

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

.page-about .timeline-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--electric-blue), var(--orange));
  opacity: 0.4;
}

.page-about .timeline-item {
  position: relative;
  padding: 0 0 32px 28px;
}

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

.page-about .timeline-marker {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.16);
}

.page-about .timeline-chip {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-blue);
  background: rgba(0, 212, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-about .timeline-details {
  border: 1px solid rgba(10, 26, 63, 0.08);
  border-radius: 12px;
  background: var(--light-gray);
}

.page-about .timeline-details[open] {
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.04);
}

.page-about .timeline-details summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--deep-blue);
}

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

.page-about .timeline-details summary::after {
  content: "+";
  font-family: var(--font-number);
  font-size: 20px;
  font-weight: 700;
  color: var(--electric-blue);
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.page-about .timeline-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-about .timeline-badge {
  font-family: var(--font-number);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
  border-radius: 6px;
  padding: 2px 8px;
}

.page-about .timeline-content {
  margin: 0 18px 18px;
  padding: 14px 0 2px;
  border-top: 1px dashed rgba(10, 26, 63, 0.12);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-primary);
}

.page-about .about-capability {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 212, 255, 0.16), transparent 36%),
    radial-gradient(circle at 12% 88%, rgba(255, 107, 53, 0.1), transparent 42%),
    var(--deep-blue);
  border: 1px solid rgba(0, 212, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.page-about .about-capability .section-kicker {
  color: var(--electric-blue);
}

.page-about .about-capability .section-header h2 {
  color: var(--white);
}

.page-about .capability-banner {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 28px;
}

.page-about .capability-banner img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.page-about .capability-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.page-about .cap-stat {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.page-about .cap-stat__num {
  display: block;
  font-family: var(--font-number);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--orange);
}

.page-about .cap-stat__label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-number);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--electric-blue);
}

.page-about .cap-stat__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.page-about .capability-indicator {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.page-about .metric-title {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--white);
}

.page-about .metric-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-about .metric-item {
  font-family: var(--font-number);
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
}

.page-about .capability-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-about .capability-quality,
.page-about .capability-honors {
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about .capability-quality h3,
.page-about .capability-honors h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--electric-blue);
}

.page-about .capability-quality p,
.page-about .capability-honors p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.page-about .about-local {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.6), var(--white));
}

.page-about .local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.page-about .local-copy h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--deep-blue);
}

.page-about .local-copy p {
  margin: 0 0 14px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-primary);
}

.page-about .local-language {
  margin-top: 20px;
  padding: 18px;
  background: rgba(245, 247, 250, 0.9);
  border: 1px solid rgba(10, 26, 63, 0.08);
  border-radius: 14px;
}

.page-about .local-language__title {
  margin: 0 0 10px;
  font-family: var(--font-number);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.page-about .language-demo + .language-demo {
  margin-top: 8px;
}

.page-about .language-demo summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-blue);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
}

.page-about .language-demo summary::-webkit-details-marker {
  display: none;
}

.page-about .language-demo[open] summary {
  color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.12);
}

.page-about .language-demo__text {
  margin: 8px 0 0;
  padding: 10px 10px 0;
  border-top: 1px dashed rgba(10, 26, 63, 0.12);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
}

.page-about .local-contact {
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 212, 255, 0.18), transparent 42%),
    var(--deep-blue);
  border-radius: 16px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.page-about .local-contact h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--white);
}

.page-about .local-contact > p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.page-about .local-contact ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.page-about .local-contact li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-number);
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}

.page-about .local-contact li:last-child {
  border-bottom: 0;
}

.page-about .contact-label {
  flex: 0 0 auto;
  min-width: 40px;
  color: var(--electric-blue);
  font-size: 13px;
}

.page-about .contact-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.page-about .local-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 26, 63, 0.08);
  box-shadow: 0 16px 32px rgba(10, 26, 63, 0.1);
}

.page-about .local-media img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

.page-about .local-media figcaption {
  padding: 12px 16px;
  background: var(--white);
  font-size: 13px;
  text-align: center;
  color: var(--text-secondary);
}

.page-about .about-outro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 107, 53, 0.16), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(0, 212, 255, 0.18), transparent 46%),
    var(--deep-blue);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.page-about .about-outro .section-kicker {
  color: var(--electric-blue);
}

.page-about .about-outro__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 56px;
  text-align: center;
}

.page-about .about-outro h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--white);
}

.page-about .about-outro p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.page-about .about-outro__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (hover: hover) {
  .page-about .cap-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.55);
    background: rgba(0, 212, 255, 0.06);
  }
}

@media (min-width: 640px) {
  .page-about .about-hero__inner {
    padding: 40px 32px 72px;
  }

  .page-about .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: end;
    padding-top: 48px;
  }

  .page-about .about-layout {
    padding: 56px 32px 88px;
  }

  .page-about .about-section {
    padding: 36px;
  }

  .page-about .capability-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .capability-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-outro__inner {
    padding: 64px 32px 72px;
  }
}

@media (min-width: 768px) {
  .page-about .timeline-list::before {
    left: 179px;
  }

  .page-about .timeline-item {
    padding-left: 220px;
  }

  .page-about .timeline-marker {
    left: 173px;
    top: 22px;
    width: 14px;
    height: 14px;
  }

  .page-about .timeline-chip {
    position: absolute;
    left: 0;
    top: 6px;
    width: 156px;
    margin: 0;
    background: transparent;
    text-align: right;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--electric-blue);
  }

  .page-about .about-sidebar__media img {
    max-height: 520px;
  }

  .page-about .about-content {
    gap: 44px;
  }
}

@media (min-width: 900px) {
  .page-about .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .page-about .local-copy {
    grid-column: 1 / -1;
  }

  .page-about .local-media img {
    max-height: 520px;
  }
}

@media (min-width: 1024px) {
  .page-about .about-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
  }

  .page-about .about-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 56px;
    padding: 64px 32px 96px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-about *,
  .page-about *::before,
  .page-about *::after {
    transition: none !important;
    animation: none !important;
  }
}
