:root {
  --ink: #f7f4ef;
  --muted: #b4aaa2;
  --dim: #7d736c;
  --line: rgba(255, 225, 200, 0.12);
  --line-strong: rgba(255, 211, 170, 0.23);
  --glass: rgba(24, 20, 17, 0.58);
  --orange: #ff9f1c;
  --ember: #ff6b00;
  --gold: #ffd166;
  --coral: #ff7849;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1440px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

img { -webkit-user-drag: none; }

html {
  scroll-behavior: smooth;
  scrollbar-color: #7a4a22 #12100f;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 107, 0, .08), transparent 30%),
    radial-gradient(circle at 8% 72%, rgba(255, 159, 28, .055), transparent 28%),
    #121212;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open { overflow: hidden; }

::selection { color: #060809; background: var(--orange); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 24px;
  top: 12px;
  padding: 12px 16px;
  color: #050708;
  background: var(--orange);
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus { transform: none; }

.shader-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: .36;
  filter: blur(13px) saturate(.92) contrast(1.06);
  transform: scale(1.035);
  pointer-events: none;
}

.ascii-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .17;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent 1%, #000 16%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 1%, #000 16%, #000 86%, transparent 100%);
  pointer-events: none;
}

.load-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #121212;
  animation: loaderOut .9s var(--ease) 1.05s forwards;
}

.load-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font: 600 11px/1 monospace;
  letter-spacing: .14em;
}

.load-mark span:first-child { color: var(--ink); font-size: 24px; }
.load-line { width: 80px; height: 1px; background: var(--line); overflow: hidden; }
.load-line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--orange);
  animation: loadLine 1s var(--ease) forwards;
  transform-origin: left;
}

@keyframes loadLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; transform: translateY(-12px); } }

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,235,215,.05), rgba(255,255,255,.01)), var(--glass);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 80px rgba(0,0,0,.26);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1380px, calc(100vw - 36px));
  height: 64px;
  padding: 0 12px 0 18px;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background .3s, border-color .3s, transform .5s var(--ease);
}

.site-header.is-hidden { transform: translate(-50%, -140%); }

.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.brand-word { font-size: 13px; font-weight: 750; letter-spacing: .16em; }

.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: #c3cbd0;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s, background .2s;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; background: rgba(255,255,255,.055); }

.availability {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #cdd4d8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .25s, border-color .25s;
}
.availability:hover { background: rgba(255,255,255,.07); border-color: var(--line-strong); }
.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2.4s infinite;
}
.availability b { color: var(--muted); font-size: 14px; font-weight: 400; }

@keyframes pulse { 50% { opacity: .4; box-shadow: 0 0 4px var(--orange); } }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 132px 0 80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 44px;
  width: 100%;
  align-items: end;
}

.hero-copy { position: relative; z-index: 2; }
.kicker {
  display: inline-block;
  color: #b1a297;
  font: 650 14px/1.35 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .13em;
}

.hero-copy > .kicker { margin: 0 0 28px 1.1vw; }

.display-title {
  margin: 0;
  perspective: 1100px;
  font-size: clamp(68px, 10.1vw, 172px);
  font-weight: 660;
  line-height: .77;
  letter-spacing: -.077em;
  text-transform: uppercase;
}
.title-line { display: block; overflow: hidden; padding: 0 .08em .12em 0; }
.title-line em { display: inline-block; font-style: normal; }
.title-light em {
  color: #fff8ef;
}
.title-line.reveal-complete { overflow: visible; }
.title-light.reveal-complete em {
  text-shadow: none;
  filter: none;
}
.title-offset { padding-left: 8.5vw; }
.title-ghost em {
  color: transparent;
  font-style: italic;
  font-weight: 500;
  -webkit-text-stroke: 1px rgba(255, 210, 170, .55);
  text-shadow: none;
}
.title-holo em {
  color: transparent;
  background: linear-gradient(105deg, #ff6b00 5%, #ff9f1c 25%, #ffd166 44%, #fff0c7 53%, #ffb15a 63%, #ff6b00 88%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 210, 160, .18);
  animation: holographicShift 9s ease-in-out infinite;
}
.title-holo.reveal-complete em {
  filter: none;
}

@keyframes holographicShift { 50% { background-position: 100% 0; } }

.hero-intro {
  align-self: end;
  margin-bottom: 4px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--line-strong);
}
.hero-intro p { margin: 0 0 30px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.hero-intro a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .04em;
}
.hero-intro a span { color: var(--orange); }
.manifesto {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 76vh;
  padding: 140px 12vw;
  overflow: hidden;
  isolation: isolate;
}
.manifesto-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 440;
  line-height: 1.08;
  letter-spacing: -.052em;
}
.manifesto-copy em { color: var(--ember); font-family: Georgia, serif; font-weight: 400; }

.marquee-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1.3vw, 22px);
  transform: rotate(-2deg) scale(1.04);
  pointer-events: none;
}
.marquee-row { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeMove 34s linear infinite;
  will-change: transform;
}
.marquee-reverse .marquee-track { animation-direction: reverse; animation-duration: 39s; }
.marquee-track span {
  flex: none;
  padding-right: .42em;
  color: rgba(255, 244, 233, .026);
  font-size: clamp(64px, 7.8vw, 138px);
  font-weight: 780;
  line-height: .82;
  letter-spacing: -.06em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 159, 28, .055);
}
.marquee-row:nth-child(2) .marquee-track span { color: rgba(255, 159, 28, .03); }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

.work { padding: 100px 0 160px; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 72px; }
.section-head h2,
.capabilities-head h2,
.about-copy h2,
.contact h2 {
  margin: 18px 0 0;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 550;
  line-height: .88;
  letter-spacing: -.068em;
}
.section-head h2 em,
.capabilities-head h2 em,
.about-copy h2 em,
.contact h2 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.section-head h2 { transform: rotate(-.55deg); transform-origin: left center; }
.capabilities-head h2 { transform: rotate(.45deg); transform-origin: left center; }
.about-copy h2 { transform: rotate(-.4deg); transform-origin: left center; }

.work-controls { display: flex; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 13px; background: rgba(0,0,0,.18); }
.filter {
  min-width: 76px;
  height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .04em;
}
.filter span { margin-left: 3px; color: var(--dim); font: 12px/1 monospace; }
.filter.is-active { color: var(--ink); background: rgba(255,255,255,.09); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.filter:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.project-list { display: grid; gap: 92px; }
.work-more { display: flex; justify-content: center; margin-top: 70px; }
.view-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(310px, 100%);
  padding: 17px 18px;
  border-radius: 15px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}
.view-more b { color: var(--orange); font-size: 20px; font-weight: 400; transition: transform .35s var(--ease); }
.view-more[aria-expanded="true"] b { transform: rotate(45deg); }
.project-card { position: relative; transition: opacity .32s, transform .45s var(--ease); }
.project-card.is-hidden { display: none; }
.project-card:nth-child(even) { width: 87%; margin-left: auto; }
.project-open {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, .72fr);
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
}
.project-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  cursor: pointer;
}
.project-card:nth-child(even) .project-open { grid-template-columns: minmax(280px, .72fr) minmax(0, 1.8fr); }
.project-card:nth-child(even) .project-visual { grid-column: 2; }
.project-card:nth-child(even) .project-info { grid-column: 1; grid-row: 1; padding: 32px 42px 28px 0; }
.project-card:nth-child(odd) .project-open { transform: rotate(-.28deg); }
.project-card:nth-child(even) .project-open { transform: rotate(.28deg); }
.project-open { transition: transform .55s var(--ease); }
.project-card:hover .project-open { transform: rotate(0deg) translateY(-3px); }

.project-visual {
  position: relative;
  --cover-rx: -2deg;
  --cover-ry: 4deg;
  --cover-x: 0px;
  --cover-y: 0px;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #161310;
  isolation: isolate;
}
.project-visual::before,
.dialog-visual::before {
  position: absolute;
  inset: -40%;
  z-index: -2;
  content: "";
  background: radial-gradient(circle at 55% 50%, color-mix(in srgb, var(--accent) 52%, transparent), transparent 23%), conic-gradient(from 200deg, transparent, color-mix(in srgb, var(--accent) 22%, transparent), transparent 28%);
}
.project-visual::after,
.dialog-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(255,255,255,.055), transparent 40%), radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 48%);
  pointer-events: none;
}
[data-accent="ember"], [data-dialog-accent="ember"] { --accent: var(--ember); }
[data-accent="orange"], [data-dialog-accent="orange"] { --accent: var(--orange); }
[data-accent="gold"], [data-dialog-accent="gold"] { --accent: var(--gold); }
[data-accent="coral"], [data-dialog-accent="coral"] { --accent: var(--coral); }
.visual-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.dialog-cover-trigger {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.dialog-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.06) brightness(.78) sepia(.08);
  transition: filter .7s var(--ease), transform 1s var(--ease);
}
.dialog-cover-trigger > span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  color: #efe7df;
  background: rgba(10,8,7,.56);
  backdrop-filter: blur(12px);
  font: 650 11px/1 monospace;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s, transform .35s var(--ease);
}
.dialog-cover-trigger:hover .dialog-cover { filter: saturate(.9) contrast(1.04) brightness(.86); transform: scale(1.012); }
.dialog-cover-trigger:hover > span,
.dialog-cover-trigger:focus-visible > span { opacity: 1; transform: none; }
.has-cover::before { opacity: .1; }
.has-cover::after { z-index: 0; background: linear-gradient(180deg, rgba(12,9,7,.08), rgba(12,9,7,.66)), radial-gradient(circle at 75% 15%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 40%); }
.has-cover .visual-grid { z-index: 1; opacity: .09; background-size: 5px 5px; background-image: linear-gradient(rgba(255,189,120,.18) 1px, transparent 1px); pointer-events: none; }
.has-cover .visual-object,
.has-cover > i { display: none; }
.project-cover-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  perspective: 1100px;
  pointer-events: none;
}
.project-cover-float {
  width: min(64%, 340px);
  aspect-ratio: 1;
  transform: translate3d(var(--cover-x), var(--cover-y), 0) rotateX(var(--cover-rx)) rotateY(var(--cover-ry));
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
  will-change: transform;
}
.project-cover-plane {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: coverFloat 5.6s ease-in-out infinite;
}
.project-cover-plane::before {
  position: absolute;
  inset: 5px -8px -9px 7px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: 13px;
  content: "";
  background: rgba(11,8,7,.82);
  box-shadow: 0 42px 85px rgba(0,0,0,.52), 0 0 56px color-mix(in srgb, var(--accent) 12%, transparent);
  transform: translateZ(-18px);
}
.project-cover-plane::after {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  content: "";
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 24%, transparent 68%, color-mix(in srgb, var(--accent) 12%, transparent));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  transform: translateZ(2px);
}
.project-cover {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04) brightness(.92);
  box-shadow: 0 20px 55px rgba(0,0,0,.28);
  transform: translateZ(1px);
  transition: filter .45s;
}
.project-card:hover .project-cover { filter: saturate(1) contrast(1.02) brightness(1); }
@keyframes coverFloat {
  0%, 100% { transform: translateY(-5px) rotateZ(-1.2deg); }
  50% { transform: translateY(8px) rotateZ(.7deg); }
}
.visual-object { position: absolute; inset: 0; display: grid; place-items: center; }
.visual-object > i {
  position: absolute;
  width: min(52%, 350px);
  aspect-ratio: 1.4;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 24px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, transparent), rgba(14,11,9,.62));
  box-shadow: 0 28px 90px color-mix(in srgb, var(--accent) 13%, transparent);
  transform: rotate(-7deg);
  transition: transform .7s var(--ease), border-radius .7s var(--ease);
}
.project-card:nth-child(2) .visual-object > i { aspect-ratio: 1; border-radius: 50%; transform: none; }
.project-card:nth-child(3) .visual-object > i { border-radius: 8px; transform: rotate(6deg); }
.visual-status { position: absolute; z-index: 3; left: 26px; bottom: 23px; display: flex; align-items: center; gap: 10px; }
.visual-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.visual-status b { color: rgba(255,255,255,.72); font: 12px/1 monospace; letter-spacing: .1em; font-weight: 600; }
.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5,7,9,.22);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), background .3s;
}
.project-card:hover .project-arrow { transform: rotate(45deg); background: rgba(255,255,255,.11); }
.project-card:hover .visual-object > i { transform: translateY(-5px) rotate(-3deg); border-radius: 18px; }
.project-hit:focus-visible { outline: 2px solid var(--orange); outline-offset: 8px; }

.project-info { display: flex; flex-direction: column; padding: 32px 0 28px 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #b3a79e; font: 12px/1 monospace; letter-spacing: .1em; }
.project-info h3 { margin: auto 0 18px; font-size: clamp(37px, 4vw, 64px); font-weight: 550; line-height: .92; letter-spacing: -.05em; }
.project-summary { margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.project-stack, .dialog-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.project-stack span, .dialog-stack span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #afa39a;
  font: 12px/1 monospace;
  letter-spacing: .06em;
}

.project-skeleton { width: 100%; height: 510px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.02); overflow: hidden; }
.project-skeleton div { width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.025), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(350%); } }

.capabilities { padding: 120px 0 170px; }
.capabilities-head { display: grid; grid-template-columns: 1.4fr 1fr; column-gap: 100px; margin: 0 7vw 80px 14vw; align-items: end; }
.capabilities-head .kicker { grid-column: 1 / -1; margin-bottom: 18px; }
.capabilities-head p { max-width: 410px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.capability-stage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; perspective: 1200px; }
.capability-mobile-nav { display: none; }
.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border-radius: 24px;
  transform-style: preserve-3d;
  transition: transform .18s ease-out, border-color .3s;
  will-change: transform;
}
.capability-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,159,28,.12), transparent 36%);
  transition: opacity .3s;
}
.capability-card > * { position: relative; z-index: 1; transition: transform .22s ease-out; }
.capability-card.is-tilting > * { transform: translateZ(16px); }
.capability-card.is-tilting { transition-duration: .08s; }
.capability-card:hover { border-color: var(--line-strong); }
.capability-card:hover::after { opacity: 1; }
.cap-domain { color: #aa9b90; font: 650 13px/1 monospace; letter-spacing: .15em; }
.cap-icons {
  display: flex;
  gap: 9px;
  margin: auto 0 22px;
}
.cap-icons span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 222, 194, .13);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.cap-icons span:nth-child(1) { transform: rotate(-4deg); }
.cap-icons span:nth-child(2) { transform: translateY(-3px) rotate(2deg); }
.cap-icons span:nth-child(3) { transform: translateY(2px) rotate(-1deg); }
.cap-icons span:nth-child(4) { transform: rotate(4deg); }
.cap-icons img {
  width: 21px;
  height: 21px;
  opacity: .72;
  filter: invert(80%) sepia(8%) saturate(475%) hue-rotate(338deg) brightness(92%) contrast(88%);
}
.capability-card:hover .cap-icons span { border-color: rgba(255, 190, 130, .25); background: rgba(255,159,28,.045); }
.capability-card:hover .cap-icons span:nth-child(1) { transform: translateY(-2px) rotate(-6deg); }
.capability-card:hover .cap-icons span:nth-child(2) { transform: translateY(-6px) rotate(3deg); }
.capability-card:hover .cap-icons span:nth-child(3) { transform: translateY(-1px) rotate(-2deg); }
.capability-card:hover .cap-icons span:nth-child(4) { transform: translateY(-3px) rotate(6deg); }
.capability-card h3 { margin: 0 0 13px; font-size: 25px; font-weight: 560; letter-spacing: -.025em; }
.capability-card > p { min-height: 74px; margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.capability-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.capability-card li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; color: #c0b4aa; font: 12px/1 monospace; letter-spacing: .05em; }
.capability-card.reveal.is-visible:nth-child(1) { transform: rotate(-.7deg) translateY(8px); }
.capability-card.reveal.is-visible:nth-child(2) { transform: rotate(.45deg) translateY(-7px); }
.capability-card.reveal.is-visible:nth-child(3) { transform: rotate(-.35deg) translateY(5px); }

.about { padding: 110px 0 190px; }
.about-panel { display: grid; grid-template-columns: 1.08fr 1.12fr; min-height: 720px; border-radius: 34px; overflow: hidden; }
.about-visual { position: relative; display: grid; min-width: 0; place-items: center; border-right: 1px solid var(--line); overflow: hidden; perspective: 1200px; }
.about-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .48;
  background-image:
    linear-gradient(rgba(255, 196, 145, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 196, 145, .14) 1px, transparent 1px),
    linear-gradient(rgba(255, 159, 28, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 159, 28, .055) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
  -webkit-mask-image: radial-gradient(circle at center, #000 20%, rgba(0,0,0,.88) 52%, transparent 82%);
  mask-image: radial-gradient(circle at center, #000 20%, rgba(0,0,0,.88) 52%, transparent 82%);
}
.about-visual::after {
  position: absolute;
  inset: 12% 8%;
  z-index: 0;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 126, 20, .18), rgba(255, 159, 28, .045) 44%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.profile-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  animation: profileFloat 5.8s ease-in-out infinite;
  will-change: transform;
}
@keyframes profileFloat {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(7px); }
}
.profile-card {
  position: relative;
  z-index: 1;
  width: min(44%, 290px);
  aspect-ratio: 1;
  margin: 0;
  border-color: rgba(255, 183, 112, .2);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 38px 90px rgba(0,0,0,.38), 0 0 70px rgba(255,107,0,.06);
  transform-style: preserve-3d;
  transition: transform .18s ease-out, border-color .3s, box-shadow .3s;
  will-change: transform;
  animation: profileCardRotate 7.4s ease-in-out infinite;
}
@keyframes profileCardRotate {
  0%, 100% { transform: rotate(-2.1deg); }
  38% { transform: rotate(1.35deg); }
  72% { transform: rotate(-.45deg); }
}
.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: #cbbfb6;
  background: rgba(17,14,12,.56);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  font: 650 12px/1 monospace;
  letter-spacing: .07em;
  transform-origin: 62% 50%;
  animation: profileTagRotate 5.2s ease-in-out infinite;
}
@keyframes profileTagRotate {
  0%, 100% { transform: rotate(1.6deg); }
  46% { transform: rotate(-2.2deg); }
  78% { transform: rotate(.6deg); }
}
.profile-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(255,159,28,.7); }
.profile-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 28%, transparent 70%, rgba(255,126,20,.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  pointer-events: none;
}
.profile-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(16px) scale(1.025);
  transition: filter .3s, transform .25s ease-out;
}
.about-copy { align-self: center; max-width: 650px; padding: 70px clamp(44px, 6vw, 100px); }
.about-copy h2 { font-size: clamp(48px, 5.3vw, 76px); }
.about-copy h2 { margin-bottom: 50px; }
.about-copy > p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.about-copy .about-lead { color: #eee9e3; font-size: 20px; line-height: 1.5; letter-spacing: -.015em; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-stats div { display: flex; flex-direction: column; gap: 7px; }
.about-stats strong { font-size: 27px; font-weight: 520; letter-spacing: -.04em; }
.about-stats span { color: #a99d95; font: 12px/1.35 monospace; text-transform: uppercase; letter-spacing: .07em; }

.contact { position: relative; min-height: 100svh; padding: 120px 0 36px; }
.contact-copy { position: relative; display: grid; justify-items: center; margin-top: 8vh; text-align: center; }
.contact .kicker { color: #b8aaa0; font-size: 14px; }
.contact h2 { font-size: clamp(62px, 8vw, 124px); }
.contact h2 em { color: transparent; -webkit-text-stroke: 1px rgba(255,159,28,.72); text-shadow: 0 0 80px rgba(255,107,0,.08); }
.contact-orb {
  position: absolute;
  right: 8%;
  bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 196px;
  height: 78px;
  padding: 20px;
  border: 1px solid rgba(255,159,28,.42);
  border-radius: 16px;
  color: #fff0dc;
  background: linear-gradient(120deg, rgba(255,107,0,.16), rgba(255,159,28,.06));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 20px 60px rgba(0,0,0,.18);
  font: 650 12px/1.4 monospace;
  letter-spacing: .1em;
  text-align: left;
  cursor: pointer;
  transition: transform .45s var(--ease), background .3s;
}
.contact-orb:hover { transform: translateY(-4px); background: linear-gradient(120deg, rgba(255,107,0,.23), rgba(255,159,28,.1)); }
.contact-orb b { font-size: 18px; font-weight: 400; }
.contact-orb strong { color: var(--orange); font: inherit; }

footer {
  position: absolute;
  left: 0;
  bottom: 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  align-items: end;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
footer > p, footer > span { margin: 0; color: #9f948c; font: 12px/1.6 monospace; letter-spacing: .07em; }
footer > span { justify-self: end; }
footer nav { display: flex; gap: 20px; }
footer nav a,
footer nav button { padding: 0; border: 0; color: var(--muted); background: transparent; cursor: pointer; font: 12px/1 monospace; letter-spacing: .07em; }
footer nav a:hover,
footer nav button:hover { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.title-line.reveal { opacity: 1; transform: none; perspective: 900px; transition: filter 1.35s ease; }
.title-light.reveal {
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0))
    drop-shadow(0 0 32px rgba(255, 255, 255, 0))
    drop-shadow(0 8px 48px rgba(255, 255, 255, 0));
}
.title-holo.reveal {
  filter:
    drop-shadow(0 0 10px rgba(255, 181, 92, 0))
    drop-shadow(0 12px 28px rgba(255, 107, 0, 0));
}
.title-line.reveal em {
  opacity: 0;
  transform: translate3d(0, 116%, -80px) rotateX(-24deg) skewY(2.5deg);
  transform-origin: 50% 100%;
  transition:
    transform 1.25s var(--ease),
    opacity .78s ease;
  will-change: transform, opacity;
}
.hero-title-ready .title-line.reveal.is-visible em { opacity: 1; transform: none; }
.hero-title-ready .title-light.reveal.is-visible {
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, .16))
    drop-shadow(0 0 28px rgba(255, 255, 255, .1))
    drop-shadow(0 8px 46px rgba(255, 255, 255, .065));
}
.hero-title-ready .title-holo.reveal.is-visible {
  filter:
    drop-shadow(0 0 10px rgba(255, 181, 92, .14))
    drop-shadow(0 12px 28px rgba(255, 107, 0, .09));
}
.title-line:nth-child(2) em { transition-delay: .13s; }
.title-line:nth-child(3) em { transition-delay: .26s; }
.title-line:nth-child(2) { transition-delay: .13s; }
.title-line:nth-child(3) { transition-delay: .26s; }

.project-dialog {
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(17,14,12,.94);
  box-shadow: 0 30px 140px rgba(0,0,0,.7);
  backdrop-filter: blur(30px) saturate(120%);
  overflow: auto;
  overscroll-behavior: contain;
}
.project-dialog::backdrop { background: rgba(5,3,2,.8); backdrop-filter: blur(10px); }
.dialog-shell { position: relative; min-height: 690px; }
.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}
.dialog-visual { position: relative; height: clamp(360px, 53vh, 620px); overflow: hidden; border-bottom: 1px solid var(--line); background: #161310; isolation: isolate; }
.dialog-visual > i { position: absolute; top: 50%; left: 50%; width: 260px; height: 180px; border: 1px solid var(--accent); border-radius: 22px; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 30%, transparent), rgba(14,11,9,.7)); box-shadow: 0 28px 90px color-mix(in srgb, var(--accent) 14%, transparent); transform: translate(-50%,-50%) rotate(-7deg); }
.dialog-visual-meta { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.76); font: 650 12px/1 monospace; letter-spacing: .11em; text-transform: uppercase; }
.dialog-visual-meta b { font-weight: 500; }
.dialog-content { max-width: 920px; margin: 0 auto; padding: 76px clamp(28px, 7vw, 96px) 100px; }
.dialog-content h2 { margin: 18px 0 28px; font-size: clamp(50px, 7vw, 94px); line-height: .88; letter-spacing: -.06em; }
.dialog-content > p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.dialog-content .dialog-summary { max-width: 760px; color: #eee9e3; font-size: clamp(18px, 2vw, 23px); line-height: 1.48; }
.dialog-description { max-width: 720px; }
.dialog-content dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 36px 0 26px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dialog-content dl div { display: flex; flex-direction: column; gap: 7px; }
.dialog-content dt { color: #aa9e96; font: 650 12px/1 monospace; text-transform: uppercase; letter-spacing: .1em; }
.dialog-content dd { margin: 0; color: #cfc4bb; font-size: 14px; }
.dialog-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.dialog-links a, .button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 130px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font-size: 12px; font-weight: 650; }
.dialog-links a:hover { border-color: var(--orange); }
.dialog-share { display: flex; align-items: center; gap: 32px; margin-top: 10px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: transparent; cursor: pointer; font-size: 12px; font-weight: 650; }
.dialog-share:hover { color: var(--ink); border-color: var(--line-strong); }
.dialog-article { display: grid; gap: 56px; margin-top: 76px; padding-top: 56px; border-top: 1px solid var(--line); }
.article-section { display: grid; grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 80px); }
.article-section h3 { margin: 0; color: var(--ink); font-size: clamp(24px, 3vw, 38px); font-weight: 520; line-height: 1.03; letter-spacing: -.04em; }
.article-section p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; white-space: pre-line; }
.article-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--line); }
.article-highlights div { min-height: 124px; padding: 22px; background: #171310; }
.article-highlights strong { display: block; margin-bottom: 10px; color: var(--orange); font: 650 12px/1 monospace; letter-spacing: .09em; text-transform: uppercase; }
.article-highlights span { color: #cfc5bd; font-size: 14px; line-height: 1.55; }
.article-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.article-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #15120f; }
.article-image-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.article-image-open::after {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff7ef;
  content: "↗";
  background: rgba(10,8,7,.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s, transform .35s var(--ease);
}
.article-image-open:hover::after,
.article-image-open:focus-visible::after { opacity: 1; transform: none; }
.article-gallery img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.82) contrast(1.03); transition: filter .45s, transform .65s var(--ease); }
.article-image-open:hover img { filter: saturate(1) contrast(1.01); transform: scale(1.018); }
.article-gallery figcaption { padding: 12px 14px; color: #a69b93; font: 12px/1.45 monospace; letter-spacing: .04em; }
.article-video { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #090807; }
.article-video iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 34px clamp(24px, 6vw, 92px);
  border: 0;
  color: var(--ink);
  background: rgba(7,5,4,.94);
  backdrop-filter: blur(28px) saturate(115%);
  overflow: hidden;
}
.image-lightbox[open] { display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px; align-items: center; gap: clamp(12px, 3vw, 44px); }
.image-lightbox::backdrop { background: rgba(0,0,0,.82); }
.image-lightbox figure { display: grid; min-width: 0; max-height: calc(100svh - 68px); margin: 0; place-items: center; }
.image-lightbox img { display: block; max-width: 100%; max-height: calc(100svh - 118px); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; object-fit: contain; box-shadow: 0 36px 120px rgba(0,0,0,.62); }
.image-lightbox figcaption { display: flex; justify-content: space-between; gap: 30px; width: min(100%, 1100px); padding-top: 14px; color: #b9aea6; font-size: 13px; }
.image-lightbox figcaption b { color: var(--orange); font: 650 12px/1.5 monospace; white-space: nowrap; }
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}
.lightbox-nav { width: 54px; height: 54px; border-radius: 50%; cursor: pointer; font-size: 20px; }
.lightbox-prev { justify-self: end; }
.lightbox-next { justify-self: start; }
@media (hover: none) {
  .dialog-cover-trigger > span,
  .article-image-open::after { opacity: .88; transform: none; }
}
.site-toast { position: fixed; z-index: 1001; left: 50%; bottom: 28px; min-width: 230px; padding: 14px 18px; border-radius: 14px; color: #f6ede4; font-size: 12px; font-weight: 650; text-align: center; opacity: 0; transform: translate(-50%, 18px); transition: opacity .3s, transform .4s var(--ease); }
.site-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.error-page { display: grid; min-height: 100svh; place-items: center; background: radial-gradient(circle at 80% 20%, rgba(255,107,0,.16), transparent 35%), #121212; }
.error-panel { width: min(540px, calc(100vw - 40px)); padding: 54px; border-radius: 28px; }
.error-panel h1 { margin: 18px 0 24px; font-size: clamp(72px, 15vw, 130px); line-height: .78; letter-spacing: -.08em; }
.error-panel p { color: var(--muted); }
.error-panel .button { width: max-content; margin-top: 22px; }
.button-primary { background: rgba(255,107,0,.11); border-color: rgba(255,159,28,.34); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 220px; gap: 30px; }
  .display-title { font-size: clamp(76px, 13vw, 140px); }
  .title-offset { padding-left: 3vw; }
  .manifesto { padding-inline: 8vw; }
  .project-card:nth-child(even) { width: 94%; }
  .capabilities-head { margin-inline: 8vw 3vw; }
  .capability-card { min-height: 380px; }
  .about-panel { grid-template-columns: .85fr 1.15fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 18px; }
  footer nav, footer > span { justify-self: end; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); }
  body { font-size: 15px; }
  .ascii-field { opacity: .13; }
  .site-header { top: 10px; grid-template-columns: 1fr auto; width: calc(100vw - 20px); height: 58px; border-radius: 15px; }
  .desktop-nav, .availability { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 40px; height: 40px; padding: 10px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; }
  .menu-toggle i { display: block; width: 19px; height: 1px; background: var(--ink); transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 78px 10px auto; z-index: 49; padding: 18px; border-radius: 18px; opacity: 0; transform: translateY(-12px); visibility: hidden; transition: opacity .3s, transform .3s var(--ease), visibility .3s; }
  .mobile-menu.is-open { display: block; opacity: 1; transform: none; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { display: flex; align-items: center; gap: 16px; padding: 17px 6px; border-bottom: 1px solid var(--line); font-size: 18px; letter-spacing: -.02em; }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu small { color: #8c8179; font: 10px/1 monospace; }
  .hero { min-height: 820px; padding: 140px 0 100px; align-items: start; }
  .hero-grid { display: block; }
  .hero-copy > .kicker { margin-left: 0; }
  .display-title { font-size: clamp(58px, 20.3vw, 112px); line-height: .83; }
  .title-offset { padding-left: 0; }
  .hero-intro { max-width: 300px; margin-top: 64px; }
  .manifesto { display: block; min-height: auto; padding: 130px 0; }
  .manifesto-copy { width: var(--shell); margin: 60px auto 50px; font-size: clamp(36px, 12vw, 58px); }
  .marquee-field { gap: 14px; transform: rotate(-3deg) scale(1.08); }
  .marquee-track span { font-size: clamp(62px, 23vw, 104px); line-height: .9; }
  .work { padding: 70px 0 120px; }
  .section-head { display: block; margin-bottom: 50px; }
  .section-head h2, .capabilities-head h2, .about-copy h2 { font-size: clamp(49px, 16vw, 75px); }
  .work-controls { width: max-content; margin-top: 34px; }
  .filter { min-width: 68px; }
  .project-list { gap: 54px; }
  .work-more { margin-top: 48px; }
  .project-card:nth-child(even) { width: 100%; margin: 0; }
  .project-open, .project-card:nth-child(even) .project-open { display: flex; flex-direction: column; }
  .project-card:nth-child(even) .project-visual, .project-card:nth-child(even) .project-info { grid-column: auto; grid-row: auto; }
  .project-visual { width: 100%; min-height: 390px; border-radius: 23px; }
  .project-info, .project-card:nth-child(even) .project-info { width: 100%; min-height: 230px; padding: 25px 6px 22px; border-top: 0; }
  .project-info h3 { margin: 45px 0 14px; }
  .project-summary { max-width: 540px; }
  .capabilities { padding: 80px 0 120px; }
  .capabilities-head { display: block; margin: 65px 0 50px; }
  .capabilities-head h2 { margin-bottom: 28px; }
  .capability-stage { display: flex; align-items: stretch; width: calc(100vw - 18px); gap: 12px; min-height: 492px; padding: 12px 18px 24px 0; overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .capability-stage::-webkit-scrollbar { display: none; }
  .capability-card { flex: 0 0 85vw; min-height: 456px; scroll-snap-align: center; }
  .capability-mobile-nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; padding-right: 2px; }
  .capability-mobile-nav button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border-radius: 50%; color: var(--ink); cursor: pointer; font-size: 18px; transition: opacity .25s, border-color .25s, transform .3s var(--ease); }
  .capability-mobile-nav button:active { transform: scale(.93); }
  .capability-mobile-nav button:disabled { opacity: .28; cursor: default; }
  .about { padding: 70px 0 130px; }
  .about-panel { display: block; }
  .about-visual { min-height: 500px; border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-card { width: min(54vw, 280px); border-radius: 50%; }
  .about-copy { padding: 60px 28px; }
  .about-copy h2 { margin-bottom: 35px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats div { display: grid; grid-template-columns: 80px 1fr; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
  .contact { min-height: 900px; padding-top: 100px; }
  .contact-copy { margin-top: 120px; }
  .contact h2 { font-size: clamp(62px, 18vw, 94px); }
  .contact-orb { right: 0; bottom: -96px; width: 178px; height: 72px; }
  footer { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  footer > p { display: none; }
  footer nav { justify-self: end; }
  footer > span { grid-column: 1 / -1; justify-self: start; }
  .project-dialog { width: calc(100vw - 20px); max-height: calc(100svh - 20px); border-radius: 24px; }
  .dialog-shell { min-height: 0; }
  .dialog-visual { height: 300px; }
  .dialog-visual > i { width: 190px; height: 132px; }
  .dialog-content { padding: 48px 26px 40px; }
  .dialog-content h2 { font-size: 52px; }
  .dialog-content dl { grid-template-columns: 1fr; }
  .article-section { display: block; }
  .article-section h3 { margin-bottom: 20px; }
  .article-highlights, .article-gallery { grid-template-columns: 1fr; }
  .dialog-article { gap: 44px; margin-top: 58px; padding-top: 42px; }
  .image-lightbox { padding: 70px 16px 20px; }
  .image-lightbox[open] { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) auto; gap: 14px; }
  .image-lightbox figure { grid-column: 1 / -1; grid-row: 1; max-height: calc(100svh - 150px); }
  .image-lightbox img { max-height: calc(100svh - 205px); }
  .image-lightbox figcaption { font-size: 12px; }
  .lightbox-nav { width: 48px; height: 48px; }
  .lightbox-prev { grid-column: 1; grid-row: 2; justify-self: end; }
  .lightbox-next { grid-column: 2; grid-row: 2; justify-self: start; }
  .lightbox-close { top: 12px; right: 12px; }
  .site-toast { bottom: 18px; width: calc(100vw - 36px); }
  .error-panel { padding: 34px; }
}

@media (max-width: 390px) {
  .display-title { font-size: 19vw; }
  .project-visual { min-height: 340px; }
  .capability-card { flex-basis: 88vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .shader-field { opacity: .22; }
  .ascii-field { opacity: .1; }
  .reveal { opacity: 1; transform: none; }
  .title-line.reveal em { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #d0c4ba; --dim: #a99c92; --line: rgba(255,255,255,.3); }
  .shader-field { opacity: .28; }
  .ascii-field { opacity: .2; }
}
