.page-about {
  --about-radius-lg: 28px;
  --about-radius-md: 18px;
  --about-line: rgba(0, 212, 255, 0.16);
  --about-line-strong: rgba(0, 212, 255, 0.38);
  --about-card-bg: rgba(255, 255, 255, 0.05);
  background: var(--c-deep);
  color: var(--c-white);
  overflow-x: clip;
}

.page-about .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-about .section {
  position: relative;
  padding: 72px 0;
}

.page-about .section--alt {
  background: var(--c-deeper);
}

.page-about .section__head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 42px;
}

.page-about .section__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-about .section__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 44px;
  padding: 0 8px;
  background: var(--gradient-fire);
  color: var(--c-deep);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 12px 12px 12px 4px;
  transform: skewX(-8deg);
}

.page-about .section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-white);
  line-height: 1.2;
}

.page-about .section__subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.page-about .page-hero {
  position: relative;
  padding: 56px 0 88px;
  background:
    radial-gradient(720px circle at 78% 8%, rgba(255, 107, 0, 0.18), transparent 58%),
    radial-gradient(900px circle at 14% 82%, rgba(0, 212, 255, 0.12), transparent 55%),
    linear-gradient(160deg, var(--c-deeper) 0%, var(--c-deep) 60%, #0d2555 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
}

.page-about .page-hero__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(rgba(0, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 72% 16%, #000 20%, transparent 72%);
  mask-image: radial-gradient(ellipse at 72% 16%, #000 20%, transparent 72%);
  pointer-events: none;
}

.page-about .page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-about .page-hero .breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-about .page-hero .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.page-about .page-hero .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}

.page-about .page-hero .breadcrumb__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .page-hero .breadcrumb__link:hover {
  color: var(--c-electric);
}

.page-about .page-hero .breadcrumb__current {
  color: var(--c-orange);
  font-weight: 600;
}

.page-about .page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-electric);
}

.page-about .page-hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gradient-fire);
  border-radius: 2px;
}

.page-about .page-hero__title {
  max-width: 780px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--c-white);
}

.page-about .page-hero__lead {
  max-width: 640px;
  margin: 0 0 42px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page-about .page-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-about .page-hero__stat {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--about-line);
  border-radius: var(--about-radius-md);
  padding: 18px 20px 18px 22px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-about .page-hero__stat:hover {
  transform: translateY(-3px);
  border-color: var(--about-line-strong);
}

.page-about .page-hero__stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-fire);
  border-radius: 0 3px 3px 0;
}

.page-about .page-hero__stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.page-about .page-hero__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}

.page-about .page-about-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about .page-about-us__content p {
  margin: 0 0 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
}

.page-about .page-about-us__mission {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding: 24px 26px;
  background: var(--gradient-fire);
  border-radius: var(--about-radius-md);
  color: var(--c-deep);
}

.page-about .page-about-us__mission-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 2px solid rgba(10, 31, 68, 0.3);
  border-radius: 999px;
  padding: 4px 14px;
  align-self: flex-start;
}

.page-about .page-about-us__mission p {
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c-deep);
}

.page-about .page-about-us__figure {
  position: relative;
  margin: 0;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
  background: var(--c-deeper);
  border: 1px solid var(--about-line-strong);
}

.page-about .page-about-us__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(10, 31, 68, 0.55) 100%);
}

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

.page-about .page-about-us__figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 13px;
  color: var(--c-white);
  background: rgba(10, 31, 68, 0.78);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.page-about .page-milestone__timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 12px;
  left: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-electric), var(--c-orange), var(--c-electric));
  border-radius: 2px;
  opacity: 0.7;
}

.page-about .page-milestone__item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

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

.page-about .page-milestone__node {
  flex: 0 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
}

.page-about .page-milestone__year {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-electric);
  background: var(--c-deeper);
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--about-line);
  line-height: 1.5;
  white-space: nowrap;
}

.page-about .page-milestone__dot {
  width: 16px;
  height: 16px;
  margin-top: 14px;
  border-radius: 50%;
  background: var(--c-orange);
  border: 3px solid var(--c-deeper);
  box-shadow: 0 0 0 2px var(--c-orange);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-about .page-milestone__item:hover .page-milestone__dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--c-orange), 0 0 16px rgba(255, 107, 0, 0.6);
}

.page-about .page-milestone__card {
  flex: 1;
  background: var(--about-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--c-orange);
  border-radius: var(--about-radius-md);
  padding: 22px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-about .page-milestone__card:hover,
.page-about .page-milestone__item:hover .page-milestone__card {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.page-about .page-milestone__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

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

.page-about .page-credential__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about .page-credential__figure {
  position: relative;
  margin: 0;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
  border: 1px solid var(--about-line-strong);
}

.page-about .page-credential__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: saturate(0.85);
}

.page-about .page-credential__figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 12px;
  color: var(--c-white);
  background: rgba(10, 31, 68, 0.8);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-about .page-credential__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-about .page-credential__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--about-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--c-orange);
  border-radius: var(--about-radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-about .page-credential__item:hover {
  transform: translateX(4px);
  border-left-color: var(--c-electric);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.page-about .page-credential__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.16);
  color: var(--c-orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.page-about .page-credential__icon svg {
  width: 22px;
  height: 22px;
}

.page-about .page-credential__body {
  flex: 1;
}

.page-about .page-credential__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
}

.page-about .page-credential__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.page-about .page-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-about .page-team__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-about .page-team__stat {
  background: var(--about-card-bg);
  border: 1px solid var(--about-line);
  border-radius: var(--about-radius-md);
  padding: 26px 12px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.page-about .page-team__stat:hover {
  transform: translateY(-4px);
  border-color: var(--about-line-strong);
}

.page-about .page-team__stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-electric);
  line-height: 1.15;
}

.page-about .page-team__stat-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

.page-about .page-team__content p {
  margin: 0 0 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
}

.page-about .page-award__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-about .page-award__card {
  background: var(--about-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--about-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-about .page-award__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.page-about .page-award__card--feature {
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.13), rgba(10, 31, 68, 0.65) 55%);
  border-color: rgba(255, 107, 0, 0.3);
}

.page-about .page-award__figure {
  margin: 0;
  overflow: hidden;
}

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

.page-about .page-award__content {
  padding: 26px 26px 30px;
}

.page-about .page-award__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: rgba(255, 107, 0, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.page-about .page-award__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.3;
}

.page-about .page-award__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.page-about .page-award__detail {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.page-about .page-award__detail summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-electric);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

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

.page-about .page-award__detail summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--c-orange);
}

.page-about .page-award__detail[open] summary::after {
  content: "–";
}

.page-about .page-award__detail p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.64);
}

.page-about .page-about-cta__panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2555, var(--c-deep) 62%);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 32px;
  padding: 56px 28px;
  text-align: center;
}

.page-about .page-about-cta__panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.32), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-about .page-about-cta__panel::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-about .page-about-cta__title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.page-about .page-about-cta__text {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.page-about .page-about-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-about .page-about-cta__actions .btn {
  min-width: 148px;
}

@media (min-width: 768px) {
  .page-about .section {
    padding: 88px 0;
  }

  .page-about .section__head {
    grid-template-columns: 72px 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }

  .page-about .section__index {
    min-width: 62px;
    height: 48px;
    font-size: 27px;
  }

  .page-about .section__title {
    font-size: 34px;
  }

  .page-about .section__subtitle {
    font-size: 15px;
  }

  .page-about .page-hero {
    padding: 64px 0 108px;
  }

  .page-about .page-hero__title {
    font-size: 52px;
  }

  .page-about .page-hero__lead {
    font-size: 16px;
  }

  .page-about .page-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-about .page-hero__stat-num {
    font-size: 30px;
  }

  .page-about .page-about-us__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-about .page-milestone__timeline::before {
    left: 38px;
  }

  .page-about .page-milestone__item {
    gap: 28px;
    padding-bottom: 40px;
  }

  .page-about .page-milestone__node {
    flex-basis: 76px;
    width: 76px;
  }

  .page-about .page-milestone__year {
    font-size: 18px;
  }

  .page-about .page-milestone__card {
    padding: 26px 30px;
  }

  .page-about .page-milestone__title {
    font-size: 21px;
  }

  .page-about .page-credential__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .page-about .page-team__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
  }

  .page-about .page-team__stat-num {
    font-size: 36px;
  }

  .page-about .page-award__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .page-about .page-award__card--feature {
    grid-column: span 1;
  }

  .page-about .page-about-cta__panel {
    padding: 68px 44px;
  }

  .page-about .page-about-cta__title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .page-about .page-hero__title {
    font-size: 62px;
  }

  .page-about .page-hero__lead {
    font-size: 17px;
  }

  .page-about .page-hero__stats {
    gap: 20px;
  }

  .page-about .page-about-us__mission {
    flex-direction: row;
    align-items: center;
  }

  .page-about .page-milestone__item {
    gap: 40px;
  }

  .page-about .page-team__content p {
    font-size: 16px;
  }

  .page-about .page-award__card {
    min-height: 100%;
  }

  .page-about .page-about-cta__actions .btn {
    min-width: 170px;
  }
}
