html:has(.about-page) {
  scroll-behavior: smooth;
  background: #000;
}

body:has(.about-page),
body:has(.about-page) #container,
body:has(.about-page) #wrap {
  background: #000;
}

body:has(.about-page) .outer {
  max-width: none;
  padding: 0;
}

body:has(.about-page) #main {
  float: none;
  width: 100%;
}

body:has(.about-page) #sidebar,
body:has(.about-page) .article-meta,
body:has(.about-page) .article-header,
body:has(.about-page) .article-footer,
body:has(.about-page) .article-nav,
body:has(.about-page) #header,
body:has(.about-page) #banner {
  display: none;
}

body:has(.about-page) .article,
body:has(.about-page) .article-inner,
body:has(.about-page) .article-entry {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

.about-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.about-page a {
  color: inherit;
  text-decoration: none;
}

.liquid-glass {
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255,255,255,.055);
  background-blend-mode: luminosity;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14), 0 20px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(13px) saturate(150%);
  -webkit-backdrop-filter: blur(13px) saturate(150%);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,.5) 0%,
    rgba(255,255,255,.18) 22%,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,0) 58%,
    rgba(255,255,255,.18) 78%,
    rgba(255,255,255,.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255,255,255,.1);
  box-shadow: 4px 4px 4px rgba(0,0,0,.05), inset 0 1px 1px rgba(255,255,255,.18);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,.52) 0%,
    rgba(255,255,255,.22) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,.22) 80%,
    rgba(255,255,255,.52) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.screen-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(229,211,174,.22), transparent 24rem),
    radial-gradient(circle at 20% 78%, rgba(54,96,138,.18), transparent 18rem),
    linear-gradient(180deg, #05070d 0%, #11100e 58%, #18130f 100%);
}

.hero-video {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: translateX(-50%);
  will-change: opacity;
}

.about-nav {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.brand-mark,
.nav-spacer {
  width: 48px;
  height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 9999px;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  border-radius: 9999px;
  padding: .375rem;
}

.nav-links a {
  padding: .58rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

.nav-links .nav-cta {
  margin-left: .25rem;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  padding-inline: 1rem;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(1020px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 3rem;
  text-align: center;
  text-shadow: 0 18px 54px rgba(0,0,0,.55);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  padding: .375rem .875rem .375rem .375rem;
  font-size: .88rem;
  color: rgba(255,255,255,.92);
}

.hero-badge span {
  border-radius: 9999px;
  background: #fff;
  color: #000;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  text-shadow: none;
}

.hero-content h1,
.section-head h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.hero-content h1 {
  max-width: 900px;
  margin: 1.25rem auto 0;
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  line-height: .9;
  letter-spacing: -3px !important;
}

.hero-lead {
  max-width: 720px;
  margin: 1.15rem auto 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: .92rem;
  font-weight: 500;
}

.hero-actions .liquid-glass-strong {
  border-radius: 9999px;
  padding: .65rem 1.25rem;
}

.terminal-card {
  width: min(760px, 100%);
  margin: 2rem auto 0;
  border-radius: 1.25rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.72);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
}

.terminal-bar span:nth-child(1) { background: #fda4af; }
.terminal-bar span:nth-child(2) { background: #fde68a; }
.terminal-bar span:nth-child(3) { background: #86efac; }
.terminal-bar strong { margin-left: .45rem; font-size: .82rem; }
.terminal-card p { margin: .45rem 0; }
.terminal-card em { color: #d9c7ab; font-style: normal; }
.terminal-type {
  min-height: 1.35em;
}

.terminal-type::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: .25rem;
  background: rgba(255,255,255,.86);
  vertical-align: -.12em;
  animation: cursor-blink 1s steps(2, start) infinite;
}

.panel-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #15120f;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.08)),
    url("/about/images/about-panel-bg.svg");
  background-size: cover;
  background-position: center;
  padding: 7rem max(24px, 6vw) 5rem;
}

.panel-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 8rem, #000 calc(100% - 8rem), transparent);
  pointer-events: none;
}

.panel-screen > * {
  position: relative;
  z-index: 1;
}

.section-head {
  width: min(1180px, 100%);
  margin: 0 auto 2rem;
}

.section-head p {
  margin: 0 0 .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.74);
}

.section-head h2 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  line-height: .94;
  letter-spacing: -2px !important;
}

.profile-card {
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.profile-card p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.profile-card p + p {
  margin-top: .8rem;
}

.topic-grid,
.cert-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.info-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.info-card h3 {
  margin: 0 0 .65rem;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.info-card p {
  margin: 0;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,.84);
}

.info-card div {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}

.info-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 9999px;
  padding: .24rem .65rem;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.09);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 400;
}

.credential-section {
  width: 100%;
}

.credential-section + .credential-section {
  margin-top: 2.25rem;
}

.credential-section-head {
  width: min(1180px, 100%);
  margin: 0 auto 1rem;
}

.credential-section-head p,
.credential-section-head h3,
.credential-section-head span {
  margin: 0;
}

.credential-section-head p {
  color: rgba(255,255,255,.52);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.credential-section-head h3 {
  margin-top: .2rem;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.credential-section-head span {
  display: block;
  max-width: 720px;
  margin-top: .5rem;
  color: rgba(255,255,255,.74);
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.55;
}

.timeline-list {
  position: relative;
  width: min(980px, 100%);
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 1.3rem;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .75rem;
  bottom: .75rem;
  width: 1px;
  background: linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.18), transparent);
}

.timeline-list li {
  position: relative;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 1.25rem;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.12);
}

.timeline-list strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
  font-size: 1rem;
}

.timeline-list span {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.45;
}

.cert-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1rem;
  background: rgba(12,18,28,.58);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.cert-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 180px;
  max-height: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .9rem;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.1);
}

.cert-image img {
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: contain;
}

.cert-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  padding: 1rem .15rem .15rem;
}

.cert-tag,
.cert-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 9999px;
  padding: .24rem .65rem;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1;
}

.cert-tag {
  background: rgba(122,211,255,.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08);
  color: rgba(222,245,255,.95);
}

.cert-card h3 {
  margin: .15rem 0 0;
  font-family: "Instrument Serif", serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
}

.cert-card p {
  margin: 0;
}

.cert-issuer {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.35;
}

.cert-status {
  margin-top: .1rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

.cert-desc {
  margin-top: .35rem !important;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.65;
}

.cert-related {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
}

.badge-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin: 0 auto;
}

.badge-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  padding: .9rem;
  background: rgba(12,18,28,.46);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.badge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.badge-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 168px;
  overflow: hidden;
  border-radius: .8rem;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.09);
}

.badge-embed {
  width: 80px;
  height: 140px;
  display: grid;
  justify-content: center;
  overflow: hidden;
}

.badge-embed iframe {
  width: 150px !important;
  height: 270px !important;
  max-width: none;
  border: 0;
  transform: scale(.52);
  transform-origin: top center;
}

.badge-image > iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 150px !important;
  height: 270px !important;
  max-width: none;
  border: 0;
  transform: translateX(-50%) scale(.62);
  transform-origin: top center;
}

.badge-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  padding: .85rem .05rem .05rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 9999px;
  padding: .22rem .6rem;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  font-size: .74rem;
  font-weight: 500;
  line-height: 1;
}

.badge-card h3 {
  margin: .1rem 0 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}

.badge-card p {
  margin: 0;
}

.badge-issuer {
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.35;
}

.badge-desc {
  display: -webkit-box;
  margin-top: .3rem !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
}

.badge-related {
  margin-top: auto !important;
  padding-top: .35rem;
  color: rgba(255,255,255,.58);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.45;
}

.anchor-offset {
  position: absolute;
  top: -5rem;
}

.arch-flow {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.arch-flow div {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: .4rem;
  border-radius: 1.25rem;
  padding: 1rem;
  text-align: center;
}

.arch-flow div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -.68rem;
  width: .72rem;
  height: .72rem;
  border-top: 1.5px solid rgba(255,255,255,.78);
  border-right: 1.5px solid rgba(255,255,255,.78);
  transform: translateY(-50%) rotate(45deg);
}

.arch-flow strong {
  color: #fff;
  font-size: 1rem;
}

.arch-flow span,
.arch-note {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 300;
}

.arch-note {
  width: min(1180px, 100%);
  margin: 1rem auto 0;
}

.contact-grid {
  width: min(360px, 100%);
  margin: 0 auto;
}

.contact-grid a {
  display: grid;
  gap: .35rem;
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #fff;
}

.contact-grid span {
  color: rgba(255,255,255,.74);
  font-size: .9rem;
  overflow-wrap: anywhere;
}

#profile.panel-screen {
  min-height: 72vh;
  padding-top: 5.25rem;
  padding-bottom: 4.25rem;
}

#architecture.panel-screen {
  min-height: 70vh;
  padding-top: 5.25rem;
  padding-bottom: 4.25rem;
}

#contact.panel-screen {
  min-height: 52vh;
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

#profile .section-head,
#architecture .section-head,
#contact .section-head {
  margin-bottom: 1.25rem;
}

#timeline {
  align-items: center;
}

#timeline .section-head {
  text-align: center;
}

#timeline .section-head h2 {
  margin: 0 auto;
}

@keyframes cursor-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@media (max-width: 900px) {
  .about-nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .hero-content h1 {
    font-size: 3.6rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: .75rem;
  }

  .terminal-card {
    font-size: .82rem;
  }

  .panel-screen {
    min-height: auto;
    padding: 5.5rem 1rem 4rem;
  }

  #profile.panel-screen,
  #architecture.panel-screen,
  #contact.panel-screen {
    min-height: auto;
    padding: 4rem 1rem 3rem;
  }

  .topic-grid,
  .cert-grid,
  .arch-flow {
    grid-template-columns: 1fr;
  }

  .arch-flow div {
    min-height: auto;
  }

  .arch-flow div:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -.8rem;
    transform: translateX(50%) rotate(135deg);
  }
}

@media (max-width: 767px) {
  .screen {
    min-height: auto;
  }

  .screen-hero {
    align-items: flex-start;
    min-height: 100svh;
    padding: 5.25rem 0 3rem;
  }

  .screen-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, #000 5rem, #000 calc(100% - 4rem), transparent);
    pointer-events: none;
  }

  .hero-video {
    display: none;
  }

  .about-nav {
    position: absolute;
    top: .75rem;
    padding: 0 1rem;
  }

  .brand-mark,
  .nav-spacer {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    font-size: 1.8rem;
    background: rgba(255,255,255,.075);
  }

  .hero-content {
    width: min(100% - 1.5rem, 560px);
    padding: 0;
  }

  .hero-badge {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 1.1rem;
    padding: .45rem .6rem;
    font-size: .78rem;
    line-height: 1.35;
  }

  .hero-badge span {
    padding: .2rem .62rem;
  }

  .hero-content h1 {
    margin-top: 1rem;
    font-size: clamp(2.45rem, 13vw, 3.45rem);
    line-height: .95;
    letter-spacing: -1px !important;
  }

  .hero-lead {
    margin-top: 1rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-actions a {
    width: min(100%, 280px);
    justify-content: center;
  }

  .terminal-card {
    margin-top: 1.35rem;
    border-radius: 1rem;
    padding: .95rem 1rem;
  }

  .terminal-bar {
    margin-bottom: .75rem;
  }

  .panel-screen {
    padding: 3.5rem 1rem;
    background-position: center top;
  }

  #profile.panel-screen,
  #architecture.panel-screen,
  #contact.panel-screen {
    padding: 3.25rem 1rem;
  }

  .section-head {
    margin-bottom: 1.2rem;
  }

  .section-head p {
    margin-bottom: .55rem;
  }

  .section-head h2 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
    line-height: 1;
    letter-spacing: -1px !important;
  }

  .profile-card,
  .info-card,
  .cert-card,
  .badge-card,
  .contact-grid a {
    border-radius: 1rem;
  }

  .profile-card,
  .info-card {
    padding: 1rem;
  }

  .profile-card p,
  .info-card p,
  .timeline-list span,
  .cert-desc,
  .cert-related {
    font-size: .92rem;
    line-height: 1.58;
  }

  .topic-grid,
  .cert-grid,
  .badge-grid,
  .timeline-list,
  .arch-flow {
    gap: .85rem;
  }

  .info-card h3 {
    font-size: 1.72rem;
  }

  .cert-image {
    min-height: 150px;
    max-height: 190px;
  }

  .cert-card h3 {
    font-size: 1.35rem;
  }

  .badge-image {
    height: 142px;
  }

  .timeline-list {
    padding-left: 1rem;
  }

  .timeline-list li {
    padding: .9rem .95rem;
  }

  .timeline-list li::before {
    left: -1.22rem;
  }

  .arch-flow div {
    padding: .9rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.about-page) {
    scroll-behavior: auto;
  }
}
