:root {
  color-scheme: dark;
  --bg: #060607;
  --panel: rgba(242, 241, 236, 0.03);
  --panel-strong: rgba(242, 241, 236, 0.07);
  --line: rgba(242, 241, 236, 0.13);
  --line-strong: rgba(242, 241, 236, 0.32);
  --text: #f2f1ec;
  --muted: rgba(242, 241, 236, 0.66);
  --soft: rgba(242, 241, 236, 0.42);
  --signal: #56d364;
  --phosphor: #8affab;
  --phosphor-dim: rgba(86, 211, 100, 0.62);
  --glow: 0 0 7px rgba(86, 211, 100, 0.45);
  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 48px);
  --display: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Cascadia Code", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% -10%, rgba(242, 241, 236, 0.055), transparent 46%);
}

/* a faint ASCII starfield behind everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="520" height="520"><g fill="%23f2f1ec" font-family="monospace"><text x="42" y="64" font-size="11" opacity="0.09">·</text><text x="188" y="38" font-size="9" opacity="0.07">+</text><text x="341" y="92" font-size="12" opacity="0.1">*</text><text x="472" y="150" font-size="9" opacity="0.06">·</text><text x="96" y="204" font-size="10" opacity="0.08">:</text><text x="262" y="248" font-size="9" opacity="0.06">·</text><text x="414" y="286" font-size="11" opacity="0.09">·</text><text x="58" y="342" font-size="9" opacity="0.06">+</text><text x="210" y="398" font-size="12" opacity="0.1">·</text><text x="356" y="430" font-size="9" opacity="0.07">*</text><text x="122" y="474" font-size="10" opacity="0.08">·</text><text x="470" y="496" font-size="9" opacity="0.06">:</text></g></svg>');
  background-size: 520px 520px;
}

::selection {
  background: rgba(86, 211, 100, 0.28);
}

/* ---------- CRT scanline + vignette overlay ---------- */

.crt {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0.16) 3px,
      rgba(0, 0, 0, 0) 4px
    ),
    radial-gradient(ellipse at 50% 40%, transparent 56%, rgba(3, 5, 4, 0.6) 100%);
}

.crt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(86, 211, 100, 0.03), rgba(86, 211, 100, 0));
  animation: crt-flicker 5.5s steps(60) infinite;
}

@keyframes crt-flicker {
  0%, 96%, 100% { opacity: 0.5; }
  97% { opacity: 0.22; }
  98% { opacity: 0.7; }
  99% { opacity: 0.35; }
}

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--line-strong);
  outline-offset: 3px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-top: 26px;
  z-index: 2;
}

.brand {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand::after {
  content: "_";
  margin-left: 2px;
  color: var(--signal);
  font-family: var(--mono);
  text-shadow: var(--glow);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.site-nav {
  display: flex;
  gap: 26px;
}

.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.nav-contact,
.nav-link[aria-current="page"] {
  color: var(--text);
}

/* ---------- shared type ---------- */

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.eyebrow::before {
  content: "// ";
  color: var(--phosphor-dim);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  letter-spacing: -0.035em;
}

.section {
  padding-top: 96px;
}

.section-head {
  position: relative;
  margin-bottom: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* a green data-tick riding the section rule */
.section-head::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--signal);
  box-shadow: var(--glow);
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 5.6vw, 4.8rem);
}

.inline-link {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-strong);
  transition: color 160ms ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--text);
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.button-primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--panel-strong);
  border-color: var(--line-strong);
  color: var(--text);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 76px;
}

/* the galaxy fills the whole viewport behind the copy (and the header) */
.hero-sky,
.hero-scrim {
  position: absolute;
  top: -76px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-sky canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(6, 6, 7, 0.72), rgba(6, 6, 7, 0.32) 44%, transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

/* terminal prompt */
.term-line {
  margin: 0 0 4px;
  font-family: var(--mono);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.term-user {
  color: var(--phosphor-dim);
  text-shadow: var(--glow);
}

.term-punc {
  color: var(--soft);
}

.term-path {
  color: var(--muted);
}

.term-punc + .term-cmd,
.term-cmd {
  color: var(--text);
  margin-left: 0.5ch;
}

.term-cursor {
  color: var(--signal);
  text-shadow: var(--glow);
  animation: blink 1.05s steps(1) infinite;
}

.term-arrow {
  color: var(--phosphor-dim);
  text-shadow: var(--glow);
}

/* ASCII name banner */
.name-banner {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--phosphor-dim);
  text-shadow: var(--glow);
  white-space: pre;
  line-height: 1.05;
  overflow: hidden;
}

.name-banner-full {
  font-size: clamp(9px, 1.52vw, 14px);
}

.name-banner-mini {
  display: none;
  font-size: clamp(15px, 6.4vw, 26px);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.9rem, 6.3vw, 5.8rem);
}

.hero-text {
  max-width: 34rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-rail span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.stage-caption {
  position: absolute;
  right: 0;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--soft);
}

.stat-dot {
  color: var(--signal);
  text-shadow: var(--glow);
  animation: blink 2.4s steps(1) infinite;
}

/* ---------- flagship ---------- */

.flagship {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.flagship-eyebrow {
  color: var(--muted);
}

.flagship h3 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}

.flagship-lede {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.flagship-pillars {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.flagship-pillars li {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pillar-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text);
}

.pillar-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.flagship-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.flagship-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  min-width: 0;
  transition: transform 220ms ease;
}

.flagship-visual:hover {
  transform: translateY(-3px);
}

.flagship-shot {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--panel);
}

/* the mini-bar already has its own rounded frame — no extra border/background */
.flagship-strip {
  width: auto;
  max-width: 330px;
  align-self: start;
}

/* ---------- work rail ---------- */

.work-rail {
  margin-top: 72px;
}

.work-rail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}

.rail-hint {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--soft);
}

.rail-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  cursor: grab;
}

.rail-viewport::-webkit-scrollbar {
  display: none;
}

.rail-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.rail-track {
  display: flex;
  gap: 18px;
  padding-bottom: 8px;
}

.work-card {
  flex: 0 0 clamp(264px, 30vw, 344px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  scroll-snap-align: start;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.card-thumb-type {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 241, 236, 0.06), transparent 52%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="260" height="260"><g fill="%23f2f1ec" font-family="monospace"><text x="28" y="42" font-size="10" opacity="0.14">·</text><text x="122" y="30" font-size="9" opacity="0.11">+</text><text x="212" y="66" font-size="11" opacity="0.15">*</text><text x="66" y="112" font-size="9" opacity="0.1">:</text><text x="176" y="140" font-size="10" opacity="0.13">·</text><text x="34" y="196" font-size="9" opacity="0.1">*</text><text x="132" y="228" font-size="11" opacity="0.14">·</text><text x="228" y="204" font-size="9" opacity="0.1">+</text></g></svg>'),
    var(--panel);
  background-size: auto, 260px 260px, auto;
}

.type-letter {
  position: absolute;
  left: 20px;
  bottom: 4px;
  font-family: var(--display);
  font-style: italic;
  font-size: 5.4rem;
  line-height: 1;
  color: var(--soft);
}

.type-stack {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}

.card-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.card-foot {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--soft);
}

.rail-more {
  display: inline-block;
  margin-top: 22px;
}

/* ---------- project library ---------- */

.lib-intro {
  max-width: 36rem;
  margin: -16px 0 38px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.lib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.lib-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.lib-card:hover,
.lib-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.lib-status {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.lib-open {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--soft);
}

/* ---------- project dialogs ---------- */

.project-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 56px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: #0a0a0c;
  color: var(--text);
}

.project-dialog::backdrop {
  background: rgba(4, 4, 5, 0.74);
}

body:has(dialog[open]) {
  overflow: hidden;
}

.dialog-inner {
  padding: 26px 30px 34px;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.dialog-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 15px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
}

.project-dialog h3 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.dialog-media {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dialog-media img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
}

.dialog-media img.dialog-mini {
  width: auto;
  max-width: 330px;
  border: none;
  background: none;
}

.dialog-media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-dialog p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.dialog-stack {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

/* ---------- repos ---------- */

.repo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.repo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.repo-link {
  display: block;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
  transition: background-color 160ms ease;
}

.repo-link:hover .repo-name,
.repo-link:focus-visible .repo-name {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-strong);
}

.repo-id {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.repo-name {
  font-size: 15px;
  font-weight: 600;
}

.repo-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.repo-desc {
  display: block;
  margin-top: 8px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.repo-all {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 26px;
}

/* ---------- spinning ASCII donut — background of the contact section ---------- */

.donut {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  z-index: 0;
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(9px, 1.7vw, 15px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--signal);
  text-shadow: 0 0 8px rgba(86, 211, 100, 0.5);
  white-space: pre;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* on narrower screens the tall donut would sit on top of the buttons — hide it */
@media (max-width: 1200px) {
  .donut {
    display: none;
  }

  .contact-strip {
    min-height: 0;
  }
}

/* ---------- contact ---------- */

.contact-strip {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding-bottom: 8px;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-strip .eyebrow {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-strip h2 {
  margin-top: 16px;
  max-width: 22ch;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.contact-email {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  transition: color 160ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--text);
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 88px;
  padding-top: 22px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.site-footer a {
  color: var(--soft);
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .flagship {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .flagship-visual {
    max-width: 560px;
  }

  .repo-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 76px);
    padding-top: 40px;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(6, 6, 7, 0.7) 26%, rgba(6, 6, 7, 0.34) 58%, transparent 84%);
  }

  .section {
    padding-top: 72px;
  }
}

@media (max-width: 700px) {
  .name-banner-full {
    display: none;
  }

  .name-banner-mini {
    display: block;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.6rem);
  }

  .term-line {
    font-size: 11px;
  }

  .stage-caption {
    position: static;
    margin-top: 30px;
  }

  .flagship-pillars li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .work-card {
    flex-basis: min(84vw, 320px);
  }
}

/* ---------- reduced motion ---------- */

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .work-card,
  .flagship-visual {
    transition: none;
  }

  .crt::after,
  .brand::after,
  .term-cursor,
  .stat-dot {
    animation: none;
  }
}
