:root {
  --void: #090b10;
  --ink: #11141d;
  --graphite: #2b2b2b;
  --panel: rgba(13, 15, 22, 0.84);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --text: #f0ebff;
  --soft: #b7aee6;
  --muted: #8f95a7;
  --pink: #ff8ee8;
  --violet: #b794f4;
  --mint: #91ffd1;
  --amber: #ffd66e;
  --red: #ff6f91;
  --line: rgba(240, 235, 255, 0.13);
  --line-strong: rgba(240, 235, 255, 0.24);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--void);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--soft);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 142, 232, 0.08), transparent 28%, transparent 72%, rgba(145, 255, 209, 0.10)),
    linear-gradient(180deg, rgba(183, 148, 244, 0.08), transparent 22%, rgba(9, 38, 37, 0.42) 58%, rgba(5, 6, 10, 0.62)),
    linear-gradient(135deg, #05060a 0%, #0b0f19 48%, #102725 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%, 100% 100%, 100% 100%;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.08;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(240, 235, 255, 0.18) 3px),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 142, 232, 0.12) 19px);
  mix-blend-mode: screen;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--void);
  background: var(--mint);
}

.sr-only,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--void);
  background: var(--mint);
  font-weight: 800;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 2;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(var(--max), calc(100% - 28px));
  min-height: 62px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 14, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 36%, var(--pink) 36% 60%, transparent 60%),
    linear-gradient(180deg, transparent 0 39%, var(--violet) 39% 62%, transparent 62%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 5px rgba(255, 142, 232, 0.12);
  animation: markBeat 2.4s steps(2, end) infinite;
}

.brand__copy {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
}

.brand__caption {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.menu a,
.topbar__cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--soft);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu a[aria-current="page"] {
  color: var(--mint);
  border-color: rgba(145, 255, 209, 0.26);
  background: rgba(145, 255, 209, 0.055);
  outline: none;
}

.menu a:hover,
.menu a:focus-visible {
  transform: translateY(-2px);
}

.topbar__cta {
  justify-self: end;
  color: #151019;
  border-color: var(--pink);
  background: var(--pink);
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  color: #07100d;
  border-color: var(--mint);
  background: var(--mint);
  outline: none;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.station {
  position: relative;
  min-height: 88svh;
  padding: 112px 0 54px;
  overflow: hidden;
}

.ticker {
  position: absolute;
  top: 95px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(240, 235, 255, 0.08);
  color: rgba(240, 235, 255, 0.30);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerMove 20s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-around;
  min-width: 100vw;
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px clamp(24px, 4vw, 72px);
}

.station__shell {
  --station-module-height: 690px;
  display: grid;
  grid-template-columns: minmax(430px, 0.52fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 52px;
}

.station__intro {
  position: relative;
  display: grid;
  align-content: center;
  align-self: stretch;
  justify-items: center;
  min-height: var(--station-module-height);
  padding: 82px 30px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(145deg, rgba(43, 43, 43, 0.64), rgba(9, 11, 16, 0.86));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  text-align: center;
  transform: rotate(-0.8deg);
}

.station__intro::before,
.station__intro::after {
  position: absolute;
  right: 28px;
  left: 28px;
  height: 28px;
  border: 1px solid rgba(145, 255, 209, 0.24);
  border-radius: 6px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(145, 255, 209, 0.05) 16%, rgba(145, 255, 209, 0.86) 42%, rgba(255, 142, 232, 0.56) 56%, transparent 76%) -190px 0 / 190px 100% no-repeat,
    repeating-linear-gradient(90deg, rgba(145, 255, 209, 0.30) 0 24px, rgba(5, 10, 14, 0.76) 24px 38px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 26px rgba(145, 255, 209, 0.10);
  content: "";
  z-index: 0;
}

.station__intro::before {
  top: 22px;
  animation: ticketSlide 3.7s linear infinite;
}

.station__intro::after {
  bottom: 22px;
  border-color: rgba(255, 142, 232, 0.18);
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 142, 232, 0.04) 16%, rgba(255, 142, 232, 0.70) 42%, rgba(145, 255, 209, 0.48) 56%, transparent 76%) -190px 0 / 190px 100% no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 142, 232, 0.20) 0 24px, rgba(5, 10, 14, 0.78) 24px 38px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 22px rgba(255, 142, 232, 0.08);
  opacity: 0.88;
  animation: ticketSlide 4.4s linear infinite reverse;
}

.station__intro > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  line-height: 1.12;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1rem;
}

.station__intro p:not(.eyebrow) {
  max-width: 36ch;
  margin-top: 16px;
  color: var(--soft);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.58;
}

.station__intro h1 {
  max-width: 12ch;
  font-size: 2.3rem;
  line-height: 1.08;
}

.station__intro h1 span {
  display: block;
  white-space: nowrap;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 390px);
  margin-top: 28px;
}

.quick-actions a,
.shuffle-weird,
.contact-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  text-decoration: none;
  transition: transform 170ms ease, color 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.quick-actions a {
  min-width: 0;
  font-size: 0.86rem;
  line-height: 1.18;
  text-align: center;
}

.quick-actions a:first-child,
.contact-form button {
  color: #140e18;
  border-color: var(--pink);
  background: var(--pink);
}

.quick-actions a:hover,
.quick-actions a:focus-visible,
.shuffle-weird:hover,
.shuffle-weird:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  color: #07100d;
  border-color: var(--mint);
  background: var(--mint);
  box-shadow: 0 0 36px rgba(145, 255, 209, 0.24);
  outline: none;
  transform: translateY(-2px);
}

.hero-services {
  position: relative;
  align-self: stretch;
  min-height: var(--station-module-height);
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(145, 255, 209, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 142, 232, 0.075), transparent 26%, transparent 70%, rgba(145, 255, 209, 0.085)),
    linear-gradient(90deg, rgba(240, 235, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.028) 1px, transparent 1px),
    rgba(8, 9, 14, 0.78);
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  isolation: isolate;
}

.hero-services::before,
.hero-services::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-services::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(145, 255, 209, 0.08) 43%, transparent 53% 100%),
    radial-gradient(circle at 12% 12%, rgba(255, 142, 232, 0.14), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(145, 255, 209, 0.12), transparent 32%);
  opacity: 0.82;
  transform: translateX(-58%);
  animation: bentoSweep 10s ease-in-out infinite;
}

.hero-services::after {
  right: -80px;
  bottom: 54px;
  z-index: -1;
  width: 260px;
  height: 150px;
  border: 1px solid rgba(145, 255, 209, 0.10);
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(145, 255, 209, 0.12) 16% 18%, transparent 18% 40%, rgba(255, 142, 232, 0.12) 40% 42%, transparent 42%),
    linear-gradient(180deg, rgba(240, 235, 255, 0.06), transparent);
  opacity: 0.62;
  transform: rotate(-7deg);
}

.hero-services__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 48px;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(240, 235, 255, 0.10);
}

.hero-services__head .eyebrow {
  margin: 0;
}

.hero-services__head h2 {
  color: var(--mint);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.hero-services__head span {
  justify-self: end;
  padding: 7px 9px;
  border: 1px solid rgba(145, 255, 209, 0.26);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(145, 255, 209, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-slider {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 224px;
  gap: 12px;
  min-height: 602px;
  padding-top: 12px;
}

.service-slider__stage {
  position: relative;
  min-width: 0;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 142, 232, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.03) 1px, transparent 1px),
    rgba(5, 8, 13, 0.62);
  background-size: auto, 24px 24px, 24px 24px, auto;
}

.service-slider__stage::before,
.service-slider__stage::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.service-slider__stage::before {
  inset: 18px;
  border: 1px solid rgba(145, 255, 209, 0.08);
  opacity: 0.8;
}

.service-slider__stage::after {
  right: -92px;
  bottom: 42px;
  width: 300px;
  height: 146px;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(145, 255, 209, 0.15) 16% 18%, transparent 18% 34%, rgba(255, 142, 232, 0.13) 34% 36%, transparent 36% 100%),
    linear-gradient(180deg, rgba(240, 235, 255, 0.06), transparent);
  opacity: 0.54;
  transform: rotate(-8deg);
}

.service-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.985);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 420ms ease;
}

.service-slider[data-direction="prev"] .service-slide {
  transform: translateX(-24px) scale(0.985);
}

.service-slide::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 22%, color-mix(in srgb, var(--slide-accent) 20%, transparent), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--slide-accent) 12%, transparent), transparent 48%);
  content: "";
  opacity: 0.9;
}

.service-slide::after {
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: color-mix(in srgb, var(--slide-accent) 18%, transparent);
  content: attr(aria-hidden);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0;
}

.service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.service-slide.is-active .service-slide__top,
.service-slide.is-active .service-slide__label,
.service-slide.is-active h3,
.service-slide.is-active > p,
.service-slide.is-active .service-slide__note {
  animation: serviceTextIn 520ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.service-slide.is-active .service-slide__label {
  animation-delay: 45ms;
}

.service-slide.is-active h3 {
  animation-delay: 80ms;
}

.service-slide.is-active > p {
  animation-delay: 125ms;
}

.service-slide.is-active .service-slide__note {
  animation-delay: 170ms;
}

.service-slide > * {
  position: relative;
  z-index: 1;
}

.service-slide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(240, 235, 255, 0.48);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.service-slide__top i {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--slide-accent) 38%, transparent);
  border-radius: 6px;
  color: var(--slide-accent);
  background: color-mix(in srgb, var(--slide-accent) 9%, transparent);
  font-size: 0.72rem;
  font-style: normal;
}

.service-slide__label {
  margin: 42px 0 0;
  color: var(--slide-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-slide h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.service-slide > p:not(.service-slide__label) {
  max-width: 46ch;
  margin: 0;
  color: rgba(240, 235, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.service-slide__note {
  align-self: end;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  max-width: 470px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--slide-accent) 28%, rgba(240, 235, 255, 0.08));
  border-radius: var(--radius);
  background: rgba(5, 8, 13, 0.58);
}

.service-slide__note span {
  color: var(--slide-accent);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-slide__note p {
  margin: 0;
  color: rgba(240, 235, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
}

.service-slider__nav {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
}

.service-slider__counter {
  display: flex;
  min-height: 68px;
  align-items: end;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(145, 255, 209, 0.08), transparent 58%),
    rgba(5, 8, 13, 0.62);
}

.service-slider__counter span {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.52rem;
  font-weight: 900;
  line-height: 0.9;
}

.service-slider__counter small {
  color: rgba(240, 235, 255, 0.42);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.service-tabs {
  display: grid;
  align-content: start;
  gap: 6px;
}

.service-tab {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(240, 235, 255, 0.11);
  border-radius: var(--radius);
  color: rgba(240, 235, 255, 0.48);
  background: rgba(5, 8, 13, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-tab::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-tab span {
  color: rgba(240, 235, 255, 0.32);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.58rem;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  color: var(--text);
  border-color: rgba(145, 255, 209, 0.30);
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.10), transparent 70%),
    rgba(5, 8, 13, 0.74);
}

.service-tab:hover,
.service-tab:focus-visible {
  transform: translateX(-2px);
}

.service-tab.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-slider__controls {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 84px;
  gap: 7px;
  align-items: stretch;
}

.service-slider__controls button {
  min-height: 38px;
  padding: 8px;
  border: 1px solid rgba(240, 235, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(240, 235, 255, 0.72);
  background: rgba(5, 8, 13, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-slider__controls button:hover,
.service-slider__controls button:focus-visible {
  color: var(--mint);
  border-color: rgba(145, 255, 209, 0.34);
  background: rgba(145, 255, 209, 0.08);
  transform: translateY(-2px);
}

.service-slider__progress {
  position: relative;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.05) 1px, transparent 1px),
    rgba(5, 8, 13, 0.56);
  background-size: 12px 100%, auto;
}

.service-slider__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--service-progress);
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.92), rgba(255, 142, 232, 0.72));
  box-shadow: 0 0 24px rgba(145, 255, 209, 0.22);
  transition: width 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tiny-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1280px, calc(100% - 32px));
  margin: 14px auto 0;
}

.tiny-proof span {
  flex: 1 1 120px;
  min-height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(8, 9, 14, 0.62);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tiny-proof span:hover {
  color: var(--mint);
  border-color: rgba(145, 255, 209, 0.36);
  transform: translateY(-2px);
}

.idea-cta,
.service-map,
.strange,
.lab,
.contact {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 112px;
}

.lab {
  padding: 58px 0 64px;
}

.idea-cta {
  padding: 36px 0 72px;
}

.idea-composer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  min-height: 282px;
  padding: 18px 0 20px;
  isolation: isolate;
}

.idea-composer::before,
.idea-composer::after {
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
  content: "";
}

.idea-composer::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 142, 232, 0.28), rgba(145, 255, 209, 0.26), transparent);
}

.idea-composer::after {
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 255, 209, 0.18), transparent 76%);
}

.idea-composer__copy {
  position: relative;
  display: grid;
  gap: 15px;
  min-width: 0;
  padding-left: 26px;
}

.idea-composer__copy::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink), var(--mint));
  box-shadow: 0 0 22px rgba(255, 142, 232, 0.18);
  content: "";
}

.idea-composer__copy .eyebrow {
  margin: 0;
}

.idea-composer__copy h2 {
  max-width: 18ch;
  font-size: 2.05rem;
  line-height: 1.08;
}

.idea-composer__copy p:not(.eyebrow) {
  max-width: 62ch;
  color: rgba(240, 235, 255, 0.70);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.62;
}

.idea-composer__dock {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.idea-composer__dock::before {
  position: absolute;
  right: 8px;
  bottom: 24px;
  width: 74%;
  height: 88px;
  background:
    repeating-linear-gradient(90deg, rgba(145, 255, 209, 0.12) 0 10px, transparent 10px 26px);
  content: "";
  opacity: 0.42;
  transform: skewX(-18deg);
}

.idea-composer__draft {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 142px;
  padding: 20px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(145, 255, 209, 0.10), transparent 42%),
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.03) 1px, transparent 1px),
    rgba(5, 8, 13, 0.70);
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.2deg);
  transition: border-color 180ms ease, transform 180ms ease;
}

.idea-composer__draft::after {
  display: inline-block;
  width: 11px;
  height: 1.1em;
  margin-top: 2px;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(145, 255, 209, 0.34);
  content: "";
  animation: composerCursor 900ms steps(2, end) infinite;
}

.idea-composer__draft span {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.idea-composer__draft p {
  max-width: 32ch;
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.42;
}

.idea-composer__button {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  justify-self: end;
  min-width: min(100%, 330px);
  min-height: 58px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 142, 232, 0.34);
  border-radius: var(--radius);
  color: #160d19;
  background: var(--pink);
  box-shadow: 0 18px 38px rgba(255, 142, 232, 0.18);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.idea-composer__button span {
  font-size: 0.78rem;
  line-height: 1.2;
}

.idea-composer__button b {
  display: inline-flex;
  min-width: 64px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 13, 25, 0.30);
  border-radius: 6px;
  color: rgba(22, 13, 25, 0.78);
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.62rem;
  font-weight: 900;
}

.idea-composer__button:hover,
.idea-composer__button:focus-visible {
  background: #ff70df;
  box-shadow:
    0 22px 42px rgba(255, 142, 232, 0.26),
    0 0 0 1px rgba(255, 142, 232, 0.18);
  transform: translateY(-2px);
}

.idea-composer__dock:has(.idea-composer__button:hover) .idea-composer__draft,
.idea-composer__dock:has(.idea-composer__button:focus-visible) .idea-composer__draft {
  border-color: rgba(145, 255, 209, 0.30);
  transform: rotate(-0.6deg) translateY(-2px);
}

.service-map {
  padding-top: 88px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.service-chomp {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.service-chomp::before {
  position: absolute;
  right: 28px;
  left: 28px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 255, 209, 0.20), transparent);
  content: "";
}

.chomp-track {
  position: absolute;
  right: 42px;
  left: 42px;
  top: 50%;
  height: 176px;
  transform: translateY(-50%);
}

.chomp-track::before,
.chomp-track::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.chomp-track::before {
  inset: 20px 0;
  border-block: 1px solid rgba(145, 255, 209, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 142, 232, 0.08), transparent 28%, transparent 70%, rgba(145, 255, 209, 0.10)),
    linear-gradient(90deg, rgba(240, 235, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 0.76;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.chomp-track::after {
  inset: 0;
  right: 0;
  left: 0;
  height: auto;
  background:
    repeating-linear-gradient(90deg, rgba(145, 255, 209, 0.16) 0 8px, transparent 8px 24px) 0 58% / 100% 18px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 142, 232, 0.13) 0 8px, transparent 8px 24px) 0 36% / 100% 18px no-repeat;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 88%, transparent);
}

.pacman {
  --eye-back: 16px;
  --eye-size: 8px;
  --pixel-border: 5px;
  position: absolute;
  top: 58%;
  left: -76px;
  width: 62px;
  height: 62px;
  background: #11131a;
  clip-path: polygon(
    28% 0,
    78% 0,
    78% 9%,
    92% 9%,
    92% 22%,
    100% 22%,
    100% 36%,
    88% 36%,
    88% 45%,
    76% 45%,
    76% 55%,
    88% 55%,
    88% 64%,
    100% 64%,
    100% 78%,
    92% 78%,
    92% 91%,
    78% 91%,
    78% 100%,
    28% 100%,
    28% 91%,
    12% 91%,
    12% 78%,
    0 78%,
    0 22%,
    12% 22%,
    12% 9%,
    28% 9%
  );
  filter: drop-shadow(0 0 16px rgba(255, 214, 110, 0.20));
  image-rendering: pixelated;
  opacity: 0;
  transform: translateY(-50%);
  z-index: 5;
}

.pacman::before {
  position: absolute;
  inset: var(--pixel-border);
  background:
    linear-gradient(#f0ebff 0 0) 68% 22% / var(--eye-size) var(--eye-size) no-repeat,
    linear-gradient(#12131a 0 0) 63% 18% / var(--eye-back) var(--eye-back) no-repeat,
    linear-gradient(rgba(16, 17, 5, 0.18) 1px, transparent 1px) 0 0 / 8px 8px,
    linear-gradient(90deg, rgba(16, 17, 5, 0.16) 1px, transparent 1px) 0 0 / 8px 8px,
    #d9d514;
  clip-path: polygon(
    28% 0,
    78% 0,
    78% 9%,
    92% 9%,
    92% 22%,
    100% 22%,
    100% 78%,
    92% 78%,
    92% 91%,
    78% 91%,
    78% 100%,
    28% 100%,
    28% 91%,
    12% 91%,
    12% 78%,
    0 78%,
    0 22%,
    12% 22%,
    12% 9%,
    28% 9%
  );
  content: "";
}

.pacman::after {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 42px;
  height: 44px;
  background: #07100f;
  clip-path: polygon(
    100% 0,
    100% 100%,
    60% 100%,
    60% 82%,
    28% 82%,
    28% 62%,
    0 62%,
    0 38%,
    28% 38%,
    28% 18%,
    60% 18%,
    60% 0
  );
  content: "";
  transform: translateY(-50%) scaleY(1);
  transform-origin: right center;
}

.chomp-bug {
  --bug-color: var(--red);
  --bug-scale: 1;
  position: absolute;
  left: var(--x);
  top: var(--y, 50%);
  width: 30px;
  height: 24px;
  opacity: 0.86;
  transform: translate(-50%, -50%) scale(var(--bug-scale));
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--bug-color) 36%, transparent));
  image-rendering: pixelated;
  z-index: 2;
}

.chomp-bug::before,
.chomp-bug::after {
  position: absolute;
  content: "";
}

.chomp-bug::before {
  inset: 5px 6px 4px;
  background:
    linear-gradient(rgba(5, 6, 10, 0.36) 0 0) 50% 0 / 2px 100% no-repeat,
    var(--bug-color);
  clip-path: polygon(
    28% 0,
    72% 0,
    72% 18%,
    88% 18%,
    88% 78%,
    72% 78%,
    72% 100%,
    28% 100%,
    28% 78%,
    12% 78%,
    12% 18%,
    28% 18%
  );
  animation: bugWiggle 760ms steps(2, end) infinite;
  animation-delay: var(--bug-delay, 0ms);
}

.chomp-bug::after {
  inset: 0;
  background:
    linear-gradient(var(--bug-color) 0 0) 3px 5px / 6px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 21px 5px / 6px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 0 12px / 7px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 23px 12px / 7px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 3px 19px / 6px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 21px 19px / 6px 3px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 8px 0 / 3px 7px no-repeat,
    linear-gradient(var(--bug-color) 0 0) 19px 0 / 3px 7px no-repeat,
    linear-gradient(var(--text) 0 0) 12px 9px / 3px 3px no-repeat,
    linear-gradient(var(--text) 0 0) 18px 9px / 3px 3px no-repeat;
  opacity: 0.96;
}

.chomp-bug--violet {
  --bug-color: var(--violet);
}

.chomp-bug--mint {
  --bug-color: var(--mint);
}

.chomp-bug--amber {
  --bug-color: var(--amber);
}

.chomp-bug--small {
  --bug-scale: 0.82;
}

.chomp-bug--tiny {
  --bug-scale: 0.66;
}

.service-chomp.is-running .pacman {
  animation: pacmanRun 12400ms linear forwards;
}

.service-chomp.is-running .pacman::after {
  animation: pacmanMouth 240ms steps(2, end) infinite;
}

.service-chomp.is-finished .pacman {
  display: none;
}

.service-chomp .chomp-bug.is-eaten,
.service-chomp.is-finished .chomp-bug {
  opacity: 0 !important;
  filter: none;
  transform: translate(-50%, -50%) scale(0.14) !important;
}

.strange {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

.strange__copy,
.weird-console,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 142, 232, 0.08), transparent 42%, rgba(145, 255, 209, 0.06)),
    rgba(8, 9, 14, 0.72);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
}

.strange__copy {
  position: relative;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 24px;
  align-content: stretch;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
}

.inbox-radar {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 300px;
  border: 1px solid rgba(240, 235, 255, 0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.024) 1px, transparent 1px),
    rgba(5, 6, 10, 0.34);
  background-size: 28px 28px, 28px 28px, auto;
  opacity: 0.92;
}

.inbox-radar__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inbox-radar__head strong {
  color: var(--mint);
}

.inbox-radar__screen {
  position: relative;
  min-height: 372px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 255, 106, 0.13), transparent 38%),
    linear-gradient(90deg, rgba(145, 255, 209, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(145, 255, 209, 0.022) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.inbox-radar__screen::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 255, 106, 0.08) 50%, transparent),
    repeating-linear-gradient(180deg, transparent 0 4px, rgba(0, 255, 106, 0.035) 5px);
  opacity: 0.52;
  pointer-events: none;
  content: "";
}

.radar-scope {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(350px, calc(100% - 54px));
  aspect-ratio: 1;
  border-radius: 50%;
  isolation: isolate;
  transform: translate(-50%, -50%);
  --radar-angle: 0deg;
}

.radar-scope::before,
.radar-scope::after {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.radar-scope::before {
  border: 1px solid rgba(0, 255, 106, 0.5);
  box-shadow:
    0 0 18px rgba(0, 255, 106, 0.18),
    inset 0 0 24px rgba(0, 255, 106, 0.08);
}

.radar-scope::after {
  inset: -12px;
  border: 2px dashed rgba(0, 255, 106, 0.32);
  animation: radarShell 12s linear infinite;
}

.radar-ring,
.radar-axis,
.radar-beam,
.radar-center,
.radar-noise-dot {
  position: absolute;
  pointer-events: none;
}

.radar-noise-dot {
  top: var(--dot-y);
  left: var(--dot-x);
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: #00ff6a;
  box-shadow:
    0 0 6px rgba(0, 255, 106, 0.55),
    0 0 16px rgba(0, 255, 106, 0.18);
  filter: blur(var(--dot-blur));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
  animation: radarDotBlink var(--dot-speed) ease-in-out infinite;
  animation-delay: var(--dot-delay);
  z-index: 1;
}

.radar-ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(145, 255, 209, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.radar-ring--outer {
  width: 100%;
  height: 100%;
}

.radar-ring--middle {
  width: 66%;
  height: 66%;
}

.radar-ring--inner {
  width: 34%;
  height: 34%;
}

.radar-axis {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 106, 0.42), transparent);
  transform-origin: center;
  z-index: 1;
}

.radar-axis--x {
  transform: translate(-50%, -50%);
}

.radar-axis--y {
  transform: translate(-50%, -50%) rotate(90deg);
}

.radar-axis--a {
  transform: translate(-50%, -50%) rotate(35deg);
  opacity: 0.56;
}

.radar-axis--b {
  transform: translate(-50%, -50%) rotate(-35deg);
  opacity: 0.56;
}

.radar-beam {
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 255, 106, 0.98), rgba(0, 255, 106, 0.28) 52%, transparent);
  filter: blur(0.1px);
  mix-blend-mode: screen;
  transform: rotate(var(--radar-angle));
  transform-origin: 0 50%;
  z-index: 3;
}

.radar-beam::before {
  position: absolute;
  top: -52px;
  left: 0;
  width: 100%;
  height: 104px;
  background: linear-gradient(90deg, rgba(0, 255, 106, 0.30), rgba(0, 255, 106, 0.08) 58%, transparent);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  opacity: 0.82;
  content: "";
}

.radar-beam::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 255, 106, 0.95), transparent);
  box-shadow: 0 0 18px rgba(0, 255, 106, 0.75);
  content: "";
}

.radar-center {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00ff6a;
  box-shadow: 0 0 24px rgba(0, 255, 106, 0.75);
  transform: translate(-50%, -50%);
  z-index: 4;
}

.incoming {
  --incoming-x: 50%;
  --incoming-y: 50%;
  position: absolute;
  top: var(--incoming-y);
  left: var(--incoming-x);
  display: block;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  color: transparent;
  background: transparent;
  font-size: 0;
  box-shadow: none;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.incoming::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.incoming::after {
  top: 50%;
  left: 50%;
  padding: 0;
  border: 0;
  color: rgba(178, 187, 194, 0.30);
  background: transparent;
  box-shadow: none;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0.55;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: color 160ms ease, opacity 160ms ease, text-shadow 160ms ease, filter 160ms ease;
  white-space: nowrap;
  content: attr(data-label);
}

.incoming:hover::after,
.incoming.is-lit::after {
  opacity: 1;
  color: rgba(145, 255, 209, 0.92);
  filter: brightness(1.25);
  text-shadow:
    0 0 8px rgba(0, 255, 106, 0.55),
    0 0 18px rgba(0, 255, 106, 0.24);
}

.incoming--pay {
  --incoming-x: 17%;
  --incoming-y: 43%;
}

.incoming--crm {
  --incoming-x: 82%;
  --incoming-y: 22%;
}

.incoming--old {
  --incoming-x: 11%;
  --incoming-y: 72%;
}

.incoming--app {
  --incoming-x: 79%;
  --incoming-y: 52%;
}

.incoming--bot {
  --incoming-x: 88%;
  --incoming-y: 79%;
}

.incoming--stock {
  --incoming-x: 41%;
  --incoming-y: 87%;
}

.incoming--geo {
  --incoming-x: 58%;
  --incoming-y: 76%;
}

.incoming--acc {
  --incoming-x: 45%;
  --incoming-y: 4%;
}

.incoming--slow {
  --incoming-x: 13%;
  --incoming-y: 18%;
}

.incoming--sql {
  --incoming-x: 62%;
  --incoming-y: 20%;
}

.incoming--acc::after {
  transform: translate(-50%, 12%);
}

.incoming.is-lit {
  z-index: 7;
}

.strange__statement {
  align-self: end;
}

.weird-console {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: center;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
}

.weird-console::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 142, 232, 0.08) 37px),
    linear-gradient(180deg, transparent, rgba(5, 6, 10, 0.7));
  content: "";
  animation: panelDrift 8s linear infinite;
}

.weird-console > * {
  position: relative;
  z-index: 1;
}

.messenger {
  align-content: stretch;
  gap: 14px;
}

.messenger-top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.messenger-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.messenger-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(145, 255, 209, 0.34);
  border-radius: 8px;
  color: var(--void);
  background: var(--mint);
  font-weight: 900;
}

.messenger-contact strong,
.messenger-contact small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.messenger-contact strong {
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.96rem;
}

.messenger-contact small,
.messenger-status {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.messenger-status {
  color: var(--mint);
}

.dialog-switcher {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 78px;
  gap: 12px;
  align-items: stretch;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(145, 255, 209, 0.15);
  border-bottom: 1px solid rgba(145, 255, 209, 0.15);
}

.dialog-nav {
  padding: 0 10px;
  border: 1px solid rgba(145, 255, 209, 0.18);
  border-radius: 6px;
  color: rgba(240, 235, 255, 0.48);
  background: transparent;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.dialog-nav:hover,
.dialog-nav:focus-visible {
  color: var(--void);
  border-color: var(--mint);
  background: var(--mint);
  outline: none;
  transform: translateY(-1px);
}

.dialog-switcher__stage {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 10px;
}

.dialog-switcher__readout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  min-width: 0;
}

.dialog-switcher__readout span,
.dialog-switcher__readout small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-switcher__readout span {
  color: var(--mint);
}

.dialog-switcher__readout strong {
  overflow: hidden;
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-slots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  min-width: 0;
  height: 34px;
  padding: 0 6px;
}

.quote-slots::before {
  position: absolute;
  right: 10px;
  left: 10px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 255, 209, 0.34), transparent);
  content: "";
}

.quote-slot {
  position: relative;
  display: grid;
  place-items: center;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  transition: transform 160ms ease;
}

.quote-slot::before,
.quote-slot::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, background 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.quote-slot::before {
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: rgba(178, 187, 194, 0.34);
  box-shadow: 0 0 0 rgba(0, 255, 106, 0);
}

.quote-slot::after {
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(145, 255, 209, 0.12);
  opacity: 0.7;
}

.quote-slot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  max-width: 100%;
  padding: 4px 6px;
  border: 1px solid rgba(145, 255, 209, 0.22);
  border-radius: 6px;
  color: var(--text);
  background: rgba(5, 6, 10, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.quote-slot:hover,
.quote-slot:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.quote-slot:hover::before,
.quote-slot:focus-visible::before {
  background: rgba(145, 255, 209, 0.82);
  box-shadow: 0 0 16px rgba(0, 255, 106, 0.34);
}

.quote-slot:hover span,
.quote-slot:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quote-slot.is-active {
  transform: none;
}

.quote-slot.is-active::before {
  width: 30px;
  height: 5px;
  background: var(--mint);
  box-shadow:
    0 0 18px rgba(0, 255, 106, 0.72),
    0 0 46px rgba(0, 255, 106, 0.22);
}

.quote-slot.is-active::after {
  height: 28px;
  background: rgba(145, 255, 209, 0.36);
  opacity: 1;
}

.chat-thread {
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 230px;
  padding: 14px;
  border: 1px solid rgba(240, 235, 255, 0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.024) 1px, transparent 1px),
    rgba(5, 6, 10, 0.42);
  background-size: 28px 28px, 28px 28px, auto;
}

.chat-bubble {
  width: min(78%, 520px);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.chat-bubble span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-bubble p {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.chat-bubble--client {
  justify-self: start;
  border-color: rgba(255, 142, 232, 0.24);
}

.chat-bubble--yadev {
  justify-self: end;
  border-color: rgba(145, 255, 209, 0.34);
  background: rgba(145, 255, 209, 0.08);
}

.chat-bubble--yadev span {
  color: var(--mint);
}

.message-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.message-composer span {
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.shuffle-weird {
  justify-self: end;
  background: rgba(255, 255, 255, 0.045);
}

.project-rack {
  display: grid;
  gap: 20px;
  padding-inline: 1px;
}

.project-rack__head {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(240px, 360px);
  gap: 24px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(145, 255, 209, 0.12);
}

.project-rack__head h2 {
  max-width: 570px;
  font-size: 1.62rem;
}

.project-rack__head > p {
  color: rgba(240, 235, 255, 0.54);
  font-weight: 800;
}

.project-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    rgba(5, 6, 10, 0.56);
  background-size: 18px 18px, 18px 18px, auto;
  text-decoration: none;
  transition: border-color 180ms ease, transform 200ms ease, background-color 180ms ease;
}

.project-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 142, 232, 0.08), transparent 46%, rgba(145, 255, 209, 0.07));
  opacity: 0.42;
  content: "";
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(145, 255, 209, 0.34);
  outline: none;
  transform: translateY(-4px);
}

.project-card--bird {
  grid-column: 1 / 9;
  grid-row: 1 / 4;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(360px, 1.15fr);
  gap: 22px;
  align-items: center;
  min-height: 456px;
  padding: 20px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 142, 232, 0.045) 1px, transparent 1px),
    linear-gradient(115deg, rgba(255, 142, 232, 0.08), transparent 38%, rgba(145, 255, 209, 0.08)),
    rgba(5, 6, 10, 0.58);
  background-size: 18px 18px, 18px 18px, auto, auto;
}

.project-card--bird::after {
  position: absolute;
  right: -96px;
  bottom: -130px;
  z-index: 0;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(145, 255, 209, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(145, 255, 209, 0.18), transparent 38%),
    conic-gradient(from 90deg, transparent, rgba(255, 142, 232, 0.16), transparent 34%, rgba(145, 255, 209, 0.14), transparent 70%);
  opacity: 0.55;
  content: "";
  filter: blur(0.2px);
}

.project-card--organizer {
  grid-column: 9 / 13;
  grid-row: 1;
}

.project-card--photo {
  grid-column: 9 / 13;
  grid-row: 2;
}

.project-card--assistant {
  grid-column: 9 / 13;
  grid-row: 3;
  display: grid;
  grid-template-columns: minmax(132px, 0.52fr) minmax(0, 1fr);
  gap: 0;
  border-color: rgba(183, 148, 244, 0.30);
  background:
    radial-gradient(circle at 25% 44%, rgba(255, 156, 241, 0.16), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(183, 148, 244, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(183, 148, 244, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(222, 215, 255, 0.06) 1px, transparent 1px),
    rgba(11, 15, 25, 0.70);
  background-size: auto, auto, 18px 18px, 18px 18px, auto;
}

.project-card--assistant::before {
  background:
    linear-gradient(90deg, rgba(255, 156, 241, 0.12), transparent 40%, rgba(183, 148, 244, 0.18)),
    radial-gradient(circle at 23% 48%, rgba(183, 148, 244, 0.20), transparent 28%);
  opacity: 0.74;
}

.project-card--organizer,
.project-card--photo {
  display: grid;
  grid-template-columns: minmax(132px, 0.54fr) minmax(0, 1fr);
}

.project-card__copy,
.project-card__body {
  position: relative;
  z-index: 1;
}

.project-card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  min-height: 100%;
  padding: 8px 0;
}

.project-card__copy::before {
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 12px;
  background: var(--mint);
  box-shadow: 72px 0 0 rgba(255, 142, 232, 0.65), 126px 0 0 rgba(240, 235, 255, 0.16);
  content: "";
}

.project-card__copy h3 {
  margin: 0;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 2.08rem;
  line-height: 1.12;
  text-shadow: 0 0 24px rgba(255, 142, 232, 0.16);
}

.project-card__copy p {
  max-width: 24ch;
  margin: 0;
  color: rgba(240, 235, 255, 0.60);
  font-weight: 800;
}

.project-card__type {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-self: flex-start;
}

.project-card__tags span {
  padding: 7px 9px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  color: rgba(240, 235, 255, 0.62);
  background: rgba(8, 9, 14, 0.38);
  font-weight: 900;
}

.project-card__spec {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.project-card__spec span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  color: rgba(240, 235, 255, 0.60);
  background: rgba(5, 6, 10, 0.36);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.59rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card__spec span:last-child {
  border-bottom: 1px solid rgba(240, 235, 255, 0.12);
  color: var(--mint);
}

.project-card__spec span::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  content: "";
}

.project-card__image {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  min-height: 156px;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.72) contrast(1.04);
  transition: opacity 180ms ease, filter 180ms ease, transform 220ms ease;
}

.project-card:hover .project-card__image img,
.project-card:focus-visible .project-card__image img {
  opacity: 0.9;
  filter: saturate(0.96) contrast(1.08);
  transform: scale(1.035);
}

.project-card__body {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
}

.project-card__body strong {
  overflow: hidden;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  text-overflow: ellipsis;
}

.project-card__body small {
  color: rgba(240, 235, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-card__body strong span {
  color: #ff9cf1;
}

.minachan-card__stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 156px;
  padding: 18px 22px 14px;
  overflow: hidden;
  border-right: 1px solid rgba(222, 215, 255, 0.10);
  background:
    radial-gradient(circle at 50% 34%, rgba(183, 148, 244, 0.22), transparent 28%),
    radial-gradient(circle at 50% 76%, rgba(255, 156, 241, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(222, 215, 255, 0.05), transparent 62%),
    rgba(10, 12, 21, 0.58);
}

.minachan-card__stage::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(183, 148, 244, 0.18);
  border-radius: 8px;
  opacity: 0.8;
  content: "";
}

.minachan-brand {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(100%, 420px);
}

.minachan-brand__portrait {
  display: block;
  width: min(100%, 480px);
  height: auto;
  filter:
    drop-shadow(0 0 18px rgba(183, 148, 244, 0.18))
    drop-shadow(0 0 34px rgba(255, 156, 241, 0.08));
  transform: translateY(2px);
}

.minachan-card__body {
  align-content: center;
  background:
    linear-gradient(180deg, transparent, rgba(26, 19, 48, 0.16)),
    rgba(11, 15, 25, 0.26);
}

.minachan-card__body .project-card__type {
  color: #ff9cf1;
  text-transform: none;
}

.minachan-plugins {
  display: grid;
  gap: 5px;
  margin-top: 4px;
}

.minachan-plugins span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid rgba(183, 148, 244, 0.16);
  border-radius: 6px;
  color: rgba(222, 215, 255, 0.76);
  background: rgba(26, 19, 48, 0.44);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.minachan-plugins span::before {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 2px;
  background: #b794f4;
  box-shadow: 0 0 12px rgba(183, 148, 244, 0.58);
  content: "";
}

.minachan-devlog {
  justify-self: start;
  margin-top: 5px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 156, 241, 0.34);
  border-radius: 6px;
  color: #ded7ff;
  background:
    linear-gradient(90deg, rgba(255, 156, 241, 0.16), rgba(183, 148, 244, 0.12)),
    rgba(26, 19, 48, 0.42);
  box-shadow: inset 0 0 0 1px rgba(222, 215, 255, 0.05);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.minachan-devlog:hover,
.minachan-devlog:focus-visible {
  color: #0b0f19;
  background: #ff9cf1;
  outline: none;
  transform: translateY(-2px);
}

.falling-game {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: center;
  justify-self: center;
  width: min(100%, 428px);
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(145, 255, 209, 0.30);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 142, 232, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(145, 255, 209, 0.11), transparent 44%),
    rgba(4, 6, 10, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(240, 235, 255, 0.07),
    inset 0 -16px 30px rgba(0, 0, 0, 0.18),
    0 24px 76px rgba(0, 0, 0, 0.38);
}

.falling-game::before,
.falling-game::after {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 5px;
  height: 38%;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(240, 235, 255, 0.12), rgba(145, 255, 209, 0.22), rgba(240, 235, 255, 0.10));
  content: "";
  transform: translateY(-50%);
}

.falling-game::before {
  left: 7px;
}

.falling-game::after {
  right: 7px;
}

.falling-game__screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid rgba(240, 235, 255, 0.22);
  border-radius: 6px;
  background: #000;
  aspect-ratio: 4 / 3;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.28),
    0 0 0 7px rgba(240, 235, 255, 0.045),
    0 20px 45px rgba(0, 0, 0, 0.34);
}

.falling-game__screen::before,
.falling-game__screen::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
}

.falling-game__screen::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 16%, transparent 76%, rgba(0, 0, 0, 0.20)),
    linear-gradient(90deg, rgba(255, 142, 232, 0.09), transparent 25%, transparent 72%, rgba(145, 255, 209, 0.10));
  mix-blend-mode: screen;
  opacity: 0.62;
}

.falling-game__screen::after {
  background: linear-gradient(180deg, transparent 0 48%, rgba(0, 0, 0, 0.12) 49% 50%, transparent 51% 100%);
  background-size: 100% 4px;
  opacity: 0.55;
}

.falling-bird-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #78b4d8;
  cursor: default;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  outline: none;
  touch-action: manipulation;
}

.falling-game--preview .falling-bird-canvas {
  pointer-events: none;
}

.falling-game__touch {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: transparent;
}

.falling-game__links {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(145, 255, 209, 0.26);
  border-radius: 8px;
  background: rgba(4, 6, 10, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(240, 235, 255, 0.06);
  backdrop-filter: blur(8px);
}

.falling-game__links[hidden] {
  display: none;
}

.falling-game__links a {
  min-width: 0;
  padding: 8px 7px;
  border: 1px solid rgba(145, 255, 209, 0.24);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(8, 9, 14, 0.54);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.falling-game__links a:hover,
.falling-game__links a:focus-visible {
  color: #06100d;
  background: var(--mint);
  outline: none;
}

.falling-bird-canvas:focus-visible,
.falling-game__touch:focus-visible {
  outline: 2px solid rgba(145, 255, 209, 0.86);
  outline-offset: -3px;
}

/* Lab desk redesign */
.lab .project-rack {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: clip;
  isolation: isolate;
}

.lab .project-rack::before {
  position: absolute;
  inset: 116px -34px auto auto;
  z-index: -1;
  width: 58%;
  height: 410px;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(145, 255, 209, 0.12) 16% 17%, transparent 17% 46%, rgba(255, 142, 232, 0.10) 46% 47%, transparent 47%),
    radial-gradient(ellipse at 58% 62%, rgba(145, 255, 209, 0.18), transparent 58%);
  content: "";
  opacity: 0.62;
  filter: blur(0.2px);
}

.lab .project-rack__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.62fr);
  gap: 34px;
  align-items: end;
  min-height: 126px;
  padding: 8px 0 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(145, 255, 209, 0.16);
}

.lab .project-rack__head::before {
  position: absolute;
  right: -8px;
  bottom: -18px;
  z-index: -1;
  color: transparent;
  content: "LAB";
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.10;
  -webkit-text-stroke: 1px rgba(240, 235, 255, 0.74);
}

.lab .project-rack__head::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--pink));
  box-shadow: 0 0 24px rgba(145, 255, 209, 0.24);
  content: "";
}

.lab .project-rack__head h2 {
  max-width: 760px;
  font-size: 1.78rem;
  line-height: 1.1;
}

.lab .project-rack__head > p {
  position: relative;
  max-width: 492px;
  justify-self: end;
  margin: 0;
  padding: 4px 0 4px 22px;
  border-left: 1px solid rgba(255, 142, 232, 0.28);
  color: rgba(240, 235, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.56;
}

.lab .project-card {
  border-color: rgba(240, 235, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.030) 1px, transparent 1px),
    rgba(5, 8, 13, 0.58);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: inset 0 0 0 1px rgba(240, 235, 255, 0.025);
}

.lab .project-card::before {
  background:
    linear-gradient(100deg, rgba(255, 142, 232, 0.10), transparent 38%, rgba(145, 255, 209, 0.09)),
    linear-gradient(180deg, rgba(240, 235, 255, 0.035), transparent 42%);
  opacity: 0.48;
}

.lab .project-card:hover,
.lab .project-card:focus-visible {
  border-color: rgba(145, 255, 209, 0.38);
  background-color: rgba(7, 13, 18, 0.74);
  transform: translateY(-3px);
}

.lab .project-card--bird {
  grid-column: 1;
  grid-row: 1 / 4;
  display: grid;
  grid-template-columns: minmax(328px, 0.68fr) minmax(360px, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 512px;
  padding: 0;
  background:
    radial-gradient(ellipse at 78% 62%, rgba(145, 255, 209, 0.16), transparent 46%),
    linear-gradient(115deg, rgba(255, 142, 232, 0.10), transparent 34%, rgba(145, 255, 209, 0.08)),
    linear-gradient(90deg, rgba(145, 255, 209, 0.050) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 142, 232, 0.045) 1px, transparent 1px),
    rgba(5, 8, 13, 0.68);
  background-size: auto, auto, 18px 18px, 18px 18px, auto;
}

.lab .project-card--bird::after {
  right: -22%;
  bottom: -38%;
  z-index: 0;
  width: 56%;
  height: 68%;
  border-color: rgba(145, 255, 209, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(145, 255, 209, 0.18), transparent 34%),
    conic-gradient(from 130deg, transparent, rgba(255, 142, 232, 0.16), transparent 32%, rgba(145, 255, 209, 0.18), transparent 72%);
  opacity: 0.72;
  animation: labGlow 7.4s ease-in-out infinite;
}

.lab .project-card__copy {
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 42px 32px 38px;
  border-right: 1px solid rgba(145, 255, 209, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 142, 232, 0.070), transparent 38%),
    rgba(6, 7, 12, 0.24);
}

.lab .project-card__copy::before {
  width: 66px;
  height: 4px;
  margin-bottom: 2px;
  background: var(--mint);
  box-shadow: 78px 0 0 rgba(255, 142, 232, 0.76), 138px 0 0 rgba(240, 235, 255, 0.18);
}

.lab .project-card__copy h3 {
  font-size: clamp(2rem, 2.15vw, 2.32rem);
  line-height: 1.06;
}

.lab .project-card__copy p {
  max-width: 34ch;
  color: rgba(240, 235, 255, 0.70);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.66;
}

.lab .project-card__copy .project-card__type {
  max-width: none;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: none;
}

.project-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 272px);
  margin-top: 2px;
}

.project-card__actions a {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(145, 255, 209, 0.24);
  border-radius: 7px;
  color: rgba(240, 235, 255, 0.78);
  background: rgba(5, 8, 13, 0.52);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-card__actions a:first-child {
  grid-column: 1 / -1;
  color: #06100d;
  border-color: rgba(145, 255, 209, 0.64);
  background: linear-gradient(90deg, rgba(145, 255, 209, 0.95), rgba(255, 142, 232, 0.72));
}

.project-card__actions a:hover,
.project-card__actions a:focus-visible {
  color: #06100d;
  border-color: rgba(145, 255, 209, 0.72);
  background: var(--mint);
  outline: none;
  transform: translateY(-2px);
}

.lab .project-card__tags span,
.lab .project-card__spec span {
  border-color: rgba(240, 235, 255, 0.14);
  background: rgba(3, 5, 9, 0.34);
  box-shadow: inset 0 0 0 1px rgba(240, 235, 255, 0.015);
}

.lab .project-card__spec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  width: 100%;
  margin-top: 16px;
}

.lab .project-card__spec span {
  justify-content: space-between;
}

.lab .project-card--organizer,
.lab .project-card--photo {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  min-height: 0;
}

.lab .project-card--organizer {
  grid-row: 1;
  --sample-color: var(--amber);
}

.lab .project-card--photo {
  grid-row: 2;
  --sample-color: #9dbdff;
}

.lab .project-card--organizer .project-card__image,
.lab .project-card--photo .project-card__image {
  order: 2;
  min-height: 0;
  height: 100%;
  border-left: 1px solid rgba(240, 235, 255, 0.10);
}

.lab .project-card--organizer .project-card__body,
.lab .project-card--photo .project-card__body {
  order: 1;
  align-content: center;
  padding: 22px;
}

.lab .project-card--organizer::after,
.lab .project-card--photo::after {
  position: absolute;
  bottom: 16px;
  left: 22px;
  width: 68px;
  height: 3px;
  background: linear-gradient(90deg, var(--sample-color), transparent);
  content: "";
  opacity: 0.72;
}

.lab .project-card__image img {
  opacity: 0.72;
  filter: saturate(0.68) contrast(1.08);
}

.lab .project-card:hover .project-card__image img,
.lab .project-card:focus-visible .project-card__image img {
  opacity: 0.98;
  filter: saturate(0.95) contrast(1.10);
}

.lab .project-card__body {
  gap: 8px;
}

.lab .project-card__body strong {
  overflow: visible;
  font-size: 1.04rem;
  line-height: 1.15;
  text-overflow: clip;
  white-space: normal;
}

.lab .project-card__body small {
  color: rgba(240, 235, 255, 0.58);
}

.lab .project-card--assistant {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0;
  min-height: 0;
  border-color: rgba(183, 148, 244, 0.34);
}

.lab .project-card--assistant::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 156, 241, 0.30);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 156, 241, 0.68) 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 42%, rgba(183, 148, 244, 0.68) 42% 58%, transparent 58%);
  content: "";
  opacity: 0.58;
}

.lab .minachan-card__stage {
  min-height: 100%;
  border-right-color: rgba(222, 215, 255, 0.13);
}

.lab .minachan-card__stage::before {
  inset: 16px;
}

.lab .minachan-card__body {
  padding-right: 18px;
}

.lab .minachan-plugins {
  gap: 6px;
}

.lab .falling-game {
  align-self: center;
  justify-self: center;
  width: min(88%, 418px);
  padding: 14px;
  border-color: rgba(145, 255, 209, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 142, 232, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(145, 255, 209, 0.14), transparent 46%),
    rgba(3, 5, 9, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(240, 235, 255, 0.08),
    inset 0 -20px 34px rgba(0, 0, 0, 0.20),
    0 28px 82px rgba(0, 0, 0, 0.46),
    0 0 62px rgba(145, 255, 209, 0.11);
  animation: labDeviceFloat 6.8s ease-in-out infinite;
}

.lab .falling-game::before,
.lab .falling-game::after {
  width: 6px;
  height: 42%;
}

.lab .falling-game__screen {
  border-color: rgba(240, 235, 255, 0.26);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.32),
    0 0 0 8px rgba(240, 235, 255, 0.050),
    0 18px 48px rgba(0, 0, 0, 0.42);
}

@keyframes labGlow {
  0%,
  100% {
    opacity: 0.48;
    transform: rotate(0deg) scale(0.98);
  }

  50% {
    opacity: 0.82;
    transform: rotate(8deg) scale(1.02);
  }
}

@keyframes labDeviceFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (max-width: 980px) {
  .lab .project-rack__head {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .lab .project-rack__head > p {
    max-width: none;
    justify-self: stretch;
  }

  .lab .project-card--bird {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(310px, 0.64fr) minmax(360px, 1fr);
    min-height: 0;
  }

  .lab .project-card--organizer,
  .lab .project-card--photo {
    grid-column: auto;
    grid-row: auto;
  }

  .lab .project-card--assistant {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .lab .project-rack__head h2 {
    font-size: 1.44rem;
  }

  .lab .project-rack__head > p {
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 142, 232, 0.22);
    border-left: 0;
    font-size: 0.92rem;
  }

  .lab .project-card--bird,
  .lab .project-card--organizer,
  .lab .project-card--photo,
  .lab .project-card--assistant {
    grid-template-columns: 1fr;
  }

  .lab .project-card--bird {
    min-height: 0;
  }

  .lab .project-card__copy {
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(145, 255, 209, 0.12);
  }

  .lab .project-card__spec {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lab .project-card__spec span {
    justify-content: flex-start;
  }

  .lab .project-card--organizer .project-card__image,
  .lab .project-card--photo .project-card__image {
    order: 1;
    height: 148px;
    border-left: 0;
    border-bottom: 1px solid rgba(240, 235, 255, 0.10);
  }

  .lab .project-card--organizer .project-card__body,
  .lab .project-card--photo .project-card__body {
    order: 2;
  }

  .lab .project-card--assistant {
    grid-template-columns: 1fr;
  }

  .lab .minachan-card__stage {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(222, 215, 255, 0.13);
  }

  .lab .falling-game {
    width: min(100%, 346px);
    animation: none;
  }
}

@media (max-width: 430px) {
  .lab .project-card__copy {
    padding: 22px 18px;
  }

  .lab .project-card__copy h3 {
    font-size: 1.76rem;
  }

  .lab .project-card__spec {
    grid-template-columns: 1fr;
  }
}

/* Lab specimen slider */
.project-slider {
  position: relative;
  display: grid;
  grid-template-columns: 278px minmax(0, 840px);
  gap: 12px;
  width: min(100%, 1130px);
  height: 456px;
  min-height: 0;
  overflow: clip;
  outline: none;
  isolation: isolate;
}

.project-slider::before {
  position: absolute;
  inset: -12px -10px;
  z-index: -1;
  border: 1px solid rgba(145, 255, 209, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(255, 142, 232, 0.12), transparent 34%),
    radial-gradient(ellipse at 74% 72%, rgba(145, 255, 209, 0.14), transparent 42%);
  content: "";
  opacity: 0.72;
}

.project-slider__viewport {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 142, 232, 0.040) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 74%, rgba(145, 255, 209, 0.16), transparent 46%),
    rgba(5, 8, 13, 0.62);
  background-size: 18px 18px, 18px 18px, auto, auto;
  box-shadow:
    inset 0 0 0 1px rgba(240, 235, 255, 0.025),
    0 26px 80px rgba(0, 0, 0, 0.28),
    -18px 0 80px rgba(255, 142, 232, 0.06);
}

.project-slider__viewport::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 142, 232, 0.10), transparent 22%, transparent 76%, rgba(145, 255, 209, 0.10)),
    linear-gradient(180deg, rgba(240, 235, 255, 0.045), transparent 34%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.46;
}

.project-slider__track {
  display: flex;
  height: 100%;
  min-height: 0;
  transform: translateX(calc(var(--project-index) * -100%));
  transition: transform 620ms cubic-bezier(0.18, 0.74, 0.22, 1);
}

.lab .project-slider .project-card {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.24;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.18, 0.74, 0.22, 1);
}

.lab .project-slider .project-card::before {
  opacity: 0;
}

.lab .project-slider .project-card:hover,
.lab .project-slider .project-card:focus-visible {
  border-color: transparent;
  background-color: transparent;
  transform: scale(0.985);
}

.lab .project-slider .project-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.lab .project-slider .project-card--bird {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  padding: 0;
}

.lab .project-slider .project-card--bird::after {
  right: -15%;
  bottom: -30%;
  width: 52%;
  height: 66%;
}

.lab .project-slider .project-card__copy {
  position: relative;
  z-index: 2;
  order: 2;
  display: grid;
  grid-template-areas:
    "type desc actions"
    "title desc actions";
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) 160px;
  gap: 6px 18px;
  align-items: center;
  min-height: 142px;
  padding: 16px 22px 18px;
  border-top: 1px solid rgba(145, 255, 209, 0.14);
  border-right: 0;
  background:
    linear-gradient(90deg, rgba(255, 142, 232, 0.12), transparent 32%, rgba(145, 255, 209, 0.07)),
    rgba(6, 7, 12, 0.36);
}

.lab .project-slider .project-card__copy::before {
  display: none;
}

.lab .project-slider .project-card__copy h3 {
  grid-area: title;
  max-width: 720px;
  font-size: 1.82rem;
  line-height: 1.02;
}

.lab .project-slider .project-card__copy p {
  grid-area: desc;
  max-width: 44ch;
  font-size: 0.86rem;
  line-height: 1.54;
}

.lab .project-slider .project-card__copy .project-card__type {
  grid-area: type;
  font-size: 0.68rem;
}

.lab .project-slider .project-card__actions {
  grid-area: actions;
  grid-template-columns: 1fr;
  justify-self: end;
  width: 150px;
  gap: 5px;
}

.lab .project-slider .project-card__actions a {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.62rem;
  white-space: nowrap;
}

.lab .project-slider .project-card__actions a:first-child {
  grid-column: 1;
}

.lab .project-slider .project-card__body .project-card__actions a:first-child {
  grid-column: 1;
}

.lab .project-slider .project-card__body .project-card__actions a:only-child {
  grid-column: 1 / -1;
}

.lab .project-slider .falling-game {
  z-index: 2;
  order: 1;
  width: min(56%, 370px);
  margin: 16px auto 10px;
  transform: none;
}

.lab .project-slider .project-card--organizer,
.lab .project-slider .project-card--photo,
.lab .project-slider .project-card--assistant {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
}

.lab .project-slider .project-card__image {
  order: 1;
  height: 100%;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(240, 235, 255, 0.12);
  border-left: 0;
}

.lab .project-slider .project-card__image img {
  width: 100%;
  height: 100%;
  opacity: 0.88;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.lab .project-slider .project-card--organizer .project-card__image {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 18px;
  place-content: center;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.030) 1px, transparent 1px),
    radial-gradient(ellipse at 52% 58%, rgba(145, 255, 209, 0.12), transparent 48%),
    rgba(0, 0, 0, 0.74);
  background-size: 14px 14px, 14px 14px, auto, auto;
}

.lab .project-slider .project-card--organizer .project-card__image img,
.lab .project-slider .project-card--organizer .project-card__image::after {
  display: block;
  width: min(100%, 174px);
  height: auto;
  max-height: 100%;
  aspect-ratio: 393 / 630;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.18);
  border-radius: 4px;
  background: #000;
  box-shadow:
    0 0 0 4px rgba(240, 235, 255, 0.035),
    0 22px 50px rgba(0, 0, 0, 0.34);
  image-rendering: pixelated;
  object-fit: cover;
  opacity: 0.92;
  filter: grayscale(0.16) contrast(1.08);
}

.lab .project-slider .project-card--organizer .project-card__image::after {
  content: "";
  background: url("/assets/posts/organizer/screenshots/03-stopwatch-dark-theme.png") center / cover;
}

.lab .project-slider .project-card--photo .photo-editor-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.74fr) minmax(220px, 0.86fr);
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.040) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 19% 28%, rgba(255, 142, 232, 0.16), transparent 34%),
    radial-gradient(ellipse at 74% 66%, rgba(145, 255, 209, 0.16), transparent 42%),
    rgba(5, 8, 13, 0.72);
  background-size: 16px 16px, 16px 16px, auto, auto, auto;
}

.lab .project-slider .project-card--photo .photo-editor-preview::before {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 16px);
  gap: 8px;
  content: "";
  width: 136px;
  height: 18px;
  background:
    linear-gradient(90deg, #f5efe0 0 16px, transparent 16px 24px, #df2d54 24px 40px, transparent 40px 48px, #46dbc8 48px 64px, transparent 64px 72px, #f3cf3a 72px 88px, transparent 88px 96px, #9fb3ff 96px 112px, transparent 112px 120px, #d9d1bd 120px 136px);
  opacity: 0.72;
  filter: saturate(0.88);
}

.lab .project-slider .project-card--photo .photo-editor-preview::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 0;
  width: 44%;
  height: 60%;
  border: 1px solid rgba(240, 235, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 239, 224, 0.10), transparent 38%),
    conic-gradient(from 28deg, transparent, rgba(255, 142, 232, 0.12), transparent 34%, rgba(145, 255, 209, 0.16), transparent 72%);
  content: "";
  opacity: 0.70;
}

.lab .project-slider .photo-editor-preview__workspace,
.lab .project-slider .photo-editor-preview__outputs {
  position: relative;
  z-index: 1;
}

.lab .project-slider .photo-editor-preview__workspace {
  height: min(100%, 214px);
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(240, 235, 255, 0.08), transparent 34%),
    rgba(3, 5, 9, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(3, 5, 9, 0.46),
    0 22px 44px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.2deg);
}

.lab .project-slider .photo-editor-preview__workspace::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 92px;
  background:
    linear-gradient(180deg, rgba(223, 45, 84, 0.18), transparent 88%),
    linear-gradient(90deg, rgba(3, 5, 9, 0.80), rgba(3, 5, 9, 0.08));
  content: "";
}

.lab .project-slider .photo-editor-preview__workspace img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.58;
  filter: grayscale(0.18) saturate(0.78) contrast(1.12);
  transform: none;
}

.lab .project-slider .photo-editor-preview__outputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 108px));
  justify-content: center;
  align-items: end;
  gap: 12px;
  min-width: 0;
  perspective: 860px;
}

.lab .project-slider .photo-editor-preview__outputs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border: 1px solid rgba(245, 239, 224, 0.42);
  border-radius: 4px;
  background: #f5efe0;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 0 5px rgba(240, 235, 255, 0.025);
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.lab .project-slider .photo-editor-preview__outputs img:nth-child(1) {
  transform: translateY(13px) rotate(-6deg);
}

.lab .project-slider .photo-editor-preview__outputs img:nth-child(2) {
  transform: translateY(-4px) scale(1.08);
}

.lab .project-slider .photo-editor-preview__outputs img:nth-child(3) {
  transform: translateY(18px) rotate(5deg);
}

.lab .project-slider .project-card--photo:hover .photo-editor-preview__outputs img,
.lab .project-slider .project-card--photo:focus-visible .photo-editor-preview__outputs img {
  opacity: 1;
  filter: saturate(1.02) contrast(1.08);
}

.lab .project-slider .project-card--photo:hover .photo-editor-preview__workspace img,
.lab .project-slider .project-card--photo:focus-visible .photo-editor-preview__workspace img {
  opacity: 0.64;
  transform: none;
}

.lab .project-slider .project-card--photo:hover .photo-editor-preview__outputs img:nth-child(1),
.lab .project-slider .project-card--photo:focus-visible .photo-editor-preview__outputs img:nth-child(1) {
  transform: translateY(8px) rotate(-3deg);
}

.lab .project-slider .project-card--photo:hover .photo-editor-preview__outputs img:nth-child(2),
.lab .project-slider .project-card--photo:focus-visible .photo-editor-preview__outputs img:nth-child(2) {
  transform: translateY(-8px) scale(1.10);
}

.lab .project-slider .project-card--photo:hover .photo-editor-preview__outputs img:nth-child(3),
.lab .project-slider .project-card--photo:focus-visible .photo-editor-preview__outputs img:nth-child(3) {
  transform: translateY(10px) rotate(3deg);
}

.lab .project-slider .project-card__body {
  order: 2;
  display: grid;
  grid-template-areas:
    "type small actions"
    "title small actions";
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) 160px;
  align-content: start;
  gap: 6px 18px;
  align-items: center;
  min-height: 142px;
  padding: 16px 22px 18px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.09), transparent 42%, rgba(255, 142, 232, 0.07)),
    rgba(5, 8, 13, 0.36);
}

.lab .project-slider .project-card__body .project-card__type {
  grid-area: type;
}

.lab .project-slider .project-card__body strong {
  grid-area: title;
  max-width: 760px;
  font-size: 1.62rem;
  line-height: 1.05;
}

.lab .project-slider .project-card__body small {
  grid-area: small;
  max-width: 44ch;
  color: rgba(240, 235, 255, 0.64);
  font-size: 0.86rem;
}

.lab .project-slider .project-card--organizer::after,
.lab .project-slider .project-card--photo::after {
  display: none;
}

.lab .project-slider .project-card--assistant {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  border-color: transparent;
}

.lab .project-slider .project-card--assistant::after {
  top: 24px;
  right: 24px;
}

.lab .project-slider .minachan-card__stage {
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(222, 215, 255, 0.13);
}

.lab .project-slider .minachan-brand {
  width: min(100%, 560px);
}

.lab .project-slider .minachan-brand__portrait {
  width: min(100%, 504px);
  max-height: 246px;
}

.lab .project-slider .minachan-card__body {
  grid-template-areas:
    "type small link"
    "title plugins link";
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) auto;
  padding: 16px 22px 18px;
}

.lab .project-slider .minachan-card__body .project-card__type {
  grid-area: type;
}

.lab .project-slider .minachan-card__body strong {
  grid-area: title;
}

.lab .project-slider .minachan-card__body small {
  grid-area: small;
}

.lab .project-slider .minachan-plugins {
  grid-area: plugins;
  max-width: 360px;
}

.lab .project-slider .minachan-devlog {
  grid-area: link;
  align-self: center;
  justify-self: end;
}

.project-slider__nav {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 142, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(145, 255, 209, 0.04) 1px, transparent 1px);
  background-size: 18px 18px, 18px 18px, auto;
}

.project-slider__counter {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: baseline;
  min-height: 38px;
  padding: 0 0 8px;
  border: 1px solid rgba(145, 255, 209, 0.18);
  border-width: 0 0 1px;
  border-radius: 8px;
  background: transparent;
}

.project-slider__counter span {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1;
}

.project-slider__counter small {
  color: rgba(240, 235, 255, 0.46);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-slider__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(124px, 1.12fr) minmax(94px, 0.86fr) minmax(104px, 0.94fr);
  gap: 8px;
  align-content: stretch;
}

.project-slider__tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 5px;
  align-items: end;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.11);
  border-radius: 8px;
  color: rgba(240, 235, 255, 0.60);
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.030) 1px, transparent 1px),
    rgba(3, 5, 9, 0.36);
  background-size: 14px 14px, 14px 14px, auto;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-slider__tab::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  background:
    radial-gradient(circle at 72% 20%, rgba(145, 255, 209, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 142, 232, 0.10), transparent 46%);
  content: "";
  opacity: 0.42;
  transform: none;
  transition: opacity 180ms ease, transform 220ms ease;
}

.project-slider__tab::after {
  position: absolute;
  inset: auto 10px 42px auto;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(145, 255, 209, 0.82) 38% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 42%, rgba(255, 142, 232, 0.72) 42% 58%, transparent 58%),
    rgba(145, 255, 209, 0.05);
  content: "";
  opacity: 0.36;
  transform: rotate(-7deg);
  transition: opacity 180ms ease, transform 220ms ease;
}

.project-slider__tab span {
  position: relative;
  z-index: 2;
  grid-row: auto;
  color: rgba(240, 235, 255, 0.40);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
}

.project-slider__tab strong {
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: clamp(0.74rem, 1vw, 0.88rem);
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-slider__tab small {
  position: relative;
  z-index: 2;
  color: rgba(240, 235, 255, 0.42);
  font-size: 0.70rem;
  font-weight: 800;
}

.project-slider__tab:nth-child(1) {
  grid-column: 1 / 3;
}

.project-slider__tab:nth-child(1)::before {
  background:
    linear-gradient(180deg, rgba(3, 5, 9, 0.12), transparent 34%, rgba(3, 5, 9, 0.72)),
    url("/assets/posts/fallingbird/screenshots/cover.png") center 40% / cover;
  image-rendering: pixelated;
  opacity: 0.82;
}

.project-slider__tab:nth-child(1)::after {
  inset: 16px 14px auto auto;
  display: flex;
  width: 70px;
  height: 28px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8px;
  border: 3px solid #9ab9df;
  border-radius: 2px;
  color: #d8f7ff;
  background:
    radial-gradient(circle at 14px 50%, #ffd65c 0 5px, #ffb22c 6px 7px, transparent 8px),
    linear-gradient(90deg, rgba(45, 81, 118, 0.96), rgba(28, 58, 92, 0.96));
  box-shadow:
    inset 0 -3px 0 rgba(14, 31, 52, 0.42),
    0 0 0 1px rgba(3, 5, 9, 0.24);
  content: "0";
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: 0.54rem;
  line-height: 1;
  opacity: 0.78;
  transform: none;
}

.project-slider__tab:nth-child(1) strong,
.project-slider__tab:nth-child(1) small {
  text-shadow: 0 2px 0 rgba(3, 5, 9, 0.72), 0 0 14px rgba(3, 5, 9, 0.84);
}

.project-slider__tab:nth-child(1).is-active::before {
  opacity: 0.98;
}

.project-slider__tab:nth-child(4) {
  grid-column: 1 / 3;
}

.project-slider__tab:nth-child(2)::before {
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.036) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.030) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 24%, rgba(240, 235, 255, 0.10), transparent 26%),
    radial-gradient(ellipse at 28% 72%, rgba(255, 191, 122, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 214, 120, 0.08), transparent 46%, rgba(240, 235, 255, 0.06)),
    rgba(3, 5, 9, 0.36);
  background-size: 12px 12px, 12px 12px, auto, auto, auto, auto;
  opacity: 0.68;
}

.project-slider__tab:nth-child(2)::after {
  display: none;
}

.project-slider__tab:nth-child(2) strong {
  font-size: 0.76rem;
}

.project-slider__tab:nth-child(3)::before {
  background:
    linear-gradient(90deg, rgba(240, 235, 255, 0.040) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.034) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 24%, rgba(245, 239, 224, 0.14), transparent 28%),
    radial-gradient(ellipse at 28% 72%, rgba(157, 189, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 142, 232, 0.10), transparent 44%, rgba(145, 255, 209, 0.10)),
    rgba(3, 5, 9, 0.44);
  background-size: 12px 12px, 12px 12px, auto, auto, auto, auto;
  opacity: 0.76;
}

.project-slider__tab:nth-child(3)::after {
  display: none;
}

.project-slider__tab:nth-child(3) strong {
  max-width: none;
  overflow: visible;
  font-size: clamp(0.58rem, 0.74vw, 0.66rem);
  line-height: 1.12;
  text-overflow: clip;
}

.project-slider__tab:nth-child(4)::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(183, 148, 244, 0.20), transparent 26%),
    linear-gradient(135deg, rgba(183, 148, 244, 0.18), transparent 48%, rgba(255, 156, 241, 0.12)),
    url("assets/images/minachan-mark.svg") center 38% / 84px auto no-repeat,
    rgba(8, 10, 18, 0.34);
  opacity: 0.7;
}

.project-slider__tab:nth-child(4)::after {
  display: none;
}

.project-slider__tab:hover,
.project-slider__tab:focus-visible {
  color: rgba(240, 235, 255, 0.88);
  border-color: rgba(145, 255, 209, 0.28);
  background: rgba(145, 255, 209, 0.06);
  outline: none;
  transform: translateY(-3px);
}

.project-slider__tab:hover::after,
.project-slider__tab:focus-visible::after {
  opacity: 0.72;
  transform: rotate(0deg) scale(1.04);
}

.project-slider__tab.is-active {
  color: var(--text);
  border-color: rgba(145, 255, 209, 0.46);
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.16), transparent 76%),
    rgba(3, 5, 9, 0.58);
}

.project-slider__tab.is-active::before {
  opacity: 0.76;
  transform: scale(1.02);
}

.project-slider__tab.is-active::after {
  opacity: 0.90;
  transform: rotate(0deg) scale(1.08);
}

.project-slider__tab.is-active span,
.project-slider__tab.is-active small {
  color: var(--mint);
}

.project-slider__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: stretch;
}

.project-slider__controls button {
  min-height: 36px;
  padding: 8px;
  border: 1px solid rgba(240, 235, 255, 0.18);
  border-radius: 8px;
  color: rgba(240, 235, 255, 0.70);
  background: rgba(5, 8, 13, 0.62);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-slider__controls button:hover,
.project-slider__controls button:focus-visible {
  color: var(--mint);
  border-color: rgba(145, 255, 209, 0.36);
  background: rgba(145, 255, 209, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.project-slider__progress {
  position: relative;
  grid-column: 1 / -1;
  order: -1;
  min-height: 3px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 235, 255, 0.10);
}

.project-slider__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--project-progress);
  background: linear-gradient(90deg, rgba(145, 255, 209, 0.92), rgba(255, 142, 232, 0.76));
  box-shadow: 0 0 24px rgba(145, 255, 209, 0.22);
  transition: width 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (max-width: 980px) {
  .project-slider {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .project-slider__viewport,
  .project-slider__nav {
    grid-column: 1;
    grid-row: auto;
  }

  .project-slider__nav {
    grid-template-rows: auto auto auto;
    order: -1;
  }

  .project-slider__tabs {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    grid-template-rows: minmax(112px, auto);
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .project-slider__tab {
    grid-template-columns: 1fr;
    min-height: 112px;
  }

  .project-slider__tab:nth-child(1) {
    grid-column: auto;
  }

  .project-slider__tab:nth-child(4) {
    grid-column: auto;
  }

  .project-slider__tab span {
    grid-row: auto;
  }

  .lab .project-slider .project-card,
  .lab .project-slider .project-card--bird {
    height: auto;
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .project-slider__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab .project-slider .project-card--bird,
  .lab .project-slider .project-card--organizer,
  .lab .project-slider .project-card--photo,
  .lab .project-slider .project-card--assistant {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .lab .project-slider .project-card,
  .lab .project-slider .project-card--bird {
    height: auto;
    min-height: 0;
  }

  .lab .project-slider .project-card__copy {
    grid-template-areas:
      "type"
      "title"
      "desc"
      "actions";
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    min-height: 0;
    padding: 22px 22px 24px;
    border-top: 1px solid rgba(145, 255, 209, 0.14);
    border-right: 0;
    border-bottom: 0;
  }

  .lab .project-slider .project-card__body {
    grid-template-areas:
      "type"
      "title"
      "small"
      "actions";
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    min-height: 0;
    padding: 22px 22px 24px;
  }

  .lab .project-slider .minachan-card__body {
    grid-template-areas:
      "type"
      "title"
      "small"
      "plugins"
      "link";
    grid-template-columns: 1fr;
  }

  .lab .project-slider .project-card__actions,
  .lab .project-slider .minachan-devlog {
    width: min(100%, 340px);
    justify-self: start;
  }

  .lab .project-slider .falling-game {
    width: min(100% - 32px, 360px);
    margin: 18px auto 14px;
    transform: none;
  }

  .lab .project-slider .project-card__image {
    height: 220px;
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 235, 255, 0.12);
  }

  .lab .project-slider .project-card--photo .photo-editor-preview {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
  }

  .lab .project-slider .photo-editor-preview__workspace {
    position: absolute;
    inset: 14px;
    height: auto;
    opacity: 0.34;
    transform: none;
  }

  .lab .project-slider .photo-editor-preview__outputs {
    grid-template-columns: repeat(3, minmax(0, 72px));
    justify-content: center;
  }

  .lab .project-slider .minachan-card__stage {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(222, 215, 255, 0.13);
  }
}

@media (max-width: 430px) {
  .project-slider__tabs {
    grid-template-columns: 1fr;
  }

  .project-slider__controls {
    grid-template-columns: 1fr;
  }

  .lab .project-slider .project-card__copy h3 {
    font-size: 1.62rem;
  }

  .lab .project-slider .project-card__copy p {
    font-size: 0.88rem;
  }

  .lab .project-slider .photo-editor-preview__outputs {
    grid-template-columns: repeat(3, minmax(0, 58px));
    gap: 8px;
  }
}

.archive-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 82px;
}

.archive-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 16px;
}

.archive-back,
.archive-tabs a,
.archive-tabs span,
.archive-pager a,
.archive-pager span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  color: rgba(240, 235, 255, 0.58);
  background: rgba(8, 9, 14, 0.42);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-back,
.archive-tabs span[aria-current="page"],
.archive-pager a[aria-current="page"] {
  color: var(--mint);
  border-color: rgba(145, 255, 209, 0.30);
}

.archive-head h1 {
  max-width: 520px;
  font-size: 2.35rem;
  line-height: 1.06;
}

.archive-head p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 8px;
  color: rgba(240, 235, 255, 0.62);
  font-size: 0.98rem;
  font-weight: 800;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(145, 255, 209, 0.14);
  border-bottom: 1px solid rgba(145, 255, 209, 0.14);
}

.archive-tabs,
.archive-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-tabs {
  justify-content: flex-start;
}

.archive-pager {
  justify-content: flex-end;
}

.archive-pager .is-disabled {
  color: rgba(240, 235, 255, 0.30);
  border-color: rgba(240, 235, 255, 0.07);
}

.archive-shell {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 8px;
}

.archive-rail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.archive-rail span,
.archive-rail a {
  color: rgba(240, 235, 255, 0.48);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.archive-rail span,
.archive-rail a:hover,
.archive-rail a:focus-visible {
  color: var(--mint);
  outline: none;
}

.archive-list {
  display: grid;
}

.archive-entry {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
  min-height: 134px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(240, 235, 255, 0.10);
  color: var(--text);
  text-decoration: none;
}

.archive-entry::before {
  position: absolute;
  inset: 8px -12px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(145, 255, 209, 0.035);
  opacity: 0;
  content: "";
  transition: opacity 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.archive-entry[href]:hover,
.archive-entry[href]:focus-visible {
  outline: none;
}

.archive-entry[href]:hover::before,
.archive-entry[href]:focus-visible::before {
  opacity: 1;
  border-color: rgba(145, 255, 209, 0.18);
  transform: translateX(4px);
}

.archive-entry time {
  align-self: start;
  padding-top: 8px;
  color: rgba(145, 255, 209, 0.76);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-entry__body {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.archive-entry__tags {
  justify-self: start;
  min-height: 25px;
  padding: 5px 8px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(8, 9, 14, 0.50);
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-entry strong {
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.28rem;
  line-height: 1.18;
}

.archive-entry small {
  max-width: 680px;
  color: rgba(240, 235, 255, 0.60);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.48;
}

.archive-entry__thumb,
.archive-entry__stub {
  display: block;
  width: 132px;
  height: 76px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 142, 232, 0.08) 1px, transparent 1px),
    rgba(8, 9, 14, 0.68);
  background-size: 14px 14px, 14px 14px, auto;
}

.archive-entry__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.74;
  filter: saturate(0.88) contrast(1.06);
  transition: opacity 170ms ease, filter 170ms ease, transform 220ms ease;
}

.archive-entry[href]:hover .archive-entry__thumb img,
.archive-entry[href]:focus-visible .archive-entry__thumb img {
  opacity: 0.96;
  filter: saturate(1) contrast(1.12);
  transform: scale(1.04);
}

.archive-entry__stub {
  display: grid;
  place-items: center;
  color: rgba(255, 142, 232, 0.68);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-pager--bottom {
  justify-content: flex-end;
  padding-top: 18px;
}

.article-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 86px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-meta time,
.article-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(240, 235, 255, 0.12);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(8, 9, 14, 0.48);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-back {
  justify-self: start;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(145, 255, 209, 0.34);
  border-radius: 6px;
  color: var(--mint);
  background: rgba(8, 9, 14, 0.58);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.article-index span,
.article-aside span {
  color: var(--violet);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-page {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 94px;
}

.article-shell {
  display: grid;
  gap: 32px;
}

.article-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: stretch;
  padding: 34px 36px;
  overflow: hidden;
  border: 1px solid rgba(145, 255, 209, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 142, 232, 0.10), transparent 34%),
    radial-gradient(circle at 16% 20%, rgba(183, 148, 244, 0.16), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(145, 255, 209, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(240, 235, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.025) 1px, transparent 1px),
    rgba(5, 6, 10, 0.82);
  background-size: auto, auto, auto, 22px 22px, 22px 22px, auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.article-hero::before,
.article-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.article-hero::before {
  inset: 20px;
  border: 1px solid rgba(240, 235, 255, 0.07);
  border-radius: 12px;
}

.article-hero::after {
  top: 12%;
  bottom: 12%;
  left: 52%;
  width: 96px;
  background:
    linear-gradient(90deg, transparent 0, rgba(145, 255, 209, 0.08) 52%, transparent 100%);
  filter: blur(18px);
  opacity: 0.44;
  transform: translateX(-50%);
}

.article-hero__copy,
.article-hero__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.article-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  padding: 22px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(145deg, rgba(183, 148, 244, 0.12), transparent 58%),
    rgba(8, 9, 14, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 50px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.article-hero__copy::before,
.article-hero__copy::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.article-hero__copy::before {
  inset: 14px;
  border: 1px solid rgba(240, 235, 255, 0.05);
  border-radius: 12px;
}

.article-hero__copy::after {
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 34px;
  border: 1px solid rgba(145, 255, 209, 0.10);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.14), transparent 26%, transparent 74%, rgba(255, 142, 232, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  opacity: 0.78;
}

.article-back {
  display: inline-flex;
  align-self: flex-start;
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  margin-bottom: 10px;
}

.article-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 4.9vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.article-hero__deck {
  max-width: 26ch;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.38;
}

.article-meta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
}

.article-hero__media {
  display: grid;
  align-items: center;
  justify-items: end;
}

.article-hero__frame {
  position: relative;
  display: grid;
  width: min(100%, 460px);
  padding: 22px;
  border: 1px solid rgba(240, 235, 255, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.18), rgba(5, 6, 10, 0.62)),
    rgba(7, 10, 14, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 26px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(0.7deg);
}

.article-hero__frame::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.article-hero__frame::before {
  inset: 14px;
  border: 1px solid rgba(240, 235, 255, 0.08);
  border-radius: 12px;
}

.article-hero__frame img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(240, 235, 255, 0.10);
  border-radius: 10px;
  background: #05060a;
  opacity: 0.96;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  image-rendering: pixelated;
}

.article-hero__frame img[data-render="smooth"] {
  image-rendering: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 880px) minmax(240px, 300px);
  justify-content: start;
  gap: 24px;
  align-items: start;
}

.article-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.article-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.article-lead-card {
  position: relative;
  display: block;
  width: min(100%, 860px);
  padding: 20px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(183, 148, 244, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
    rgba(5, 6, 10, 0.56);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.article-lead-card::before,
.article-lead-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.article-lead-card::before {
  inset: 12px;
  border: 1px solid rgba(240, 235, 255, 0.05);
  border-radius: 10px;
}

.article-lead-card::after {
  right: -18px;
  bottom: -30px;
  color: rgba(145, 255, 209, 0.08);
  content: "///";
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -0.16em;
  line-height: 1;
}

.article-lead {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.7;
}

.article-rail {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.article-panel,
.article-note {
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.03) 1px, transparent 1px),
    rgba(5, 6, 10, 0.58);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.article-panel {
  padding: 16px 16px 18px;
}

.article-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-panel p {
  margin: 0;
  color: rgba(240, 235, 255, 0.74);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.55;
}

.article-panel--toc a,
.article-panel--links a {
  color: rgba(240, 235, 255, 0.68);
  text-decoration: none;
}

.article-panel--toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 44px;
  padding: 10px 0;
  border-top: 1px solid rgba(240, 235, 255, 0.08);
}

.article-panel--toc a:first-of-type,
.article-panel--links a:first-of-type {
  border-top: 0;
}

.article-panel--toc a strong {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.4;
}

.article-panel--toc a b {
  font-size: 0.92rem;
  line-height: 1.42;
}

.article-panel--links a {
  display: block;
  min-height: 44px;
  padding: 10px 0;
  border-top: 1px solid rgba(240, 235, 255, 0.08);
  font-weight: 800;
}

.article-panel--links a:hover,
.article-panel--links a:focus-visible,
.article-panel--toc a:hover,
.article-panel--toc a:focus-visible {
  color: var(--mint);
  outline: none;
}

.article-body {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.article-section {
  min-width: 0;
  scroll-margin-top: 112px;
}

.article-body > * {
  width: min(100%, 820px);
  min-width: 0;
}

.article-body > h2,
.article-body > h3 {
  width: min(100%, 920px);
}

.article-body > ul,
.article-body > ol {
  width: min(100%, 760px);
}

.article-body h2,
.article-body h3 {
  scroll-margin-top: 112px;
}

.article-body > h2 {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(145, 255, 209, 0.12);
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.article-body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.article-body h3 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.article-body p,
.article-body li {
  max-width: 68ch;
  color: rgba(240, 235, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-body p + p {
  margin-top: 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  margin: 0;
}

.article-body pre {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  border: 1px solid rgba(145, 255, 209, 0.16);
  border-radius: 14px;
  color: var(--mint);
  background: rgba(5, 6, 10, 0.72);
}

.article-body code {
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  font-weight: 800;
}

.article-body figure,
.article-figure {
  justify-self: start;
  width: fit-content;
  max-width: min(100%, 760px);
  min-width: 0;
  margin: 8px 0 0;
}

.article-body p > img,
.article-body figure img,
.article-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: 14px;
  background: rgba(5, 6, 10, 0.70);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  image-rendering: pixelated;
}

.article-body img[data-render="smooth"] {
  image-rendering: auto;
}

.article-body figcaption,
.article-figure figcaption {
  margin-top: 10px;
  color: rgba(240, 235, 255, 0.50);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.5;
}

.article-body blockquote {
  margin: 4px 0 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(145, 255, 209, 0.44);
  border-radius: 0 14px 14px 0;
  background: rgba(5, 6, 10, 0.48);
}

.article-note {
  width: min(100%, 820px);
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  color: rgba(240, 235, 255, 0.72);
}

.article-note strong {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
}

.article-next {
  padding-top: 76px;
}

.article-next > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.article-next a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(240, 235, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(145, 255, 209, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 235, 255, 0.03) 1px, transparent 1px),
    rgba(5, 6, 10, 0.54);
  background-size: 18px 18px, 18px 18px, auto;
  color: var(--text);
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-next a::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.02), rgba(5, 6, 10, 0.82)),
    linear-gradient(120deg, rgba(255, 142, 232, 0.12), transparent 45%, rgba(145, 255, 209, 0.08));
  content: "";
  z-index: 1;
}

.article-next a:hover,
.article-next a:focus-visible {
  border-color: rgba(145, 255, 209, 0.32);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  outline: none;
  transform: translateY(-3px);
}

.article-next__media {
  position: absolute;
  inset: 0;
}

.article-next__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.8) contrast(1.12);
}

.article-next__body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.article-next__tag {
  color: var(--mint);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-next__body strong {
  color: var(--text);
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  padding: 26px;
}

.contact-card__copy {
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.contact-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-card li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
  text-decoration: none;
}

.contact-card li a:hover,
.contact-card li a:focus-visible {
  color: var(--mint);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  background: rgba(145, 255, 209, 0.055);
  box-shadow: 0 0 0 3px rgba(145, 255, 209, 0.13);
}

.contact-form p {
  color: var(--muted);
}

.contact-form p a {
  color: var(--mint);
  font-weight: 900;
}

.footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.motion-ready [data-appear] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.motion-ready [data-appear].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .station__intro[data-appear] {
  transform: translateY(18px) rotate(-0.8deg);
}

.motion-ready .station__intro[data-appear].is-visible {
  transform: rotate(-0.8deg);
}

@keyframes markBeat {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(255, 142, 232, 0.10);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(145, 255, 209, 0.14), 0 0 32px rgba(255, 142, 232, 0.28);
  }
}

@keyframes ticketSlide {
  from {
    background-position: -190px 0, 0 0;
  }

  to {
    background-position: calc(100% + 190px) 0, 38px 0;
  }
}

@keyframes bentoSweep {
  0%,
  18% {
    transform: translateX(-62%);
  }

  58%,
  100% {
    transform: translateX(62%);
  }
}

@keyframes serviceTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes composerCursor {
  50% {
    opacity: 0;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes lamp {
  50% {
    opacity: 0.45;
  }
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes pacmanRun {
  0% {
    left: -76px;
    top: 58%;
    opacity: 0;
    transform: translateY(-50%) scaleX(1);
  }

  4% {
    opacity: 1;
  }

  48% {
    left: calc(100% + 76px);
    top: 58%;
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }

  53% {
    left: calc(100% + 76px);
    top: 36%;
    opacity: 1;
    transform: translateY(-50%) scaleX(-1);
  }

  96% {
    left: -76px;
    top: 36%;
    opacity: 1;
    transform: translateY(-50%) scaleX(-1);
  }

  100% {
    left: -76px;
    top: 36%;
    opacity: 0;
    transform: translateY(-50%) scaleX(-1);
  }
}

@keyframes pacmanMouth {
  50% {
    transform: translateY(-50%) scaleY(0.18);
  }
}

@keyframes bugWiggle {
  50% {
    transform: translateY(-2px);
  }
}

@keyframes panelDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(36px);
  }
}

@keyframes meterBlink {
  50% {
    border-color: rgba(145, 255, 209, 0.5);
    background: rgba(145, 255, 209, 0.12);
  }
}

@keyframes radarShell {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes radarDotBlink {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }

  18% {
    opacity: var(--dot-alpha);
    transform: translate(-50%, -50%) scale(1);
  }

  46% {
    opacity: calc(var(--dot-alpha) * 0.62);
  }

  64% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
}

@keyframes stepLift {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (max-width: 1080px) {
  .topbar {
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    transform: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .topbar__cta {
    display: none;
  }

  .menu {
    position: fixed;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(330px, calc(100vw - 28px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 14, 0.96);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
  }

  .menu.is-open {
    display: grid;
  }

  .brand,
  .brand__copy {
    min-width: 0;
  }

  .brand__name,
  .brand__caption {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .station__shell,
  .strange,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .station__intro {
    min-height: auto;
    transform: none;
  }

  .hero-services {
    min-height: auto;
  }

  .motion-ready .station__intro[data-appear],
  .motion-ready .station__intro[data-appear].is-visible {
    transform: translateY(0);
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-head,
  .archive-toolbar,
  .archive-shell {
    grid-template-columns: 1fr;
  }

  .archive-back {
    justify-self: start;
  }

  .archive-pager {
    justify-content: flex-start;
  }

  .archive-rail {
    position: static;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-rack__head {
    grid-template-columns: 1fr;
  }

  .project-card--bird {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .project-card--organizer,
  .project-card--photo {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card--assistant {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-chomp {
    min-height: 330px;
  }

  .chomp-track {
    right: 32px;
    left: 32px;
    inset-inline: 32px;
  }

}

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    width: calc(100vw - 16px);
  }

  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .station {
    padding-top: 92px;
  }

  .ticker {
    top: 80px;
  }

  .station__shell,
  .tiny-proof,
  .idea-cta,
  .service-map,
  .strange,
  .lab,
  .contact,
  .footer {
    width: calc(100% - 24px);
  }

  .station__shell {
    gap: 12px;
    padding-top: 42px;
  }

  .station__intro,
  .hero-services,
  .strange__copy,
  .weird-console,
  .contact-card {
    padding: 18px;
  }

  .station__intro {
    padding: 70px 18px 66px;
  }

  .idea-cta {
    padding: 34px 0 58px;
  }

  .idea-composer {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 14px 0 16px;
  }

  .idea-composer__copy {
    padding-left: 18px;
  }

  .idea-composer__copy h2 {
    font-size: 1.34rem;
  }

  .idea-composer__dock {
    gap: 10px;
  }

  .idea-composer__draft {
    min-height: 126px;
    transform: none;
  }

  .idea-composer__button {
    justify-self: stretch;
    min-width: 0;
  }

  .station__intro::before {
    top: 18px;
    right: 20px;
    left: 20px;
    height: 22px;
  }

  .station__intro::after {
    right: 20px;
    bottom: 18px;
    left: 20px;
    height: 22px;
  }

  h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.38rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .station__intro h1 {
    font-size: 1.72rem;
    line-height: 1.1;
  }

  .station__intro p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .hero-services {
    min-height: auto;
    padding: 14px;
  }

  .hero-services__head {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: start;
  }

  .hero-services__head h2 {
    font-size: 0.84rem;
    text-align: left;
  }

  .hero-services__head span {
    justify-self: start;
  }

  .service-slider {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-slider__stage {
    min-height: 500px;
  }

  .service-slider__nav {
    grid-template-rows: auto auto auto;
  }

  .service-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-tab {
    min-height: 46px;
  }

  .service-slide {
    padding: 22px;
  }

  .service-slide__label {
    margin-top: 28px;
  }

  .service-slide h3 {
    max-width: 16ch;
    font-size: 1.34rem;
  }

  .tiny-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .tiny-proof span {
    min-width: 0;
    font-size: 0.82rem;
  }

  .archive-page {
    width: calc(100% - 24px);
    padding: 104px 0 58px;
  }

  .archive-head {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .archive-head h1 {
    font-size: 1.82rem;
  }

  .archive-head p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .archive-toolbar {
    gap: 10px;
  }

  .archive-tabs,
  .archive-pager {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .archive-tabs a,
  .archive-tabs span,
  .archive-pager a,
  .archive-pager span {
    flex: 0 0 auto;
  }

  .archive-shell {
    gap: 8px;
  }

  .archive-entry {
    grid-template-columns: 58px minmax(0, 1fr) 92px;
    gap: 10px;
    min-height: 112px;
    padding: 12px 0;
  }

  .archive-entry time {
    padding-top: 6px;
    font-size: 0.66rem;
  }

  .archive-entry__thumb,
  .archive-entry__stub {
    width: 92px;
    height: 68px;
  }

  .archive-entry__body {
    gap: 5px;
  }

  .archive-entry__tags {
    min-height: 23px;
    font-size: 0.58rem;
  }

  .archive-entry strong {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .archive-entry small {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .article-page {
    width: calc(100% - 24px);
    padding: 112px 0 58px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 18px;
  }

  .article-hero::after {
    display: none;
  }

  .article-back {
    margin-bottom: 12px;
  }

  .article-hero__copy {
    gap: 14px;
    padding: 16px 16px 18px;
  }

  .article-hero__copy::after {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .article-hero h1 {
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 0.98;
  }

  .article-hero__deck {
    max-width: 24ch;
    font-size: 1rem;
  }

  .article-hero__frame {
    min-height: auto;
    padding: 14px;
    transform: none;
  }

  .article-hero__frame img {
    min-height: 0;
  }

  .article-layout {
    gap: 18px;
  }

  .article-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-lead-card {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding: 16px;
  }

  .article-lead-card::after {
    right: -10px;
    bottom: -22px;
    font-size: 3.1rem;
  }

  .article-panel,
  .article-note {
    padding: 14px;
  }

  .article-body {
    gap: 12px;
  }

  .article-body > * {
    width: 100%;
  }

  .article-lead {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .article-body > h2 {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 1.72rem;
  }

  .article-body h3 {
    font-size: 1.16rem;
  }

  .article-body p,
  .article-body li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .article-next > div {
    grid-template-columns: 1fr;
  }

  .article-next a {
    min-height: 180px;
  }

  .project-rack {
    gap: 18px;
  }

  .project-rack__head h2 {
    font-size: 1.38rem;
  }

  .project-card--bird,
  .project-card--organizer,
  .project-card--photo,
  .project-card--assistant {
    grid-template-columns: 1fr;
  }

  .project-card--bird {
    min-height: auto;
  }

  .project-card--assistant {
    gap: 0;
  }

  .minachan-card__stage {
    min-height: 188px;
    border-right: 0;
    border-bottom: 1px solid rgba(222, 215, 255, 0.10);
  }

  .project-card__image {
    height: 150px;
  }

  .falling-game {
    justify-self: center;
    width: min(100%, 340px);
    padding: 10px;
  }

  .service-chomp {
    min-height: 310px;
  }

  .service-chomp::before {
    right: 18px;
    left: 18px;
  }

  .chomp-track {
    right: 22px;
    left: 22px;
    inset-inline: 22px;
  }

  .chomp-track {
    top: 50%;
  }

  .pacman {
    --eye-back: 13px;
    --eye-size: 6px;
    --pixel-border: 4px;
    width: 48px;
    height: 48px;
  }

  .pacman::after {
    width: 32px;
    height: 34px;
  }

  .chomp-bug {
    --bug-scale: 0.82;
  }

  .chomp-bug--small {
    --bug-scale: 0.68;
  }

  .chomp-bug--tiny {
    --bug-scale: 0.54;
  }

  .messenger-top,
  .message-composer {
    grid-template-columns: 1fr;
  }

  .messenger-top,
  .message-composer {
    display: grid;
  }

  .messenger-status,
  .shuffle-weird {
    justify-self: start;
  }

  .dialog-switcher {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
    padding: 10px 0 12px;
  }

  .dialog-nav {
    overflow: hidden;
    padding: 0;
    font-size: 0;
  }

  .dialog-nav::before {
    font-size: 1rem;
    content: "<";
  }

  .dialog-nav--next::before {
    content: ">";
  }

  .dialog-switcher__readout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
  }

  .dialog-switcher__readout strong {
    font-size: 0.82rem;
  }

  .dialog-switcher__readout small {
    display: none;
  }

  .quote-slots {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0;
    height: 32px;
  }

  .quote-slot {
    height: 32px;
    font-size: 0.54rem;
  }

  .quote-slot span {
    display: none;
  }

  .chat-thread {
    min-height: 310px;
    padding: 12px;
  }

  .chat-bubble {
    width: min(92%, 520px);
  }

  .strange__copy {
    grid-template-rows: auto auto;
  }

  .inbox-radar {
    min-height: 334px;
  }

  .inbox-radar__screen {
    min-height: 286px;
  }

  .incoming {
    width: 1px;
    height: 1px;
  }

  .incoming::after {
    font-size: 8px;
  }

  .service-map,
  .strange,
  .lab,
  .contact {
    padding: 58px 0;
  }

  .contact-card {
    gap: 20px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand__caption {
    font-size: 0.66rem;
  }

  h1 {
    font-size: 1.48rem;
  }

  .station__intro h1 {
    font-size: 1.52rem;
  }

  .station__intro {
    padding: 62px 16px 58px;
  }

  .station__intro::before,
  .station__intro::after {
    right: 16px;
    left: 16px;
    height: 20px;
  }

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

  .service-slider__stage {
    min-height: 560px;
  }

  .service-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-slider__controls {
    grid-template-columns: 82px minmax(0, 1fr) 92px;
  }

  .service-slide {
    padding: 18px;
  }

  .service-slide__label {
    margin-top: 20px;
    font-size: 0.7rem;
  }

  .service-slide h3 {
    font-size: 1.16rem;
  }

  .service-slide > p:not(.service-slide__label) {
    font-size: 0.82rem;
  }

  .service-slide__note {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .idea-composer__draft {
    padding: 16px;
  }

  .idea-composer__draft p {
    font-size: 0.86rem;
  }

  .idea-composer__button {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px;
  }

  .idea-composer__button b {
    min-height: 28px;
  }

  .archive-head h1 {
    font-size: 1.48rem;
  }

  .archive-back,
  .archive-tabs a,
  .archive-tabs span,
  .archive-pager a,
  .archive-pager span {
    min-height: 31px;
    padding: 6px 8px;
    font-size: 0.58rem;
  }

  .archive-entry {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .archive-entry__thumb,
  .archive-entry__stub {
    grid-column: 1 / -1;
    width: 100%;
    height: 132px;
  }

  .archive-entry__body {
    grid-column: 2;
  }

  .project-card__copy h3 {
    font-size: 1.48rem;
  }

  .article-hero h1 {
    font-size: 1.92rem;
  }

  .article-hero__frame img {
    min-height: 240px;
  }

  .article-panel--toc a {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .radar-noise-dot {
    animation: none !important;
    opacity: calc(var(--dot-alpha) * 0.65) !important;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
