:root {
  --ink: #11120f;
  --paper: #f4f1e8;
  --acid: #eaff52;
  --orange: #ff7048;
  --blue: #6078ff;
  --muted: #696a61;
  --line: rgba(17, 18, 15, .2);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  height: 82px;
  padding: 0 clamp(22px, 4vw, 68px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--acid);
  font: 500 13px var(--mono);
  transform: rotate(-3deg);
}
nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); font-size: 14px; font-weight: 600; }
nav a { transition: opacity .2s; }
nav a:hover { opacity: .55; }
.nav-cta { padding: 11px 16px; border: 1px solid var(--ink); }

.hero {
  min-height: 680px;
  padding: clamp(72px, 9vw, 138px) clamp(22px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
}
.eyebrow {
  margin: 0 0 24px;
  font: 500 12px var(--mono);
  text-transform: uppercase;
  letter-spacing: .11em;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #49af64;
  box-shadow: 0 0 0 4px rgba(73,175,100,.14);
}
h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 700;
}
h1 em, .contact-section h2 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.hero-intro {
  max-width: 650px;
  margin: 40px 0 32px;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
  color: #44453f;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 20px;
  font: 500 13px var(--mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--orange); }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: var(--acid); }
.text-link, .project-link { font: 500 13px var(--mono); text-transform: uppercase; letter-spacing: .04em; }
.text-link { border-bottom: 1px solid var(--ink); padding-bottom: 5px; }

.impact-card {
  padding: 28px;
  background: var(--ink);
  color: white;
  transform: rotate(1.5deg);
  box-shadow: 12px 12px 0 var(--acid);
}
.impact-top { display: flex; justify-content: space-between; font: 400 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.live-label { color: var(--acid); }
.big-number { display: block; margin-top: 42px; font-size: clamp(56px, 6vw, 88px); line-height: 1; letter-spacing: -.07em; }
.metric-label { color: #a8a9a2; font-size: 14px; }
.sparkline { height: 120px; margin: 18px -10px 10px; }
.sparkline svg { width: 100%; height: 100%; overflow: visible; }
.spark-fill { fill: rgba(234,255,82,.11); }
.spark-stroke { fill: none; stroke: var(--acid); stroke-width: 3; vector-effect: non-scaling-stroke; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #393a35; padding-top: 20px; }
.impact-stats div { display: flex; flex-direction: column; gap: 4px; }
.impact-stats strong { font-size: 18px; }
.impact-stats span { font: 10px var(--mono); color: #8c8d86; text-transform: uppercase; }

.marquee { overflow: hidden; background: var(--acid); border-block: 1px solid var(--ink); padding: 18px 0; }
.marquee-track { display: flex; width: max-content; align-items: center; animation: scroll 28s linear infinite; }
.marquee span { font: 500 14px var(--mono); text-transform: uppercase; margin: 0 28px; }
.marquee i { font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

.work-section { padding: 120px clamp(22px, 6vw, 96px); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading h2, .about-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -.06em;
}
.section-heading > p { max-width: 440px; margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.project-card { background: #fffdf7; border: 1px solid var(--line); }
.featured-project { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 570px; margin-bottom: 26px; }
.project-visual { min-height: 350px; display: grid; place-items: center; overflow: hidden; position: relative; }
.project-copy { padding: clamp(26px, 4vw, 50px); display: flex; flex-direction: column; align-items: flex-start; }
.project-meta { width: 100%; display: flex; justify-content: space-between; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.project-copy h3 { margin: auto 0 20px; font-size: clamp(32px, 4vw, 55px); letter-spacing: -.055em; }
.project-copy p { margin: 0 0 22px; color: #50514b; line-height: 1.65; font-size: 15px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 20px; padding: 0; list-style: none; }
.tag-list li { padding: 6px 9px; border: 1px solid var(--line); font: 10px var(--mono); text-transform: uppercase; }
.project-proof { margin-bottom: 22px; font: 12px var(--mono); color: var(--muted); }
.project-proof strong { color: var(--ink); }
.project-link { margin-top: auto; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.project-link span { display: inline-block; transition: transform .2s; }
.project-link:hover span { transform: translate(3px,-3px); }
.project-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: auto; }
.project-links .project-link { margin-top: 0; }
.project-link-muted { color: var(--muted); border-color: var(--muted); }

.e2a-demos {
  margin: 26px 0;
  padding: clamp(32px, 5vw, 68px);
  background: var(--acid);
  border: 1px solid var(--ink);
}
.demo-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: 40px;
}
.demo-intro h3 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.06em;
}
.demo-intro > p {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.7;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.demo-card {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}
.demo-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: center;
}
.demo-card-comparison {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: center;
}
.demo-card-copy > span {
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.demo-card-copy h4 {
  margin: 8px 0 6px;
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -.04em;
}
.demo-card-copy p { margin: 0; color: #62645d; font-size: 13px; line-height: 1.6; }
.demo-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  margin-top: 20px;
  background: #11120f;
}
.demo-card-featured video { margin-top: 0; }
.demo-audio-comparison { display: grid; gap: 12px; }
.demo-audio-comparison label { display: block; padding: 14px; background: var(--ink); color: white; }
.demo-audio-comparison label > span { display: block; margin-bottom: 10px; font: 10px var(--mono); text-transform: uppercase; }
.demo-audio-comparison b { padding: 2px 6px; margin-right: 7px; color: var(--ink); background: var(--acid); }
.demo-audio-comparison audio { display: block; width: 100%; height: 38px; }
.demo-note { margin: 24px 0 0; font: 9px/1.6 var(--mono); color: #555748; }

.e2a-lab {
  margin: 26px 0;
  padding: clamp(32px, 5vw, 68px);
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.lab-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
}
.lab-intro h3 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
}
.lab-intro > p {
  margin: 0 0 5px;
  color: #b7b9b0;
  font-size: 16px;
  line-height: 1.75;
}
.lab-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 52px 0;
}
.lab-flow div {
  min-height: 130px;
  padding: 20px;
  border: 1px solid #44463f;
  display: flex;
  flex-direction: column;
}
.lab-flow span, .tool-index, .comparison-heading span {
  color: var(--acid);
  font: 10px var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lab-flow strong { margin: auto 0 6px; font-size: 17px; }
.lab-flow small { color: #95978f; font: 10px/1.5 var(--mono); }
.lab-flow > i { color: var(--acid); font-style: normal; }
.audio-comparisons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comparison-card { padding: 25px; background: #242620; border: 1px solid #44463f; }
.comparison-heading { min-height: 115px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-heading h4, .lab-tools h4 { margin: 7px 0 0; font-size: 25px; letter-spacing: -.035em; }
.comparison-heading p { margin: 0; color: #a9aba3; font-size: 12px; line-height: 1.6; }
.audio-row { display: grid; gap: 13px; }
.audio-row label { display: block; padding: 12px; background: #151713; border: 1px solid #3a3c36; }
.audio-row label > span { display: block; margin-bottom: 9px; color: #c9cbc3; font: 10px var(--mono); text-transform: uppercase; }
.audio-row b { color: var(--ink); background: var(--acid); padding: 2px 5px; margin-right: 6px; }
.audio-row audio { display: block; width: 100%; height: 34px; }
.lab-tools { display: grid; grid-template-columns: 1fr 1fr; margin-top: 18px; border: 1px solid #44463f; }
.lab-tools article { min-height: 265px; padding: 30px; display: flex; flex-direction: column; align-items: flex-start; }
.lab-tools article + article { border-left: 1px solid #44463f; }
.lab-tools p { color: #a9aba3; line-height: 1.7; font-size: 14px; }
.lab-tools .project-link { color: white; border-color: var(--acid); }
.audio-note { margin: 20px 0 0; color: #74766f; font: 9px/1.6 var(--mono); }

.e2a-visual { background: var(--blue); padding: clamp(30px, 6vw, 90px); }
.terminal { width: min(620px, 100%); background: #171916; color: #e9eadd; box-shadow: 18px 18px 0 rgba(17,18,15,.22); transform: rotate(-1.5deg); }
.terminal-bar { display: flex; gap: 7px; align-items: center; border-bottom: 1px solid #383a35; padding: 13px; font: 10px var(--mono); color: #83857c; }
.terminal-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ff6d53; }
.terminal-bar i:nth-child(2) { background: #ffce52; }
.terminal-bar i:nth-child(3) { background: #5aca73; }
.terminal-bar span { margin-left: auto; }
.terminal-body { padding: 34px; font: clamp(12px, 1.5vw, 17px)/2 var(--mono); }
.prompt, .success { color: var(--acid); }
.dim { color: #96988e; }
.audio-bars { height: 70px; margin-top: 22px; display: flex; align-items: center; gap: 7px; }
.audio-bars i { width: 5px; height: 25%; background: var(--acid); animation: wave 1.2s ease-in-out infinite alternate; }
.audio-bars i:nth-child(2n) { height: 70%; animation-delay: -.3s; }
.audio-bars i:nth-child(3n) { height: 100%; animation-delay: -.6s; }
@keyframes wave { to { transform: scaleY(.35); opacity: .55; } }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-grid .project-card { display: grid; grid-template-rows: 350px 1fr; min-height: 700px; }
.project-grid .project-copy h3 { margin-top: 64px; }
.jellydisk-visual { background: #c9c4ff; }
.disc { position: absolute; width: 270px; height: 270px; border-radius: 50%; background: repeating-radial-gradient(circle, #eee 0 7px, #c4c6cf 8px 11px); box-shadow: 12px 16px 30px rgba(0,0,0,.15); transform: translateX(85px); }
.disc::after { content: ""; position: absolute; width: 50px; height: 50px; border-radius: 50%; background: #c9c4ff; inset: 0; margin: auto; border: 10px solid #e3e4e9; }
.case { width: 185px; height: 270px; padding: 25px; background: var(--ink); color: white; z-index: 1; transform: translateX(-65px) rotate(-4deg); box-shadow: 10px 12px 0 rgba(17,18,15,.2); }
.case span, .case strong { display: block; font-size: 38px; line-height: .92; }
.case strong { color: var(--acid); }
.case small { display: block; margin-top: 75px; font: 10px/1.5 var(--mono); }
.sound-visual { background: #ffad93; padding: 45px; }
.sound-meter { width: min(460px, 100%); padding: 28px; background: var(--ink); color: white; border: 1px solid var(--ink); box-shadow: 10px 10px 0 rgba(17,18,15,.2); }
.sound-reading { display: flex; align-items: baseline; gap: 8px; }
.sound-reading strong { font-size: clamp(70px, 10vw, 112px); line-height: .9; letter-spacing: -.08em; }
.sound-reading span { color: var(--acid); font: 15px var(--mono); }
.sound-wave { height: 70px; margin: 26px 0 20px; display: flex; align-items: center; gap: 7px; }
.sound-wave i { flex: 1; height: 35%; background: var(--acid); }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(8) { height: 55%; }
.sound-wave i:nth-child(3), .sound-wave i:nth-child(7) { height: 80%; }
.sound-wave i:nth-child(4), .sound-wave i:nth-child(6) { height: 62%; }
.sound-wave i:nth-child(5) { height: 100%; }
.sound-status { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid #53544e; color: #b7b8b2; font: 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.sound-status span:last-child { color: #ff8068; }
.vox-visual { background: #ff9600; color: var(--ink); align-content: center; padding: 20px 30px; }
.vox-visual img { width: min(58%, 230px); aspect-ratio: 1; object-fit: cover; mix-blend-mode: multiply; }
.quote-mark { position: absolute; font: 220px/.8 Georgia; opacity: .12; top: 10px; left: 30px; }
.vox-visual > span { margin-top: 4px; font: 10px/1.35 var(--mono); letter-spacing: .1em; text-align: center; }
.vox-visual > span strong { font: 700 25px var(--sans); letter-spacing: -.04em; }
.voice { display: flex; gap: 6px; align-items: center; position: absolute; }
.voice i { width: 8px; border-radius: 5px; background: var(--ink); }
.voice i:nth-child(1), .voice i:nth-child(5) { height: 25px; }
.voice i:nth-child(2), .voice i:nth-child(4) { height: 55px; }
.voice i:nth-child(3) { height: 85px; }
.voice-a { left: 9%; bottom: 55px; transform: rotate(-10deg); }
.voice-b { right: 9%; top: 55px; transform: rotate(12deg); }
.offline-visual { background: #c8e8ff; padding: 45px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.search-box, .search-result { width: min(480px, 100%); background: white; border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); display: flex; align-items: center; }
.search-box { padding: 18px; gap: 13px; font: 11px var(--mono); color: var(--muted); }
.search-box span:first-child { color: var(--ink); font-size: 24px; }
.search-result { padding: 12px; gap: 14px; transform: translateX(22px); }
.search-result i { width: 70px; height: 50px; flex: none; background: linear-gradient(135deg, var(--blue), #b5bcff); }
.search-result:nth-child(3) i { background: linear-gradient(135deg, var(--orange), #ffc1a9); }
.search-result p { margin: 0; font: 10px/1.6 var(--mono); color: var(--muted); }
.search-result strong { color: var(--ink); }
.itunes-visual { background: #20221e; padding: 40px; color: var(--acid); }
.tui { width: min(490px, 100%); border: 1px solid #747b5b; padding: 18px; font: 10px/2.2 var(--mono); box-shadow: 9px 9px 0 #55621a; }
.tui-title { display: block; border-bottom: 1px solid #747b5b; font-size: 14px; }
.tui div { display: grid; grid-template-columns: 1fr 1.3fr; border-bottom: 1px solid #34372f; }
.tui b { color: white; }
.tui em { font-style: normal; color: #a2a893; }
.tui .playing { display: block; color: var(--ink); background: var(--acid); padding: 2px 8px; margin-top: 12px; }
.tv-visual { background: #f7d052; }
.retro-tv { width: min(390px, 80%); height: 240px; background: var(--ink); border-radius: 25px; padding: 16px 64px 16px 16px; position: relative; box-shadow: 12px 13px 0 rgba(17,18,15,.2); }
.tv-screen { height: 100%; border-radius: 16px 45% 45% 16px / 16px 25% 25% 16px; background: #8c9cff; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.tv-screen::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(17,18,15,.09) 5px); }
.tv-screen span { font: 9px var(--mono); letter-spacing: .18em; }
.tv-screen strong { font-size: 30px; letter-spacing: -.05em; }
.tv-screen i { width: 70%; height: 5px; background: var(--acid); margin-top: 20px; }
.tv-controls { position: absolute; right: 22px; top: 45px; color: #ddd; font-size: 28px; line-height: 1.7; }

.about-section {
  padding: 120px clamp(22px, 6vw, 96px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .3fr 1fr;
  gap: 60px;
}
.about-copy { max-width: 1050px; }
.about-copy h2 { max-width: 850px; }
.about-lead { margin: 48px 0; max-width: 850px; font-size: clamp(22px, 3vw, 38px); line-height: 1.3; letter-spacing: -.035em; }
.about-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; color: var(--muted); line-height: 1.75; }
.capabilities { margin-top: 55px; display: flex; flex-wrap: wrap; gap: 8px; }
.capabilities span { border: 1px solid var(--ink); padding: 10px 13px; font: 11px var(--mono); text-transform: uppercase; }
.current-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border: 1px solid var(--ink);
}
.current-work article { min-height: 190px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.current-work article + article { border-left: 1px solid var(--ink); }
.current-work span { font: 10px var(--mono); text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }
.current-work strong { margin-top: auto; font-size: 20px; }
.current-work p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.current-work a { margin-top: 12px; border-bottom: 1px solid var(--ink); font: 10px var(--mono); text-transform: uppercase; }
.recognition-card {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  margin-top: 26px;
  background: var(--ink);
  color: white;
}
.recognition-card figure { min-height: 560px; margin: 0; overflow: hidden; }
.recognition-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 42%; }
.recognition-copy { padding: clamp(30px, 5vw, 64px); display: flex; flex-direction: column; align-items: flex-start; }
.recognition-copy .eyebrow { color: var(--acid); }
.recognition-copy h3 { max-width: 560px; margin: auto 0 24px; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.recognition-copy > p:not(.eyebrow) { max-width: 600px; margin: 0 0 18px; color: #c3c5bd; line-height: 1.7; }
.recognition-copy strong { color: white; }
.recognition-copy .award-sponsor { font: 10px/1.6 var(--mono); text-transform: uppercase; }
.recognition-copy .project-link { color: white; border-color: var(--acid); margin-top: auto; }

.contact-section { background: var(--ink); color: white; padding: 120px clamp(22px, 8vw, 130px); }
.contact-section h2 { margin: 0; font-size: clamp(55px, 9vw, 130px); line-height: .9; letter-spacing: -.07em; }
.contact-links { margin-top: 60px; display: flex; align-items: center; flex-wrap: wrap; gap: 30px; font: 12px var(--mono); text-transform: uppercase; }

footer { min-height: 100px; padding: 25px clamp(22px, 4vw, 68px); display: flex; justify-content: space-between; align-items: center; font: 10px var(--mono); text-transform: uppercase; }
footer i { margin: 0 7px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .audio-bars i { animation: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .impact-card { max-width: 520px; }
  .featured-project { grid-template-columns: 1fr; }
  .section-heading, .about-section { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .demo-intro, .lab-intro, .audio-comparisons { grid-template-columns: 1fr; }
  .demo-card-featured, .demo-card-comparison { grid-template-columns: 1fr; }
  .demo-card-featured video { margin-top: 20px; }
  .lab-flow { grid-template-columns: 1fr; }
  .lab-flow > i { transform: rotate(90deg); justify-self: center; }
  .recognition-card { grid-template-columns: 1fr; }
  .recognition-card figure { min-height: 520px; max-height: 720px; }
}
@media (max-width: 600px) {
  nav > a:not(.nav-cta) { display: none; }
  .site-header { height: 70px; }
  .hero { padding-top: 72px; }
  h1 { font-size: 56px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .impact-card { margin-right: 10px; }
  .work-section, .about-section { padding-top: 85px; padding-bottom: 85px; }
  .section-heading { margin-bottom: 45px; }
  .project-grid .project-card { grid-template-rows: 290px 1fr; min-height: 650px; }
  .project-copy h3 { margin-top: 45px; }
  .project-visual { min-height: 290px; }
  .e2a-visual { min-height: 380px; padding: 25px; }
  .terminal-body { padding: 22px; }
  .about-columns { grid-template-columns: 1fr; gap: 10px; }
  .current-work { grid-template-columns: 1fr; }
  .current-work article { min-height: 150px; }
  .current-work article + article { border-left: 0; border-top: 1px solid var(--ink); }
  .recognition-card figure { min-height: 430px; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-card-featured, .demo-card-comparison { grid-column: auto; }
  .lab-tools { grid-template-columns: 1fr; }
  .lab-tools article + article { border-left: 0; border-top: 1px solid #44463f; }
  .comparison-heading { grid-template-columns: 1fr; min-height: 0; margin-bottom: 22px; }
  .contact-section { padding-block: 90px; }
  footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}
