:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #0b0b0b;
  --line: rgba(255, 255, 255, .14);
  --line-bright: rgba(255, 255, 255, .42);
  --text: #fff;
  --muted: #8f8f8f;
  --soft: #c8c8c8;
  --green: #fff;
  --orange: #fff;
  --condensed: "Barlow Condensed", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .12; z-index: 20; mix-blend-mode: screen; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E"); }

.site-header { position: fixed; inset: 0 0 auto; height: 70px; display: flex; align-items: center; gap: 42px; padding: 0 4vw; border-bottom: 1px solid var(--line); background: rgba(0, 0, 0, .9); backdrop-filter: blur(18px); z-index: 10; }
.header-name,
.header-email {
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
}
.header-email { margin-left: auto; color: rgba(255,255,255,.88); }
.header-email {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.header-name:hover,
.header-email:hover { color: #fff; }
.brand { display: flex; align-items: center; gap: 12px; font: 600 17px/1 var(--condensed); letter-spacing: 2px; }
.brand-muted { color: var(--muted); }
.brand-mark { position: relative; display: grid; width: 19px; height: 19px; place-items: center; transform: rotate(45deg); border: 1px solid var(--green); }
.brand-mark i { position: absolute; width: 4px; height: 4px; background: var(--green); }
.brand-mark i:first-child { left: 3px; top: 3px; }
.brand-mark i:nth-child(2) { right: 3px; top: 3px; }
.brand-mark i:last-child { right: 3px; bottom: 3px; }
.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a, .header-cta, footer { color: var(--soft); font: 500 10px/1 var(--mono); letter-spacing: 1.2px; text-transform: uppercase; }
.main-nav a:hover, footer a:hover { color: var(--text); }
.header-cta { display: flex; align-items: center; gap: 8px; padding: 12px 0 12px 24px; border-left: 1px solid var(--line); }
.status-dot, .live i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.6); animation: blink 2s infinite; }
.menu-button { display: none; margin-left: auto; padding: 0; background: none; border: 0; }

.hero { position: relative; min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .82fr); align-items: center; padding: 110px 4vw 55px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid { position: absolute; inset: 70px 0 0; opacity: .46; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000 0%, transparent 70%); }
.hero-copy { position: relative; z-index: 1; padding: 10vh 2vw 0; }
.eyebrow, .section-code, .section-heading, .project-type { margin: 0; color: var(--green); font: 500 10px/1.4 var(--mono); letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 1px; margin: 0 12px 4px 0; background: var(--orange); }
h1 { max-width: 780px; margin: 25px 0 26px; font: 600 clamp(76px, 8vw, 138px)/.82 var(--condensed); letter-spacing: -2px; text-transform: uppercase; }
h1 span, h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .62); }
.hero-intro { max-width: 580px; margin: 0; color: var(--soft); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.button { display: flex; gap: 32px; align-items: center; padding: 16px 18px; font: 500 10px/1 var(--mono); letter-spacing: 1.4px; text-transform: uppercase; transition: .25s ease; }
.button span { color: var(--orange); font-size: 18px; line-height: 8px; }
.button-solid { color: #000; background: var(--green); }
.button-solid:hover { background: #dedede; }
.button-ghost { border: 1px solid var(--line-bright); }
.button-ghost:hover { background: rgba(255, 255, 255, .08); border-color: var(--green); }

.hero-visual { position: relative; z-index: 1; align-self: stretch; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); border-right: 1px solid var(--line); background: rgba(0, 0, 0, .84); }
.visual-heading, .visual-footer { display: flex; justify-content: space-between; padding: 15px 18px; color: var(--soft); border-block: 1px solid var(--line); font: 500 9px/1 var(--mono); letter-spacing: 1px; }
.visual-heading .live { display: flex; align-items: center; gap: 8px; color: #fff; }
.hero-visual svg { width: 100%; height: min(69vh, 680px); }
.map-lines path { fill: none; stroke: rgba(255, 255, 255, .07); stroke-width: 1; }
.orbit circle { fill: none; stroke: rgba(255, 255, 255, .34); stroke-dasharray: 4 8; transform-origin: 330px 312px; animation: spin 34s linear infinite; }
.orbit-two circle { animation-direction: reverse; animation-duration: 24s; }
.orbit .orbit-point { fill: var(--orange); stroke: none; }
.crosshair path, .crosshair circle, .engine path, .telemetry-lines path { fill: none; stroke: rgba(255, 255, 255, .5); stroke-width: 1.2; }
.engine path { fill: rgba(255, 255, 255, .06); stroke: rgba(255, 255, 255, .78); }
.engine .plume { fill: rgba(255, 255, 255, .12); stroke: rgba(255, 255, 255, .72); animation: pulse 2.4s ease-in-out infinite; }
.telemetry-lines path { stroke: rgba(255, 255, 255, .5); stroke-dasharray: 3 4; }
.telemetry-text { fill: rgba(255, 255, 255, .82); font: 10px var(--mono); letter-spacing: .6px; }
.visual-footer b { margin-left: 8px; color: var(--text); font-weight: 500; }
.hero-meta { position: absolute; z-index: 1; right: 4vw; bottom: 20px; left: 4vw; display: flex; justify-content: space-between; color: var(--muted); font: 500 9px/1 var(--mono); letter-spacing: 1px; }
.hero-meta i { display: inline-block; width: 26px; height: 1px; margin: 0 0 3px 6px; background: var(--orange); }

.intro-panel { display: grid; grid-template-columns: 1fr 2.2fr 1.1fr; gap: 36px; padding: 122px 6vw; border-bottom: 1px solid var(--line); }
.section-kicker { margin: 0 0 14px; color: var(--orange); font: 500 11px var(--mono); letter-spacing: 1px; text-transform: uppercase; }
h2 { margin: 0; font: 600 clamp(45px, 5vw, 76px)/.94 var(--condensed); letter-spacing: -.6px; text-transform: uppercase; }
.intro-body { max-width: 370px; margin: 27px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.programs { padding: 92px 6vw 110px; }
.section-heading { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line-bright); }
.section-heading p { margin: 0; }
.section-heading p:last-child { color: var(--muted); }
.project { position: relative; border: 1px solid var(--line); background: var(--panel); transition: border-color .25s ease, background .25s ease, transform .25s ease; overflow: hidden; }
.project:hover { border-color: rgba(255, 255, 255, .58); background: var(--panel-2); transform: translateY(-3px); }
.featured { display: grid; min-height: 410px; grid-template-columns: 52px minmax(280px, .9fr) 1.4fr; margin-top: 23px; }
.project-number { padding: 22px 18px; color: var(--orange); border-right: 1px solid var(--line); font: 500 11px var(--mono); }
.project-copy { padding: 45px 36px; }
.project h3 { margin: 13px 0 18px; font: 600 42px/.98 var(--condensed); letter-spacing: .2px; text-transform: uppercase; }
.project p:not(.project-type) { max-width: 550px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.tag-list { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 35px; }
.tag-list span { padding: 7px 8px; color: var(--soft); border: 1px solid var(--line); font: 500 8px/1 var(--mono); letter-spacing: 1px; }
.project-art { position: relative; display: grid; place-items: center; min-height: 300px; border-left: 1px solid var(--line); background: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px); background-size: 46px 46px; }
.thermal-plot { position: relative; width: 74%; height: 58%; }
.thermal-plot svg { width: 100%; height: 100%; overflow: visible; }
.plot-grid { fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 1; }
.plot-line { fill: none; stroke-width: 2; }
.plot-line.heat { stroke: var(--orange); }
.plot-line.cool { stroke: #9a9a9a; }
.plot-label, .art-readout, .project-metrics span { color: var(--muted); font: 500 8px var(--mono); letter-spacing: 1px; }
.plot-label { position: absolute; }
.plot-label.top { top: -25px; left: 0; }
.plot-label.bottom { right: 0; bottom: -28px; }
.art-readout { position: absolute; top: 18px; right: 18px; display: grid; gap: 4px; }
.art-readout b { color: var(--orange); font-size: 16px; font-weight: 500; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.project-small { min-height: 367px; padding: 28px 30px 18px 82px; }
.project-small .project-number { position: absolute; inset: 0 auto 0 0; width: 52px; padding: 22px 18px; }
.project-small h3 { font-size: 35px; }
.mini-viz, .scatter { position: relative; height: 75px; margin-top: 20px; border-block: 1px solid var(--line); }
.mini-viz svg { width: 100%; height: 100%; }
.mini-viz path { fill: none; stroke: rgba(255, 255, 255, .18); stroke-width: 1; }
.mini-viz .signal { stroke: var(--orange); stroke-width: 1.6; }
.scatter i { position: absolute; left: var(--x); top: var(--y); width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.scatter span { position: absolute; left: 4%; right: 5%; top: 75%; height: 1px; background: var(--orange); transform: rotate(-22deg); transform-origin: left; opacity: .8; }
.project-small .tag-list { margin-top: 17px; }
.horizontal { display: grid; grid-template-columns: 52px 1.2fr 1fr; margin-top: 16px; min-height: 177px; }
.horizontal .project-copy { padding: 33px 36px; }
.horizontal h3 { margin-bottom: 0; font-size: 34px; }
.horizontal p:not(.project-type) { display: none; }
.project-metrics { display: grid; grid-template-columns: repeat(3, 1fr); align-content: center; border-left: 1px solid var(--line); }
.project-metrics span { display: grid; gap: 9px; padding: 0 18px; border-left: 1px solid var(--line); }
.project-metrics span:first-child { border-left: 0; }
.project-metrics b { color: var(--green); font: 500 27px var(--condensed); }

.principles { padding: 105px 6vw; border-block: 1px solid var(--line); background: #050505; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.principle { padding-top: 18px; border-top: 1px solid var(--line-bright); }
.principle span { color: var(--orange); font: 500 10px var(--mono); }
.principle h3 { margin: 34px 0 11px; font: 600 32px/1 var(--condensed); text-transform: uppercase; }
.principle p { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.contact { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 110px 6vw 130px; }
.contact h2 { margin-top: 20px; }
.contact-body { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-link { flex-shrink: 0; padding: 16px 0; color: var(--green); border-bottom: 1px solid var(--line-bright); font: 500 15px/1 var(--mono); letter-spacing: .5px; }
.contact-link span { margin-left: 16px; color: var(--orange); }
footer { display: flex; justify-content: flex-end; align-items: center; padding: 26px 4vw; border-top: 1px solid var(--line); }
.music-card {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 18;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  grid-template-rows: auto 12px;
  grid-template-areas:
    "toggle meta bars"
    "toggle volume bars";
  align-items: center;
  width: min(318px, calc(100vw - 24px));
  gap: 5px 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}
.music-toggle {
  grid-area: toggle;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.34);
  background:
    linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.58)),
    url("assets/albumcover.png") center / cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  opacity: .88;
  filter: saturate(.64) contrast(.88) brightness(.96);
}
.music-toggle:hover,
.music-toggle:focus-visible {
  border-color: rgba(255,255,255,.7);
  filter: saturate(.72) contrast(.92) brightness(1.02);
  outline: 0;
}
.music-toggle-pause { display: none; font-size: 11px; letter-spacing: 1px; }
.music-card.is-playing .music-toggle-play { display: none; }
.music-card.is-playing .music-toggle-pause { display: inline; }
.music-toggle-play { margin-left: 1px; font-size: 11px; }
.music-meta { grid-area: meta; min-width: 0; }
.music-label {
  margin: 0;
  color: var(--muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.music-title {
  margin: 3px 0 0;
  color: #e7e7e7;
  font: 500 12px/1.3 var(--sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-volume {
  grid-area: volume;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  column-gap: 7px;
  min-width: 0;
  margin-top: 0;
}
.music-volume span {
  color: var(--muted);
  font: 500 7px/1 var(--mono);
  letter-spacing: .9px;
  text-transform: uppercase;
}
.music-volume-slider {
  width: 100%;
  min-width: 0;
  height: 2px;
  margin: 0;
  appearance: none;
  background: rgba(255,255,255,.2);
  outline: none;
}
.music-volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  cursor: pointer;
}
.music-volume-slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  cursor: pointer;
}
.music-volume-slider::-moz-range-track {
  height: 2px;
  background: rgba(255,255,255,.2);
}
.music-bars {
  grid-area: bars;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  padding: 3px 0;
  border-left: 1px solid rgba(255,255,255,.14);
}
.music-bars i {
  width: 2px;
  height: 6px;
  background: rgba(255,255,255,.34);
  transform-origin: bottom;
  animation: none;
}
.music-bars i:nth-child(1) { animation-delay: -.42s; }
.music-bars i:nth-child(2) { animation-delay: -.31s; }
.music-bars i:nth-child(3) { animation-delay: -.18s; }
.music-bars i:nth-child(4) { animation-delay: -.27s; }
.music-bars i:nth-child(5) { animation-delay: -.36s; }
.music-card.is-playing .music-bars i {
  animation: music-bars .72s ease-in-out infinite;
  background: rgba(255,255,255,.92);
}
.site-music { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .45; transform: scaleY(1.08); transform-origin: center top; } }
@keyframes blink { 50% { opacity: .32; } }
@keyframes music-bars {
  0%, 100% { transform: scaleY(.42); }
  50% { transform: scaleY(1.86); }
}

@media (max-width: 980px) {
  .hero { display: block; min-height: auto; padding-top: 160px; }
  .hero-copy { padding: 0 0 80px; }
  .hero-visual { height: 620px; margin: 0; }
  .hero-meta { display: none; }
  .intro-panel { grid-template-columns: 1fr; gap: 18px; padding-block: 88px; }
  .intro-body { margin-top: 0; }
  .featured { grid-template-columns: 52px 1fr; }
  .featured .project-art { grid-column: 1 / -1; min-height: 290px; border-top: 1px solid var(--line); border-left: 0; }
  .horizontal { grid-template-columns: 52px 1fr; }
  .project-metrics { grid-column: 1 / -1; padding: 22px 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 680px) {
  .site-header { height: 62px; padding-inline: 5vw; }
  .header-name { flex-shrink: 0; font-size: 12px; }
  .header-email { font-size: 9px; letter-spacing: 0; white-space: nowrap; }
  .main-nav, .header-cta { display: none; }
  .main-nav.open { position: absolute; top: 62px; right: 0; left: 0; display: grid; gap: 0; padding: 8px 5vw; border-bottom: 1px solid var(--line); background: #000; }
  .main-nav.open a { padding: 17px 0; border-bottom: 1px solid var(--line); }
  .menu-button { display: grid; gap: 5px; }
  .menu-button span { display: block; width: 20px; height: 1px; background: var(--green); }
  .hero { padding: 130px 5vw 40px; }
  h1 { font-size: clamp(70px, 22vw, 104px); }
  .hero-intro { font-size: 14px; }
  .hero-visual { height: 460px; margin-inline: -5vw; border-inline: 0; }
  .hero-visual svg { height: 390px; }
  .visual-footer { padding-inline: 10px; font-size: 7px; }
  .intro-panel, .programs, .principles, .contact { padding-right: 5vw; padding-left: 5vw; }
  .programs { padding-block: 72px; }
  .section-heading p:last-child { display: none; }
  .featured { grid-template-columns: 42px 1fr; }
  .project-number { padding: 19px 13px; }
  .project-copy { padding: 31px 20px; }
  .project h3 { font-size: 34px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-small { min-height: 340px; padding: 27px 20px 17px 66px; }
  .project-small .project-number { width: 42px; padding: 19px 13px; }
  .project-small h3 { font-size: 31px; }
  .horizontal { grid-template-columns: 42px 1fr; }
  .horizontal .project-copy { padding: 27px 20px; }
  .horizontal h3 { font-size: 29px; }
  .principles-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact { display: block; padding-block: 85px; }
  .contact-link { display: inline-block; margin-top: 36px; font-size: 12px; }
  footer { align-items: start; flex-direction: column; gap: 18px; padding-inline: 5vw; }
  .music-card {
    right: 10px;
    bottom: 10px;
    width: min(296px, calc(100vw - 20px));
    padding: 8px 10px;
  }
}

/* Editorial front page */
.noise { opacity: .08; }
.site-header {
  height: 64px;
  padding-inline: 2.2vw;
  border-bottom-color: rgba(255,255,255,.13);
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(9px);
}
.brand { font-family: var(--sans); font-size: 15px; letter-spacing: .4px; }
.brand-mark { width: 17px; height: 17px; }
.main-nav { gap: 26px; margin-left: auto; }
.main-nav a, .header-cta { font-family: var(--sans); font-size: 11px; letter-spacing: 0; text-transform: none; }
.header-cta { margin-left: 24px; padding-left: 24px; }

.hero { min-height: 100vh; display: grid; place-items: center; grid-template-columns: 1fr; padding: 115px 5vw 70px; isolation: isolate; }
.hero-grid { inset: 64px 0 0; opacity: .24; mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.7) 46%, transparent 100%); background-size: 78px 78px; }
.hero::before { content: ""; position: absolute; inset: 64px 2vw 8vh; z-index: -1; background: radial-gradient(ellipse at center, rgba(255,255,255,.11) 0, rgba(255,255,255,.025) 32%, transparent 68%); }
.hero-copy { z-index: 3; display: grid; justify-items: center; max-width: 1050px; padding: 0; text-align: center; }
.eyebrow { color: var(--soft); }
.eyebrow::before { width: 22px; background: #fff; }
h1 { max-width: 1050px; margin: 22px 0 20px; color: #fff; font-family: var(--sans); font-size: clamp(66px, 7.4vw, 106px); font-weight: 500; line-height: .86; letter-spacing: -7px; text-transform: uppercase; }
h1 span { color: #fff; -webkit-text-stroke: 0; }
.hero-intro { max-width: 530px; color: #bfbfbf; font-size: 14px; line-height: 1.6; text-align: center; }
.hero-actions { margin-top: 28px; }
.hero .button { gap: 20px; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.6); font-family: var(--sans); font-size: 11px; letter-spacing: .4px; }
.hero .button span { color: #fff; font-size: 15px; }
.hero .button:hover { background: transparent; border-color: #fff; }
.hero-visual { position: absolute; inset: 70px 0 0; z-index: -1; display: grid; place-items: center; border: 0; background: transparent; pointer-events: none; opacity: .48; }
.hero-visual svg { width: min(92vw, 900px); height: min(86vh, 760px); transform: scale(1.08); }
.hero-visual .visual-heading, .hero-visual .visual-footer { display: none; }
.hero-visual .telemetry-text, .hero-visual .telemetry-lines { opacity: .48; }
.hero-meta { right: 2.2vw; bottom: 18px; left: 2.2vw; }

.intro-panel { grid-template-columns: .7fr 2.2fr 1fr; padding: 122px 6vw 128px; }
.intro-panel h2 { max-width: 770px; font-family: var(--sans); font-size: clamp(48px, 5.3vw, 78px); font-weight: 500; line-height: .96; letter-spacing: -4px; }
.intro-panel h2 span { color: #fff; -webkit-text-stroke: 0; }
.intro-body { max-width: 390px; color: #a1a1a1; }

.programs { padding-top: 78px; }
.section-heading { font-family: var(--sans); }
.project { background: #030303; }
.project:hover { transform: none; background: #080808; }
.project h3 { font-family: var(--sans); font-weight: 500; letter-spacing: -1.7px; }
.project-type, .section-code, .section-kicker { color: #d0d0d0; }
.project-number { color: #fff; }
.tag-list span { color: #bbb; }
.art-readout b { color: #fff; font-size: 13px; }

.acknowledgements {
  display: grid;
  grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 46px);
  padding: 38px 6vw 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #000;
}
.acknowledgements-label {
  align-self: start;
}
.acknowledgements h2 {
  max-width: 310px;
  margin-top: 18px;
  color: #f5f5f5;
  font-family: var(--sans);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.2px;
  text-transform: none;
}
.acknowledgements-copy {
  position: relative;
  max-width: 1080px;
  padding: 2px 0 0 clamp(16px, 1.5vw, 24px);
}
.acknowledgements-copy::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.acknowledgements-copy p {
  margin: 0;
  color: #c7c7c7;
  font-size: 12px;
  line-height: 1.55;
}
.acknowledgements-copy p + p {
  margin-top: 9px;
}
@media (max-width: 900px) {
  .acknowledgements {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 5vw 44px;
  }
  .acknowledgements h2 {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .acknowledgements h2 {
    font-size: 36px;
    letter-spacing: -2.2px;
  }
  .acknowledgements-copy {
    padding-left: 18px;
  }
  .acknowledgements-copy p {
    font-size: 12px;
    line-height: 1.55;
  }
}
.contact { padding-block: 118px; }
.contact h2 { color: #fff; font-family: var(--sans); font-size: clamp(50px, 5vw, 75px); font-weight: 500; letter-spacing: -4px; text-transform: none; }
.contact h2 span { color: #fff; -webkit-text-stroke: 0; }

@media (max-width: 680px) {
  .site-header { height: 62px; padding-inline: 5vw; }
  .brand { font-size: 14px; }
  .hero { min-height: 790px; padding: 104px 5vw 54px; }
  .hero::before { inset: 62px 0 0; }
  .hero-grid { inset: 62px 0 0; opacity: .2; }
  .hero-copy { align-self: center; }
  .eyebrow { max-width: 280px; font-size: 8px; }
  h1 { max-width: 350px; margin-block: 22px; font-size: clamp(52px, 15.7vw, 64px); line-height: .9; letter-spacing: -4px; }
  .hero-intro { max-width: 330px; font-size: 13px; }
  .hero-visual { inset: 100px -160px 0; height: auto; margin: 0; opacity: .38; }
  .hero-visual svg { width: 760px; height: 680px; transform: scale(1); }
  .hero-visual .telemetry-text, .hero-visual .telemetry-lines { display: none; }
  .hero-meta { right: 5vw; bottom: 20px; left: 5vw; font-size: 7px; }
  .hero-meta span:first-child { max-width: 210px; line-height: 1.6; }
  .intro-panel { padding-block: 84px; }
  .intro-panel h2 { font-size: 48px; letter-spacing: -3px; }
  .contact h2 { font-size: 50px; letter-spacing: -3px; }
}

/* Quote opening */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 150px 7vw 100px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before { display: none; }
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(#202428, #202428);
  transform: scale(1.02);
}
.hero-photo i {
  position: absolute;
  inset: 0;
  background: url("assets/hero-f16-mountains.jpg") center 54% / cover no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(.86);
}
.hero-photo i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.8) 32%, rgba(0,0,0,.28) 66%, rgba(0,0,0,.03) 100%);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 31%, rgba(0,0,0,.38) 68%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.1) 58%, rgba(0,0,0,.52));
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 66%, rgba(90,170,217,.18));
  mix-blend-mode: screen;
}
.hero-copy {
  display: block;
  width: min(1180px, 100%);
  max-width: none;
  padding: 0;
  text-align: left;
}
.hero-quote {
  max-width: 1120px;
  margin: 0;
}
.hero-quote p {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -5.5px;
}
.typing-quote::after {
  content: "";
  display: inline-block;
  width: .055em;
  height: .88em;
  margin-left: .08em;
  background: #fff;
  vertical-align: -.03em;
  animation: cursor-blink .75s steps(1) infinite;
}
.typing-quote.typing-complete::after { opacity: 0; animation: none; }
.hero-quote cite {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-quote cite,
.portfolio-title {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .55s ease, transform .55s ease;
}
.portfolio-title.reveal.visible:not(.typing-followup-visible) {
  opacity: 0;
  transform: translateY(7px);
}
.hero-quote cite.typing-followup-visible,
.portfolio-title.typing-followup-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-quote cite::before { content: "— "; }
.portfolio-title {
  display: block;
  width: 100%;
  margin: 72px 0 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

/* Propulsion experience map */
.experience-map {
  position: relative;
  padding: 72px 5vw 78px;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.section-side-note {
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.34);
  font: 500 9px/1 var(--mono);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  pointer-events: none;
  white-space: nowrap;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-bright);
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: 1.2px;
}
.map-heading p { margin: 0; }
.experience-map-layout {
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(0, 1.22fr);
  gap: 22px;
  max-width: 1500px;
  margin: 22px auto 0;
}
.publications-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: #020202;
}
.publications-label {
  display: flex;
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  color: #fff;
  font: 500 9px/1 var(--mono);
  letter-spacing: 1.1px;
}
.publications-label p { margin: 0; }
.publications-label span { color: var(--muted); }
.publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 484px;
}
.publication-card {
  position: relative;
  min-width: 0;
  padding: 10px 11px 9px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease;
}
.publication-card:nth-child(even) { border-right: 0; }
.publication-card:nth-child(n+9) { border-bottom: 0; }
.publication-card:hover,
.publication-card:focus-within {
  z-index: 2;
  background: rgba(255,255,255,.075);
}
.publication-card b {
  display: block;
  color: #fff;
  font: 500 9px/1 var(--mono);
  letter-spacing: .8px;
}
.publication-card h3 {
  margin: 7px 0 0;
  overflow: hidden;
  color: #e8e8e8;
  font: 500 10px/1.14 var(--mono);
  letter-spacing: .2px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.publication-card:hover h3,
.publication-card:focus-within h3 {
  position: absolute;
  top: 25px;
  right: 10px;
  left: 10px;
  z-index: 1;
  padding: 7px 8px;
  border: 1px solid var(--line-bright);
  background: #101010;
  line-height: 1.35;
  pointer-events: none;
  text-overflow: clip;
  transform: translateY(calc(-100% - 4px));
  white-space: normal;
  box-shadow: 0 8px 18px rgba(0,0,0,.42);
}
.publication-card p,
.publication-card a {
  display: block;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: .45px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.publication-card a { color: #cfcfcf; }
.publication-card a:hover { color: #fff; }
.map-canvas {
  position: relative;
  max-width: none;
  height: 524px;
  margin: 0;
  overflow: hidden;
}
.map-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-connections path,
.map-connections line {
  fill: none;
  stroke: rgba(255,255,255,.23);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.thought-annotation {
  position: absolute;
  top: calc(100vh + 690px);
  left: 5vw;
  z-index: 30;
  width: 340px;
  padding: 18px 20px 17px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  outline: 0;
  background: rgba(255,255,255,.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(18px) saturate(1.22) brightness(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.22) brightness(1.08);
  color: #fff;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.thought-annotation::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 42%, rgba(255,255,255,.035));
  pointer-events: none;
}
.thought-annotation:active { cursor: grabbing; }
.thought-annotation:focus-visible {
  border-color: rgba(255,255,255,.72);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.34),
    0 0 0 2px rgba(255,255,255,.16),
    0 12px 30px rgba(0,0,0,.28);
}
.thought-annotation-copy { margin: 0; }
.thought-annotation-copy {
  position: relative;
  padding-right: 12px;
  font: 500 13px/1.4 var(--sans);
  letter-spacing: -.1px;
}
.thought-annotation-toggle {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 20px;
  height: 20px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,.62);
  font: 500 17px/1 var(--sans);
  cursor: pointer;
}
.thought-annotation-toggle:hover,
.thought-annotation-toggle:focus-visible {
  background: rgba(255,255,255,.11);
  color: #fff;
  outline: 0;
}
.thought-annotation-tail {
  position: absolute;
  display: block;
  right: 24px;
  bottom: -31px;
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.08));
  transform: rotate(-31deg);
  transform-origin: top;
}
.thought-annotation-tail::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.thought-annotation.is-collapsed {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}
.thought-annotation.is-collapsed::before { border-radius: 50%; }
.thought-annotation.is-collapsed .thought-annotation-copy { display: none; }
.thought-annotation.is-collapsed .thought-annotation-toggle {
  inset: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
}
.map-node {
  position: absolute;
  display: grid;
  place-content: center;
  min-width: 62px;
  min-height: 24px;
  padding: 5px 6px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 0;
  background: #000;
  color: #fff;
  transform: translate(-50%, -50%);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  cursor: grab;
  user-select: none;
  touch-action: none;
  z-index: 1;
}
.map-node:active { cursor: grabbing; }
.map-node:hover {
  color: #000;
  border-color: #fff;
  background: #fff;
}
.map-node span {
  margin-bottom: 2px;
  color: var(--muted);
  font: 500 5px/1 var(--mono);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.map-node:hover span { color: #444; }
.map-node strong {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.08;
}
.node-core { left: 55%; top: 52%; min-width: 104px; min-height: 42px; border-width: 2px; }
.node-core strong { font-size: 14px; }
.node-domain { min-width: 84px; min-height: 34px; }
.node-domain strong { font-size: 9px; }
.node-leaf { min-width: 54px; min-height: 22px; max-width: 98px; border-color: rgba(255,255,255,.3); }
.node-leaf strong { padding: 0; font: 500 6px/1.08 var(--mono); letter-spacing: .1px; text-transform: uppercase; }
.node-hybrids { left: 49%; top: 35%; }
.node-regression { left: 38%; top: 6%; }
.node-liquefying { left: 18%; top: 20%; }
.node-conventional { left: 31%; top: 43%; }
.node-pw { left: 28%; top: 9%; width: 34px; }
.node-hdpe { left: 8%; top: 29%; width: 38px; }
.node-pp { left: 12%; top: 38%; width: 34px; }
.node-pmma { left: 29%; top: 30%; width: 42px; }
.node-abs { left: 17%; top: 47%; width: 38px; }
.node-lre { left: 24%; top: 76%; }
.node-injectors { left: 32%; top: 58%; }
.node-swirl { left: 13%; top: 54%; }
.node-coaxial { left: 10%; top: 64%; }
.node-showerhead { left: 12%; top: 90%; }
.node-analysis { left: 76%; top: 21%; }
.node-rans { left: 92%; top: 13%; width: 106px; }
.node-les { left: 82%; top: 35%; width: 106px; }
.node-thermal { left: 79%; top: 60%; }
.node-regen { left: 89%; top: 43%; width: 104px; }
.node-film { left: 91%; top: 71%; width: 104px; }
.node-turbomachinery { left: 54%; top: 73%; }
.node-pump { left: 55%; top: 93%; width: 106px; }
.node-manufacturing { left: 72%; top: 83%; width: 108px; }
.node-igniter { left: 31%; top: 94%; }
.node-vtvl { left: 47%; top: 19%; min-width: 88px; min-height: 34px; }
.node-thrusters { left: 91%; top: 87%; width: 70px; }
.node-pressure-ladder { left: 58%; top: 10%; width: 68px; }
.node-valve-sequence { left: 70%; top: 41%; width: 70px; }
.node-test-procedures { left: 64%; top: 25%; width: 74px; }

@media (max-width: 900px) {
  .experience-map { padding: 72px 5vw 78px; }
  .section-side-note { display: none; }
  .map-heading p:last-child { display: none; }
  .experience-map-layout { display: block; margin-top: 20px; }
  .publications-panel { margin-bottom: 22px; }
  .publications-grid { height: auto; }
  .publication-card { min-height: 89px; }
  .publication-card h3,
  .publication-card:hover h3,
  .publication-card:focus-within h3 {
    position: static;
    display: -webkit-box;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 1.3;
    pointer-events: auto;
    text-overflow: ellipsis;
    transform: none;
    white-space: normal;
    box-shadow: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .map-canvas {
    display: grid;
    height: auto;
    gap: 9px;
    margin-top: 24px;
    padding-left: 19px;
    overflow: visible;
  }
  .map-canvas::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 4px;
    width: 1px;
    background: rgba(255,255,255,.35);
  }
  .map-connections { display: none; }
  .thought-annotation {
    width: min(198px, calc(100vw - 52px));
  }
  .map-node {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 54px;
    padding: 12px 15px;
    border-radius: 0;
    transform: none;
    text-align: left;
  }
  .map-node::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 14px;
    height: 1px;
    background: rgba(255,255,255,.35);
  }
  .map-node span { order: 2; margin: 0; text-align: right; }
  .map-node strong,
  .node-core strong,
  .node-domain strong { font-size: 15px; }
  .node-leaf strong { padding: 0; font-size: 9px; }
  .node-core { min-height: 70px; }
  .node-core strong { font-size: 22px; }
  .node-domain { margin-top: 13px; border-color: rgba(255,255,255,.68); }
  .node-leaf { width: calc(100% - 18px); margin-left: 18px; border-color: rgba(255,255,255,.26); }
  .node-leaf::before { left: -33px; width: 32px; }
}

/* Experience rows */
.experience-list {
  position: relative;
  isolation: isolate;
  padding: 98px 6vw 112px;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.experience-list::before {
  content: "";
  position: absolute;
  top: 132px;
  right: 4vw;
  z-index: -1;
  width: 520px;
  height: 640px;
  background: url("assets/experience-taiwan-flag.png") center / contain no-repeat;
  filter: grayscale(1) brightness(1.45) contrast(.68);
  opacity: .14;
  pointer-events: none;
  transition: opacity .35s ease, filter .35s ease;
}
.experience-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: end;
  gap: 26px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-bright);
}
.experience-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.experience-row {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 250px;
  min-height: 184px;
  border-bottom: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease, background .3s ease;
}
.experience-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.experience-row.experience-visible {
  opacity: 1;
  transform: translateY(0);
}
.experience-row.experience-visible::after { transform: scaleX(1); }
.experience-row:hover,
.experience-row:focus-within { background: rgba(255,255,255,.075); }
.experience-rows:has(.experience-row:hover) .experience-row:not(:hover),
.experience-rows:has(.experience-row:focus-within) .experience-row:not(:focus-within) {
  opacity: .46;
}
.experience-row:hover::after,
.experience-row:focus-within::after { background: rgba(255,255,255,.72); }
.experience-row:nth-child(2) { transition-delay: 90ms; }
.experience-row:nth-child(3) { transition-delay: 180ms; }
.experience-row:nth-child(4) { transition-delay: 270ms; }
.experience-row:nth-child(2)::after { transition-delay: 90ms; }
.experience-row:nth-child(3)::after { transition-delay: 180ms; }
.experience-row:nth-child(4)::after { transition-delay: 270ms; }
.experience-number {
  padding-top: 27px;
  color: #fff;
  border-right: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 74px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -6px;
}
.experience-main { padding: 32px 34px; }
.experience-type,
.experience-placeholder {
  margin: 0;
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.experience-type { color: var(--muted); }
.experience-placeholder { margin-top: 18px; color: #6e6e6e; }
.experience-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: #a8a8a8;
  font-size: 13px;
  line-height: 1.65;
}
.aerd-press,
.gtpl-objectives,
.org-profile {
  max-width: 860px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height .42s ease .16s,
    margin-top .42s ease .16s,
    opacity .28s ease .16s,
    transform .42s ease .16s;
  pointer-events: none;
}
.org-profile {
  max-width: 720px;
}
.org-profile p:not(.aerd-press-label) {
  max-width: 690px;
  margin: 0;
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.65;
}
.org-profile p:not(.aerd-press-label) + p {
  margin-top: 9px;
}
.tasa-row:hover .org-profile,
.tasa-row:focus-within .org-profile,
.arrc-row:hover .org-profile,
.arrc-row:focus-within .org-profile,
.aerd-row:hover .aerd-press,
.aerd-row:focus-within .aerd-press,
.gtpl-row:hover .gtpl-objectives,
.gtpl-row:focus-within .gtpl-objectives {
  max-height: 260px;
  margin-top: 21px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}
.experience-rows:has(.gtpl-row:hover) .aerd-press,
.experience-rows:has(.gtpl-row:focus-within) .aerd-press,
.experience-rows:has(.aerd-row:hover) .gtpl-objectives,
.experience-rows:has(.aerd-row:focus-within) .gtpl-objectives {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition-delay: 0s;
  pointer-events: none;
}
.aerd-press-label {
  margin: 0 0 8px;
  color: #cfcfcf;
  font: 500 8px/1 var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aerd-press table,
.gtpl-objectives table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,.2);
  table-layout: fixed;
}
.aerd-press th,
.aerd-press td,
.gtpl-objectives th,
.gtpl-objectives td {
  padding: 6px 8px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  text-align: left;
  vertical-align: top;
  font: 500 8px/1.25 var(--mono);
  letter-spacing: .35px;
}
.aerd-press th,
.gtpl-objectives th {
  color: #8f8f8f;
  letter-spacing: .85px;
  text-transform: uppercase;
}
.aerd-press th:first-child,
.aerd-press td:first-child,
.gtpl-objectives th:first-child,
.gtpl-objectives td:first-child {
  width: 150px;
  color: #b8b8b8;
}
.aerd-press tr:last-child td,
.gtpl-objectives tr:last-child td { border-bottom: 0; }
.aerd-press th:last-child,
.aerd-press td:last-child,
.gtpl-objectives th:last-child,
.gtpl-objectives td:last-child { border-right: 0; }
.gtpl-objectives td span {
  display: block;
  margin-top: 3px;
  color: #8f8f8f;
  font-size: 7px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.aerd-press a {
  color: #dedede;
  transition: color .2s ease;
}
.aerd-press a:hover,
.aerd-press a:focus-visible {
  color: #fff;
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.experience-main h3 {
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(25px, 2.5vw, 37px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.7px;
}
.experience-main h3 span { color: #858585; }
.experience-meta {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  border-left: 1px solid var(--line);
}
.experience-meta span {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font: 500 8px/1 var(--mono);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.experience-meta b { color: #d0d0d0; font-size: 9px; font-weight: 500; }
.experience-meta span,
.experience-meta b { transition: color .25s ease; }
.experience-number,
.experience-main h3,
.experience-description,
.experience-type { transition: color .25s ease; }
.experience-row:hover .experience-number,
.experience-row:focus-within .experience-number,
.experience-row:hover .experience-main h3,
.experience-row:focus-within .experience-main h3 { color: #fff; }
.experience-row:hover .experience-description,
.experience-row:focus-within .experience-description { color: #e0e0e0; }
.experience-row:hover .experience-type,
.experience-row:focus-within .experience-type { color: #fff; }
.experience-row:hover .experience-meta span,
.experience-row:focus-within .experience-meta span { color: #bdbdbd; }
.experience-row:hover .experience-meta b,
.experience-row:focus-within .experience-meta b { color: #fff; }

@media (max-width: 680px) {
  .experience-list { padding: 78px 5vw 84px; overflow: hidden; }
  .experience-list::before { top: 96px; right: -130px; width: 360px; height: 440px; }
  .experience-heading { display: block; padding-bottom: 20px; }
  .experience-heading h2 { margin-top: 19px; font-size: 34px; letter-spacing: -1.5px; }
  .experience-row {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 0;
  }
  .experience-number { padding-top: 24px; font-size: 35px; letter-spacing: -3px; }
  .experience-main { padding: 25px 18px 20px; }
  .experience-main h3 { margin-top: 11px; font-size: 36px; line-height: 1.02; letter-spacing: -1px; }
  .experience-placeholder { margin-top: 15px; font-size: 8px; }
  .experience-description { margin-top: 15px; font-size: 12px; line-height: 1.6; }
  .aerd-press,
  .gtpl-objectives,
  .org-profile,
  .tasa-row:hover .org-profile,
  .tasa-row:focus-within .org-profile,
  .arrc-row:hover .org-profile,
  .arrc-row:focus-within .org-profile,
  .aerd-row:hover .aerd-press,
  .aerd-row:focus-within .aerd-press,
  .gtpl-row:hover .gtpl-objectives,
  .gtpl-row:focus-within .gtpl-objectives {
    max-height: none;
    margin-top: 19px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .aerd-press th,
  .aerd-press td,
  .gtpl-objectives th,
  .gtpl-objectives td { padding: 6px; font-size: 7px; }
  .aerd-press th:first-child,
  .aerd-press td:first-child,
  .gtpl-objectives th:first-child,
  .gtpl-objectives td:first-child { width: 88px; }
  .experience-meta {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 18px 24px;
    border-left: 0;
  }
}

/* Gallery */
.gallery {
  padding: 78px 2vw 42px;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.gallery-heading {
  display: flex;
  justify-content: space-between;
  margin: 0 1vw 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line-bright);
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: 1.2px;
}
.gallery-heading p { margin: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: #090909;
}
.gallery-wide { grid-column: span 2; }
.personal-bridge {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto auto minmax(40px, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  border-block: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .25s ease;
}
.personal-bridge::before {
  content: "";
  grid-column: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.42), rgba(255,255,255,.16));
  transform: scaleX(.42);
  transform-origin: right;
  transition: transform .35s ease, opacity .35s ease;
  opacity: .58;
}
.personal-bridge::after {
  content: "";
  grid-column: 4;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.42), rgba(255,255,255,.16));
  transform: scaleX(.42);
  transform-origin: left;
  transition: transform .35s ease, opacity .35s ease;
  opacity: .58;
}
.personal-bridge span {
  grid-column: 2;
  white-space: nowrap;
}
.personal-bridge b {
  grid-column: 3;
  color: #fff;
  font: 400 18px/1 var(--sans);
  transform: translateX(0);
  transition: transform .35s ease;
}
.personal-bridge:hover,
.personal-bridge:focus-visible {
  color: #fff;
  outline: 0;
}
.personal-bridge:hover::before,
.personal-bridge:focus-visible::before,
.personal-bridge:hover::after,
.personal-bridge:focus-visible::after {
  transform: scaleX(.72);
  opacity: .86;
}
.personal-bridge:hover b,
.personal-bridge:focus-visible b {
  transform: translateX(7px);
}
.other-projects {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) 2fr;
  align-items: center;
  gap: 34px;
  min-height: 190px;
  padding: 32px 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045), transparent 42%),
    #050505;
}
.other-projects-heading {
  align-self: center;
}
.other-projects-heading h3 {
  max-width: 360px;
  margin: 18px 0 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -1.8px;
}
.other-projects-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 0;
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line);
}
.other-projects-list p {
  min-height: 142px;
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.other-projects-list strong {
  display: block;
  color: #e7e7e7;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.other-projects-list small {
  display: block;
  max-width: 330px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.other-projects-list span {
  display: block;
  margin-bottom: 17px;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
}
.gallery-image {
  position: absolute;
  inset: -1px;
  display: grid;
  place-items: center;
  overflow: hidden;
  filter: grayscale(1);
  transition: filter .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: filter;
}
.gallery-image::before,
.gallery-image::after {
  content: "";
  position: absolute;
}
.gallery-image span {
  color: rgba(255,255,255,.44);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 10px;
  font: 500 9px/1 var(--mono);
  letter-spacing: 1px;
}
.gallery-card:hover .gallery-image { transform: translateZ(0); }
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0) scale(1.003);
  backface-visibility: hidden;
}
.gallery-image:not(.placeholder-four) {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
}
.gallery-card:hover .gallery-image:not(.placeholder-four) { filter: none; }
.placeholder-one { background: #050505; filter: none; }
.gallery-card:hover .placeholder-one { filter: none; }
.placeholder-one::before,
.placeholder-one span { display: none; }
.pfs-carousel,
.pfs-carousel i,
.injector-carousel,
.injector-carousel i,
.engine-carousel,
.engine-carousel i,
.aiaame-carousel,
.aiaame-carousel i {
  position: absolute;
  inset: 0;
}
.pfs-carousel i,
.injector-carousel i,
.engine-carousel i,
.aiaame-carousel i {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .9s ease;
  will-change: opacity;
}
.pfs-carousel i:nth-child(1) { background-image: url("assets/pfs_work.jpg"); opacity: 1; }
.pfs-carousel i:nth-child(2) { background-image: url("assets/pfs_2.JPG"); }
.pfs-carousel i:nth-child(3) { background-image: url("assets/pfs_3.JPG"); }
.pfs-carousel i:nth-child(4) { background-image: url("assets/pfs_4.JPG"); }
.injector-carousel i:nth-child(1) { background-image: url("assets/injector.JPG"); opacity: 1; }
.injector-carousel i:nth-child(2) { background-image: url("assets/injector_2.JPG"); }
.engine-carousel i:nth-child(1) { background-image: url("assets/1000N.JPG"); opacity: 1; }
.engine-carousel i:nth-child(2) { background-image: url("assets/1000N_2.JPG"); }
.engine-carousel i:nth-child(3) { background-image: url("assets/1000N_3.JPG"); }
.aiaame-carousel i:nth-child(1) { background-image: url("assets/AIAAME_3.JPG"); opacity: 1; }
.aiaame-carousel i:nth-child(2) { background-image: url("assets/AIAAME_2.JPG"); }
.aiaame-carousel i:nth-child(3) { background-image: url("assets/AIAAME_1.JPG"); }
.aiaame-carousel i:nth-child(4) { background-image: url("assets/AIAAME_4.JPG"); }
.gallery-card:hover .pfs-carousel i:nth-child(1),
.gallery-card:focus-within .pfs-carousel i:nth-child(1),
.gallery-card:hover .injector-carousel i:nth-child(1),
.gallery-card:focus-within .injector-carousel i:nth-child(1),
.gallery-card:hover .engine-carousel i:nth-child(1),
.gallery-card:focus-within .engine-carousel i:nth-child(1),
.gallery-card:hover .aiaame-carousel i:nth-child(1),
.gallery-card:focus-within .aiaame-carousel i:nth-child(1) {
  animation: pfs-base-fade 6.4s infinite cubic-bezier(.45, 0, .2, 1);
}
.gallery-card:hover .pfs-carousel i:nth-child(n+2),
.gallery-card:focus-within .pfs-carousel i:nth-child(n+2),
.gallery-card:hover .injector-carousel i:nth-child(n+2),
.gallery-card:focus-within .injector-carousel i:nth-child(n+2),
.gallery-card:hover .engine-carousel i:nth-child(n+2),
.gallery-card:focus-within .engine-carousel i:nth-child(n+2),
.gallery-card:hover .aiaame-carousel i:nth-child(n+2),
.gallery-card:focus-within .aiaame-carousel i:nth-child(n+2) {
  animation: pfs-fade 6.4s infinite cubic-bezier(.45, 0, .2, 1);
}
.gallery-card:hover .pfs-carousel i:nth-child(2),
.gallery-card:focus-within .pfs-carousel i:nth-child(2),
.gallery-card:hover .injector-carousel i:nth-child(2),
.gallery-card:focus-within .injector-carousel i:nth-child(2),
.gallery-card:hover .engine-carousel i:nth-child(2),
.gallery-card:focus-within .engine-carousel i:nth-child(2),
.gallery-card:hover .aiaame-carousel i:nth-child(2),
.gallery-card:focus-within .aiaame-carousel i:nth-child(2) { animation-delay: 1.2s; }
.gallery-card:hover .pfs-carousel i:nth-child(3),
.gallery-card:focus-within .pfs-carousel i:nth-child(3),
.gallery-card:hover .engine-carousel i:nth-child(3),
.gallery-card:focus-within .engine-carousel i:nth-child(3),
.gallery-card:hover .aiaame-carousel i:nth-child(3),
.gallery-card:focus-within .aiaame-carousel i:nth-child(3) { animation-delay: 2.8s; }
.gallery-card:hover .pfs-carousel i:nth-child(4),
.gallery-card:focus-within .pfs-carousel i:nth-child(4),
.gallery-card:hover .aiaame-carousel i:nth-child(4),
.gallery-card:focus-within .aiaame-carousel i:nth-child(4) { animation-delay: 4.4s; }
@keyframes pfs-fade {
  0% { opacity: 0; }
  8%, 34% { opacity: 1; }
  48%, 100% { opacity: 0; }
}
@keyframes pfs-base-fade {
  0%, 28% { opacity: 1; }
  42%, 86% { opacity: 0; }
  100% { opacity: 1; }
}

.placeholder-two { background: #050505; filter: none; }
.gallery-card:hover .placeholder-two { filter: none; }
.placeholder-two::before,
.placeholder-two span { display: none; }

.placeholder-three { background: url("assets/mtv.JPG") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-three { filter: none; }
.placeholder-three::before,
.placeholder-three span { display: none; }

.placeholder-four { background: #050505; filter: none; }
.gallery-card:hover .placeholder-four { filter: none; }
.placeholder-four::before,
.placeholder-four span { display: none; }

/* .placeholder-four { background: radial-gradient(ellipse at 50% 70%, #5f5f5f 0 3%, #1c1c1c 4% 18%, #050505 44%), linear-gradient(#202020,#050505); }
.placeholder-four::before { width: 17%; height: 47%; border: 2px solid rgba(255,255,255,.36); clip-path: polygon(35% 0,65% 0,100% 100%,0 100%); } */

.placeholder-five { background: #050505; filter: none; }
.placeholder-five::before,
.placeholder-five::after { display: none; }

.engine-spec-card {
  isolation: isolate;
  outline: 0;
}
.engine-spec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.1) 30%, rgba(0,0,0,.02) 62%, rgba(0,0,0,.12)),
    linear-gradient(90deg, rgba(0,0,0,.14), transparent 44%, rgba(0,0,0,.18));
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s ease;
}
.engine-spec-card:hover::after {
  opacity: 1;
}
.engine-spec-card:hover .placeholder-five,
.engine-spec-card:hover .placeholder-nine {
  transform: scale(1.015);
}
.engine-exploded {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .34s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.engine-spec-card:hover .engine-exploded {
  opacity: 1;
  transform: translateY(0);
}
.engine-callout {
  min-width: 0;
  min-height: 20px;
  padding: 10px 11px 9px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .34s ease, transform .54s cubic-bezier(.2,.7,.2,1), border-color .28s ease;
}
.engine-callout b {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.58);
  font: 600 8px/1 var(--mono);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.engine-callout em {
  display: block;
  color: #fff;
  font: 600 12px/1.18 var(--sans);
  letter-spacing: -.25px;
  font-style: normal;
}
.engine-spec-card:hover .engine-callout {
  opacity: 1;
  transform: translateY(0);
}
.engine-callout:hover {
  border-color: rgba(255,255,255,.6);
}
.callout-thrust {
  transition-delay: .04s;
}
.callout-isp {
  transition-delay: .08s;
}
.callout-duration {
  transition-delay: .12s;
}
.callout-propellants {
  transition-delay: .16s;
}
.callout-grain {
  transition-delay: .2s;
}
.callout-pressure {
  transition-delay: .24s;
}

.placeholder-six { background: url("assets/AIAA.png") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-six { filter: none; }
.placeholder-six::before,
.placeholder-six span { display: none; }

.placeholder-seven { background: #050505; filter: none; }
.gallery-card:hover .placeholder-seven { filter: none; }
.placeholder-seven::before,
.placeholder-seven span { display: none; }

.placeholder-eight { background: url("assets/Simulation.JPG") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-eight { filter: none; }
.placeholder-eight::before,
.placeholder-eight span { display: none; }
.gallery-thought {
  position: absolute;
  z-index: 3;
  width: min(255px, 58%);
  padding: 13px 15px 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%),
    rgba(126, 118, 102, .66);
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.22), 0 18px 42px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.gallery-thought p {
  margin: 0;
  font: 600 12px/1.42 var(--sans);
  letter-spacing: -.1px;
}
.gallery-thought i {
  position: absolute;
  right: 22px;
  bottom: -22px;
  width: 1px;
  height: 25px;
  background: linear-gradient(rgba(255,255,255,.34), rgba(255,255,255,.06));
  transform: rotate(-26deg);
  transform-origin: top;
}
.gallery-thought i::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.cfd-thought {
  top: 18px;
  left: 14px;
}

.placeholder-nine { background: url("assets/AERD.png") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-nine { filter: none; }
.placeholder-nine::before,
.placeholder-nine span { display: none; }

.placeholder-ten { background: #050505; filter: none; }
.gallery-card:hover .placeholder-ten { filter: none; }
.placeholder-ten::before,
.placeholder-ten::after,
.placeholder-ten span { display: none; }

.placeholder-11 { background: url("assets/ghibli.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-11 { filter: none; }
.placeholder-11::before,
.placeholder-11 span { display: none; }

.placeholder-12 { background: url("assets/chihiro032.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-12 { filter: none; }
.placeholder-12::before,
.placeholder-12 span { display: none; }

.placeholder-13 { background: url("assets/totoro.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-13 { filter: none; }
.placeholder-13::before,
.placeholder-13 span { display: none; }

.placeholder-14 { background: url("assets/howl035.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-14 { filter: none; }
.placeholder-14::before,
.placeholder-14 span { display: none; }

.placeholder-41 { background: url("assets/weatherballoon.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-41 { filter: none; }
.placeholder-41::before,
.placeholder-41 span { display: none; }

.placeholder-42 { background: url("assets/NDESC.JPG") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-42 { filter: none; }
.placeholder-42::before,
.placeholder-42 span { display: none; }

.placeholder-43 { background: url("assets/NDESCDEMO.JPG") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-43 { filter: none; }
.placeholder-43::before,
.placeholder-43 span { display: none; }

.placeholder-44 { background: url("assets/lox.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-44 { filter: none; }
.placeholder-44::before,
.placeholder-44 span { display: none; }

.placeholder-45 { background: url("assets/tasa_interns.JPG") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-45 { filter: none; }
.placeholder-45::before,
.placeholder-45 span { display: none; }

.placeholder-46 { background: url("assets/tasa_engine_back.jpeg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-45 { filter: none; }
.placeholder-45::before,
.placeholder-45 span { display: none; }

.placeholder-15 { background: url("assets/wbcloseup.jpg") center / cover no-repeat; filter: none; }
.gallery-card:hover .placeholder-41 { filter: none; }
.placeholder-15::before,
.placeholder-15 span { display: none; }

.personal-gallery {
  padding-top: 112px;
}
.personal-gallery .gallery-heading {
  align-items: end;
}
.personal-gallery .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.personal-gallery .gallery-card {
  min-height: 440px;
}
.personal-one { background: url("assets/About_Me.JPG") center / cover no-repeat; filter: none; }
.personal-two { background: url("assets/IMG_0550.JPG") center / cover no-repeat; filter: none; }
.personal-three { background: url("assets/IMG_1112.JPG") center / cover no-repeat; filter: none; }
.personal-four { background: url("assets/IMG_1124.JPG") center / cover no-repeat; filter: none; }
.personal-five { background: url("assets/IMG_1161.JPG") center / cover no-repeat; filter: none; }
.personal-six { background: url("assets/IMG_1894.JPG") center / cover no-repeat; filter: none; }
.personal-one::before,
.personal-two::before,
.personal-three::before,
.personal-four::before,
.personal-five::before,
.personal-six::before,
.personal-one span,
.personal-two span,
.personal-three span,
.personal-four span,
.personal-five span,
.personal-six span { display: none; }



.gallery-card:not(.gallery-wide)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background .4s ease;
}
.gallery-card:not(.gallery-wide):hover::after,
.gallery-card:not(.gallery-wide):focus-within::after { background: rgba(0,0,0,.48); }
.gallery-card:not(.gallery-wide):hover .gallery-image,
.gallery-card:not(.gallery-wide):focus-within .gallery-image { filter: brightness(.62) saturate(.88); }
.gallery-card:not(.gallery-wide) .gallery-image span { display: none; }
.gallery-description {
  max-width: 520px;
  max-height: 0;
  margin-top: 0 !important;
  overflow: hidden;
  opacity: 0;
  color: #d7d7d7 !important;
  font-size: 12px !important;
  line-height: 1.55;
  transform: translateY(8px);
  transition: max-height .38s ease, margin-top .38s ease, opacity .28s ease, transform .38s ease;
}
.gallery-card:not(.gallery-wide):hover .gallery-description,
.gallery-card:not(.gallery-wide):focus-within .gallery-description {
  max-height: 300px;
  margin-top: 12px !important;
  opacity: 1;
  transform: translateY(0);
}
.gallery-card:not(.gallery-wide) .gallery-copy {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.42) rgba(0,0,0,.28);
}
.gallery-card:not(.gallery-wide) .gallery-copy::-webkit-scrollbar {
  width: 8px;
}
.gallery-card:not(.gallery-wide) .gallery-copy::-webkit-scrollbar-track {
  background: rgba(0,0,0,.28);
  border-left: 1px solid rgba(255,255,255,.08);
}
.gallery-card:not(.gallery-wide) .gallery-copy::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
  border: 2px solid rgba(0,0,0,.38);
  border-radius: 999px;
}
.gallery-card:not(.gallery-wide) .gallery-copy::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.42));
}
.gallery-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
}
.gallery-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -1.2px;
}
.gallery-copy p {
  margin: 7px 0 0;
  color: #e1e1e1;
  font-size: 13px;
}
.gallery-copy b {
  display: none;
}
.about-me {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) 1.1fr;
  gap: 0;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.about-photo {
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    url("assets/About_Me.JPG") center / cover no-repeat;
  filter: grayscale(.18) contrast(.96) brightness(.82);
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw;
  border-left: 1px solid var(--line);
}
.about-content h2 {
  max-width: 590px;
  margin: 22px 0 0;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(50px, 5.5vw, 86px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -4px;
  text-transform: none;
}
.about-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.65;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line);
}
.about-grid article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
}
.about-grid h3 {
  margin: 0;
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 600;
}
.about-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .gallery { padding-inline: 3vw; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-card { min-height: 390px; }
  .gallery-wide { grid-column: span 2; }
  .engine-exploded {
    top: 14px;
    right: 14px;
    left: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .engine-callout {
    padding: 9px 10px;
    min-height: 52px;
  }
  .engine-callout em { font-size: 11px; }
  .personal-bridge { min-height: 54px; padding-inline: 20px; }
  .personal-bridge span { white-space: normal; }
  .other-projects { grid-template-columns: 1fr; }
  .other-projects-heading { align-self: start; }
  .other-projects-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-me { grid-template-columns: 1fr; }
  .about-photo { min-height: 520px; }
  .about-content { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .gallery { padding: 64px 4vw 28px; }
  .gallery-heading p:last-child { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-wide { grid-column: auto; min-height: 380px; }
  .gallery-copy h3 { font-size: 36px; }
  .engine-exploded { display: none; }
  .gallery-thought {
    width: min(230px, calc(100% - 32px));
    padding: 11px 12px;
    border-radius: 16px;
  }
  .gallery-thought p { font-size: 11px; }
  .cfd-thought { top: 14px; left: 14px; }
  .personal-bridge {
    grid-column: auto;
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
    font-size: 9px;
    line-height: 1.35;
  }
  .personal-bridge::before { display: none; }
  .other-projects {
    grid-column: auto;
    min-height: 0;
    padding: 20px;
  }
  .other-projects-heading h3 { font-size: 34px; letter-spacing: -1px; }
  .other-projects-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .other-projects-list p {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
  }
  .about-photo { min-height: 430px; }
  .about-content { padding: 64px 5vw; }
  .about-content h2 { font-size: 48px; letter-spacing: -2px; }
  .about-lede { font-size: 15px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid article { min-height: 0; padding: 18px 0; border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .typing-quote::after { display: none; }
  .hero-quote cite,
  .portfolio-title { opacity: 1; transform: none; transition: none; }
  .experience-row { opacity: 1; transform: none; transition: none; }
  .experience-row::after { transform: scaleX(1); transition: none; }
  .gallery-card:hover .pfs-carousel i,
  .gallery-card:focus-within .pfs-carousel i,
  .gallery-card:hover .injector-carousel i,
  .gallery-card:focus-within .injector-carousel i,
  .gallery-card:hover .engine-carousel i,
  .gallery-card:focus-within .engine-carousel i,
  .gallery-card:hover .aiaame-carousel i,
  .gallery-card:focus-within .aiaame-carousel i { animation: none; }
  .engine-exploded,
  .engine-callout {
    transition: none;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
    padding: 116px 5vw 72px;
    overflow: hidden;
  }
  .hero-copy { align-self: center; }
  .hero-photo {
    background-position: 54% center;
  }
  .hero-photo i {
    background-position: 54% center;
    filter: saturate(1) contrast(1.04) brightness(.74);
  }
  .hero-photo i::after { background: linear-gradient(180deg, rgba(0,0,0,.44), rgba(0,0,0,.26) 46%, rgba(0,0,0,.16)); }
  .hero-photo::before {
    background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.38) 43%, rgba(0,0,0,.28) 100%);
  }
  .hero-quote p {
    font-size: clamp(43px, 12vw, 56px);
    line-height: 1;
    letter-spacing: -3px;
  }
  .hero-quote cite {
    margin-top: 22px;
    font-size: 9px;
  }
  .portfolio-title {
    margin-top: 58px;
    font-size: 9px;
    line-height: 1.6;
  }
}

@media (max-width: 680px) {
  .thought-annotation,
  .experience-map,
  .header-email {
    display: none !important;
  }

  .experience-rows:has(.experience-row:hover) .experience-row,
  .experience-rows:has(.experience-row:focus-within) .experience-row {
    opacity: 1 !important;
  }

  .aerd-press,
  .gtpl-objectives,
  .org-profile,
  .tasa-row:hover .org-profile,
  .tasa-row:focus-within .org-profile,
  .arrc-row:hover .org-profile,
  .arrc-row:focus-within .org-profile,
  .aerd-row:hover .aerd-press,
  .aerd-row:focus-within .aerd-press,
  .gtpl-row:hover .gtpl-objectives,
  .gtpl-row:focus-within .gtpl-objectives {
    max-height: none !important;
    margin-top: 19px !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .gallery-heading .section-code {
    font-size: 0;
    letter-spacing: 0;
  }

  .gallery-heading .section-code::after {
    content: "04 / PROJECT & TEAM GALLERY";
    font: 500 10px/1.4 var(--mono);
    letter-spacing: 1.2px;
  }

  .gallery-card,
  .gallery-wide {
    display: flex;
    flex-direction: column;
    min-height: 0 !important;
    overflow: visible;
    border: 1px solid rgba(255,255,255,.12);
    background: #060606;
  }

  .gallery-image {
    position: relative;
    min-height: 260px;
    flex: 0 0 auto;
  }

  .gallery-card::after,
  .gallery-card:not(.gallery-wide)::after {
    display: none;
  }

  .gallery-card:hover .gallery-image,
  .gallery-card:focus-within .gallery-image,
  .gallery-card:not(.gallery-wide):hover .gallery-image,
  .gallery-card:not(.gallery-wide):focus-within .gallery-image {
    filter: none;
  }

  .gallery-copy {
    position: relative;
    inset: auto;
    max-height: none !important;
    overflow: visible !important;
    padding: 18px 16px 20px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .gallery-copy h3 {
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -1px;
  }

  .gallery-copy p {
    font-size: 12px;
    line-height: 1.55;
  }

  .gallery-description,
  .gallery-card:not(.gallery-wide) .gallery-description,
  .gallery-card:not(.gallery-wide):hover .gallery-description,
  .gallery-card:not(.gallery-wide):focus-within .gallery-description {
    max-height: none !important;
    margin-top: 12px !important;
    overflow: visible;
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-copy b {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .about-me {
    min-height: 0;
    display: block;
    background: #000;
  }

  .about-photo {
    min-height: 220px !important;
    background-position: 50% 38%;
    filter: grayscale(.12) contrast(.98) brightness(.72);
  }

  .about-content {
    display: block;
    padding: 38px 5vw 56px !important;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-content h2 {
    max-width: 320px;
    margin-top: 16px;
    font-size: 40px !important;
    line-height: .98;
    letter-spacing: -1.8px !important;
  }

  .about-lede {
    max-width: none;
    margin-top: 22px;
    font-size: 15px !important;
    line-height: 1.62;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 30px;
    border: 0;
  }

  .about-grid article {
    min-height: 0 !important;
    padding: 16px 0 18px 16px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-left: 1px solid rgba(255,255,255,.22);
  }

  .about-grid article:first-child {
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .about-grid span {
    margin-bottom: 18px;
    color: #9f9f9f;
    font-size: 9px;
    letter-spacing: .8px;
  }

  .about-grid h3 {
    max-width: 310px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.2px;
  }

  .about-grid p {
    max-width: 310px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }

  .music-card {
    display: none !important;
  }
}
