:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #f5f5f7;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 7rem;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(70, 103, 255, .18), transparent 30rem),
    radial-gradient(circle at 82% 32%, rgba(118, 63, 255, .14), transparent 34rem),
    radial-gradient(circle at 18% 56%, rgba(70, 103, 255, .18), transparent 30rem),
    radial-gradient(circle at 82% 80%, rgba(118, 63, 255, .14), transparent 34rem),
    #050505;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: -35%;
  background: conic-gradient(from 180deg, transparent, rgba(76, 111, 255, .1), transparent 28%);
  filter: blur(90px);
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: #f5f5f7;
  color: #050505;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 50%;
  width: min(720px, calc(100% - 2rem));
  transform: translateX(-50%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .62rem .72rem .62rem 1rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(12, 12, 14, .68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  font-size: .86rem;
  font-weight: 650;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: #a1a1a6;
  font-size: .78rem;
}

.nav-links a {
  padding: .55rem .72rem;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #f5f5f7;
  background: rgba(255, 255, 255, .07);
  outline: none;
}

main {
  position: relative;
}

.shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 0 5rem;
}

.hero-content {
  width: min(820px, 100%);
  text-align: center;
  animation: arrive 900ms cubic-bezier(.2, .8, .2, 1) both;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #c7c7cc;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.dot {
  width: .46rem;
  height: .46rem;
  border-radius: 50%;
  background: #ffe45e;
  box-shadow: 0 0 18px rgba(255, 228, 94, .55);
}

h1 {
  margin: 1.7rem 0 1.25rem;
  font-size: clamp(3.5rem, 10vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 650;
}

.accent-line,
.text-edit-target {
  color: transparent;
  background: linear-gradient(120deg, #fff 10%, #a9b9ff 52%, #9b79ff 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.accent-line {
  display: block;
}

.text-edit-target {
  display: inline-grid;
  padding-right: .1em;
  vertical-align: baseline;
}

.text-edit-sizer,
.text-edit-content {
  grid-area: 1 / 1;
  justify-self: start;
  white-space: pre;
}

.text-edit-sizer {
  visibility: hidden;
}

.text-edit-cursor {
  position: relative;
  display: inline-block;
  width: 0;
  height: .78em;
  vertical-align: -.04em;
  animation: cursor-blink 850ms steps(1, end) infinite;
}

.text-edit-cursor::after {
  content: "";
  position: absolute;
  inset: 0 auto auto .065em;
  width: .045em;
  height: 100%;
  border-radius: .02em;
  background: #c9d0ff;
  box-shadow: 0 0 .14em rgba(201, 208, 255, .42);
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: #a1a1a6;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .7rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  border-color: #f5f5f7;
  background: #f5f5f7;
  color: #09090b;
}

.button-secondary {
  background: rgba(255, 255, 255, .055);
  color: #d6d6da;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.section {
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.section-label {
  margin: 0 0 1.2rem;
  color: #8f8f98;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-title {
  max-width: 870px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 620;
}

.muted {
  color: #777780;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.about-copy {
  margin: 0;
  color: #a1a1a6;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.focus-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.card-number {
  color: #6e6e76;
  font-size: .74rem;
  letter-spacing: .1em;
}

.focus-card h3 {
  margin: 0 0 .7rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.focus-card p {
  margin: 0;
  color: #8f8f98;
  font-size: .94rem;
  line-height: 1.6;
}

.work-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.work-note {
  max-width: 320px;
  margin: 0;
  color: #85858d;
  font-size: .93rem;
  line-height: 1.6;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 75% 15%, rgba(129, 104, 255, .16), transparent 25rem),
    rgba(255, 255, 255, .035);
  transition:
    transform 320ms cubic-bezier(.2, .8, .2, 1),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.project-frame:not(.is-open):hover,
.project-frame:not(.is-open):focus-within {
  transform: translateY(-4px);
  border-color: rgba(169, 185, 255, .24);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
}

.project-frame.is-open {
  grid-column: 1 / -1;
  border-color: rgba(169, 185, 255, .2);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .24);
}

.project-frame-published {
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 211, 153, .12), transparent 26rem),
    radial-gradient(circle at 88% 88%, rgba(54, 143, 255, .1), transparent 28rem),
    rgba(255, 255, 255, .035);
}

.project-frame-published:not(.is-open):hover,
.project-frame-published:not(.is-open):focus-within,
.project-frame-published.is-open {
  border-color: rgba(110, 231, 183, .22);
}

.project-frame-autism {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 157, 92, .12), transparent 28rem),
    radial-gradient(circle at 90% 82%, rgba(181, 107, 255, .12), transparent 30rem),
    rgba(255, 255, 255, .035);
}

.project-frame-autism:not(.is-open):hover,
.project-frame-autism:not(.is-open):focus-within,
.project-frame-autism.is-open {
  border-color: rgba(255, 177, 122, .24);
}

.project-frame-autism .project-summary {
  min-height: 430px;
}

.project-frame-autism .project-summary-main {
  min-height: 350px;
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #8e8e96;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-summary {
  width: 100%;
  min-height: 470px;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.project-summary:focus-visible {
  outline: 2px solid rgba(201, 208, 255, .72);
  outline-offset: -5px;
}

.project-summary-main {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(1.6rem, 4vw, 3.5rem);
}

.project-summary h3 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 620;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-summary {
  min-height: 0;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-summary-main {
  min-height: 0;
  gap: 1.25rem;
  padding: 2rem 2.2rem 2.15rem;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-summary h3 {
  font-size: clamp(1.9rem, 3.15vw, 2.9rem);
  line-height: 1.02;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-summary-copy p {
  margin-top: .8rem;
  font-size: .88rem;
  line-height: 1.55;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-preview {
  min-height: 96px;
  padding: .72rem .85rem .82rem;
}

.project-frame:not(.project-frame-autism):not(.is-open) .preview-caption {
  margin-bottom: .62rem;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-summary-footer {
  gap: 1.15rem;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-tags {
  gap: .42rem;
}

.project-frame:not(.project-frame-autism):not(.is-open) .project-tag {
  padding: .38rem .56rem;
  font-size: .63rem;
}

.project-summary-copy p {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: #9898a1;
  font-size: .96rem;
  line-height: 1.65;
}

.project-preview {
  position: relative;
  min-height: 108px;
  display: block;
  overflow: hidden;
  padding: .9rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)),
    rgba(0, 0, 0, .16);
  opacity: .78;
  transition:
    opacity 320ms ease,
    border-color 320ms ease,
    transform 420ms cubic-bezier(.2, .8, .2, 1),
    background 320ms ease;
}

.project-frame:not(.is-open):hover .project-preview,
.project-frame:not(.is-open):focus-within .project-preview {
  opacity: 1;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(0, 0, 0, .19);
}

.project-frame.is-open .project-preview {
  opacity: .62;
}

.preview-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
  color: #74747d;
  font-size: .58rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.preview-mci-stage {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(110px, .8fr);
  gap: .8rem;
  align-items: center;
}

.preview-wave {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 .35rem;
}

.preview-wave > span {
  width: 3px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, #b9c5ff, #776cff);
  box-shadow: 0 0 12px rgba(122, 112, 255, .22);
  transform-origin: center;
  animation: preview-wave 1.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -115ms);
}

.preview-wave > span:nth-child(3n) {
  height: 100%;
}

.preview-wave > span:nth-child(4n + 1) {
  height: 45%;
}

.preview-wave > span:nth-child(5n + 2) {
  height: 82%;
}

.preview-arrow {
  color: #686873;
  font-size: 1rem;
  animation: preview-arrow 2.4s ease-in-out infinite;
}

.preview-embedding {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}

.preview-embedding > span {
  padding: .32rem .44rem;
  border: 1px solid rgba(171, 184, 255, .13);
  border-radius: 999px;
  background: rgba(126, 113, 255, .07);
  color: #8d91ad;
  font-size: .56rem;
  animation: preview-float 3.6s ease-in-out infinite;
}

.preview-embedding > span:nth-child(2) {
  animation-delay: -1.2s;
}

.preview-embedding > span:nth-child(3) {
  animation-delay: -2.4s;
}

.preview-mini-chart {
  display: grid;
  gap: .42rem;
}

.preview-chart-row {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) 2rem;
  gap: .55rem;
  align-items: center;
  color: #747b7a;
  font-size: .58rem;
}

.preview-chart-row strong {
  color: #929c99;
  font-size: .62rem;
  font-weight: 580;
}

.preview-chart-row:first-child,
.preview-chart-row:first-child strong {
  color: #b8d7cb;
}

.preview-chart-track {
  height: .36rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
}

.preview-chart-bar {
  position: relative;
  width: var(--score);
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #4c5353;
  transform-origin: left;
  animation: preview-chart-in 1.1s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--delay);
}

.preview-chart-row:first-child .preview-chart-bar {
  background: linear-gradient(90deg, #5cb89c, #85a8da);
  box-shadow: 0 0 16px rgba(110, 231, 183, .18);
}

.preview-chart-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, .3) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: preview-shimmer 4.6s ease-in-out infinite;
  animation-delay: calc(var(--delay) + 900ms);
}

.preview-pipeline {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(38px, .35fr) minmax(120px, 1fr) minmax(38px, .35fr) minmax(120px, 1fr);
  align-items: center;
}

.preview-pipeline-node {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .8rem;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .025);
  color: #99939a;
  font-size: .68rem;
}

.preview-pipeline-node small {
  color: #9d755f;
  font-size: .54rem;
  letter-spacing: .08em;
}

.preview-pipeline-node-active {
  border-color: rgba(255, 177, 122, .17);
  background: linear-gradient(135deg, rgba(255, 139, 82, .08), rgba(167, 102, 255, .07));
  color: #c4b8bd;
  box-shadow: 0 12px 35px rgba(125, 66, 168, .07);
}

.preview-pipeline-link {
  position: relative;
  height: 1px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, .09);
}

.preview-pipeline-link > span {
  position: absolute;
  top: -2px;
  left: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d18c69;
  box-shadow: 0 0 12px rgba(255, 153, 101, .7);
  animation: preview-pulse 2.8s cubic-bezier(.45, 0, .55, 1) infinite;
}

.preview-pipeline-link:nth-of-type(4) > span {
  animation-delay: 1.05s;
}

@keyframes preview-wave {
  0%,
  100% {
    transform: scaleY(.35);
    opacity: .48;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes preview-arrow {
  0%,
  100% {
    opacity: .35;
    transform: translateX(-3px);
  }

  50% {
    opacity: .9;
    transform: translateX(3px);
  }
}

@keyframes preview-float {
  0%,
  100% {
    transform: translateY(1px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes preview-chart-in {
  from {
    transform: scaleX(0);
    opacity: .35;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes preview-shimmer {
  0%,
  58% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes preview-pulse {
  0% {
    left: -5px;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 1px);
    opacity: 0;
  }
}

@keyframes preview-pulse-vertical {
  0% {
    top: -5px;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    top: calc(100% + 1px);
    opacity: 0;
  }
}

.project-summary-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.project-toggle {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem .5rem .45rem .8rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #b8b8c0;
  font-size: .72rem;
  font-weight: 600;
}

.project-toggle-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  font-size: 1rem;
  line-height: 1;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.project-frame.is-open .project-toggle-icon {
  transform: rotate(45deg);
}

.project-panel {
  overflow: hidden;
  will-change: height, opacity;
}

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

.project-panel-inner {
  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(1.6rem, 6vw, 5rem)
    clamp(2rem, 6vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.project-status::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #ffe45e;
  box-shadow: 0 0 14px rgba(255, 228, 94, .5);
}

.project-status-published::before {
  background: #6ee7b7;
  box-shadow: 0 0 14px rgba(110, 231, 183, .5);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
}

.project-tag {
  padding: .46rem .68rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: #b2b2ba;
  font-size: .72rem;
}

.architecture {
  margin-top: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.3rem;
  background:
    linear-gradient(rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    rgba(0, 0, 0, .18);
}

.architecture-label {
  margin: 0 0 1.2rem;
  color: #73737c;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.model-map {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 1rem;
  align-items: center;
}

.model-inputs {
  display: grid;
  gap: .7rem;
}

.model-node {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .04);
  font-size: .92rem;
  font-weight: 620;
  letter-spacing: -.02em;
}

.model-node span {
  color: #777780;
  font-size: .72rem;
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: 0;
}

.model-node-highlight {
  border-color: rgba(169, 185, 255, .28);
  background: linear-gradient(145deg, rgba(92, 116, 255, .16), rgba(155, 121, 255, .1));
  box-shadow: 0 20px 70px rgba(76, 89, 190, .12);
}

.model-connector {
  color: #656570;
  font-size: 1.2rem;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}

.research-detail {
  min-height: 210px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 1rem;
  background: rgba(0, 0, 0, .16);
}

.research-detail > span {
  display: block;
  margin-bottom: 2.6rem;
  color: #73737b;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.research-detail h4 {
  margin: 0 0 .7rem;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.research-detail p {
  margin: 0;
  color: #83838c;
  font-size: .84rem;
  line-height: 1.6;
}

.project-disclaimer {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #6f6f78 !important;
  font-size: .8rem !important;
}



.performance-panel {
  margin-top: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, .18);
}

.performance-label {
  margin: 0 0 1.2rem;
  color: #73737c;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
}

.metric-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .035);
}

.metric-value {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 630;
}

.metric-name {
  color: #7e7e87;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.comparison {
  display: grid;
  gap: .85rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.comparison-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) 2.5rem;
  gap: .85rem;
  align-items: center;
  color: #8d8d96;
  font-size: .74rem;
}

.comparison-track {
  height: .45rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.comparison-bar {
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: #555861;
}

.comparison-row:first-child {
  color: #d5d5db;
}

.comparison-row:first-child .comparison-bar {
  background: linear-gradient(90deg, #6ee7b7, #8bbcff);
  box-shadow: 0 0 18px rgba(110, 231, 183, .25);
}

.publication-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(110, 231, 183, .14);
  border-radius: 1rem;
  background: rgba(110, 231, 183, .045);
}

.publication-copy span {
  display: block;
  margin-bottom: .45rem;
  color: #6f827c;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.publication-copy strong {
  display: block;
  max-width: 650px;
  font-size: .92rem;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.architecture-autism {
  border-color: rgba(255, 177, 122, .12);
  background:
    linear-gradient(135deg, rgba(255, 157, 92, .055), rgba(181, 107, 255, .04)),
    rgba(0, 0, 0, .18);
}

.model-node-autism {
  border-color: rgba(255, 177, 122, .25);
  background: linear-gradient(145deg, rgba(255, 137, 79, .14), rgba(163, 103, 255, .12));
  box-shadow: 0 20px 70px rgba(134, 73, 190, .11);
}

.project-frame-autism.is-open .autism-model-map .model-node,
.project-frame-autism.is-open .autism-model-map .model-connector {
  animation: model-step-in 620ms cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(var(--step, 0) * 90ms);
}

@keyframes model-step-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }

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

.roadmap-panel {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 177, 122, .12);
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, .16);
}

.roadmap-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.roadmap-heading span {
  color: #7f7470;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.roadmap-heading strong {
  color: #d6d1cf;
  font-size: .9rem;
  font-weight: 560;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #94949d;
  font-size: .78rem;
  line-height: 1.45;
}

.roadmap-list li:nth-child(3n) {
  border-right: 0;
}

.roadmap-list li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.roadmap-list li span {
  flex: none;
  color: #c58e71;
  font-size: .65rem;
  letter-spacing: .08em;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.8rem;
  background: linear-gradient(120deg, rgba(76, 111, 255, .13), rgba(155, 121, 255, .08));
}

.contact-panel h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 620;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 2.5rem;
  color: #686870;
  font-size: .78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(.2, .8, .2, 1),
    transform 750ms cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  from {
    transform: translate3d(-3%, -2%, 0) rotate(-8deg);
  }

  to {
    transform: translate3d(4%, 3%, 0) rotate(10deg);
  }
}

@keyframes cursor-blink {
  0%, 55% {
    opacity: 1;
  }

  56%, 100% {
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 2rem, 1120px);
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .about-grid,
  .focus-grid,
  .project-list,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .project-frame.is-open,
  .project-frame-autism {
    grid-column: auto;
  }

  .project-summary {
    min-height: 410px;
  }

  .project-summary-main {
    min-height: 330px;
  }

  .project-summary-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-mci-stage {
    grid-template-columns: minmax(100px, 1fr) auto minmax(90px, .8fr);
  }

  .preview-pipeline {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .preview-pipeline-link {
    width: 1px;
    height: 18px;
    justify-self: center;
  }

  .preview-pipeline-link > span {
    top: -5px;
    left: -2px;
    animation-name: preview-pulse-vertical;
  }

  .model-map {
    grid-template-columns: 1fr;
  }

  .model-connector {
    justify-self: center;
    transform: rotate(90deg);
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .publication-row,
  .roadmap-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .roadmap-list li,
  .roadmap-list li:nth-child(3n),
  .roadmap-list li:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .roadmap-list li:last-child {
    border-bottom: 0;
  }

  .about-grid {
    gap: 2rem;
  }

  .focus-card {
    min-height: 220px;
  }

  .work-heading,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-note {
    max-width: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
