html:has(body.about-page) {
  scroll-snap-type: none;
}

.about-page {
  --about-ink: #101820;
  --about-paper: #edf3f4;
  --about-dark: #050b0f;
  --about-dark-2: #08121a;
  --about-cyan: #25d9e7;
  --about-cyan-soft: #a8f5f7;
  color: #fff;
  background: #02070a;
}

.about-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-page .skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #031014;
  background: var(--about-cyan-soft);
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.about-page .skip-link:focus {
  transform: translateY(0);
}

.about-page .site-header {
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.about-page .site-header.is-compact {
  min-height: 62px;
  background: rgba(2, 7, 10, 0.97);
}

.about-page .about-nav-toggle {
  display: none;
}

.about-page .about-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.about-page .about-nav-links a {
  position: relative;
  padding-right: 11px;
  padding-left: 11px;
  font-size: 12px;
  white-space: nowrap;
}

.about-page .about-nav-links a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 1px;
  background: var(--about-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.about-page .about-nav-links a.is-current {
  color: #fff;
}

.about-page .about-nav-links a.is-current:not(.header-cta)::after {
  transform: scaleX(1);
}

.about-page .about-nav-links .header-cta.is-current {
  box-shadow:
    0 0 0 1px rgba(168, 245, 247, 0.28),
    0 0 18px rgba(37, 217, 231, 0.22);
}

.about-page .section-kicker {
  display: flex;
}

.about-light,
.about-dark {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: clip;
}

.about-light {
  color: var(--about-ink);
  background:
    linear-gradient(rgba(16, 24, 32, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.032) 1px, transparent 1px),
    var(--about-paper);
  background-size: 84px 84px;
}

.about-dark {
  color: #fff;
  background: var(--about-dark);
}

.about-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 245, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 245, 247, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.62) 68%, transparent);
}

.about-section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.about-section-heading .section-kicker {
  margin-top: 7px;
}

.about-section-heading h2,
.about-sticky-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 82px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-section-heading > div > p,
.about-sticky-heading > p:not(.section-kicker) {
  max-width: 760px;
  margin: 26px 0 0;
  color: #64747a;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 480;
  line-height: 1.58;
}

.about-dark .about-section-heading > div > p,
.about-dark .about-sticky-heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.57);
}

.about-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 29% 44%, rgba(37, 217, 231, 0.075), transparent 30%),
    #02070a;
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(2, 7, 10, 0.72));
}

.about-hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: max(720px, 100svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(64px, 10vh, 90px)) 0 clamp(64px, 9vh, 90px);
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(330px, 0.42fr);
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: 0;
  transform: translateY(28px);
}

.about-hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 66px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-hero h1 span {
  display: block;
}

.about-hero h1 span:last-child {
  margin-top: 0.04em;
  color: var(--about-cyan-soft);
}

.about-hero-role {
  max-width: 640px;
  margin: clamp(22px, 3.2vh, 28px) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 460;
  line-height: 1.55;
}

.about-hero-facts {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(26px, 4vh, 36px) 0 0;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
}

.about-hero-facts div {
  min-width: 0;
  padding: clamp(16px, 2.2vh, 21px) 18px clamp(17px, 2.4vh, 22px) 0;
}

.about-hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(168, 245, 247, 0.13);
}

.about-hero-facts dt,
.about-hero-facts dd {
  margin: 0;
}

.about-hero-facts dt {
  font-size: clamp(26px, 2.7vw, 34px);
  font-weight: 770;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-hero-facts dd {
  max-width: 180px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.38;
}

.about-hero-portrait {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 430px);
  height: clamp(480px, 66vh, 600px);
  max-height: calc(100svh - var(--header-height) - 92px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.18);
  border-radius: 24px;
  background: #10161b;
  opacity: 0;
  transform: translateX(34px) scale(0.985);
}

.about-hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.87) contrast(1.05);
  transform: scale(1.015);
}

.about-hero-portrait picture {
  width: 100%;
  height: 100%;
  display: block;
}

.is-ready .about-hero-copy {
  animation: about-enter 880ms var(--ease-out) forwards;
}

.is-ready .about-hero-portrait {
  animation: about-portrait-enter 1100ms 90ms var(--ease-out) forwards;
}

.about-hero-orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 47%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}

.about-hero-orbit span {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(168, 245, 247, 0.16);
  border-radius: 50%;
  transform: scaleY(0.33) rotate(-18deg);
}

.about-hero-orbit span:nth-child(2) {
  inset: 22%;
  transform: scaleY(0.55) rotate(34deg);
}

.about-hero-orbit span:nth-child(3) {
  inset: 41%;
  border-style: dashed;
  transform: none;
}

.about-scroll-cue {
  position: absolute;
  z-index: 5;
  right: var(--page-gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-scroll-cue span:last-child {
  color: var(--about-cyan);
  font-size: 16px;
}

.path-section {
  padding: clamp(76px, 8vw, 112px) var(--page-gutter);
}

.education-layout,
.documents-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: start;
}

.about-sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.about-sticky-heading .section-kicker {
  margin: 0 0 36px;
}

.path-heading h2,
.documents-layout .about-sticky-heading h2 {
  font-size: clamp(38px, 4vw, 46px);
}

.path-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.path-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  margin-bottom: clamp(28px, 4vh, 40px);
}

.path-heading .section-kicker {
  margin-top: 7px;
}

.path-heading h2 {
  max-width: 850px;
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.path-heading > div > p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #65737e;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 470;
  line-height: 1.58;
}

.path-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(36px, 5vw, 64px);
  min-height: 0;
}

.path-tabs {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 24, 32, 0.16);
}

.path-tab {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.16);
  color: #65737e;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    padding-left 220ms var(--ease-out);
}

.path-tab::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 2px;
  background: #087f92;
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.path-tab:hover,
.path-tab:focus-visible {
  color: #101820;
  background: rgba(255, 255, 255, 0.48);
}

.path-tab:focus-visible {
  z-index: 1;
  outline: 3px solid rgba(8, 127, 146, 0.28);
  outline-offset: 2px;
}

.path-tab.is-active {
  padding-left: 20px;
  color: #101820;
  background: rgba(255, 255, 255, 0.86);
}

.path-tab.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.path-tab-index {
  color: #087f92;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.path-tab-copy {
  min-width: 0;
}

.path-tab-copy strong,
.path-tab-copy small {
  display: block;
}

.path-tab-copy strong {
  color: inherit;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.path-tab-copy small {
  margin-top: 4px;
  color: #819097;
  font-size: 10px;
  font-weight: 590;
  line-height: 1.35;
}

.path-tab-arrow {
  color: #087f92;
  font-size: 17px;
  opacity: 0.45;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.path-tab.is-active .path-tab-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.path-panels {
  min-width: 0;
  min-height: 0;
}

.path-panel {
  height: 100%;
  min-height: 430px;
  padding: clamp(26px, 3vw, 38px);
  border-top: 1px solid rgba(16, 24, 32, 0.16);
  border-bottom: 1px solid rgba(16, 24, 32, 0.16);
  background: rgba(255, 255, 255, 0.66);
}

.has-js .path-panel:not(.is-active),
.path-panel[hidden] {
  display: none;
}

.path-panel.is-active {
  animation: path-panel-enter 360ms var(--ease-out) both;
}

.path-panel-marker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 0 0 clamp(22px, 3vh, 30px);
  color: #087f92;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.path-panel-marker time {
  color: #101820;
  font-size: 16px;
  letter-spacing: 0;
}

.path-panel > p:not(.path-panel-marker) {
  max-width: 760px;
  margin: 0;
  color: #344249;
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 470;
  line-height: 1.58;
}

.path-panel > p:not(.path-panel-marker) + p {
  margin-top: clamp(14px, 2vh, 20px);
}

@keyframes path-panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.path-crawl-section {
  --path-scroll-distance: 1280px;
  --path-copy-offset: 0px;
  --path-progress: 0;
  height: calc((100svh - var(--header-height)) + var(--path-scroll-distance));
  min-height: calc(620px + var(--path-scroll-distance));
  padding: 0;
  overflow: clip;
}

.path-crawl-sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
}

.path-crawl-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.39fr) minmax(0, 0.61fr) 28px;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(30px, 4vh, 44px) 0;
}

.path-crawl-heading {
  align-self: center;
}

.path-crawl-heading h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.path-crawl-viewport {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.path-crawl-copy {
  width: min(100%, 700px);
  padding: clamp(36px, 6vh, 62px) 0;
  color: #344249;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 460;
  line-height: 1.58;
  letter-spacing: -0.012em;
  text-wrap: pretty;
  hyphens: auto;
  transform: translate3d(0, var(--path-copy-offset), 0);
  will-change: transform;
}

.path-crawl-copy p {
  margin: 0;
  orphans: 3;
  widows: 3;
}

.path-crawl-copy p + p {
  margin-top: 1.15em;
}

.path-crawl-copy p:last-child {
  color: #101820;
  font-weight: 650;
}

.path-crawl-rail {
  position: relative;
  width: 28px;
  height: min(52vh, 420px);
  justify-self: end;
  align-self: center;
  padding: 0 12px;
  border-radius: 18px;
  color: #087f92;
  cursor: ns-resize;
  touch-action: none;
}

.path-crawl-rail:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.2);
  outline-offset: 5px;
}

.path-crawl-rail-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(16, 24, 32, 0.22);
  transform: translateX(-50%);
}

.path-crawl-rail-fill {
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--path-progress) * 100%);
  background: currentColor;
}

.path-crawl-rail-thumb {
  position: absolute;
  top: calc(var(--path-progress) * 100%);
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #eef5f6;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 1px rgba(8, 127, 146, 0.28);
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .path-crawl-section {
    height: auto;
    min-height: 0;
    padding: 60px 0 68px;
    overflow: visible;
  }

  .path-crawl-sticky {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
  }

  .path-crawl-layout {
    width: calc(100% - 36px);
    height: auto;
    display: block;
    padding: 0;
  }

  .path-crawl-heading {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(16, 24, 32, 0.22);
  }

  .path-crawl-heading h2 {
    max-width: none;
    font-size: clamp(34px, 6vw, 42px);
    line-height: 1.08;
  }

  .path-crawl-viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .path-crawl-copy {
    width: 100%;
    max-width: 760px;
    padding: 0;
    font-size: 16px;
    line-height: 1.62;
    transform: none;
    will-change: auto;
  }

  .path-crawl-rail {
    display: none;
  }
}

.directions-section {
  position: relative;
  height: calc(((100svh - var(--header-height)) * 4) + var(--header-height));
  min-height: calc(2480px + var(--header-height));
  padding: 0;
  overflow: clip;
}

.directions-story-sticky {
  position: sticky;
  z-index: 1;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  display: grid;
  align-items: center;
}

.directions-story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.directions-story-intro h2,
.directions-story-intro p {
  margin: 0;
}

.directions-story-intro h2 {
  max-width: 420px;
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 790;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.directions-story-intro p {
  max-width: 410px;
  margin-top: clamp(24px, 3.6vh, 34px);
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 470;
  line-height: 1.58;
  text-wrap: pretty;
}

.directions-story-stage {
  position: relative;
  height: clamp(470px, 62vh, 560px);
  padding-left: clamp(32px, 4vw, 60px);
  border-left: 1px solid rgba(168, 245, 247, 0.2);
}

.direction-panel {
  position: absolute;
  inset: 0 0 0 clamp(32px, 4vw, 60px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px);
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease-out);
}

.direction-panel.is-before {
  transform: translateY(-34px);
}

.direction-panel.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.direction-panel > h3 {
  max-width: 740px;
  margin: 0 0 clamp(28px, 4vh, 38px);
  color: var(--about-cyan-soft);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.direction-panel-list {
  max-width: 790px;
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
}

.direction-panel-entry {
  min-height: clamp(112px, 14vh, 138px);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 3.4vw, 48px);
  align-items: center;
  padding: clamp(20px, 2.6vh, 26px) 0;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
}

.direction-panel-entry h4,
.direction-panel-entry p {
  margin: 0;
}

.direction-panel-entry h4 {
  max-width: 360px;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 690;
  line-height: 1.14;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.direction-panel-entry p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(14px, 1.22vw, 17px);
  font-weight: 470;
  line-height: 1.52;
  text-wrap: pretty;
}

.direction-panel-entry--education {
  min-height: clamp(310px, 39vh, 360px);
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.56fr);
  grid-template-rows: auto auto;
  align-content: center;
}

.direction-panel-entry--education h4 {
  grid-row: 1 / -1;
}

.direction-topic-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(168, 245, 247, 0.14);
}

.direction-topic-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(168, 245, 247, 0.11);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 610;
  line-height: 1.35;
}

.directions-story--categories {
  border-top: 1px solid rgba(168, 245, 247, 0.1);
  background:
    radial-gradient(circle at 18% 50%, rgba(37, 217, 231, 0.045), transparent 31%),
    var(--about-dark);
}

.directions-categories-stage {
  position: relative;
  height: clamp(470px, 62vh, 560px);
}

.direction-category-panel {
  position: absolute;
  inset: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px);
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease-out);
}

.direction-category-panel.is-before {
  transform: translateY(-34px);
}

.direction-category-panel.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.direction-category-copy {
  padding-right: clamp(32px, 3.5vw, 52px);
}

.direction-category-copy h3,
.direction-category-copy p {
  margin: 0;
}

.direction-category-copy h3 {
  max-width: 460px;
  font-size: clamp(40px, 3.8vw, 56px);
  font-weight: 790;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.direction-category-copy p {
  max-width: 420px;
  margin-top: clamp(24px, 3.6vh, 34px);
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 470;
  line-height: 1.58;
  text-wrap: pretty;
}

.direction-category-list {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(32px, 4vw, 60px);
  border-left: 1px solid rgba(168, 245, 247, 0.2);
}

.direction-category-list .direction-panel-entry:last-child {
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
}

.directions-browser-section {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  padding: clamp(24px, 3vh, 32px) var(--page-gutter);
  display: grid;
  align-items: center;
  overflow: clip;
  border-top: 1px solid rgba(168, 245, 247, 0.1);
  background:
    radial-gradient(circle at 82% 22%, rgba(37, 217, 231, 0.055), transparent 28%),
    var(--about-dark-2);
}

.directions-browser-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.directions-browser-heading {
  margin-bottom: clamp(26px, 3.6vh, 34px);
}

.directions-browser-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.directions-browser {
  height: clamp(460px, 58vh, 520px);
  display: grid;
  grid-template-columns: minmax(330px, 0.39fr) minmax(0, 0.61fr);
  grid-template-rows: repeat(4, minmax(0, 1fr));
  column-gap: clamp(42px, 6vw, 86px);
  align-items: stretch;
}

.direction-browser-entry {
  display: contents;
}

.direction-browser-trigger {
  position: relative;
  grid-column: 1;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px 24px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 0;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    padding 240ms var(--ease-out);
}

.direction-browser-entry:nth-child(1) .direction-browser-trigger {
  grid-row: 1;
}

.direction-browser-entry:nth-child(2) .direction-browser-trigger {
  grid-row: 2;
}

.direction-browser-entry:nth-child(3) .direction-browser-trigger {
  grid-row: 3;
}

.direction-browser-entry:nth-child(4) .direction-browser-trigger {
  grid-row: 4;
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
}

.direction-browser-trigger::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--about-cyan);
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease-out);
}

.direction-browser-trigger:hover {
  color: #fff;
  background: rgba(168, 245, 247, 0.035);
}

.direction-browser-entry.is-active .direction-browser-trigger {
  padding-left: 26px;
  color: #fff;
  background: rgba(37, 217, 231, 0.075);
}

.direction-browser-entry.is-active .direction-browser-trigger::before {
  opacity: 1;
  transform: scaleY(1);
}

.direction-browser-trigger:focus-visible {
  z-index: 2;
  outline: 3px solid rgba(168, 245, 247, 0.32);
  outline-offset: 3px;
}

.direction-browser-number,
.direction-browser-count {
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.direction-browser-number {
  color: var(--about-cyan);
}

.direction-browser-count {
  color: rgba(255, 255, 255, 0.38);
  text-align: right;
}

.direction-browser-title {
  max-width: 350px;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 680;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.direction-browser-arrow {
  color: var(--about-cyan);
  font-size: 18px;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

.direction-browser-entry.is-active .direction-browser-arrow {
  transform: rotate(90deg);
}

.direction-browser-panel {
  grid-column: 2;
  grid-row: 1 / span 4;
  min-width: 0;
  height: 100%;
  align-self: stretch;
}

.direction-browser-panel[hidden] {
  display: none;
}

.direction-browser-cards {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 16px;
}

.direction-browser-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid rgba(168, 245, 247, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 220ms var(--ease-out),
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease;
}

.direction-browser-card--link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.direction-browser-card:hover,
.direction-browser-card--link:focus-visible {
  border-color: rgba(37, 217, 231, 0.42);
  background: rgba(37, 217, 231, 0.075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.direction-browser-card--link:focus-visible {
  z-index: 2;
  outline: 3px solid rgba(168, 245, 247, 0.36);
  outline-offset: 3px;
}

@media (min-width: 901px) {
  .direction-browser-cards:has(> :nth-child(3)) {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .direction-browser-cards > :only-child {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }

  .direction-browser-cards > :nth-child(3):last-child {
    grid-column: 1 / -1;
  }
}

.direction-browser-card h3,
.direction-browser-card p {
  margin: 0;
}

.direction-browser-card h3 {
  max-width: 390px;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 690;
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.direction-browser-card--link h3 {
  padding-right: 38px;
}

.direction-browser-card p {
  max-width: 500px;
  margin-top: 18px;
  padding-right: clamp(34px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  font-weight: 480;
  line-height: 1.52;
  text-wrap: pretty;
}

.direction-browser-card .program-glyph {
  right: 20px;
  bottom: 18px;
  color: var(--about-cyan);
  opacity: 0.28;
  transform: scale(0.78);
  transform-origin: right bottom;
  transition:
    opacity 200ms ease,
    transform 240ms var(--ease-out);
}

.direction-browser-link-arrow {
  position: absolute;
  top: clamp(24px, 2.5vw, 32px);
  right: clamp(24px, 2.5vw, 32px);
  color: var(--about-cyan);
  font-size: 22px;
  font-weight: 520;
  line-height: 1;
  opacity: 0.62;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.direction-browser-card:hover .program-glyph,
.direction-browser-card--link:focus-visible .program-glyph {
  opacity: 0.62;
  transform: scale(0.86) translate(-2px, -2px);
}

.direction-browser-card--link:hover .direction-browser-link-arrow,
.direction-browser-card--link:focus-visible .direction-browser-link-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.direction-browser-panel:not([hidden]) .direction-browser-card {
  animation: direction-browser-card-enter 440ms var(--ease-out) both;
}

.direction-browser-panel:not([hidden]) .direction-browser-card:nth-child(2) {
  animation-delay: 45ms;
}

.direction-browser-panel:not([hidden]) .direction-browser-card:nth-child(3) {
  animation-delay: 90ms;
}

@keyframes direction-browser-card-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.position-section {
  min-height: 78svh;
  padding: clamp(82px, 11vh, 132px) var(--page-gutter);
  display: grid;
  align-items: center;
  color: #031014;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.27), transparent 23%),
    linear-gradient(135deg, var(--about-cyan), var(--about-cyan-soft));
}

.position-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.position-index,
.position-inner h2,
.position-signature {
  margin: 0;
}

.position-index {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.position-inner h2 {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.position-inner blockquote {
  max-width: 1240px;
  margin: clamp(40px, 6vh, 72px) 0 0;
  font-size: clamp(38px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.position-signature {
  margin-top: clamp(30px, 4vh, 46px);
  font-size: 13px;
  font-weight: 700;
}

.mission-profile-section {
  min-height: 620px;
  padding: clamp(76px, 8vw, 112px) var(--page-gutter);
  display: grid;
  align-items: center;
  border-top: 1px solid rgba(168, 245, 247, 0.08);
  border-bottom: 1px solid rgba(168, 245, 247, 0.08);
  background:
    radial-gradient(circle at 82% 54%, rgba(37, 217, 231, 0.09), transparent 30%),
    var(--about-dark-2);
}

.mission-profile-inner {
  display: flex;
  align-items: center;
}

.mission-profile-copy {
  width: 100%;
  max-width: 980px;
}

.mission-profile-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.mission-profile-copy p {
  max-width: 760px;
  margin: clamp(24px, 3.5vh, 32px) 0 0;
  padding-top: clamp(20px, 2.8vh, 26px);
  border-top: 1px solid rgba(168, 245, 247, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 470;
  line-height: 1.58;
}

.evidence-section {
  min-height: 100svh;
  padding: clamp(86px, 10vh, 118px) var(--page-gutter);
  display: grid;
  align-items: center;
}

.evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(48px, 6vh, 72px) 0 0;
  border-top: 1px solid rgba(16, 24, 32, 0.19);
  border-bottom: 1px solid rgba(16, 24, 32, 0.19);
}

.evidence-metrics div {
  min-width: 0;
  padding: clamp(26px, 4vh, 42px) clamp(24px, 3vw, 44px) clamp(28px, 4.4vh, 46px) 0;
}

.evidence-metrics div + div {
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid rgba(16, 24, 32, 0.16);
}

.evidence-metrics dt,
.evidence-metrics dd {
  margin: 0;
}

.evidence-metrics dt {
  color: #087f92;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 770;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.evidence-metrics dd {
  max-width: 340px;
  margin-top: 18px;
  color: #64747a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.48;
}

.evidence-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 64px);
  margin-top: clamp(38px, 5vh, 58px);
}

.evidence-note {
  padding-left: 24px;
  border-left: 2px solid #0da8bd;
}

.evidence-note-label,
.evidence-note h3,
.evidence-note > p:last-child {
  margin: 0;
}

.evidence-note-label {
  color: #087f92;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.evidence-note h3 {
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.evidence-note > p:last-child {
  max-width: 580px;
  margin-top: 13px;
  color: #64747a;
  font-size: 13px;
  line-height: 1.58;
}

.projects-section {
  min-height: 100svh;
  padding: clamp(86px, 10vh, 118px) var(--page-gutter);
  display: grid;
  align-items: center;
  background: var(--about-dark-2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 6vh, 74px);
  border-top: 1px solid rgba(168, 245, 247, 0.17);
  border-left: 1px solid rgba(168, 245, 247, 0.17);
}

.project-item {
  min-height: clamp(278px, 35vh, 350px);
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid rgba(168, 245, 247, 0.17);
  border-bottom: 1px solid rgba(168, 245, 247, 0.17);
  background: rgba(255, 255, 255, 0.018);
}

.project-number,
.project-item h3,
.project-item > p:not(.project-number) {
  margin: 0;
}

.project-number {
  color: var(--about-cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.project-item h3 {
  margin-top: 44px;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 730;
  line-height: 1;
  letter-spacing: -0.04em;
}

.project-item > p:not(.project-number) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
}

.project-item > span,
.project-item > a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--about-cyan-soft);
  font-size: 11px;
  font-weight: 700;
}

.project-item > a:hover,
.project-item > a:focus-visible {
  color: #fff;
}

.projects-materials-link {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(168, 245, 247, 0.17);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.projects-materials-link strong {
  flex: 0 0 auto;
  color: var(--about-cyan-soft);
  font-size: 12px;
}

.education-section {
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  padding: clamp(42px, 5.5vh, 62px) var(--page-gutter);
  display: grid;
  align-items: center;
}

.education-layout {
  height: 100%;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.education-heading {
  max-width: 450px;
}

.education-heading h2,
.education-heading p {
  margin: 0;
}

.education-heading h2 {
  color: #101820;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.education-heading p {
  max-width: 390px;
  margin-top: 24px;
  color: #64747a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.education-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 24, 32, 0.2);
}

.education-list li {
  position: relative;
  isolation: isolate;
  min-height: 104px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(156px, 0.3fr);
  gap: 22px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
}

.education-list li::before {
  content: "";
  position: absolute;
  inset: 7px -18px;
  z-index: -1;
  border: 1px solid rgba(8, 127, 146, 0);
  border-radius: 16px;
  background: rgba(8, 127, 146, 0);
  transition:
    border-color 200ms ease,
    background-color 200ms ease;
}

.education-list li:hover::before {
  border-color: rgba(8, 127, 146, 0.16);
  background: rgba(8, 127, 146, 0.045);
}

.education-list time,
.education-period {
  color: #087f92;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.education-copy {
  min-width: 0;
}

.education-list h3,
.education-list p {
  margin: 0;
}

.education-list h3 {
  font-size: clamp(20px, 1.65vw, 24px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.education-list p {
  max-width: 720px;
  margin-top: 9px;
  color: #64747a;
  font-size: 13px;
  line-height: 1.5;
}

.education-document-slot {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #718086;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
  transition: color 200ms ease;
}

.education-document-mark {
  position: relative;
  width: 24px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 3px;
  opacity: 0.68;
}

.education-document-mark::before,
.education-document-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1px;
  background: currentColor;
}

.education-document-mark::before {
  top: 10px;
}

.education-document-mark::after {
  top: 16px;
}

.education-list li:hover .education-document-slot {
  color: #087f92;
}

a.education-document-slot {
  margin: -6px;
  padding: 6px;
  border-radius: 8px;
  text-decoration: none;
  cursor: zoom-in;
}

a.education-document-slot:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.24);
  outline-offset: 3px;
}

.about-document-dialog {
  width: min(1180px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.24);
  color: #fff;
  background: #061017;
}

.about-document-dialog::backdrop {
  background: rgba(2, 7, 10, 0.86);
  backdrop-filter: blur(10px);
}

.about-document-dialog-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  border-bottom: 1px solid rgba(168, 245, 247, 0.16);
}

.about-document-dialog-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.about-document-dialog-header button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(168, 245, 247, 0.2);
  color: #fff;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.about-document-dialog-header button:hover,
.about-document-dialog-header button:focus-visible {
  border-color: rgba(37, 217, 231, 0.58);
  color: var(--about-cyan);
}

.about-document-dialog-header button:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.22);
  outline-offset: 3px;
}

.about-document-dialog-body {
  height: calc(100svh - 104px);
  max-height: 860px;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 22px;
  background: #dfe8ea;
}

.about-document-dialog-body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.media-section {
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  padding: clamp(42px, 5.5vh, 62px) var(--page-gutter);
  display: grid;
  align-items: center;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(330px, 0.47fr) minmax(0, 0.53fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: end;
}

.media-heading h2,
.media-heading p {
  margin: 0;
}

.media-heading h2 {
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.media-heading p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.62;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(340px, 0.92fr);
  gap: clamp(22px, 2.4vw, 36px);
  margin-top: clamp(30px, 4vh, 44px);
  align-items: stretch;
}

.materials-featured {
  min-height: clamp(390px, 49vh, 470px);
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr)) 54px;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
}

.material-line {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px 16px;
  align-items: center;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
  transition:
    padding 220ms var(--ease-out),
    background-color 180ms ease;
}

.material-line:hover,
.material-line:focus-visible {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(37, 217, 231, 0.055);
}

.material-line:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.28);
  outline-offset: -3px;
}

.material-kind {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  color: var(--about-cyan);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-line strong {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 670;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.material-line small {
  grid-column: 1;
  grid-row: 3;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.42;
}

.material-line b {
  grid-column: 2;
  grid-row: 1 / -1;
  color: var(--about-cyan);
  font-size: 18px;
  transition: transform 180ms ease;
}

.material-line:hover b,
.material-line:focus-visible b {
  transform: translate(3px, -3px);
}

.materials-all-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(168, 245, 247, 0.18);
  color: var(--about-cyan-soft);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.02em;
  transition:
    padding 180ms var(--ease-out),
    color 180ms ease;
}

.materials-all-link:hover,
.materials-all-link:focus-visible {
  padding-right: 14px;
  padding-left: 14px;
  color: #fff;
}

.materials-all-link:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.28);
  outline-offset: -3px;
}

.video-gallery {
  position: relative;
  min-height: clamp(390px, 49vh, 470px);
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.18);
  border-radius: clamp(16px, 1.8vw, 24px);
  background: #0b1217;
  touch-action: pan-y;
}

.video-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px) scale(1.012);
  transition:
    opacity 300ms ease,
    visibility 300ms ease,
    transform 420ms var(--ease-out);
}

.video-preview.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.video-preview > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 27%;
  filter: saturate(0.82) contrast(1.03) brightness(0.82);
  transform: scale(1.01);
}

.video-preview--graphic > img {
  object-position: center;
  filter: saturate(0.82) contrast(1.05) brightness(0.68);
}

.video-preview--youtube-cover::before {
  position: absolute;
  inset: -24px;
  content: "";
  background: url("/assets/video-covers/chelovek-posle-algoritma-youtube.jpg") center / cover no-repeat;
  filter: blur(18px) brightness(0.38) saturate(0.78);
  transform: scale(1.08);
}

.video-preview--youtube-cover > img {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
}

.video-preview--youtube-cover .video-preview-shade {
  display: none;
}

.video-preview--youtube-cover .video-preview-play {
  z-index: 2;
}

.video-preview--linked {
  color: inherit;
  cursor: pointer;
}

.video-preview--linked:focus-visible {
  outline: 3px solid var(--about-cyan-soft);
  outline-offset: -4px;
}

.video-preview--linked .video-preview-play {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms var(--ease-out);
}

.video-preview--linked:hover .video-preview-play,
.video-preview--linked:focus-visible .video-preview-play {
  border-color: var(--about-cyan-soft);
  color: var(--about-dark);
  background: var(--about-cyan-soft);
  transform: scale(1.06);
}

.video-preview--close > img {
  object-position: 50% 22%;
}

.video-preview-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 10, 0.05) 26%, rgba(2, 7, 10, 0.9) 100%),
    linear-gradient(90deg, rgba(2, 7, 10, 0.18), transparent 58%);
}

.video-preview-play {
  position: absolute;
  top: clamp(22px, 2.5vw, 32px);
  right: clamp(22px, 2.5vw, 32px);
  width: clamp(52px, 5vw, 66px);
  height: clamp(52px, 5vw, 66px);
  display: grid;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(168, 245, 247, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(2, 7, 10, 0.32);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.video-gallery-controls {
  position: absolute;
  top: clamp(22px, 2.5vw, 32px);
  left: clamp(22px, 2.5vw, 32px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-gallery-counter {
  min-width: 66px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.video-gallery-controls > div {
  display: flex;
  gap: 7px;
}

.video-gallery-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(168, 245, 247, 0.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(2, 7, 10, 0.36);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.video-gallery-controls button:hover,
.video-gallery-controls button:focus-visible {
  border-color: var(--about-cyan-soft);
  color: var(--about-dark);
  background: var(--about-cyan-soft);
  transform: translateY(-2px);
}

.video-gallery-controls button:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.24);
  outline-offset: 3px;
}

.video-preview-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(26px, 3vw, 40px);
}

.video-preview-copy .material-kind {
  display: inline-block;
  margin: 0 0 13px;
}

.video-preview-copy h3,
.video-preview-copy > p {
  margin: 0;
}

.video-preview-copy h3 {
  max-width: 670px;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.video-preview-copy > p {
  max-width: 540px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.documents-section {
  min-height: 92svh;
  padding: clamp(86px, 10vh, 118px) var(--page-gutter);
  display: grid;
  align-items: center;
}

.documents-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 24, 32, 0.2);
}

.documents-list li {
  min-height: 116px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
}

.documents-list li > span {
  color: #087f92;
  font-size: 11px;
  font-weight: 760;
}

.documents-list strong {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 680;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.documents-list small {
  color: #7a898f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-align: right;
  text-transform: uppercase;
}

.documents-note {
  max-width: 660px;
  margin: 32px 0 0;
  padding-left: 20px;
  border-left: 2px solid #0da8bd;
  color: #64747a;
  font-size: 13px;
  line-height: 1.58;
}

.cases-profile-section {
  padding: clamp(92px, 11vh, 134px) var(--page-gutter) clamp(106px, 13vh, 154px);
  background: var(--about-dark-2);
}

.cases-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 6vh, 72px);
}

.case-profile-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.16);
  background: #0b151b;
}

.case-profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 32%, rgba(2, 7, 10, 0.95) 82%);
}

.case-profile-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.03);
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.case-profile-card:first-child img {
  object-position: 50% 45%;
}

.case-profile-card:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.case-profile-card > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
}

.case-profile-card p,
.case-profile-card h3,
.case-profile-card span {
  margin: 0;
}

.case-profile-card p {
  color: var(--about-cyan);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-profile-card h3 {
  margin-top: 10px;
  font-size: clamp(26px, 2.3vw, 34px);
  font-weight: 710;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.case-profile-card span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.48;
}

.review-profile-section {
  margin-top: clamp(66px, 9vh, 102px);
  padding-top: 38px;
  border-top: 1px solid rgba(168, 245, 247, 0.18);
}

.review-profile-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}

.review-profile-heading p,
.review-profile-heading span {
  margin: 0;
}

.review-profile-heading p {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 710;
  letter-spacing: -0.04em;
}

.review-profile-heading span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-profile-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.review-profile-list button {
  position: relative;
  height: 250px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(168, 245, 247, 0.17);
  color: inherit;
  background: #111b21;
  cursor: zoom-in;
}

.review-profile-list button::after {
  content: "Открыть ↗";
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 10px;
  color: #031014;
  background: var(--about-cyan-soft);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-profile-list button:focus-visible {
  outline: 3px solid rgba(168, 245, 247, 0.48);
  outline-offset: 3px;
}

.review-profile-list img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #e7eef0;
  transition: transform 380ms var(--ease-out);
}

.review-profile-list button:nth-child(2) img {
  object-position: top;
}

.review-profile-list button:hover img {
  transform: scale(1.02);
}

.about-review-dialog {
  width: min(980px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.24);
  color: #fff;
  background: #061017;
}

.about-review-dialog::backdrop {
  background: rgba(2, 7, 10, 0.82);
  backdrop-filter: blur(10px);
}

.about-review-dialog-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 14px 24px;
  border-bottom: 1px solid rgba(168, 245, 247, 0.16);
}

.about-review-dialog-header h3 {
  margin: 0;
  font-size: 16px;
}

.about-review-dialog-header button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(168, 245, 247, 0.2);
  color: #fff;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.about-review-dialog-body {
  max-height: calc(100svh - 104px);
  overflow: auto;
  padding: 22px;
  background: #dfe8ea;
}

.about-review-dialog-body img {
  width: 100%;
  height: auto;
  display: block;
}

.about-collaboration {
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  padding: clamp(40px, 5vh, 58px) var(--page-gutter);
  display: grid;
  align-items: center;
}

.collaboration-heading {
  display: block;
}

.collaboration-heading h2 {
  margin: 0;
  max-width: none;
  color: #101820;
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.collaboration-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 72px);
  margin-top: clamp(28px, 3.7vh, 40px);
  align-items: stretch;
}

.collaboration-topics,
.collaboration-formats {
  display: grid;
  grid-template-rows: 34px minmax(0, 1fr);
}

.collaboration-column-heading,
.collaboration-contacts > h3 {
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  color: #52636a;
  font-size: 10px;
  font-weight: 770;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.collaboration-column-heading h3 {
  margin: 0;
  font: inherit;
}

.collaboration-topics-list,
.collaboration-formats-list {
  display: grid;
  grid-template-rows: repeat(6, minmax(57px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 24, 32, 0.2);
}

.collaboration-topics-list li,
.collaboration-formats-list li {
  min-height: 57px;
  display: flex;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
  color: #101820;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 640;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.collaboration-formats-list li {
  color: #27353a;
  font-weight: 610;
}

.collaboration-contacts {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: stretch;
  margin: clamp(22px, 3vh, 30px) 0 0;
  border-top: 1px solid rgba(16, 24, 32, 0.2);
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
  font-style: normal;
}

.collaboration-contacts > h3 {
  min-height: 0;
  align-items: center;
  padding-left: 24px;
  color: #33484f;
  font-weight: 800;
}

.collaboration-contacts > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collaboration-contacts a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
  border-left: 1px solid rgba(16, 24, 32, 0.18);
  transition: background-color 180ms ease;
}

.collaboration-contacts a + a {
  padding-left: 22px;
}

.collaboration-contacts a span,
.collaboration-contacts a strong {
  display: block;
  overflow-wrap: anywhere;
}

.collaboration-contacts a span {
  color: #64747a;
  font-size: 9px;
  font-weight: 650;
}

.collaboration-contacts a strong {
  margin-top: 5px;
  color: #087f92;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 720;
  transition: color 180ms ease;
}

.collaboration-contacts a:hover strong,
.collaboration-contacts a:focus-visible strong {
  color: #101820;
}

.collaboration-contacts a:hover,
.collaboration-contacts a:focus-visible {
  background: rgba(8, 127, 146, 0.045);
}

.collaboration-contacts a:focus-visible {
  outline: 3px solid rgba(8, 127, 146, 0.18);
  outline-offset: 3px;
}

/* Unified glass and pointer light, matching the homepage and mentorship page. */

.about-page .site-header {
  background:
    linear-gradient(180deg, rgba(5, 15, 20, 0.9), rgba(2, 7, 10, 0.8)),
    rgba(2, 7, 10, 0.82);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.mission-profile-section::after,
.media-section::after,
.education-section::after,
.about-collaboration::after,
.path-crawl-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(14px);
}

.mission-profile-section::after,
.media-section::after {
  inset: -18% -12% auto 48%;
  height: 76%;
  background:
    radial-gradient(circle at 50% 46%, rgba(37, 217, 231, 0.14), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(168, 245, 247, 0.045), transparent 66%);
}

.education-section::after,
.about-collaboration::after,
.path-crawl-section::after {
  inset: -14% -10% auto 44%;
  height: 70%;
  background: radial-gradient(circle, rgba(37, 217, 231, 0.12), transparent 66%);
}

.about-hero-portrait {
  background:
    linear-gradient(145deg, rgba(37, 217, 231, 0.09), rgba(255, 255, 255, 0.025) 58%),
    rgba(7, 17, 24, 0.7);
  backdrop-filter: blur(16px) saturate(122%);
  -webkit-backdrop-filter: blur(16px) saturate(122%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    box-shadow 220ms var(--ease-out);
}

.direction-browser-entry.is-active .direction-browser-trigger {
  background:
    linear-gradient(110deg, rgba(37, 217, 231, 0.13), rgba(168, 245, 247, 0.025) 74%),
    rgba(7, 20, 27, 0.62);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
}

.direction-browser-card {
  background:
    linear-gradient(145deg, rgba(37, 217, 231, 0.085), rgba(255, 255, 255, 0.018) 62%),
    rgba(7, 17, 24, 0.64);
  backdrop-filter: blur(18px) saturate(128%);
  -webkit-backdrop-filter: blur(18px) saturate(128%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 48px rgba(0, 0, 0, 0.12);
}

.education-list,
.collaboration-topics-list,
.collaboration-formats-list,
.collaboration-contacts {
  border: 1px solid rgba(8, 127, 146, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(247, 252, 252, 0.38)),
    rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  box-shadow:
    0 16px 42px rgba(18, 72, 80, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.education-list li {
  padding-right: 18px;
  padding-left: 18px;
}

.education-list li:last-child,
.collaboration-topics-list li:last-child,
.collaboration-formats-list li:last-child {
  border-bottom: 0;
}

.collaboration-topics-list li,
.collaboration-formats-list li {
  padding-right: 18px;
  padding-left: 18px;
}

.collaboration-contacts {
  border-top-color: rgba(8, 127, 146, 0.14);
  border-bottom-color: rgba(8, 127, 146, 0.14);
}

.materials-featured {
  overflow: hidden;
  border: 1px solid rgba(168, 245, 247, 0.16);
  border-radius: clamp(16px, 1.8vw, 24px);
  background:
    linear-gradient(145deg, rgba(37, 217, 231, 0.06), rgba(255, 255, 255, 0.014) 62%),
    rgba(7, 17, 24, 0.58);
  backdrop-filter: blur(18px) saturate(126%);
  -webkit-backdrop-filter: blur(18px) saturate(126%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 54px rgba(0, 0, 0, 0.14);
}

.material-line {
  padding-right: 18px;
  padding-left: 18px;
}

.material-line:hover,
.material-line:focus-visible {
  padding-right: 22px;
  padding-left: 22px;
}

.materials-all-link {
  padding-right: 18px;
  padding-left: 18px;
  border-bottom: 0;
}

.materials-all-link:hover,
.materials-all-link:focus-visible {
  padding-right: 22px;
  padding-left: 22px;
}

.video-gallery {
  background:
    linear-gradient(145deg, rgba(37, 217, 231, 0.08), rgba(255, 255, 255, 0.018) 60%),
    rgba(7, 17, 24, 0.68);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.path-crawl-rail {
  border: 1px solid rgba(8, 127, 146, 0.11);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px) saturate(116%);
  -webkit-backdrop-filter: blur(12px) saturate(116%);
  box-shadow: 0 12px 34px rgba(18, 72, 80, 0.06);
}

.about-glow-surface {
  --about-glow-x: 50%;
  --about-glow-y: 45%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-glow-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--about-glow-x) var(--about-glow-y),
      rgba(37, 217, 231, 0.2),
      transparent 34%
    ),
    linear-gradient(
      112deg,
      transparent 24%,
      rgba(168, 245, 247, 0.015) 36%,
      rgba(168, 245, 247, 0.22) 48%,
      rgba(255, 255, 255, 0.2) 52%,
      transparent 64%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%, 230% 100%;
  background-position: center, -160% 0;
  transition: opacity 180ms var(--ease-out);
}

.about-glow-surface--light::after {
  background:
    radial-gradient(
      circle at var(--about-glow-x) var(--about-glow-y),
      rgba(37, 217, 231, 0.12),
      transparent 38%
    ),
    linear-gradient(
      112deg,
      transparent 24%,
      rgba(8, 127, 146, 0.01) 36%,
      rgba(37, 217, 231, 0.11) 48%,
      rgba(255, 255, 255, 0.34) 52%,
      transparent 64%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%, 230% 100%;
  background-position: center, -160% 0;
}

@media (hover: hover) and (pointer: fine) {
  .about-hero-portrait:hover {
    border-color: rgba(37, 217, 231, 0.42);
    box-shadow:
      0 0 0 1px rgba(37, 217, 231, 0.1),
      0 26px 74px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(37, 217, 231, 0.09);
  }

  .about-glow-surface:hover {
    z-index: 2;
    border-color: rgba(37, 217, 231, 0.42);
    box-shadow:
      0 0 0 1px rgba(37, 217, 231, 0.1),
      0 8px 18px rgba(10, 138, 150, 0.12),
      0 0 22px rgba(37, 217, 231, 0.08);
  }

  .about-glow-surface--light:hover {
    border-color: rgba(8, 127, 146, 0.26);
    box-shadow:
      0 0 0 1px rgba(37, 217, 231, 0.08),
      0 10px 24px rgba(18, 72, 80, 0.09),
      0 0 18px rgba(37, 217, 231, 0.065);
  }

  .about-glow-surface:hover::after {
    opacity: 1;
    animation: about-surface-highlight 760ms var(--ease-out) both;
  }
}

@keyframes about-surface-highlight {
  from {
    background-position: center, -160% 0;
  }

  to {
    background-position: center, 160% 0;
  }
}

.about-page .site-footer {
  border-top: 1px solid rgba(168, 245, 247, 0.13);
}

.has-js .reveal-item {
  opacity: 0;
  transform: translateY(28px);
}

.has-js .reveal-item.is-visible {
  animation: about-enter 760ms var(--ease-out) forwards;
}

@keyframes about-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-portrait-enter {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, 0.54fr) minmax(340px, 0.46fr);
    gap: 42px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 5.2vw, 60px);
  }

  .directions-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-item {
    min-height: 212px;
  }

  .education-layout,
  .documents-layout {
    grid-template-columns: minmax(270px, 0.34fr) minmax(0, 0.66fr);
    gap: 54px;
  }

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-profile-card {
    min-height: 430px;
  }
}

@media (max-width: 1180px) {
  .about-page .about-nav-toggle {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    color: #031014;
    background: var(--about-cyan);
    font: inherit;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
  }

  .about-page .about-nav-toggle i {
    font-style: normal;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    transition: transform 180ms ease;
  }

  .about-page .about-header-nav.is-open .about-nav-toggle i {
    transform: rotate(45deg);
  }

  .about-page .about-nav-links {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: var(--page-gutter);
    width: min(360px, calc(100vw - 36px));
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(168, 245, 247, 0.2);
    border-radius: 16px;
    background:
      linear-gradient(135deg, rgba(168, 245, 247, 0.075), transparent 44%),
      rgba(3, 11, 15, 0.96);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(37, 217, 231, 0.04) inset;
    backdrop-filter: blur(22px) saturate(126%);
    -webkit-backdrop-filter: blur(22px) saturate(126%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .about-page .about-header-nav.is-open .about-nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-page .about-nav-links a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 13px;
  }

  .about-page .about-nav-links a:not(.header-cta)::after {
    right: 14px;
    left: 14px;
  }

  .about-page .about-nav-links .header-cta {
    justify-content: flex-start;
    margin: 0;
  }
}

@media (min-width: 981px) {
  .about-hero {
    height: 100svh;
    min-height: 720px;
  }

  .mission-profile-section {
    height: clamp(520px, 62svh, 560px);
    min-height: 0;
    padding-top: clamp(22px, 3vh, 30px);
    padding-bottom: clamp(22px, 3vh, 30px);
  }

  .education-section {
    height: clamp(520px, 64svh, 580px);
    min-height: 0;
    padding-top: clamp(30px, 4.5vh, 42px);
    padding-bottom: clamp(30px, 4.5vh, 42px);
  }

  .mission-profile-inner,
  .path-inner {
    height: 100%;
    min-height: 0;
  }

  .path-explorer {
    height: clamp(440px, 60vh, 520px);
  }

  .path-tab,
  .path-panel {
    min-height: 0;
  }

  .direction-browser-card h3 {
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: 1.14;
  }

  .direction-browser-card p {
    margin-top: clamp(8px, 1.3vh, 12px);
    font-size: clamp(14px, 1.05vw, 15px);
    line-height: 1.4;
  }
}

@media (min-width: 981px) and (max-height: 920px) {
  .directions-list {
    margin-top: 32px;
  }

  .direction-item {
    min-height: 158px;
    padding: 20px 24px;
  }

  .direction-copy strong {
    font-size: 21px;
  }

  .direction-copy small {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.45;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .education-section,
  .media-section,
  .about-collaboration {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 981px) {
  .about-light,
  .about-dark {
    scroll-margin-top: 0;
  }
}

@media (max-width: 900px) {
  .education-section,
  .media-section,
  .about-collaboration {
    height: auto;
    min-height: 0;
  }

  .education-layout {
    height: auto;
  }

  .about-hero-inner {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-portrait {
    justify-self: start;
    width: min(100%, 430px);
    height: clamp(320px, 50svh, 440px);
    max-height: none;
  }

  .about-hero-orbit {
    top: 30%;
    left: 78%;
    width: min(86vw, 680px);
  }

  .about-scroll-cue {
    display: none;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-section-heading > div {
    max-width: 820px;
  }

  .education-layout,
  .documents-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-sticky-heading {
    position: static;
  }

  .path-heading,
  .path-explorer {
    grid-template-columns: 1fr;
  }

  .path-heading {
    gap: 24px;
  }

  .path-explorer {
    gap: 36px;
  }

  .path-panel {
    min-height: 390px;
  }

  .editorial-path-copy--three {
    column-count: 2;
    column-gap: 48px;
    font-size: 14px;
    line-height: 1.55;
  }

  .directions-groups {
    height: auto;
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .direction-group,
  .direction-group:first-child {
    padding: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 245, 247, 0.18);
  }

  .direction-group > h3 {
    min-height: 64px;
  }

  .direction-group-list--three,
  .direction-group-list--two {
    grid-template-rows: none;
  }

  .direction-entry {
    min-height: 136px;
  }

  .direction-entry h4 {
    max-width: 620px;
    font-size: 22px;
  }

  .direction-entry p {
    max-width: 650px;
    font-size: 14px;
  }

  .directions-story {
    height: auto;
    min-height: 0;
    padding: 88px 0 96px;
    overflow: hidden;
  }

  .directions-story-sticky {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
  }

  .directions-story-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .directions-story-intro h2 {
    max-width: 640px;
    font-size: clamp(36px, 7vw, 46px);
    line-height: 1.08;
  }

  .directions-story-intro p {
    max-width: 630px;
    margin-top: 22px;
    font-size: 16px;
  }

  .directions-story-stage {
    height: auto;
    padding-left: 0;
    border-left: 0;
  }

  .direction-panel,
  .direction-panel.is-before,
  .direction-panel.is-active {
    position: relative;
    inset: auto;
    padding: 48px 0;
    border-top: 1px solid rgba(168, 245, 247, 0.2);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .direction-panel:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .direction-panel:last-child {
    padding-bottom: 0;
  }

  .direction-panel > h3 {
    margin-bottom: 26px;
    font-size: clamp(28px, 5.4vw, 36px);
  }

  .direction-panel-entry {
    min-height: 0;
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
    padding: 24px 0;
  }

  .direction-panel-entry h4 {
    font-size: clamp(21px, 3.8vw, 26px);
  }

  .direction-panel-entry p {
    font-size: 15px;
  }

  .direction-panel-entry--education {
    grid-template-rows: auto auto;
  }

  .directions-categories-stage {
    height: auto;
  }

  .direction-category-panel,
  .direction-category-panel.is-before,
  .direction-category-panel.is-active {
    position: relative;
    inset: auto;
    display: block;
    padding: 52px 0;
    border-top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .direction-category-panel:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .direction-category-panel:last-child {
    padding-bottom: 0;
  }

  .direction-category-copy {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .direction-category-copy h3 {
    max-width: 680px;
    font-size: clamp(34px, 7vw, 44px);
    line-height: 1.08;
  }

  .direction-category-copy p {
    max-width: 630px;
    margin-top: 18px;
    font-size: 16px;
  }

  .direction-category-list {
    display: block;
    padding-left: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .directions-browser-section {
    height: auto;
    min-height: 0;
    padding: 88px 0 96px;
  }

  .directions-browser-shell {
    height: auto;
    display: block;
  }

  .directions-browser-heading {
    margin-bottom: 36px;
  }

  .directions-browser-heading h2 {
    font-size: 38px;
  }

  .directions-browser {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 0;
  }

  .direction-browser-entry {
    display: block;
  }

  .direction-browser-trigger,
  .direction-browser-entry:nth-child(1) .direction-browser-trigger,
  .direction-browser-entry:nth-child(2) .direction-browser-trigger,
  .direction-browser-entry:nth-child(3) .direction-browser-trigger,
  .direction-browser-entry:nth-child(4) .direction-browser-trigger {
    min-height: 86px;
    grid-column: auto;
    grid-row: auto;
  }

  .direction-browser-panel {
    height: auto;
    grid-column: auto;
    grid-row: auto;
    padding: 18px 0 34px;
  }

  .direction-browser-cards {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .direction-browser-card {
    min-height: 0;
    grid-column: auto;
    padding-bottom: 84px;
  }

  .evidence-metrics {
    grid-template-columns: 1fr;
  }

  .evidence-metrics div,
  .evidence-metrics div + div {
    display: grid;
    grid-template-columns: minmax(140px, 0.3fr) minmax(0, 0.7fr);
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-left: 0;
  }

  .evidence-metrics div + div {
    border-top: 1px solid rgba(16, 24, 32, 0.14);
  }

  .evidence-metrics dd {
    margin-top: 0;
  }

  .projects-grid,
  .cases-profile-grid,
  .review-profile-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-item:last-child,
  .case-profile-card:last-child,
  .review-profile-list button:last-child {
    grid-column: 1 / -1;
  }

  .media-layout,
  .collaboration-layout {
    grid-template-columns: 1fr;
  }

  .media-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media-heading p {
    max-width: 680px;
  }

  .video-gallery {
    width: 100%;
  }

}

@media (max-width: 760px) {
  .about-grid,
  .about-light {
    background-size: 54px 54px;
  }

  .about-page .header-nav > a:not(.header-cta) {
    display: none;
  }

  .about-hero-inner {
    width: calc(100% - 36px);
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 52px;
    gap: 34px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1.04;
  }

  .about-hero-role {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .about-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
  }

  .about-hero-facts div,
  .about-hero-facts div + div {
    min-height: 88px;
    display: block;
    padding: 16px 10px 14px;
  }

  .about-hero-facts div + div {
    border-top: 0;
    border-left: 1px solid rgba(168, 245, 247, 0.12);
  }

  .about-hero-facts dd {
    max-width: none;
    margin-top: 8px;
    font-size: 9px;
  }

  .about-hero-portrait {
    width: 100%;
    height: clamp(240px, 58vw, 320px);
  }

  .about-hero-portrait img {
    object-fit: cover;
    object-position: 50% 24%;
  }

  .about-section-heading h2,
  .about-sticky-heading h2,
  .path-heading h2,
  .directions-heading h2,
  .directions-browser-heading h2,
  .media-heading h2,
  .collaboration-heading h2,
  .education-heading h2,
  .documents-layout .about-sticky-heading h2 {
    font-size: clamp(34px, 8.5vw, 40px);
    line-height: 1.1;
  }

  .mission-profile-section,
  .directions-section,
  .evidence-section,
  .projects-section,
  .education-section,
  .media-section,
  .documents-section,
  .cases-profile-section,
  .about-collaboration {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 96px;
  }

  .mission-profile-section,
  .education-section,
  .media-section,
  .about-collaboration {
    padding-right: 0;
    padding-left: 0;
  }

  .mission-profile-section,
  .directions-browser-section,
  .education-section,
  .media-section,
  .about-collaboration {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .directions-story-intro h2 {
    font-size: clamp(34px, 8.5vw, 40px);
  }

  .directions-story-layout {
    gap: 46px;
  }

  .direction-panel,
  .direction-panel.is-before,
  .direction-panel.is-active {
    padding: 42px 0;
  }

  .direction-panel > h3 {
    font-size: clamp(27px, 7vw, 32px);
  }

  .direction-panel-entry,
  .direction-panel-entry--education {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    padding: 22px 0 24px;
  }

  .direction-panel-entry--education h4 {
    grid-row: auto;
  }

  .direction-panel-entry h4 {
    max-width: 520px;
    font-size: 22px;
  }

  .direction-panel-entry p {
    max-width: 560px;
    font-size: 15px;
  }

  .direction-topic-list {
    margin-top: 12px;
  }

  .path-heading {
    margin-bottom: 32px;
  }

  .path-explorer {
    gap: 30px;
  }

  .path-tab {
    min-height: 76px;
    padding-inline: 10px;
  }

  .path-tab.is-active {
    padding-left: 16px;
  }

  .path-tab-copy strong {
    font-size: 15px;
  }

  .path-panel {
    min-height: 0;
    padding: 24px 18px 28px;
  }

  .path-panel > p:not(.path-panel-marker) {
    font-size: 14px;
    line-height: 1.6;
  }

  .directions-list,
  .projects-grid,
  .cases-profile-grid,
  .review-profile-list {
    grid-template-columns: 1fr;
  }

  .direction-item {
    min-height: 212px;
  }

  .project-item:last-child,
  .case-profile-card:last-child,
  .review-profile-list button:last-child {
    grid-column: auto;
  }

  .position-section {
    min-height: 86svh;
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .position-inner blockquote {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.2;
  }

  .mission-profile-section {
    min-height: 0;
  }

  .mission-profile-copy h2 {
    font-size: clamp(34px, 8.5vw, 40px);
    line-height: 1.1;
  }

  .mission-profile-copy p {
    font-size: 16px;
  }

  .evidence-notes {
    grid-template-columns: 1fr;
  }

  .evidence-metrics div,
  .evidence-metrics div + div {
    grid-template-columns: 115px minmax(0, 1fr);
  }

  .evidence-metrics dt {
    font-size: 48px;
  }

  .projects-materials-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .education-list li {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
  }

  .education-list li::before {
    right: -10px;
    left: -10px;
  }

  .education-document-slot {
    grid-column: 2;
    justify-self: start;
    justify-content: flex-start;
    margin-top: 4px;
    text-align: left;
  }

  .media-layout {
    gap: 34px;
  }

  .collaboration-layout {
    gap: 48px;
  }

  .collaboration-topics-list li {
    min-height: 70px;
    padding: 12px 0;
    font-size: 16px;
  }

  .collaboration-formats-list li {
    min-height: 52px;
    font-size: 13px;
  }

  .collaboration-contacts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .collaboration-contacts > h3 {
    min-height: 52px;
  }

  .collaboration-contacts > div {
    grid-template-columns: 1fr;
  }

  .collaboration-contacts a {
    padding: 14px 0;
    border-top: 1px solid rgba(16, 24, 32, 0.18);
    border-left: 0;
  }

  .collaboration-contacts a + a {
    padding-left: 0;
    border-left: 0;
  }

  .collaboration-contacts a strong {
    font-size: 17px;
  }

  .video-gallery {
    min-height: 460px;
  }

  .video-gallery-controls {
    top: 18px;
    left: 18px;
    gap: 8px;
  }

  .video-gallery-counter {
    min-width: 59px;
    font-size: 10px;
  }

  .video-gallery-controls button {
    width: 36px;
    height: 36px;
  }

  .video-preview-play {
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .video-preview-copy h3 {
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .materials-featured {
    min-height: 0;
    grid-template-rows: none;
  }

  .material-line {
    min-height: 132px;
  }

  .material-line {
    grid-template-columns: 1fr 24px;
    grid-template-rows: auto auto auto;
    gap: 8px 16px;
  }

  .material-kind {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
  }

  .material-line strong {
    grid-column: 1;
    grid-row: 2;
  }

  .material-line small {
    grid-column: 1;
    grid-row: 3;
  }

  .material-line b {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .documents-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .documents-list small {
    grid-column: 2;
    text-align: left;
  }

  .case-profile-card {
    min-height: 490px;
  }

  .review-profile-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .review-profile-list button {
    height: 230px;
  }

  .review-profile-list button:nth-child(2) {
    height: 360px;
  }

}

@media (max-width: 390px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .about-hero-role {
    font-size: 16px;
  }

  .about-section-heading h2,
  .about-sticky-heading h2,
  .path-heading h2,
  .directions-heading h2,
  .directions-story-intro h2,
  .collaboration-heading h2,
  .education-heading h2,
  .documents-layout .about-sticky-heading h2,
  .mission-profile-copy h2 {
    font-size: 34px;
  }

  .position-inner blockquote {
    font-size: 30px;
  }

  .direction-item {
    padding: 22px 19px;
  }

  .education-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .education-document-slot {
    grid-column: 1;
    margin-top: 8px;
  }
}

@media (max-width: 340px) {
  .about-page .site-header {
    gap: 10px;
  }

  .about-page .brand-copy strong {
    font-size: 13px;
    white-space: nowrap;
  }

  .about-page .header-nav .header-cta {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-hero-inner {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 40px;
    gap: 28px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero-role {
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.45;
  }

  .about-hero-facts {
    margin-top: 28px;
  }

  .about-hero-facts div,
  .about-hero-facts div + div {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about-hero-facts dt {
    font-size: 27px;
  }

  .about-hero-portrait {
    height: 220px;
  }
}

html:not(.has-js) .path-crawl-section {
  height: auto;
  min-height: 0;
  padding: clamp(76px, 8vw, 112px) var(--page-gutter);
  overflow: visible;
}

html:not(.has-js) .path-crawl-sticky {
  position: static;
  height: auto;
  min-height: 0;
}

html:not(.has-js) .path-crawl-layout {
  height: auto;
}

html:not(.has-js) .path-crawl-viewport {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

html:not(.has-js) .path-crawl-copy {
  padding: 0;
  transform: none;
  will-change: auto;
}

html:not(.has-js) .path-crawl-rail {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .path-crawl-section {
    height: auto;
    min-height: 0;
    padding: clamp(76px, 8vw, 112px) var(--page-gutter);
    overflow: visible;
  }

  .path-crawl-sticky {
    position: static;
    height: auto;
    min-height: 0;
  }

  .path-crawl-layout {
    height: auto;
  }

  .path-crawl-viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .path-crawl-copy {
    padding: 0;
    transform: none;
    will-change: auto;
  }

  .path-crawl-rail {
    display: none;
  }

  .about-page {
    scroll-behavior: auto;
  }

  .about-page *,
  .about-page *::before,
  .about-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .about-hero-copy,
  .about-hero-portrait,
  .has-js .reveal-item {
    opacity: 1;
    transform: none;
  }
}
