.page-about {
  background: var(--bg);
  color: var(--text);
}

.page-about .breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--gutter) 0;
  font-size: .875rem;
}

.page-about .about-hero {
  position: relative;
  padding-bottom: 3.5rem;
  margin-bottom: 3rem;
  border-bottom: 4px solid var(--gold);
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--cyan);
}

.page-about .about-hero__grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 2.5rem;
}

.page-about .about-hero__title-col {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
}

.page-about .about-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.01em;
  margin: .75rem 0 .75rem;
}

.page-about .about-hero__lead {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.page-about .about-hero__paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
  max-width: 56ch;
}

.page-about .about-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 1.5rem 0;
}

.page-about .about-hero__stats .stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0;
}

.page-about .about-hero__stats .stat__value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.page-about .about-hero__stats .stat__label {
  font-size: .875rem;
  color: var(--gray-light);
}

.page-about .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-about .about-mission {
  padding: 0 0 4rem;
}

.page-about .about-mission__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.page-about .about-mission__content p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

.page-about .about-mission__figure {
  margin: 0;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-about .about-mission__figure:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .42);
}

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

.page-about .about-mission__creed {
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border-left: 6px solid var(--gold);
  color: var(--bg);
  position: relative;
}

.page-about .about-mission__creed-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: .8;
  color: var(--gold-deep);
  margin: 0;
}

.page-about .about-mission__creed blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.35;
  margin: .5rem 0 .75rem;
  color: var(--bg);
}

.page-about .about-mission__creed-foot {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .06em;
  color: var(--gray);
}

.page-about .about-tech {
  background: var(--panel);
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
  padding: 3.5rem 0;
}

.page-about .about-tech__panel {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.page-about .about-tech__figure {
  margin: 0;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-about .about-tech__figure:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .42);
}

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

.page-about .about-tech__content {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.page-about .about-tech__specs {
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.page-about .about-tech__specs .data-list {
  margin: 0;
}

.page-about .about-tech__code {
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 2px solid var(--line);
  border-left: 4px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: .8125rem;
  line-height: 1.6;
  overflow-x: auto;
}

.page-about .about-tech__desc p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

.page-about .about-security {
  padding: 3.5rem 0;
}

.page-about .about-security__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.page-about .about-security__figure {
  margin: 0;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  background: var(--panel);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-about .about-security__figure:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .42);
}

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

.page-about .about-security__body>p {
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.page-about .about-security__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.page-about .about-security__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--line);
}

.page-about .about-security__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9375rem;
}

.page-about .about-security__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-about .about-history {
  padding: 3.5rem 0 4rem;
  border-top: 4px solid var(--line);
}

.page-about .about-history__scroller {
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--line);
  cursor: grab;
}

.page-about .about-history__scroller::-webkit-scrollbar {
  height: 8px;
}

.page-about .about-history__scroller::-webkit-scrollbar-track {
  background: var(--line);
}

.page-about .about-history__scroller::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.page-about .about-history__timeline {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  min-width: max-content;
  list-style: none;
}

.page-about .about-history__timeline .timeline__item {
  scroll-snap-align: start;
  flex: 0 0 280px;
  min-height: 230px;
  margin: 0;
  padding: 1.25rem 1.5rem 1.25rem 2rem;
  border-left: 3px solid var(--gold);
  position: relative;
  transition: background .2s ease;
}

.page-about .about-history__timeline .timeline__item:hover {
  background: var(--panel);
}

.page-about .about-history__timeline .timeline__item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -8px;
  width: 11px;
  height: 11px;
  background: var(--bg);
  border: 3px solid var(--gold);
  transform: rotate(45deg);
}

.page-about .about-history__timeline .timeline__tag {
  margin-bottom: .75rem;
}

.page-about .about-history__timeline .timeline__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: .75rem 0 .6rem;
}

.page-about .about-history__timeline .timeline__content {
  margin: 0;
  color: var(--text);
  font-size: .9375rem;
  line-height: 1.7;
}

.page-about .about-history__hint {
  margin: 1rem 0 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: .875rem;
  color: var(--gray-light);
}

.page-about .about-history__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

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

  .page-about .about-hero__stats .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: .375rem;
  }

  .page-about .about-history__timeline .timeline__item {
    flex-basis: 320px;
  }
}

@media (min-width: 1024px) {
  .page-about .about-hero__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: end;
    padding-top: 3.5rem;
  }

  .page-about .about-hero__title-col {
    padding-left: 2rem;
  }

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

  .page-about .about-mission__content {
    grid-column: 1 / 6;
    align-self: start;
  }

  .page-about .about-mission__figure {
    grid-column: 6 / 13;
    margin-top: -1.5rem;
  }

  .page-about .about-mission__creed {
    grid-column: 1 / 8;
    margin-top: -2rem;
    margin-bottom: 0;
  }

  .page-about .about-tech__panel {
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
  }

  .page-about .about-security__grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
  }

  .page-about .about-security__body {
    border-left: 4px solid var(--gold);
    padding-left: 2rem;
  }
}
