:root {
  color-scheme: dark;
  --ink: #08090d;
  --panel: #11151c;
  --panel-strong: #161c25;
  --line: rgba(240, 245, 236, 0.14);
  --line-soft: rgba(240, 245, 236, 0.08);
  --text: #f4f5f2;
  --muted: #8c939f;
  --muted-light: #b2b8c0;
  --lime: #c7f36b;
  --cyan: #8be7ff;
  --lilac: #b7a1ff;
  --orange: #ff9f6e;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: min(1280px, calc(100vw - 64px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 13%, rgba(183, 161, 255, 0.09), transparent 25rem),
    radial-gradient(circle at 16% 42%, rgba(139, 231, 255, 0.045), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border: 1px solid var(--lime);
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(199, 243, 107, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease;
  mix-blend-mode: screen;
}

.cursor-glow.is-active {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: -0.08em;
}

.brand-name,
.availability,
.eyebrow,
.hero-footer,
.project-meta,
.stage-caption,
.site-footer,
.core-label,
.stack-row,
.lumen-header,
.morph-nav {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-name {
  color: var(--muted-light);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.25rem);
  margin-left: auto;
}

.desktop-nav a,
.site-footer a {
  color: var(--muted-light);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--lime);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  white-space: nowrap;
}

.status-dot,
.signal-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 243, 107, 0.12), 0 0 20px var(--lime);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

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

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 9rem 0 2rem;
}

#particle-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: -45%;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(183, 161, 255, 0.11);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  align-items: center;
  grid-template-columns: minmax(0, 0.93fr) minmax(400px, 1.07fr);
  gap: clamp(2rem, 7vw, 9rem);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

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

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.8rem, 7.3vw, 8.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.91;
}

h2 span {
  color: var(--muted);
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 2rem;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: 0.8rem 1.15rem 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms var(--ease-out);
}

.button span {
  font-size: 1.05rem;
  line-height: 1;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #ddff92;
}

.button-quiet {
  border-color: var(--line);
  color: var(--muted-light);
}

.button-quiet:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.signal-pulse {
  width: 5px;
  height: 5px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 5%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 231, 255, 0.11), rgba(139, 231, 255, 0.02) 37%, transparent 70%);
  filter: blur(16px);
  content: '';
}

.stage-scanline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 243, 107, 0.36), transparent);
  opacity: 0.45;
}

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(31vw, 410px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.core-ring,
.core-axis,
.core-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.core-ring {
  border: 1px solid rgba(199, 243, 107, 0.22);
  border-radius: 50%;
}

.core-ring-outer {
  width: 100%;
  height: 100%;
  border-color: rgba(183, 161, 255, 0.2);
  animation: spin 32s linear infinite;
}

.core-ring-middle {
  width: 77%;
  height: 77%;
  border-style: dashed;
  border-color: rgba(139, 231, 255, 0.35);
  animation: spin-reverse 23s linear infinite;
}

.core-ring-inner {
  width: 55%;
  height: 55%;
  border-color: rgba(199, 243, 107, 0.52);
  box-shadow: inset 0 0 45px rgba(199, 243, 107, 0.06), 0 0 60px rgba(199, 243, 107, 0.07);
}

.core-orb {
  display: grid;
  width: 32%;
  height: 32%;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #efffb5, var(--lime) 12%, #728f42 44%, #161b17 72%);
  box-shadow: 0 0 70px rgba(199, 243, 107, 0.3), inset -18px -22px 28px rgba(8, 9, 13, 0.56);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
}

.core-axis {
  width: 122%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 245, 236, 0.3), transparent);
}

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

.core-label {
  position: absolute;
  color: var(--muted);
  font-size: 0.6rem;
}

.core-label-top {
  top: 7%;
  right: 11%;
  color: var(--lime);
}

.core-label-bottom {
  bottom: 10%;
  left: 13%;
}

.orbit-sticker {
  position: absolute;
  display: flex;
  width: 90px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.58);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  line-height: 1.1;
  text-align: center;
  transform: rotate(-9deg);
  backdrop-filter: blur(8px);
}

.orbit-sticker span {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}

.orbit-sticker small {
  color: currentColor;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.sticker-lime {
  top: 9%;
  left: 2%;
  color: var(--lime);
  animation: float-one 7s ease-in-out infinite;
}

.sticker-cyan {
  top: 20%;
  right: 3%;
  color: var(--cyan);
  animation: float-two 9s ease-in-out infinite;
}

.sticker-lilac {
  right: 12%;
  bottom: 13%;
  color: var(--lilac);
  animation: float-three 8s ease-in-out infinite;
}

.stage-caption {
  position: absolute;
  right: 9%;
  bottom: 3%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--muted);
}

.caption-arrow {
  color: var(--lime);
  font-size: 1rem;
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.section-shell {
  padding-top: clamp(8rem, 15vw, 14rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
}

.section-intro {
  max-width: 280px;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: border-color 300ms ease, transform 220ms var(--ease-out), background 300ms ease;
}

.project-card:hover {
  border-color: rgba(199, 243, 107, 0.45);
  background: var(--panel-strong);
}

.project-card:nth-child(2) {
  margin-top: 5rem;
}

.project-card:nth-child(3) {
  margin-top: -1rem;
}

.project-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.project-info {
  padding: 1.15rem 1.25rem 1.35rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.project-kind {
  color: var(--muted-light);
  text-align: right;
}

.project-info h3 {
  margin: 1.6rem 0 0.3rem;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 0.9;
}

.project-info p {
  min-height: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--muted-light);
}

.project-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  transition: gap 180ms ease;
}

.project-card:hover .project-link,
.text-link:hover {
  gap: 1rem;
}

.nova-art {
  background: radial-gradient(circle at 70% 38%, rgba(199, 243, 107, 0.25), transparent 23%), #182117;
}

.nova-topbar,
.lumen-header {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 245, 242, 0.6);
  font-size: 0.57rem;
}

.nova-topbar span:last-child {
  color: var(--lime);
}

.nova-grid-lines {
  position: absolute;
  inset: 22% 8% 8%;
  opacity: 0.35;
  background-image: linear-gradient(rgba(199, 243, 107, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(199, 243, 107, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse, black 20%, transparent 75%);
}

.nova-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  border: 1px solid rgba(199, 243, 107, 0.32);
  background: rgba(12, 18, 13, 0.66);
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.6rem;
  backdrop-filter: blur(8px);
}

.nova-panel strong {
  margin: 0.3rem 0 0.14rem;
  color: var(--lime);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.nova-panel small {
  color: rgba(244, 245, 242, 0.46);
}

.nova-panel-main {
  top: 28%;
  left: 10%;
  width: 39%;
}

.nova-panel-side {
  right: 9%;
  bottom: 16%;
  width: 27%;
}

.nova-panel-side strong {
  font-size: 1.8rem;
}

.nova-orb {
  position: absolute;
  top: 26%;
  right: 11%;
  width: 31%;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 243, 107, 0.6);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #efffb5, var(--lime) 14%, #5a7641 50%, #142016 74%);
  box-shadow: 0 0 45px rgba(199, 243, 107, 0.28);
}

.orbit-art {
  background: radial-gradient(circle at 52% 54%, rgba(139, 231, 255, 0.2), transparent 18%), #0a151d;
}

.orbit-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(139, 231, 255, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, var(--cyan) 12%, #397f9d 40%, #0c1f2b 74%);
  box-shadow: 0 0 90px rgba(139, 231, 255, 0.4), inset -22px -26px 32px rgba(8, 9, 13, 0.5);
  transform: translate(-50%, -50%);
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 77%;
  height: 28%;
  border: 1px solid rgba(139, 231, 255, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-23deg);
}

.orbit-path-two {
  width: 62%;
  height: 88%;
  border-color: rgba(183, 161, 255, 0.38);
  transform: translate(-50%, -50%) rotate(36deg);
}

.orbit-star {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.star-one {
  top: 26%;
  left: 25%;
}

.star-two {
  right: 18%;
  bottom: 29%;
  background: var(--lilac);
  box-shadow: 0 0 18px var(--lilac);
}

.orbit-art-label,
.orbit-art-caption {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.orbit-art-label {
  top: 1.4rem;
  left: 1.4rem;
  color: var(--cyan);
}

.orbit-art-caption {
  right: 1.4rem;
  bottom: 1.4rem;
  color: var(--muted);
}

.lumen-art {
  background: linear-gradient(145deg, #272044, #17152a 52%, #0f101a);
}

.lumen-header {
  color: rgba(244, 245, 242, 0.62);
}

.lumen-balance {
  position: absolute;
  top: 26%;
  left: 9%;
  display: flex;
  flex-direction: column;
}

.lumen-balance small,
.lumen-balance span,
.lumen-axis {
  color: rgba(244, 245, 242, 0.5);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.lumen-balance strong {
  margin: 0.5rem 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.09em;
}

.lumen-balance span {
  color: var(--lilac);
}

.lumen-chart {
  position: absolute;
  right: 8%;
  bottom: 19%;
  left: 8%;
  display: flex;
  height: 23%;
  align-items: end;
  gap: 2%;
  border-bottom: 1px solid rgba(244, 245, 242, 0.18);
}

.lumen-chart::after {
  position: absolute;
  right: -3%;
  bottom: 20%;
  left: -3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lilac), transparent);
  box-shadow: 0 0 16px var(--lilac);
  content: '';
  transform: rotate(-8deg);
}

.lumen-chart i {
  display: block;
  flex: 1;
  background: linear-gradient(to top, rgba(183, 161, 255, 0.18), rgba(183, 161, 255, 0.75));
}

.lumen-chart i:nth-child(1) { height: 28%; }
.lumen-chart i:nth-child(2) { height: 44%; }
.lumen-chart i:nth-child(3) { height: 36%; }
.lumen-chart i:nth-child(4) { height: 52%; }
.lumen-chart i:nth-child(5) { height: 48%; }
.lumen-chart i:nth-child(6) { height: 64%; }
.lumen-chart i:nth-child(7) { height: 57%; }
.lumen-chart i:nth-child(8) { height: 78%; }
.lumen-chart i:nth-child(9) { height: 71%; }
.lumen-chart i:nth-child(10) { height: 96%; background: linear-gradient(to top, rgba(199, 243, 107, 0.2), var(--lime)); }

.lumen-axis {
  position: absolute;
  right: 8%;
  bottom: 11%;
  left: 8%;
  display: flex;
  justify-content: space-between;
}

.morph-art {
  background: #d9d1c4;
  color: #201e1b;
}

.morph-frame {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(32, 30, 27, 0.26);
}

.morph-nav {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  left: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: rgba(32, 30, 27, 0.55);
  font-size: 0.54rem;
}

.morph-product {
  position: absolute;
  border: 1px solid rgba(32, 30, 27, 0.22);
  background: rgba(244, 239, 229, 0.4);
}

.morph-product-large {
  top: 18%;
  left: 9%;
  width: 51%;
  height: 67%;
}

.morph-product-small {
  right: 9%;
  bottom: 19%;
  width: 23%;
  height: 38%;
}

.morph-object {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 49%;
  aspect-ratio: 1;
  border: 1px solid rgba(32, 30, 27, 0.55);
  border-radius: 50% 46% 54% 42%;
  background: linear-gradient(145deg, #f9f1de, #aca294);
  box-shadow: 18px 16px 0 rgba(32, 30, 27, 0.08);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.morph-object-small {
  width: 58%;
  background: linear-gradient(145deg, #f4dfbf, #987f70);
  transform: translate(-50%, -50%) rotate(22deg);
}

.morph-product span {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
}

.morph-copy {
  position: absolute;
  top: 43%;
  right: 10%;
  color: #201e1b;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.7vw, 2.7rem);
  line-height: 0.9;
  text-align: right;
}

.morph-copy em {
  color: #756457;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.62fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.about-statement p {
  max-width: 560px;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.03;
}

.about-statement span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.about-copy {
  color: var(--muted-light);
}

.about-copy p {
  margin-bottom: 1.4rem;
  font-size: 1.04rem;
  line-height: 1.6;
}

.about-copy .muted-copy {
  color: var(--muted);
  font-size: 0.93rem;
}

.about-stats {
  display: grid;
  gap: 1.35rem;
}

.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
}

.about-stats strong {
  color: var(--lime);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.about-stats span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.stack-list {
  border-top: 1px solid var(--line);
}

.stack-row {
  display: grid;
  grid-template-columns: 70px minmax(130px, 0.65fr) 1fr 30px;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: padding 220ms var(--ease-out), color 220ms ease, background 220ms ease;
}

.stack-row:hover {
  padding-inline: 1rem;
  background: rgba(199, 243, 107, 0.035);
  color: var(--text);
}

.stack-index {
  color: var(--lime);
}

.stack-row strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.4rem);
  font-weight: 450;
  letter-spacing: -0.06em;
  text-transform: none;
}

.stack-arrow {
  color: var(--lime);
  font-size: 1.1rem;
  text-align: right;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.process-step {
  min-height: 310px;
  padding: 1.5rem;
  background: var(--ink);
}

.process-step:nth-child(2) {
  background: rgba(139, 231, 255, 0.045);
}

.process-step:nth-child(3) {
  background: rgba(183, 161, 255, 0.055);
}

.process-number {
  display: inline-block;
  margin-bottom: 8rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.process-step h3 {
  margin-bottom: 0.7rem;
  font-size: 2.2rem;
}

.process-step p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.inspiration-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.inspiration-heading {
  position: sticky;
  top: 110px;
}

.inspiration-heading h2 {
  margin-bottom: 1.4rem;
}

.inspiration-heading > p:last-child {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.reference-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  transition: border-color 220ms ease, transform 220ms var(--ease-out), background 220ms ease;
}

.reference-card:nth-child(2) {
  margin-top: 4rem;
}

.reference-card:hover {
  border-color: rgba(139, 231, 255, 0.48);
  background: rgba(139, 231, 255, 0.035);
  transform: translateY(-4px);
}

.reference-media {
  margin: 0;
  overflow: hidden;
  background: #10131a;
}

.reference-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.92);
  transition: filter 220ms ease, transform 500ms var(--ease-out);
}

.reference-card:hover .reference-image {
  filter: saturate(1);
  transform: scale(1.025);
}

.reference-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reference-meta span:first-child {
  color: var(--muted);
}

.reference-meta span:last-child {
  color: var(--cyan);
  text-align: right;
}

.reference-card h3 {
  margin: 0.9rem 1.15rem 0.25rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.06em;
}

.reference-card p {
  margin: 0 1.15rem 1.25rem;
  color: var(--muted-light);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes float-one {
  0%, 100% { transform: translate(0, 0) rotate(-9deg); }
  50% { transform: translate(7px, -13px) rotate(-3deg); }
}

@keyframes float-two {
  0%, 100% { transform: translate(0, 0) rotate(11deg); }
  50% { transform: translate(-10px, 8px) rotate(5deg); }
}

@keyframes float-three {
  0%, 100% { transform: translate(0, 0) rotate(7deg); }
  50% { transform: translate(8px, 12px) rotate(14deg); }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 44px, 900px);
  }

  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }

  .hero-stage {
    min-height: 480px;
  }

  .signal-core {
    width: min(42vw, 360px);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats div {
    border-bottom: 0;
    border-left: 1px solid var(--line-soft);
    padding-left: 1rem;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .desktop-nav,
  .availability {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 18px;
    border-top: 0 solid var(--line-soft);
    opacity: 0;
    transition: max-height 320ms var(--ease-out), opacity 220ms ease, padding 320ms var(--ease-out), border-color 220ms ease;
  }

  .mobile-menu.is-open {
    max-height: 430px;
    padding-block: 0.5rem 1rem;
    border-top-width: 1px;
    opacity: 1;
  }

  .mobile-menu a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted-light);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
  }

  .mobile-menu a span {
    color: var(--lime);
    font-family: var(--mono);
    font-size: 0.63rem;
  }

  .hero {
    padding-top: 8.5rem;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  h1 {
    max-width: 630px;
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .hero-stage {
    min-height: min(95vw, 500px);
  }

  .signal-core {
    width: min(67vw, 360px);
  }

  .hero-note {
    margin-top: 2rem;
  }

  .hero-footer {
    margin-top: 3rem;
  }

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

  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    margin-top: 0;
  }

  .project-art {
    min-height: min(82vw, 450px);
  }

  .section-heading {
    display: block;
  }

  .section-intro {
    margin-top: 1.5rem;
  }

  .inspiration-section {
    display: block;
  }

  .inspiration-heading {
    position: static;
  }

  .reference-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .reference-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-footer {
    gap: 1rem;
    font-size: 0.56rem;
  }

  .hero-footer span:nth-child(2) {
    display: none;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 390px;
  }

  .orbit-sticker {
    width: 70px;
    height: 70px;
  }

  .orbit-sticker span {
    font-size: 0.84rem;
  }

  .orbit-sticker small {
    font-size: 0.46rem;
  }

  .sticker-lime {
    top: 4%;
  }

  .sticker-cyan {
    top: 20%;
  }

  .sticker-lilac {
    right: 2%;
    bottom: 8%;
  }

  .about-grid {
    display: block;
  }

  .about-copy {
    margin-top: 3rem;
  }

  .about-stats {
    display: grid;
    margin-top: 3.5rem;
  }

  .about-stats strong {
    font-size: 2.1rem;
  }

  .stack-row {
    grid-template-columns: 35px 1fr 25px;
    gap: 0.65rem;
  }

  .stack-row > span:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2;
    padding-bottom: 1rem;
    font-size: 0.58rem;
    text-transform: none;
  }

  .stack-row > span:last-child {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 270px;
  }

  .process-number {
    margin-bottom: 5rem;
  }

  .project-meta {
    align-items: start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .project-kind {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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