:root {
  --ink: #080b0e;
  --ink-soft: #10151a;
  --charcoal: #182027;
  --paper: #e5e8e7;
  --paper-dim: #c7ced1;
  --white: #f2f4f3;
  --muted: #929da3;
  --line: rgba(210, 222, 228, 0.17);
  --dark-line: rgba(8, 11, 14, 0.18);
  --copper: #82949e;
  --acid: #9fd6f4;
  --signal-rgb: 159, 214, 244;
  --steel-rgb: 130, 148, 158;
  --max: 1560px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --rail: clamp(4.5rem, 7vw, 7rem);
  --section-gap: clamp(1.5rem, 3vw, 3.5rem);
  --sans: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --glow-x: 76%;
  --glow-y: 16%;
  --glow-opacity: 0.18;
  --glow-active-opacity: 0.32;
  --glow-rotate: 0deg;
  --hud-y: 0%;
  --section-shift: 0px;
  --field-x: 50%;
  --field-y: 50%;
  --hero-pointer-x: 67%;
  --hero-pointer-y: 45%;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
}

@property --glow-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 76%;
}

@property --glow-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 16%;
}

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

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

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 79;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 27%, rgba(var(--signal-rgb), 0.075) 44%, rgba(242, 244, 243, 0.03) 49%, rgba(var(--steel-rgb), 0.07) 55%, transparent 73%);
  background-position: var(--glow-x) var(--glow-y);
  background-size: 185% 185%;
  content: "";
  mix-blend-mode: screen;
  opacity: 0.46;
  transform: rotate(var(--glow-rotate)) scale(1.05);
  transition:
    background-position 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: ambient-breathe 8s ease-in-out infinite alternate;
  will-change: background-position, opacity, transform;
}

body::after {
  position: fixed;
  z-index: 80;
  inset: -24%;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(var(--signal-rgb), 0.17) 0, rgba(var(--signal-rgb), 0.055) 11rem, transparent 25rem),
    radial-gradient(circle at calc(100% - var(--glow-x)) calc(100% - var(--glow-y)), rgba(var(--steel-rgb), 0.13) 0, rgba(var(--steel-rgb), 0.04) 14rem, transparent 30rem);
  content: "";
  mix-blend-mode: screen;
  opacity: var(--glow-opacity);
  transform: rotate(var(--glow-rotate)) scale(1.04);
  transition:
    --glow-x 220ms cubic-bezier(0.22, 1, 0.36, 1),
    --glow-y 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background, opacity, transform;
}

body.is-scrolling::after {
  opacity: var(--glow-active-opacity);
  transform: rotate(var(--glow-rotate)) scale(1.08);
}

body.is-scrolling::before {
  opacity: 0.7;
  transform: rotate(var(--glow-rotate)) scale(1.1);
}

body.menu-open {
  overflow: hidden;
}

.global-cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(var(--signal-rgb), 0.72);
  border-radius: 50%;
  background: rgba(8, 11, 14, 0.12);
  box-shadow: 0 0 1.1rem rgba(var(--signal-rgb), 0.15), inset 0 0 0.6rem rgba(var(--signal-rgb), 0.06);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition:
    width 260ms cubic-bezier(0.16, 1, 0.3, 1),
    height 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease,
    opacity 180ms ease;
  will-change: transform, width, height;
}

.global-cursor i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0.7rem rgba(var(--signal-rgb), 0.8);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, background 220ms ease;
}

.mobile-motion-layer {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  html.cursor-ready,
  html.cursor-ready a,
  html.cursor-ready button,
  html.cursor-ready summary {
    cursor: none;
  }

  html.cursor-ready .global-cursor { display: block; }
  html.cursor-visible .global-cursor { opacity: 1; }

  html.cursor-interactive .global-cursor {
    width: 2.25rem;
    height: 2.25rem;
    border-color: rgba(var(--signal-rgb), 0.4);
    background: rgba(var(--signal-rgb), 0.09);
  }

  html.cursor-interactive .global-cursor i {
    background: var(--acid);
    transform: translate(-50%, -50%) scale(0.72);
  }

  html.cursor-pressed .global-cursor {
    width: 1.15rem;
    height: 1.15rem;
  }
}

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

picture {
  display: block;
}

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

button,
summary {
  font: inherit;
}

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

.mobile-break {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid) 0%, #f5f2d7 50%, var(--copper) 100%);
  box-shadow: 0 0 18px rgba(var(--signal-rgb), 0.42);
  transform: scaleX(0);
  transform-origin: left;
}

.spatial-hud {
  position: fixed;
  z-index: 72;
  top: 50%;
  right: clamp(0.45rem, 1.3vw, 1.25rem);
  display: grid;
  grid-template-columns: auto 1px;
  gap: 0.7rem 0.55rem;
  align-items: center;
  color: rgba(246, 244, 236, 0.56);
  pointer-events: none;
  transform: translateY(-50%);
}

.spatial-hud > span {
  grid-row: 1;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.spatial-hud > i {
  position: relative;
  grid-row: 1;
  width: 1px;
  height: clamp(7rem, 18vh, 11rem);
  background: rgba(246, 244, 236, 0.2);
}

.spatial-hud > i::before,
.spatial-hud > i::after {
  position: absolute;
  left: -2px;
  width: 5px;
  height: 1px;
  background: rgba(246, 244, 236, 0.58);
  content: "";
}

.spatial-hud > i::before { top: 0; }
.spatial-hud > i::after { bottom: 0; }

.spatial-hud > i b {
  position: absolute;
  top: var(--hud-y);
  left: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 12px rgba(var(--signal-rgb), 0.58);
  transform: translateY(-50%);
  transition: top 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spatial-hud > em {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--acid);
  font-family: var(--sans);
  font-size: 0.5rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-status {
  position: fixed;
  z-index: 72;
  bottom: clamp(0.8rem, 1.6vw, 1.5rem);
  left: var(--pad);
  display: grid;
  grid-template-columns: 0.45rem auto;
  gap: 0.18rem 0.55rem;
  align-items: center;
  pointer-events: none;
  color: rgba(246, 244, 236, 0.7);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  mix-blend-mode: difference;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.footer-visible .ai-status {
  opacity: 0;
  transform: translate3d(0, 0.8rem, 0);
}

.ai-status i {
  grid-row: 1 / 3;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0.44);
  animation: ai-status-pulse 2.4s ease-out infinite;
}

.ai-status span,
.ai-status em {
  font-style: normal;
  line-height: 1.15;
}

.ai-status em {
  color: rgba(246, 244, 236, 0.42);
  font-size: 0.42rem;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.75rem;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 300ms ease, border-color 300ms ease, min-height 300ms ease;
}

.site-header.is-scrolled {
  min-height: 4.6rem;
  border-color: var(--line);
  background: rgba(9, 9, 8, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  width: clamp(8.4rem, 12vw, 11.2rem);
  height: 2.6rem;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 90;
  justify-self: end;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.5rem 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.menu-toggle i,
.menu-toggle i::after {
  display: block;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  transition: transform 250ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::after {
  position: absolute;
  top: 0.38rem;
  content: "";
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-90deg);
}

.site-nav {
  position: fixed;
  z-index: 85;
  inset: 0;
  background: rgba(3, 3, 2, 0.58);
  backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 3vh, 2.5rem);
  width: min(34rem, 100%);
  height: 100%;
  min-height: 100svh;
  padding: clamp(6.7rem, 11vh, 8rem) clamp(1.5rem, 3.2vw, 2.8rem) clamp(1.5rem, 4vh, 2.8rem);
  overflow-y: auto;
  border-left: 1px solid rgba(246, 244, 236, 0.16);
  background: #0b0f13;
  box-shadow: -2rem 0 6rem rgba(0, 0, 0, 0.34);
  transform: translate3d(100%, 0, 0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav-panel::before {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, #0b0f13 0%, rgba(11, 15, 19, 0.66) 42%, rgba(11, 15, 19, 0.9) 100%),
    url("assets/posters/custom-product-courtyard-v1.png") 63% center / cover no-repeat;
  content: "";
  opacity: 0.48;
  pointer-events: none;
}

.site-nav-panel::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--acid), transparent 38%, var(--copper));
  content: "";
  opacity: 0.78;
}

.site-nav.is-open .site-nav-panel {
  transform: none;
}

.site-nav-panel > * {
  position: relative;
  z-index: 1;
}

.site-nav-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: rgba(246, 244, 236, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.site-nav-links {
  align-self: center;
  border-top: 1px solid var(--line);
}

.site-nav-links > a {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav-links > a::after {
  color: rgba(246, 244, 236, 0.34);
  content: "↗";
  font-size: 0.8rem;
  transition: color 220ms ease, transform 220ms ease;
}

.site-nav-links b {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.site-nav-links > a:hover,
.site-nav-links > a:focus-visible {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  color: var(--acid);
}

.site-nav-links > a:hover::after,
.site-nav-links > a:focus-visible::after {
  color: var(--acid);
  transform: translate(0.15rem, -0.15rem);
}

.site-nav-links a span {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.site-nav-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.site-nav-contact {
  display: grid;
  gap: 0.45rem;
}

.site-nav-contact span {
  color: rgba(246, 244, 236, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.site-nav-contact a {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.site-nav-action {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav-action i {
  font-size: 0.9rem;
  font-style: normal;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
}

main > section:not(.hero) {
  position: relative;
  isolation: isolate;
}

main > section:not(.hero) > * {
  position: relative;
  z-index: 1;
}

main > section:not(.hero)::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at var(--field-x) var(--field-y), rgba(var(--signal-rgb), 0.095), transparent min(28rem, 42vw)),
    linear-gradient(rgba(125, 126, 116, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 126, 116, 0.075) 1px, transparent 1px);
  background-position: var(--section-shift) var(--section-shift);
  background-size: 48px 48px;
  content: "";
  opacity: 0.16;
  transition: opacity 900ms ease;
}

main > section:not(.hero)::after {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: var(--pad);
  pointer-events: none;
  color: currentColor;
  content: attr(data-zone);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  opacity: 0;
  text-transform: uppercase;
  transform: translate3d(0, 0.6rem, 0);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

main > section.section-live:not(.hero)::before {
  opacity: 0.48;
  filter: contrast(1.08) saturate(1.18);
}

main > section.section-live:not(.hero)::after {
  opacity: 0.36;
  transform: translate3d(0, 0, 0);
}

main > section.section-live .section-index span {
  border-color: var(--acid);
  box-shadow: 0 0 0 5px rgba(var(--signal-rgb), 0.07), 0 0 22px rgba(var(--signal-rgb), 0.13);
}

main > section.section-live .kicker i {
  color: var(--acid);
  text-shadow: 0 0 14px rgba(var(--signal-rgb), 0.48);
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
}

.section-index p {
  margin: 0;
  color: var(--muted);
}

.section-index--light span {
  border-color: rgba(9, 9, 8, 0.44);
}

.section-index--light p {
  color: #626c70;
}

.kicker {
  margin-bottom: 1.7rem;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker i {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.7rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

.section-heading h2,
.manifesto-main h2,
.making-title h2,
.lead-title h2,
.answers-heading h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.8vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 40rem;
  color: inherit;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.8;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #06090c;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  margin: 0;
}

.hero-media picture {
  overflow: hidden;
  transform: translate3d(var(--hero-pan-x), var(--hero-pan-y), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation:
    hero-calibrate 2800ms cubic-bezier(0.16, 1, 0.3, 1) both,
    hero-optical-breath 18s ease-in-out 2800ms infinite alternate;
  will-change: filter, transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 4, 3, 0.88) 0%, rgba(4, 4, 3, 0.56) 33%, rgba(4, 4, 3, 0.08) 68%),
    linear-gradient(0deg, rgba(4, 4, 3, 0.75) 0%, transparent 42%);
  background-position: 0% 50%;
  background-size: 132% 132%;
  animation: hero-light-shift 18s ease-in-out infinite alternate;
}

.hero-tech {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.hero-tech::before {
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), transparent 0 3.5rem, rgba(var(--signal-rgb), 0.055) 3.58rem, transparent 3.72rem),
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(var(--signal-rgb), 0.075), transparent 15rem);
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: background-position 260ms ease;
}

.hero-tech::after {
  inset: -30% -20%;
  background: linear-gradient(108deg, transparent 38%, rgba(242, 244, 243, 0.02) 43%, rgba(var(--signal-rgb), 0.105) 49%, rgba(var(--steel-rgb), 0.045) 53%, transparent 61%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-45%, 0, 0) rotate(-4deg);
  animation: hero-refraction 13s cubic-bezier(0.76, 0, 0.24, 1) 3.2s infinite;
}

.hero-tech-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--signal-rgb), 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--signal-rgb), 0.04) 1px, transparent 1px);
  background-position: center bottom;
  background-size: clamp(2.8rem, 5vw, 5.5rem) clamp(2.8rem, 5vw, 5.5rem);
  clip-path: polygon(0 60%, 100% 42%, 100% 100%, 0 100%);
  opacity: 0.22;
  transform: perspective(520px) rotateX(62deg) scale(1.45) translate3d(0, 18%, 0);
  transform-origin: center bottom;
  animation:
    hero-mesh-boot 2200ms cubic-bezier(0.16, 1, 0.3, 1) 650ms both,
    hero-mesh-drift 16s linear 2850ms infinite;
}

.hero-depth-scan {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(var(--signal-rgb), 0.13) 28%, rgba(242, 244, 243, 0.9) 52%, rgba(var(--signal-rgb), 0.16) 76%, transparent 96%);
  box-shadow: 0 0 1.5rem rgba(var(--signal-rgb), 0.2);
  mix-blend-mode: screen;
  opacity: 0;
  animation: hero-depth-scan 9s cubic-bezier(0.76, 0, 0.24, 1) 2.6s infinite;
}

.hero-telemetry {
  position: absolute;
  top: clamp(7rem, 15vh, 10rem);
  right: var(--pad);
  display: flex;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(246, 244, 236, 0.24);
  border-bottom: 1px solid rgba(246, 244, 236, 0.12);
  color: rgba(246, 244, 236, 0.48);
  font-size: 0.46rem;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: hero-telemetry-in 900ms ease 1900ms both;
}

.hero-telemetry b {
  color: var(--acid);
  font-weight: 400;
}

.hero-spectrum {
  position: absolute;
  right: var(--pad);
  bottom: clamp(5rem, 10vh, 8rem);
  display: flex;
  gap: 3px;
  align-items: end;
  height: 1.8rem;
}

.hero-spectrum i {
  width: 2px;
  height: 28%;
  background: var(--acid);
  box-shadow: 0 0 0.6rem rgba(var(--signal-rgb), 0.34);
  transform-origin: bottom;
  animation: hero-spectrum 2.8s ease-in-out infinite alternate;
}

.hero-spectrum i:nth-child(2) { height: 72%; animation-delay: -0.8s; }
.hero-spectrum i:nth-child(3) { height: 42%; animation-delay: -1.6s; }
.hero-spectrum i:nth-child(4) { height: 100%; animation-delay: -2.2s; }
.hero-spectrum i:nth-child(5) { height: 56%; animation-delay: -1.1s; }
.hero-spectrum i:nth-child(6) { height: 34%; animation-delay: -2.5s; }

.hero.hero-paused .hero-media img,
.hero.hero-paused .hero-shade,
.hero.hero-paused .hero-tech::after,
.hero.hero-paused .hero-tech-mesh,
.hero.hero-paused .hero-depth-scan,
.hero.hero-paused .hero-spectrum i {
  animation-play-state: paused;
}

.hero-grid {
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  align-items: end;
  min-height: 100svh;
  padding: clamp(7.5rem, 12vw, 10rem) var(--pad) 3rem;
}

.eyebrow {
  grid-column: 1 / -1;
  align-self: start;
  margin: 1rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 2rem;
  color: var(--acid);
}

.hero-heading {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.hero h1 {
  position: relative;
  z-index: 2;
  max-width: 9em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-en {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 18%;
  margin: 0;
  color: transparent;
  font-size: clamp(5rem, 13vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.68;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
  white-space: nowrap;
}

.hero-copy {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 28rem);
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-copy p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.96rem, 1.25vw, 1.2rem);
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.text-link span {
  color: var(--acid);
  font-size: 1rem;
}

.hero-caption {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 6.5rem;
  display: none;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  margin-top: 0.7rem;
  color: var(--acid);
  font-style: normal;
}

.manifesto {
  display: grid;
  grid-template-columns: var(--rail) minmax(20rem, 1.4fr) minmax(18rem, 0.7fr);
  gap: var(--section-gap);
  background: var(--ink);
}

.manifesto-main h2 {
  max-width: 13em;
  margin-bottom: 0;
}

.manifesto-copy {
  align-self: end;
  color: var(--paper-dim);
  font-size: 1rem;
  line-height: 1.9;
}

.manifesto-marks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.manifesto-marks div {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-marks span {
  grid-row: 1 / 3;
  color: var(--acid);
  font-size: 1.2rem;
}

.manifesto-marks b {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto-marks small {
  margin-top: 0.3rem;
  color: var(--muted);
}

.objects {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: 0 var(--section-gap);
  background: var(--paper);
  color: var(--ink);
}

.objects .section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
}

.objects .section-heading .kicker,
.objects .section-heading h2 {
  grid-column: 1;
}

.objects .section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  padding-bottom: 2.4rem;
  color: #596368;
}

.object-image,
.object-list {
  grid-column: 1 / -1;
}

.object-image {
  position: relative;
  margin: clamp(2rem, 5vw, 5rem) 0 0;
  overflow: hidden;
}

.object-image img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.object-image figcaption,
.factory-plate figcaption,
.craft-image figcaption,
.context-media figcaption,
.experience-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.object-image figcaption span {
  color: #6a7376;
}

.object-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.object-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  min-height: 15rem;
  padding: clamp(1.4rem, 3vw, 2.7rem);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  transition: background 250ms ease, color 250ms ease;
}

.object-card:hover {
  background: var(--ink);
  color: var(--white);
}

.object-card .object-no {
  color: #747d80;
  font-size: 0.66rem;
}

.object-card > i {
  grid-column: 3;
  color: var(--copper);
  font-size: 1.5rem;
  font-style: normal;
}

.object-card h3 {
  grid-column: 2 / -1;
  margin: 1.7rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 400;
}

.object-card p {
  grid-column: 2 / -1;
  max-width: 32rem;
  margin-bottom: 2rem;
  color: #5b6569;
  font-size: 0.88rem;
  line-height: 1.75;
}

.object-card:hover p {
  color: var(--paper-dim);
}

.object-card small {
  grid-column: 2 / -1;
  align-self: end;
  color: #6d767a;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.contexts {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 100svh;
  background: #0d1115;
}

.context-media {
  position: sticky;
  top: 0;
  height: 100svh;
  margin: 0;
}

.context-media picture,
.experience-image picture {
  width: 100%;
  height: 100%;
}

.context-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.context-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(13, 13, 12, 0.74));
  content: "";
}

.context-media figcaption {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
}

.context-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.context-panel .section-heading {
  margin: 4rem 0;
}

.context-panel .section-heading h2 {
  font-size: clamp(2.5rem, 4.7vw, 5.4rem);
}

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

.scene-list article {
  display: grid;
  grid-template-columns: 2rem 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.scene-list article > span {
  grid-row: 1 / 3;
  color: var(--acid);
}

.scene-list h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  font-weight: 400;
}

.scene-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.making {
  background: #10151a;
}

.making-lead {
  display: grid;
  grid-template-columns: var(--rail) minmax(20rem, 1fr) minmax(16rem, 0.55fr);
  gap: var(--section-gap);
}

.making-title h2 {
  margin-bottom: 0;
}

.making-intro {
  align-self: end;
  margin: 0;
  color: var(--paper-dim);
  line-height: 1.9;
}

.factory-plate {
  position: relative;
  width: calc(100% - (var(--pad) * 2));
  max-width: var(--max);
  margin: 0 auto;
}

.factory-plate img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.factory-plate figcaption {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.process-step {
  display: grid;
  min-height: 17rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 1px solid var(--line);
}

.process-step > span {
  color: var(--muted);
  font-size: 0.62rem;
}

.process-step > i {
  justify-self: end;
  grid-row: 1;
  color: var(--acid);
  font-size: 1.1rem;
  font-style: normal;
}

.process-step h3 {
  align-self: end;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.craft-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 8rem);
  align-items: center;
  padding-top: 0;
}

.craft-image {
  margin: 0;
}

.craft-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.craft-image figcaption {
  color: var(--muted);
}

.craft-copy h3 {
  margin-bottom: 3rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.craft-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.craft-copy li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.craft-copy li span {
  color: var(--copper);
  font-size: 0.62rem;
}

.lead-times {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: 0 var(--section-gap);
  background: var(--paper);
  color: var(--ink);
}

.lead-title h2 {
  margin-bottom: 3rem;
}

.time-grid,
.lead-note {
  grid-column: 1 / -1;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.time-card {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 14rem;
  padding: 1.5rem;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.time-card > span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.time-card strong {
  grid-column: 1 / -1;
  align-self: end;
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.time-card small {
  grid-column: 1 / -1;
  margin-top: 1rem;
  color: #626d71;
}

.time-card--acid {
  background: var(--acid);
}

.lead-note {
  max-width: 60rem;
  margin: 2rem 0 0;
  color: #515b60;
  font-size: 0.82rem;
  line-height: 1.8;
}

.lead-note span {
  margin-right: 0.7rem;
  color: var(--copper);
}

.experience {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--ink);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy .section-heading {
  margin: 4rem 0 2rem;
}

.experience-copy .section-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 5.6rem);
}

.project-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.project-names span {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 4rem;
  color: var(--paper-dim);
  font-size: 0.76rem;
}

.legal-note {
  max-width: 42rem;
  margin-top: 2rem;
  color: #737d81;
  font-size: 0.68rem;
  line-height: 1.7;
}

.experience-image {
  position: sticky;
  top: 0;
  height: 100svh;
  margin: 0;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-image figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.answers {
  display: grid;
  grid-template-columns: var(--rail) minmax(17rem, 0.78fr) minmax(20rem, 1fr);
  gap: var(--section-gap);
  background: #dfe4e5;
  color: var(--ink);
}

.answers-heading h2 {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--dark-line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #737d81;
  font-family: var(--sans);
  font-size: 0.64rem;
}

.faq-list summary i {
  font-family: var(--sans);
  font-style: normal;
  transition: transform 200ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: 0;
  padding: 0 2rem 1.7rem 3.5rem;
  color: #535d61;
  font-size: 0.88rem;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 78%, rgba(var(--signal-rgb), 0.11), transparent 24rem),
    radial-gradient(circle at 85% 20%, rgba(var(--steel-rgb), 0.12), transparent 28rem),
    var(--ink);
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--signal-rgb), 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--signal-rgb), 0.026) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 38%, #000 88%, transparent);
  pointer-events: none;
}

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

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--line);
}

.contact-top h2 {
  max-width: 10em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-top h2 em {
  color: var(--acid);
  font-style: normal;
}

.phone-link {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(100%, 29rem);
  padding: 1.5rem 0;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.phone-link span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.phone-link strong {
  grid-column: 1;
  margin-top: 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.phone-link i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--acid);
  font-size: 2rem;
  font-style: normal;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 27rem) minmax(0, 1fr);
  gap: clamp(2rem, 4.8vw, 6rem);
  align-items: center;
  padding-top: 5rem;
}

.contact-grid::before {
  position: absolute;
  top: calc(50% + 1.2rem);
  right: 0;
  left: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--signal-rgb), 0.24) 18%, rgba(var(--signal-rgb), 0.08) 50%, rgba(var(--signal-rgb), 0.24) 82%, transparent);
  content: "";
}

.contact-brief h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-brief h3 span {
  margin-right: 0.7rem;
  color: var(--copper);
}

.contact-brief ul {
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contact-brief li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.qr-card {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0;
  color: var(--white);
  isolation: isolate;
}

.qr-tech-label {
  display: flex;
  width: min(100%, 23rem);
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: rgba(229, 232, 231, 0.48);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.qr-tech-label i {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--acid);
  font-style: normal;
}

.qr-tech-label i::before {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0.8rem rgba(var(--signal-rgb), 0.85);
  content: "";
  animation: qr-node-pulse 1.8s ease-in-out infinite;
}

.qr-stage {
  position: relative;
  display: grid;
  width: min(100%, 23rem);
  aspect-ratio: 1;
  place-items: center;
}

.qr-stage::before,
.qr-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.qr-stage::before {
  inset: 2%;
  border: 1px solid rgba(var(--signal-rgb), 0.16);
  background:
    radial-gradient(circle, transparent 49%, rgba(var(--signal-rgb), 0.11) 49.4%, transparent 50%),
    repeating-conic-gradient(from 0deg, rgba(var(--signal-rgb), 0.32) 0 0.8deg, transparent 0.8deg 15deg);
  -webkit-mask-image: radial-gradient(circle, transparent 0 69%, #000 70% 71%, transparent 72% 82%, #000 83% 84%, transparent 85%);
  mask-image: radial-gradient(circle, transparent 0 69%, #000 70% 71%, transparent 72% 82%, #000 83% 84%, transparent 85%);
  animation: qr-orbit-spin 28s linear infinite;
}

.qr-stage::after {
  inset: 10%;
  border: 1px dashed rgba(var(--signal-rgb), 0.2);
  background:
    radial-gradient(circle at 50% 0, var(--acid) 0 2px, transparent 3px),
    radial-gradient(circle at 100% 50%, rgba(var(--signal-rgb), 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 100%, rgba(var(--signal-rgb), 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 0 50%, rgba(var(--signal-rgb), 0.72) 0 2px, transparent 3px);
  filter: drop-shadow(0 0 0.45rem rgba(var(--signal-rgb), 0.5));
  animation: qr-orbit-spin 18s linear infinite reverse;
}

.qr-visual {
  --qr-scan-distance: 12.5rem;
  position: relative;
  z-index: 2;
  width: 60%;
  padding: 0.45rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(var(--signal-rgb), 0.42),
    0 0 2.7rem rgba(var(--signal-rgb), 0.16),
    0 1.8rem 4rem rgba(0, 0, 0, 0.34);
}

.qr-visual::before,
.qr-visual::after {
  position: absolute;
  inset: -0.85rem;
  content: "";
  pointer-events: none;
}

.qr-visual::before {
  border-top: 1px solid var(--acid);
  border-left: 1px solid var(--acid);
  clip-path: polygon(0 0, 30% 0, 30% 1px, 1px 1px, 1px 30%, 0 30%);
  filter: drop-shadow(0 0 0.45rem rgba(var(--signal-rgb), 0.65));
}

.qr-visual::after {
  border-right: 1px solid var(--acid);
  border-bottom: 1px solid var(--acid);
  clip-path: polygon(70% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 70%, 100% 70%, 100% 100%, 70% 100%);
  filter: drop-shadow(0 0 0.45rem rgba(var(--signal-rgb), 0.65));
}

.qr-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-scan {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  left: 0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--signal-rgb), 0.9), transparent);
  box-shadow: 0 0 0.75rem rgba(var(--signal-rgb), 0.75);
  opacity: 0;
  pointer-events: none;
  animation: qr-scan-pass 4.8s cubic-bezier(0.55, 0, 0.25, 1) infinite;
}

.qr-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.55rem;
  text-align: center;
}

.qr-card figcaption b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.qr-card figcaption span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.qr-card figcaption small {
  margin-top: 0.3rem;
  color: rgba(var(--signal-rgb), 0.58);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
}

.contact-grid address {
  margin: 0;
  font-style: normal;
}

.contact-grid address div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-grid address span {
  color: var(--muted);
  font-size: 0.68rem;
}

.contact-grid address strong {
  font-size: 0.8rem;
  font-weight: 400;
}

@keyframes qr-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes qr-node-pulse {
  0%, 100% { opacity: 0.48; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes qr-scan-pass {
  0%, 22% { opacity: 0; transform: translateY(0); }
  28% { opacity: 0.72; }
  66% { opacity: 0.52; }
  72%, 100% { opacity: 0; transform: translateY(var(--qr-scan-distance)); }
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 5rem;
  padding: 1.35rem var(--pad);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #737c80;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  justify-self: start;
}

.site-footer p:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.site-footer a {
  justify-self: end;
  color: var(--paper-dim);
}

.noscript {
  margin: 0;
  padding: 0.7rem 1rem;
  background: var(--acid);
  color: var(--ink);
  text-align: center;
  font-size: 0.78rem;
}

.reveal {
  --reveal-delay: 0ms;
  --media-y: 0px;
}

.motion-ready .reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.line-mask {
  display: block;
  overflow: hidden;
  margin-bottom: -0.08em;
  padding-bottom: 0.08em;
}

.line-mask > span {
  display: block;
}

.motion-ready .reveal--text > :not(h2):not(h3) {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--child-delay, 0ms)),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--child-delay, 0ms));
}

.motion-ready .reveal--text h2 .line-mask > span,
.motion-ready .reveal--text h3 .line-mask > span {
  opacity: 0.12;
  transform: translate3d(0, 112%, 0) skewY(2.5deg);
  transform-origin: left bottom;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--line-delay, 0ms) + 90ms),
    transform 1250ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--line-delay, 0ms) + 90ms);
}

.motion-ready .reveal--text.is-visible > :not(h2):not(h3),
.motion-ready .reveal--text.is-visible h2 .line-mask > span,
.motion-ready .reveal--text.is-visible h3 .line-mask > span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal--solo {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 1.3rem, 0);
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    clip-path 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.motion-ready .reveal--solo.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal--card {
  position: relative;
  opacity: 1;
  filter: none;
  transform: none;
}

.motion-ready .reveal--card::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(var(--signal-rgb), 0.12), transparent) 0 0 / 35% 100% no-repeat,
    linear-gradient(90deg, var(--acid), transparent 72%) 0 0 / 100% 1px no-repeat;
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-45%, 0, 0);
}

.motion-ready .reveal--card > * {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--child-delay, 0ms)),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + var(--child-delay, 0ms));
}

.motion-ready .reveal--card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1250ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.motion-ready .reveal--card.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal--card.is-visible::after {
  transform: scaleX(1);
}

.motion-ready .reveal--media {
  position: relative;
  overflow: hidden;
  opacity: 1;
  clip-path: none;
  filter: none;
  transform: none;
}

.motion-ready .reveal--media img {
  opacity: 0.68;
  clip-path: inset(0 100% 0 0);
  filter: saturate(0.72) contrast(1.08);
  transform: translate3d(-4%, var(--media-y), 0) scale(1.13);
  transform-origin: center;
  transition:
    clip-path 1450ms cubic-bezier(0.76, 0, 0.24, 1) var(--reveal-delay),
    opacity 1400ms ease var(--reveal-delay),
    filter 1800ms ease var(--reveal-delay),
    transform 1900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
  will-change: clip-path, opacity, filter, transform;
}

.motion-ready .reveal--media::before {
  position: absolute;
  z-index: 5;
  inset: clamp(0.65rem, 1.5vw, 1.25rem);
  pointer-events: none;
  background:
    linear-gradient(var(--acid), var(--acid)) left top / 2.4rem 1px no-repeat,
    linear-gradient(var(--acid), var(--acid)) left top / 1px 2.4rem no-repeat,
    linear-gradient(rgba(246, 244, 236, 0.72), rgba(246, 244, 236, 0.72)) right bottom / 2.4rem 1px no-repeat,
    linear-gradient(rgba(246, 244, 236, 0.72), rgba(246, 244, 236, 0.72)) right bottom / 1px 2.4rem no-repeat;
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 700ms ease calc(var(--reveal-delay) + 520ms),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay) + 440ms);
}

.motion-ready .reveal--media::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(3rem, 8vw, 8rem);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(242, 244, 243, 0.26) 78%, rgba(var(--signal-rgb), 0.42));
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-110%, 0, 0);
  transition:
    opacity 260ms ease var(--reveal-delay),
    transform 1550ms cubic-bezier(0.76, 0, 0.24, 1) var(--reveal-delay);
}

.motion-ready .reveal--media.is-visible img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: saturate(0.96) contrast(1.02);
  transform: translate3d(0, var(--media-y), 0) scale(1.045);
}

.motion-ready .reveal--media.is-visible::before {
  opacity: 0.72;
  transform: scale(1);
}

.motion-ready .reveal--media.is-visible::after {
  opacity: 0;
  transform: translate3d(calc(100vw + 110%), 0, 0);
}

/* Bidirectional motion states: content stays readable, motion replays in the viewport's focus band. */
.motion-ready .reveal--text.is-visible.motion-forward > :not(h2):not(h3),
.motion-ready .reveal--card.is-visible.motion-forward > * {
  animation: ai-data-lock-forward 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--child-delay, 0ms);
}

.motion-ready .reveal--text.is-visible.motion-reverse > :not(h2):not(h3),
.motion-ready .reveal--card.is-visible.motion-reverse > * {
  animation: ai-data-lock-reverse 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--child-delay, 0ms);
}

.motion-ready .reveal--text.is-visible.motion-forward h2 .line-mask > span,
.motion-ready .reveal--text.is-visible.motion-forward h3 .line-mask > span {
  animation: ai-line-forward 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--line-delay, 0ms);
}

.motion-ready .reveal--text.is-visible.motion-reverse h2 .line-mask > span,
.motion-ready .reveal--text.is-visible.motion-reverse h3 .line-mask > span {
  animation: ai-line-reverse 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--line-delay, 0ms);
}

.motion-ready .reveal--solo.is-visible.motion-forward {
  animation: ai-solo-forward 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .reveal--solo.is-visible.motion-reverse {
  animation: ai-solo-reverse 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .reveal--card.is-visible.motion-forward::before {
  animation: ai-card-scan-forward 1050ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.motion-ready .reveal--card.is-visible.motion-reverse::before {
  animation: ai-card-scan-reverse 1050ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.motion-ready .reveal--media.is-visible.motion-forward img {
  animation: ai-media-forward 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .reveal--media.is-visible.motion-reverse img {
  animation: ai-media-reverse 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .reveal--media.is-visible.motion-forward::after {
  animation: ai-scan-forward 1250ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.motion-ready .reveal--media.is-visible.motion-reverse::after {
  animation: ai-scan-reverse 1250ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.motion-ready .reveal--media.is-visible.motion-forward::before,
.motion-ready .reveal--media.is-visible.motion-reverse::before {
  animation: ai-corners-lock 1100ms ease-out both;
}

.motion-ready .hero .eyebrow {
  animation: hero-meta-in 1000ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.motion-ready .hero h1 .line-mask > span {
  animation: hero-line-in 1450ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(260ms + var(--line-delay, 0ms));
}

.motion-ready .hero-en {
  animation: hero-ghost-in 1700ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

.motion-ready .hero-copy {
  animation: hero-panel-in 1400ms cubic-bezier(0.16, 1, 0.3, 1) 660ms both;
}

.motion-ready .hero-caption {
  animation: hero-meta-in 1100ms cubic-bezier(0.16, 1, 0.3, 1) 900ms both;
}

@keyframes hero-calibrate {
  from {
    filter: brightness(0.48) saturate(0.34) contrast(1.28) blur(8px);
    clip-path: inset(0 100% 0 0);
    transform: scale(1.16) translate3d(2.2%, 0, 0);
  }
  to {
    filter: brightness(1) saturate(0.96) contrast(1.02);
    clip-path: inset(0);
    transform: scale(1.025) translate3d(0, 0, 0);
  }
}

@keyframes hero-optical-breath {
  from { filter: brightness(0.96) saturate(0.9) contrast(1.04); transform: scale(1.025) translate3d(-0.25%, -0.15%, 0); }
  to { filter: brightness(1.04) saturate(1) contrast(1.01); transform: scale(1.075) translate3d(0.35%, 0.25%, 0); }
}

@keyframes hero-light-shift {
  from { background-position: 100% 18%; }
  to { background-position: 0% 76%; }
}

@keyframes hero-refraction {
  0%, 66% { opacity: 0; transform: translate3d(-45%, 0, 0) rotate(-4deg); }
  72% { opacity: 0.75; }
  88%, 100% { opacity: 0; transform: translate3d(48%, 0, 0) rotate(-4deg); }
}

@keyframes hero-mesh-boot {
  from { opacity: 0; transform: perspective(520px) rotateX(72deg) scale(1.65) translate3d(0, 32%, 0); }
  to { opacity: 0.22; transform: perspective(520px) rotateX(62deg) scale(1.45) translate3d(0, 18%, 0); }
}

@keyframes hero-mesh-drift {
  from { background-position: center bottom; }
  to { background-position: center calc(100% + 5.5rem); }
}

@keyframes hero-depth-scan {
  0%, 10% { top: 12%; opacity: 0; }
  15% { opacity: 0.85; }
  47% { top: 88%; opacity: 0.55; }
  52%, 100% { top: 92%; opacity: 0; }
}

@keyframes hero-telemetry-in {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(1rem, 0, 0); }
  to { opacity: 1; clip-path: inset(0); transform: translate3d(0, 0, 0); }
}

@keyframes hero-spectrum {
  0% { opacity: 0.3; transform: scaleY(0.35); }
  100% { opacity: 0.9; transform: scaleY(1); }
}

@keyframes ambient-breathe {
  from { opacity: 0.28; }
  to { opacity: 0.5; }
}

@keyframes ai-status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0.42); }
  72%, 100% { box-shadow: 0 0 0 0.7rem rgba(var(--signal-rgb), 0); }
}

@keyframes ai-data-lock-forward {
  0% { opacity: 0.38; filter: blur(4px); transform: translate3d(0, 1rem, 0); }
  42% { opacity: 1; filter: blur(0); transform: translate3d(0.18rem, 0, 0); }
  100% { opacity: 1; filter: none; transform: translate3d(0, 0, 0); }
}

@keyframes ai-data-lock-reverse {
  0% { opacity: 0.38; filter: blur(4px); transform: translate3d(0, -1rem, 0); }
  42% { opacity: 1; filter: blur(0); transform: translate3d(-0.18rem, 0, 0); }
  100% { opacity: 1; filter: none; transform: translate3d(0, 0, 0); }
}

@keyframes ai-line-forward {
  0% { opacity: 0.2; transform: translate3d(0, 72%, 0) skewY(2deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) skewY(0); }
}

@keyframes ai-line-reverse {
  0% { opacity: 0.2; transform: translate3d(0, -72%, 0) skewY(-2deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) skewY(0); }
}

@keyframes ai-solo-forward {
  0% { opacity: 0.35; clip-path: inset(0 0 72% 0); transform: translate3d(0, 0.8rem, 0); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0, 0, 0); }
}

@keyframes ai-solo-reverse {
  0% { opacity: 0.35; clip-path: inset(72% 0 0 0); transform: translate3d(0, -0.8rem, 0); }
  100% { opacity: 1; clip-path: inset(0); transform: translate3d(0, 0, 0); }
}

@keyframes ai-card-scan-forward {
  0% { opacity: 0; transform: translate3d(-45%, 0, 0); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(245%, 0, 0); }
}

@keyframes ai-card-scan-reverse {
  0% { opacity: 0; transform: translate3d(245%, 0, 0); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-45%, 0, 0); }
}

@keyframes ai-media-forward {
  0% { filter: saturate(0.7) contrast(1.16) hue-rotate(8deg); transform: translate3d(-1.7%, calc(var(--media-y) + 0.65rem), 0) scale(1.075); }
  100% { filter: saturate(0.96) contrast(1.02) hue-rotate(0); transform: translate3d(0, var(--media-y), 0) scale(1.045); }
}

@keyframes ai-media-reverse {
  0% { filter: saturate(0.7) contrast(1.16) hue-rotate(-8deg); transform: translate3d(1.7%, calc(var(--media-y) - 0.65rem), 0) scale(1.075); }
  100% { filter: saturate(0.96) contrast(1.02) hue-rotate(0); transform: translate3d(0, var(--media-y), 0) scale(1.045); }
}

@keyframes ai-scan-forward {
  0% { opacity: 0; transform: translate3d(-110%, 0, 0); }
  16% { opacity: 0.92; }
  100% { opacity: 0; transform: translate3d(calc(100vw + 110%), 0, 0); }
}

@keyframes ai-scan-reverse {
  0% { right: 0; left: auto; opacity: 0; transform: translate3d(110%, 0, 0) scaleX(-1); }
  16% { opacity: 0.92; }
  100% { right: 0; left: auto; opacity: 0; transform: translate3d(calc(-100vw - 110%), 0, 0) scaleX(-1); }
}

@keyframes ai-corners-lock {
  0% { opacity: 0.1; transform: scale(1.035); }
  42% { opacity: 1; transform: scale(0.992); }
  100% { opacity: 0.72; transform: scale(1); }
}

@keyframes hero-line-in {
  from {
    opacity: 0.08;
    transform: translate3d(0, 112%, 0) skewY(3deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewY(0);
  }
}

@keyframes hero-meta-in {
  from {
    opacity: 0;
    letter-spacing: 0.3em;
    transform: translate3d(0, 0.75rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-ghost-in {
  from {
    opacity: 0;
    transform: translate3d(-1.5rem, -42%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 1.5rem, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1500px) {
  .section-pad {
    padding-right: max(var(--pad), calc((100vw - var(--max)) / 2));
    padding-left: max(var(--pad), calc((100vw - var(--max)) / 2));
  }

  .site-header {
    padding-right: max(var(--pad), calc((100vw - var(--max)) / 2));
    padding-left: max(var(--pad), calc((100vw - var(--max)) / 2));
  }
}

@media (max-width: 1100px) {
  .manifesto,
  .making-lead {
    grid-template-columns: 5rem 1fr;
  }

  .manifesto-copy,
  .making-intro {
    grid-column: 2;
  }

  .manifesto-marks {
    grid-column: 1 / -1;
  }

  .objects,
  .lead-times {
    grid-template-columns: 5rem 1fr;
  }

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

  .process-step:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .experience {
    grid-template-columns: 1fr 0.85fr;
  }

  .answers {
    grid-template-columns: 5rem 0.85fr 1fr;
    gap: 2rem;
  }

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

  .qr-card {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 800px) {
  .mobile-motion-layer {
    position: fixed;
    z-index: 71;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    contain: strict;
  }

  .mobile-motion-layer > i {
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .mobile-orbit {
    top: 18%;
    right: -8.5rem;
    width: 16rem;
    height: 16rem;
    border: 1px solid rgba(var(--signal-rgb), 0.15);
    border-radius: 50%;
    outline: 1px dashed rgba(var(--signal-rgb), 0.09);
    outline-offset: -2rem;
    background: radial-gradient(circle at 50% 0, rgba(var(--signal-rgb), 0.72) 0 2px, transparent 3px);
    opacity: 0.38;
    animation: mobile-orbit-drift 16s linear infinite;
    will-change: transform, opacity;
  }

  .mobile-beam {
    top: -20%;
    left: -55%;
    width: 210%;
    height: 1px;
    background: linear-gradient(90deg, transparent 12%, rgba(var(--signal-rgb), 0.06) 38%, rgba(var(--signal-rgb), 0.5) 50%, rgba(var(--signal-rgb), 0.06) 62%, transparent 88%);
    box-shadow: 0 0 0.7rem rgba(var(--signal-rgb), 0.12);
    opacity: 0;
    transform: rotate(-18deg);
    animation: mobile-beam-pass 7.5s cubic-bezier(0.76, 0, 0.24, 1) 1.2s infinite;
    will-change: transform, opacity;
  }

  .mobile-touch-pulse {
    top: var(--touch-y, 50%);
    left: var(--touch-x, 50%);
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid rgba(var(--signal-rgb), 0.78);
    border-radius: 50%;
    box-shadow: 0 0 1.4rem rgba(var(--signal-rgb), 0.25);
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.4);
  }

  html.mobile-touch .mobile-touch-pulse {
    animation: mobile-touch-wave 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .spatial-hud {
    right: 0.35rem;
    gap: 0.45rem 0.35rem;
  }

  .spatial-hud > span {
    display: none;
  }

  .spatial-hud > i {
    height: 5.5rem;
  }

  .spatial-hud > em {
    max-width: 4.5rem;
    font-size: 0.43rem;
    line-height: 1.35;
    text-align: right;
  }

  .ai-status {
    bottom: 0.65rem;
    left: 0.75rem;
    font-size: 0.43rem;
  }

  .ai-status em {
    display: none;
  }

  main > section:not(.hero)::before {
    background-size: 32px 32px;
    opacity: 0.12;
  }

  main > section:not(.hero)::after {
    top: 1.1rem;
    right: 1.15rem;
    display: block;
    padding: 0.32rem 0.48rem;
    border-top: 1px solid rgba(var(--signal-rgb), 0.24);
    color: rgba(var(--signal-rgb), 0.72);
    font-size: 0.42rem;
    opacity: 0;
  }

  main > section.section-live:not(.hero)::after {
    animation: mobile-zone-lock 2.8s ease-in-out infinite alternate;
  }

  .mobile-break {
    display: block;
  }

  body::before {
    inset: -18%;
    background: linear-gradient(118deg, transparent 34%, rgba(var(--signal-rgb), 0.055) 48%, rgba(var(--steel-rgb), 0.035) 53%, transparent 67%);
    background-position: center;
    background-size: 100% 100%;
    mix-blend-mode: normal;
    opacity: 0.2;
    transform: translate3d(-7%, -3%, 0) rotate(-3deg);
    transition: none;
    animation: mobile-ambient-drift 12s ease-in-out infinite alternate;
    will-change: transform, opacity;
  }

  body::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.7rem;
  }

  .header-note {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto auto;
    padding-top: 7rem;
  }

  .hero-grid > * {
    min-width: 0;
  }

  .hero-media img {
    object-position: 66% center;
    animation:
      hero-calibrate-mobile 1600ms cubic-bezier(0.16, 1, 0.3, 1) both,
      hero-mobile-breath 16s ease-in-out 1600ms infinite alternate;
    will-change: transform, opacity;
  }

  .hero-telemetry {
    top: 5.4rem;
    right: 1rem;
  }

  .hero-telemetry span {
    display: none;
  }

  .hero-tech::before {
    background:
      radial-gradient(ellipse at 76% 32%, rgba(var(--signal-rgb), 0.13), transparent 11rem),
      radial-gradient(ellipse at 22% 74%, rgba(var(--steel-rgb), 0.1), transparent 13rem);
    opacity: 0.68;
    animation: mobile-lens-drift 10s ease-in-out infinite alternate;
  }

  .hero-tech::after {
    animation-duration: 9s;
  }

  .hero-shade {
    animation: none;
  }

  .hero-tech-mesh {
    animation: hero-mesh-boot 1800ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
  }

  .hero-depth-scan {
    top: 12%;
    animation: hero-depth-scan-mobile 8.5s cubic-bezier(0.76, 0, 0.24, 1) 1.8s infinite;
    will-change: transform, opacity;
  }

  .hero-spectrum {
    right: 1rem;
    bottom: 4.7rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 4, 3, 0.77), rgba(4, 4, 3, 0.16)),
      linear-gradient(0deg, rgba(4, 4, 3, 0.92) 0%, rgba(4, 4, 3, 0.18) 60%);
  }

  .hero-heading {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 7rem);
  }

  .hero-en {
    top: 30%;
    left: 0;
    font-size: clamp(4rem, 23vw, 8rem);
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 3;
    justify-self: stretch;
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-caption {
    grid-row: 4;
  }

  .hero-caption span:last-child {
    display: none;
  }

  .manifesto,
  .making-lead,
  .objects,
  .lead-times,
  .answers {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: 3rem;
  }

  .manifesto-main,
  .manifesto-copy,
  .manifesto-marks,
  .objects .section-heading,
  .object-image,
  .object-list,
  .making-title,
  .making-intro,
  .lead-title,
  .time-grid,
  .lead-note,
  .answers-heading,
  .faq-list {
    grid-column: 1;
  }

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

  .objects .section-heading {
    display: block;
  }

  .objects .section-heading > p:last-child {
    padding-bottom: 0;
  }

  .object-list {
    margin-top: 3rem;
  }

  .contexts {
    display: block;
  }

  .context-media,
  .experience-image {
    position: relative;
    height: 70svh;
  }

  .context-media::after {
    background: linear-gradient(0deg, rgba(13, 13, 12, 0.7), transparent 50%);
  }

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

  .process-step:nth-child(3),
  .process-step:nth-child(5) {
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(4) {
    border-left: 0;
  }

  .craft-split {
    grid-template-columns: 1fr;
  }

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

  .experience {
    display: flex;
    flex-direction: column;
  }

  .experience-image {
    order: -1;
  }

  .contact-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .qr-card {
    grid-row: auto;
    grid-column: auto;
    justify-self: center;
    width: min(100%, 24rem);
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: center;
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .site-footer p:first-child,
  .site-footer p:nth-child(2),
  .site-footer a {
    justify-self: center;
  }
}

@media (max-width: 800px) and (prefers-reduced-motion: no-preference) {
  main > section.section-live .reveal--media {
    animation: mobile-frame-depth 5.6s ease-in-out infinite alternate;
    will-change: transform;
  }

  main > section.section-live .section-index span {
    animation: mobile-index-pulse 2.6s ease-in-out infinite;
  }

  .contact.section-live .qr-visual {
    animation: mobile-qr-float 4.8s ease-in-out infinite alternate;
  }
}

@media (max-width: 540px) {
  :root {
    --pad: 1.15rem;
  }

  .brand {
    width: 8.5rem;
  }

  .site-nav-panel {
    gap: 1.25rem;
    width: 100%;
    padding: 6.2rem var(--pad) 1.25rem;
  }

  .site-nav-links > a {
    padding: 0.85rem 0;
  }

  .site-nav-links b {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .site-nav-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .site-nav-action {
    justify-content: space-between;
  }

  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .hero-grid {
    gap: 1.2rem;
    padding-bottom: 1.4rem;
  }

  .eyebrow {
    font-size: 0.58rem;
  }

  .eyebrow span {
    display: block;
    margin: 0 0 0.5rem;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2.5rem);
  }

  .hero-copy p {
    margin-bottom: 1.3rem;
    font-size: 0.87rem;
    line-height: 1.7;
  }

  .manifesto-main h2,
  .section-heading h2,
  .making-title h2,
  .lead-title h2,
  .answers-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .manifesto-marks {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-marks div {
    padding: 1.1rem 0.8rem;
  }

  .object-image img,
  .factory-plate img {
    aspect-ratio: 4 / 3;
  }

  .object-image img {
    object-position: 62% center;
  }

  .object-list {
    grid-template-columns: 1fr;
  }

  .object-card {
    min-height: 13rem;
  }

  .context-media,
  .experience-image {
    height: 58svh;
  }

  .context-panel .section-heading {
    margin: 3rem 0;
  }

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

  .process-step,
  .process-step:nth-child(4) {
    min-height: 13rem;
    border-left: 1px solid var(--line);
  }

  .craft-image img {
    aspect-ratio: 1 / 1;
  }

  .craft-copy h3 {
    font-size: 2.5rem;
  }

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

  .time-card {
    min-height: 11rem;
    padding: 1rem;
  }

  .time-card strong {
    font-size: 3.3rem;
  }

  .experience-copy .section-heading h2 {
    font-size: 2.7rem;
  }

  .faq-list summary {
    grid-template-columns: 1.7rem 1fr auto;
    gap: 0.65rem;
    font-size: 1rem;
  }

  .faq-list details p {
    padding-right: 0;
    padding-left: 2.35rem;
  }

  .contact-top {
    padding-bottom: 3rem;
  }

  .contact-top h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .contact-top h2 em {
    display: block;
    margin-top: 0.08em;
  }

  .contact-grid {
    padding-top: 3rem;
  }

  .qr-card {
    width: 100%;
  }

  .qr-stage {
    width: min(100%, 18rem);
  }

  .qr-visual {
    --qr-scan-distance: 9.6rem;
  }

  .qr-card figcaption {
    margin-top: 0.35rem;
  }
}

.authority {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  gap: var(--section-gap);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--signal-rgb), 0.09), transparent 30rem),
    var(--ink-soft);
}

.authority-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 1.5rem 3rem;
}

.authority-heading .kicker { grid-column: 1 / -1; }

.authority-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.authority-heading > p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.85;
}

.authority-table-wrap {
  grid-column: 1 / -1;
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.authority-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.authority-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.authority-table th,
.authority-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.7;
}

.authority-table tr:last-child th,
.authority-table tr:last-child td { border-bottom: 0; }

.authority-table th {
  width: 18%;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.authority-table td {
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.authority-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.authority-links a {
  display: flex;
  min-height: 7.5rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  transition: background 220ms ease, color 220ms ease;
}

.authority-links a:hover,
.authority-links a:focus-visible {
  background: rgba(var(--signal-rgb), 0.08);
}

.authority-links span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.authority-links b {
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
}

.object-page-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: #33434c;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.object-page-link:hover,
.object-page-link:focus-visible {
  color: #0b6b91;
  transform: translateX(0.25rem);
}

.answers-more {
  grid-column: 3;
  display: inline-flex;
  gap: 1rem;
  width: fit-content;
  margin-top: 1.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--acid);
  color: #183a4a;
  font-size: 0.78rem;
}

.factory-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  min-height: 22rem;
  margin-top: 2rem;
  border: 1px solid var(--line);
}

.factory-map-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 2rem;
  align-content: space-between;
  background:
    radial-gradient(circle at 58% 52%, rgba(var(--signal-rgb), 0.15), transparent 18rem),
    repeating-radial-gradient(circle at 58% 52%, transparent 0 3.4rem, rgba(var(--signal-rgb), 0.11) 3.42rem 3.48rem),
    linear-gradient(rgba(var(--signal-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--signal-rgb), 0.06) 1px, transparent 1px);
  background-size: auto, auto, 3.2rem 3.2rem, 3.2rem 3.2rem;
}

.factory-map-visual::before,
.factory-map-visual::after {
  position: absolute;
  content: "";
}

.factory-map-visual::before {
  top: 52%;
  left: 58%;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 1.8rem rgba(var(--signal-rgb), 0.85);
  transform: translate(-50%, -50%);
}

.factory-map-visual::after {
  top: 52%;
  left: 58%;
  width: 1px;
  height: 65%;
  background: linear-gradient(transparent, var(--acid), transparent);
  transform: translate(-50%, -50%) rotate(42deg);
}

.factory-map-visual span,
.factory-map-visual b {
  color: rgba(229, 232, 231, 0.55);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.factory-map-visual strong {
  align-self: center;
  justify-self: center;
  color: transparent;
  font-size: clamp(5rem, 11vw, 10rem);
  -webkit-text-stroke: 1px rgba(var(--signal-rgb), 0.3);
  letter-spacing: -0.08em;
}

.factory-map-copy {
  display: flex;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.factory-map-copy h3 {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 400;
}

.factory-map-copy > p:not(.kicker) {
  color: var(--muted);
  line-height: 1.8;
}

.factory-map-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
}

.factory-map-copy a {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(var(--signal-rgb), 0.5);
  color: var(--acid);
  font-size: 0.72rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  justify-self: end;
}

@media (max-width: 1100px) {
  .authority { grid-template-columns: 5rem 1fr; }
  .authority-table-wrap,
  .authority-links { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .spatial-hud { display: none; }
  .authority { grid-template-columns: 1fr; }
  .authority .section-index { display: none; }
  .authority-heading { grid-template-columns: 1fr; }
  .authority-heading .kicker { grid-column: auto; }
  .authority-links { grid-template-columns: 1fr; }
  .answers-more { grid-column: auto; }
  .factory-map { grid-template-columns: 1fr; }
  .factory-map-visual { min-height: 19rem; }
  .factory-map-copy { border-top: 1px solid var(--line); border-left: 0; }
  .site-footer nav { justify-self: center; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .authority-heading h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .authority-table { min-width: 0; }
  .authority-table tr { display: block; border-bottom: 1px solid var(--line); }
  .authority-table tr:last-child { border-bottom: 0; }
  .authority-table th,
  .authority-table td {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-bottom: 0;
  }
  .authority-table th { padding-bottom: 0.25rem; }
  .authority-table td { padding-top: 0.25rem; }
  .factory-map-visual { min-height: 16rem; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  .motion-ready .reveal--media img {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal--text > :not(h2):not(h3),
  .motion-ready .reveal--text h2 .line-mask > span,
  .motion-ready .reveal--text h3 .line-mask > span,
  .motion-ready .reveal--card > * {
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal--media::after {
    display: none;
  }

  body::after {
    display: none;
  }

  .hero-depth-scan,
  .hero-spectrum,
  .hero-tech::after {
    display: none;
  }
}

@keyframes mobile-orbit-drift {
  0% { opacity: 0.24; transform: translate3d(0, -8vh, 0) rotate(0deg); }
  50% { opacity: 0.52; }
  100% { opacity: 0.24; transform: translate3d(-3rem, 72vh, 0) rotate(360deg); }
}

@keyframes mobile-beam-pass {
  0%, 14% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-18deg); }
  22% { opacity: 0.62; }
  68% { opacity: 0.28; }
  76%, 100% { opacity: 0; transform: translate3d(0, 145vh, 0) rotate(-18deg); }
}

@keyframes mobile-touch-wave {
  0% { opacity: 0.8; transform: translate3d(-50%, -50%, 0) scale(0.4); }
  100% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(5.5); }
}

@keyframes mobile-zone-lock {
  0% { border-color: rgba(var(--signal-rgb), 0.18); opacity: 0.3; transform: translate3d(0, 0.25rem, 0); }
  100% { border-color: rgba(var(--signal-rgb), 0.58); opacity: 0.72; transform: translate3d(0, 0, 0); }
}

@keyframes mobile-lens-drift {
  0% { opacity: 0.42; transform: translate3d(-4%, -2%, 0) scale(1); }
  100% { opacity: 0.76; transform: translate3d(5%, 4%, 0) scale(1.12); }
}

@keyframes mobile-frame-depth {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -0.28rem, 0); }
}

@keyframes mobile-index-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0); }
  50% { box-shadow: 0 0 0 0.42rem rgba(var(--signal-rgb), 0.08); }
}

@keyframes mobile-qr-float {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -0.38rem, 0); }
}

@keyframes mobile-ambient-drift {
  0% { opacity: 0.12; transform: translate3d(-8%, -4%, 0) rotate(-3deg); }
  100% { opacity: 0.24; transform: translate3d(8%, 5%, 0) rotate(2deg); }
}

@keyframes hero-calibrate-mobile {
  from { opacity: 0.56; clip-path: inset(0 55% 0 0); transform: scale(1.09) translate3d(1.4%, 0, 0); }
  to { opacity: 1; clip-path: inset(0); transform: scale(1.025) translate3d(0, 0, 0); }
}

@keyframes hero-mobile-breath {
  from { transform: scale(1.025) translate3d(-0.2%, -0.1%, 0); }
  to { transform: scale(1.055) translate3d(0.25%, 0.18%, 0); }
}

@keyframes hero-depth-scan-mobile {
  0%, 10% { opacity: 0; transform: translate3d(0, 0, 0); }
  15% { opacity: 0.7; }
  47% { opacity: 0.42; transform: translate3d(0, 70svh, 0); }
  52%, 100% { opacity: 0; transform: translate3d(0, 74svh, 0); }
}
