:root {
  --void: #000000;
  --ground: #141312;
  --smoke: #c4bbb3;
  --mist: #8a7f78;
  --chrome: #b5aca4;
  --chrome-hi: #e8e2dc;
  --infrared: #ff4c00;
  --nebula: #3d4f63;
  --slate: #4c596b;
  --ice: #a8d8ff;
  --phosphor: #1e4a38;
  --bog: #1a3d32;
  --surface-bar: rgba(0, 0, 0, 0.78);
  --surface-nav: rgba(0, 0, 0, 0.9);
  --surface-rail: rgba(0, 0, 0, 0.5);
  --border-ui: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.05);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

html[data-font="space"] {
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}
html[data-font="editorial"] {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}
html[data-font="brutal"] {
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

:root {
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3rem);
  --bar-h: 56px;
  --nav-h: 64px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --spot-x: 50%;
  --spot-y: 50%;
}

[data-theme="light"] {
  color-scheme: light;
  --void: #f0ebe4;
  --ground: #e6e0d8;
  --smoke: #1c1916;
  --mist: #5e5650;
  --chrome: #8a8078;
  --chrome-hi: #ffffff;
  --phosphor: #1e4a38;
  --bog: #2a5c47;
  --infrared: #d94400;
  --slate: #5a524c;
  --ice: #5a524c;
  --surface-bar: rgba(240, 235, 228, 0.94);
  --surface-nav: rgba(240, 235, 228, 0.97);
  --surface-rail: rgba(240, 235, 228, 0.88);
  --border-ui: rgba(0, 0, 0, 0.1);
  --border-card: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"],
html[data-theme="light"] body {
  background-color: var(--void);
  color: var(--smoke);
}
[data-theme="light"] .site-logo,
[data-theme="light"] .section-title,
[data-theme="light"] .pull-quote,
[data-theme="light"] .type-headline,
[data-theme="light"] .hero-headline,
[data-theme="light"] .mood-concept-head,
[data-theme="light"] .type-stack-name {
  color: var(--smoke);
}
[data-theme="light"] .section-lead,
[data-theme="light"] .body-text,
[data-theme="light"] .type-body,
[data-theme="light"] .hero-lead {
  color: var(--mist);
}
[data-theme="light"] .chapter-nav a { color: var(--mist); }
[data-theme="light"] .chapter-nav a:hover,
[data-theme="light"] .chapter-nav a.active {
  color: var(--smoke);
  background: rgba(217, 68, 0, 0.07);
  border-color: rgba(217, 68, 0, 0.25);
}
[data-theme="light"] .mobile-nav a { color: var(--mist); }
[data-theme="light"] .mobile-nav a.active { color: var(--smoke); }
[data-theme="light"] .btn {
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--smoke);
}
[data-theme="light"] .btn:hover {
  background: rgba(217, 68, 0, 0.08);
  border-color: var(--infrared);
  color: var(--infrared);
}
[data-theme="light"] .btn-ghost { color: var(--mist); }
[data-theme="light"] .loader-skip {
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--mist);
}
[data-theme="light"] #grain { opacity: 0.015; }
[data-theme="light"] #particles { opacity: 0.06; }
[data-theme="light"] .wayfinder-dot { background: rgba(0, 0, 0, 0.15); }
[data-theme="light"] .token-row { color: var(--mist); }
[data-theme="light"] .token-row span { color: var(--smoke); }
[data-theme="light"] .quantum-field {
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(30, 74, 56, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 82, 76, 0.1) 1px, transparent 1px);
}
[data-theme="light"] .scanlines {
  opacity: 0.025;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}
[data-theme="light"] .hud { color: rgba(90, 82, 76, 0.5); }
[data-theme="light"] .hero-veil {
  background:
    linear-gradient(to top, var(--void) 18%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 75% 25%, rgba(30,74,56,0.08), transparent),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(90,82,76,0.08), transparent);
}
[data-theme="light"] .hero-img {
  filter: grayscale(0.05) contrast(1.05) brightness(0.82);
}
[data-theme="light"] .loader-inner {
  color: var(--smoke);
  background: rgba(240, 235, 228, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .section,
[data-theme="light"] .pull-quote,
[data-theme="light"] .palette-runway .swatch,
[data-theme="light"] .motif-card,
[data-theme="light"] .component-card,
[data-theme="light"] .apply-card,
[data-theme="light"] .gen-card,
[data-theme="light"] .type-stack,
[data-theme="light"] .mood-concept-card,
[data-theme="light"] .board-tabs button,
[data-theme="light"] .logo-gen-card,
[data-theme="light"] .font-src {
  border-color: var(--border-card);
}
[data-theme="light"] .body-list li { border-bottom-color: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .code-block {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(30, 74, 56, 0.18);
}
[data-theme="light"] .footer { border-top-color: var(--border-ui); }
[data-theme="light"] .drawer {
  background: var(--void);
  border-color: var(--border-ui);
  color: var(--smoke);
}
[data-theme="light"] .drawer-backdrop { background: rgba(28, 25, 22, 0.35); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  overflow-y: scroll;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--void);
  color: var(--smoke);
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: calc(var(--nav-h) + var(--safe-b));
}
@media (min-width: 900px) {
  body {
    padding-bottom: 0;
    padding-left: 52px;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--infrared);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.skip-link:focus { left: 0; }

.phosphor { color: var(--phosphor); }
.ice { color: var(--ice); }
.infrared-txt { color: var(--infrared); }

/* surveillance layers */
.quantum-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(30, 74, 56, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 89, 107, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
}
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.5) 2px,
    rgba(0, 0, 0, 0.5) 4px
  );
}
.hud {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(76, 89, 107, 0.65);
}
.hud-corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: calc(var(--bar-h) + 0.5rem) 1rem 1rem;
}
.hud-tl { top: 0; left: 0; }
.hud-tr { top: 0; right: 0; text-align: right; }
.hud-bl { bottom: calc(var(--nav-h) + var(--safe-b)); left: 0; }
.hud-br { bottom: calc(var(--nav-h) + var(--safe-b)); right: 0; text-align: right; }
@media (min-width: 900px) {
  .hud-bl, .hud-br { bottom: 1rem; }
  .hud-tl { left: 52px; }
}
.hud-rec {
  color: var(--infrared);
  animation: recBlink 1.4s step-end infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
#hud-event { color: var(--phosphor); }
#hud-venue { color: var(--ice); }

/* grain — decorative only */
#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor — direct follow, always visible on desktop */
#cursor, #cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100050;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s, width 0.25s var(--ease), height 0.25s var(--ease);
  will-change: transform, left, top;
}
#cursor {
  width: 6px;
  height: 6px;
  background: var(--infrared);
  mix-blend-mode: difference;
  box-shadow:
    -14px 0 0 -5px rgba(168, 216, 255, 0.55),
    14px 0 0 -5px rgba(168, 216, 255, 0.55),
    0 -14px 0 -5px rgba(168, 216, 255, 0.55),
    0 14px 0 -5px rgba(168, 216, 255, 0.55);
}
#cursor-ring {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 76, 0, 0.65);
  box-shadow: 0 0 0 1px rgba(30, 74, 56, 0.35);
}
#cursor-ring::before,
#cursor-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(168, 216, 255, 0.7);
  pointer-events: none;
}
#cursor-ring::before {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
}
#cursor-ring::after {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
}
#cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: var(--ice);
  box-shadow:
    0 0 0 1px rgba(30, 74, 56, 0.45),
    0 0 18px rgba(168, 216, 255, 0.12);
}
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

#dither {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: clamp(96px, 11vw, 152px);
  height: 100%;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: crosshair;
  z-index: 9997;
  opacity: 1;
  mix-blend-mode: screen;
  will-change: contents;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 22%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 22%, #000 48%);
}
@media (max-width: 540px) {
  #dither {
    width: clamp(56px, 20vw, 96px);
    opacity: 0.96;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--phosphor), var(--infrared));
  z-index: 100060;
  box-shadow: 0 0 12px rgba(255, 76, 0, 0.45);
}

/* intro — non-blocking overlay, site scrolls underneath */
#loader {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  pointer-events: none;
  padding: var(--pad);
  padding-bottom: calc(var(--pad) + var(--nav-h) + var(--safe-b));
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
@media (min-width: 900px) {
  #loader { padding-bottom: var(--pad); }
}
#loader:not(.done) {
  opacity: 1;
  transform: translateY(0);
}
#loader.done {
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
}
.loader-inner {
  pointer-events: auto;
  max-width: 320px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
}
[data-theme="light"] .loader-inner {
  background: rgba(242, 240, 234, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
}
.loader-count {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1;
  font-weight: 400;
  color: var(--smoke);
}
.loader-hint {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  margin: 0.65rem 0 1rem;
  text-transform: uppercase;
}
.loader-skip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 1.25rem;
  min-height: 44px;
  cursor: pointer;
  width: 100%;
}
.loader-skip:hover { color: var(--infrared); border-color: var(--infrared); }

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

/* chrome text system */
.chrome-surface, .chrome-text {
  background: linear-gradient(120deg, #0a0a0f, var(--mist) 18%, var(--chrome) 32%, var(--chrome-hi) 46%, var(--slate) 58%, var(--phosphor) 72%, var(--infrared) 86%, var(--chrome-hi));
  background-size: 240% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeFlow 9s ease-in-out infinite;
}
@keyframes chromeFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .chrome-surface, .chrome-text { animation: none; }
}

/* site bar */
.site-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--bar-h);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: var(--surface-bar);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-ui);
  color: var(--smoke);
}
@media (min-width: 900px) {
  .site-bar { left: 52px; }
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--smoke);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  min-height: 44px;
  transition: color 0.2s;
}
.site-logo:hover { color: var(--ice); }
.site-logo svg { width: 88px; height: 16px; color: currentColor; transition: color 0.2s; flex-shrink: 0; }
.site-logo-img {
  display: block;
  height: 1.35rem;
  width: auto;
  flex-shrink: 0;
}
.deck-card-logo {
  display: block;
  height: 1.75rem;
  width: auto;
}
.site-logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-x--bar {
  width: 0.48em;
  height: 0.72em;
  margin: 0 0.02em;
}
.logo-word--contact {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: 0.28em;
  text-align: center;
}
.logo-word--hero {
  font-size: clamp(3rem, 14vw, 7rem);
  letter-spacing: 0.28em;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35)) drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}
.logo-word--stage {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.logo-word--apply {
  font-size: 2rem;
  letter-spacing: 0.28em;
}
.logo-x--hero {
  width: 0.55em;
  height: 0.85em;
}
.logo-x--apply {
  width: 0.55em;
  height: 0.85em;
}
.logo-stage--primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.logo-render-head {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-card);
}
.deck-guide-grid {
  margin-bottom: 2rem;
}
.deck-guide-card .apply-card-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.deck-guide-path {
  font-size: 0.55rem;
  color: var(--mist);
  letter-spacing: 0.08em;
}
.deck-guide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.deck-asset-list {
  margin-bottom: 1.5rem;
}
.site-logo-presage {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--mist);
  transition: color 0.2s;
}
.site-logo:hover .site-logo-presage { color: var(--ice); }
.site-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-btn { display: none !important; }
[data-theme="light"] .menu-btn { background: rgba(0,0,0,0.04); }
.menu-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-ui);
  padding: 0.65rem 1.1rem;
  min-height: 44px;
  min-width: 72px;
  cursor: pointer;
}
.menu-btn:hover, .menu-btn[aria-expanded="true"] {
  border-color: var(--infrared);
  color: var(--infrared);
}

/* chapter nav — sticky below bar */
.chapter-nav {
  position: fixed;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 499;
  display: none;
  flex-wrap: wrap;
  gap: 2px;
  padding: 0.5rem var(--pad);
  background: var(--surface-nav);
  border-bottom: 1px solid var(--border-ui);
  max-height: 50vh;
  overflow-y: auto;
}
.chapter-nav.open { display: flex; }
@media (min-width: 900px) {
  .chapter-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    max-height: none;
  }
  .chapter-nav::-webkit-scrollbar { display: none; }
  .chapter-nav { left: 52px; }
}
.chapter-nav a {
  flex: 1 1 auto;
  min-width: max-content;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 0.7rem 0.9rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.chapter-nav a .ch-num { color: var(--infrared); }
.chapter-nav a:hover,
.chapter-nav a.active {
  color: var(--ice);
  border-color: rgba(168, 216, 255, 0.28);
  background: rgba(168, 216, 255, 0.05);
}
.chapter-nav a.active {
  border-color: rgba(168, 216, 255, 0.38);
}

/* wayfinder — desktop left rail */
.wayfinder {
  display: none;
}
@media (min-width: 900px) {
  .wayfinder {
    display: flex;
    position: fixed;
    left: 0;
    top: var(--bar-h);
    bottom: 0;
    width: 52px;
    z-index: 498;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    border-right: 1px solid var(--border-ui);
    background: var(--surface-rail);
  }
}
.wayfinder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin: 6px 0;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.wayfinder-dot.active {
  background: var(--infrared);
  transform: scale(1.35);
}
.wayfinder-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 2px;
}

/* mobile bottom nav */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--surface-nav);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-ui);
  padding-bottom: var(--safe-b);
}
@media (min-width: 900px) { .mobile-nav { display: none; } }
.mobile-nav a {
  text-decoration: none;
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.65rem 0.25rem;
  min-height: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.mobile-nav a span {
  font-size: 0.7rem;
  color: var(--infrared);
}
.mobile-nav a.active { color: var(--smoke); background: rgba(255,76,0,0.08); }

/* drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147482990;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: min(300px, 92vw);
  background: var(--void);
  border-left: 1px solid var(--border-ui);
  z-index: 2147483000;
  color: var(--smoke);
  padding: calc(var(--bar-h) + 1rem) 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: calc(var(--bar-h) + 0.5rem);
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-ui);
  background: transparent;
  color: var(--smoke);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.drawer-close:hover { border-color: var(--infrared); color: var(--infrared); }
body.drawer-open { overflow: hidden; }
.drawer-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--infrared);
  margin-bottom: 1.25rem;
}
.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--mist);
}

.page {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--bar-h) + 8px);
}
@media (min-width: 900px) {
  .page { padding-top: calc(var(--bar-h) + 52px); }
}

/* hero */
.hero {
  min-height: calc(100vh - var(--bar-h));
  min-height: calc(100dvh - var(--bar-h));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--pad);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(76, 89, 107, 0.45);
  z-index: 2;
  pointer-events: none;
}
.hero::before { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.hero::after { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ir-frame {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.1) contrast(1.1) brightness(0.55);
  transition: filter 0.6s var(--ease);
}
.ir-frame:hover .hero-img,
.ir-frame.is-hot .hero-img {
  filter: sepia(1) hue-rotate(-28deg) saturate(2.8) contrast(1.25) brightness(0.7);
}
.ir-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 42%, rgba(255,76,0,0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  mix-blend-mode: screen;
  pointer-events: none;
}
.ir-frame:hover .ir-overlay,
.ir-frame.is-hot .ir-overlay { opacity: 1; }
.target-boxes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.target-box {
  position: absolute;
  border: 1px solid rgba(168, 216, 255, 0.55);
  opacity: 0.5;
  animation: targetFloat 4s ease-in-out infinite;
}
.tb-1 { width: 18%; height: 22%; top: 18%; left: 42%; animation-delay: 0s; }
.tb-2 { width: 12%; height: 14%; top: 38%; left: 58%; animation-delay: -1.2s; border-color: rgba(255,76,0,0.6); }
.tb-3 { width: 22%; height: 10%; top: 62%; left: 28%; animation-delay: -2.4s; }
.target-reticle {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--infrared);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}
.target-reticle::before,
.target-reticle::after {
  content: "";
  position: absolute;
  background: var(--infrared);
}
.target-reticle::before { left: 50%; top: -6px; bottom: -6px; width: 1px; transform: translateX(-50%); }
.target-reticle::after { top: 50%; left: -6px; right: -6px; height: 1px; transform: translateY(-50%); }
.ir-frame:hover .target-reticle,
.ir-frame.is-hot .target-reticle { opacity: 0.85; animation: reticlePulse 1.5s ease-in-out infinite; }
@keyframes targetFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -6px); }
}
@keyframes reticlePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--void) 18%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 75% 25%, rgba(30,74,56,0.22), transparent),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(76,89,107,0.14), transparent);
}
.btn-hero {
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.btn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0,229,160,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn-hero:hover::after { transform: translateX(100%); }
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--infrared);
  margin-bottom: 1rem;
}
.hero-logo-img {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35)) drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}
.logo-stage-img {
  display: block;
  width: min(100%, 18rem);
  height: auto;
  margin: 0 auto;
}
.logo-stage-img--mini { width: min(100%, 8rem); }
.apply-logo-img {
  display: block;
  height: 1.75rem;
  width: auto;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-wordmark-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
  padding-right: 0.28em;
  overflow: visible;
}
.hero-wordmark-shadow {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 7rem);
  letter-spacing: 0.28em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.55);
  transform: translate(2px, 3px);
  filter: blur(1px);
  pointer-events: none;
  user-select: none;
}
.hero-wordmark {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 7rem);
  letter-spacing: 0.28em;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35)) drop-shadow(0 6px 18px rgba(0,0,0,0.45));
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .hero-wordmark-shadow { color: rgba(28, 25, 22, 0.25); }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-headline em { font-style: normal; color: var(--infrared); }
.hero-lead {
  color: var(--mist);
  font-size: 1rem;
  max-width: 38ch;
  line-height: 1.7;
}

/* sections */
.section {
  padding: clamp(3.5rem, 10vh, 6rem) var(--pad);
  border-top: 1px solid rgba(255,255,255,0.05);
  scroll-margin-top: calc(var(--bar-h) + 60px);
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--infrared);
  letter-spacing: 0.1em;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--mist);
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  max-width: 18ch;
  margin-bottom: 2.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.body-text {
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 48ch;
}
.body-text.note { margin-top: 1.5rem; font-size: 0.88rem; }
.vein-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vein-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--mist);
  letter-spacing: 0.04em;
}
.vein-list strong { color: var(--infrared); margin-right: 0.5rem; }

/* palette */
.palette-runway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  min-height: 160px;
}
@media (min-width: 700px) { .palette-runway { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); } }
@media (max-width: 500px) { .palette-runway { grid-template-columns: 1fr 1fr; } }
.swatch {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.swatch:hover {
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.swatch small { opacity: 0.7; font-size: 0.58rem; margin-top: 0.35rem; text-transform: none; }
.swatch--void { background: var(--void); border: 1px solid rgba(255,255,255,0.08); }
.swatch--ground { background: var(--ground); border: 1px solid rgba(255,255,255,0.06); }
.swatch--mist { background: var(--mist); }
.swatch--slate { background: var(--slate); }
.swatch--ice { background: var(--ice); color: var(--void); }
.swatch--infrared { background: var(--infrared); color: var(--void); }
.swatch--smoke { background: var(--smoke); color: var(--void); }
.swatch--chrome { color: var(--void); }
.swatch--phosphor { background: var(--phosphor); color: var(--smoke); }

/* logo */
.logo-mirror-hero {
  position: relative;
  margin-bottom: 3px;
  border: 1px solid rgba(0, 229, 160, 0.2);
  overflow: hidden;
  min-height: 280px;
}
.logo-mirror-hero img {
  width: 100%;
  height: clamp(240px, 45vw, 420px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) brightness(0.92);
  transition: filter 0.5s var(--ease), transform 0.8s var(--ease);
}
.logo-mirror-hero:hover img {
  filter: contrast(1.1) brightness(1);
  transform: scale(1.02);
}
.logo-mirror-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, var(--void), transparent);
}
.logo-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .logo-stage { grid-template-columns: 1fr; } }
.logo-lockup {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.28em;
  line-height: 1;
}
.logo-word--smoke { color: var(--smoke); }
.logo-word--accent { color: var(--smoke); }
.logo-word--deck { font-size: 1.75rem; }
.logo-word--mini { font-size: 1.25rem; }
.logo-x {
  display: inline-block;
  position: relative;
  width: 0.55em;
  height: 0.85em;
  vertical-align: baseline;
  margin: 0 0.06em;
  background: none;
}
.logo-x--stroke::before,
.logo-x--stroke::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--smoke);
  transform-origin: center;
}
.logo-x--stroke::before { transform: translate(-50%, -50%) rotate(45deg); }
.logo-x--stroke::after { transform: translate(-50%, -50%) rotate(-45deg); }
.logo-x--accent::before,
.logo-x--accent::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2.5px;
  background: var(--infrared);
  transform-origin: center;
}
.logo-x--accent::before { transform: translate(-50%, -50%) rotate(45deg); }
.logo-x--accent::after { transform: translate(-50%, -50%) rotate(-45deg); }
.logo-caption {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  text-transform: uppercase;
}
.chrome-text-inline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.subhead {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.subhead--do { color: var(--smoke); }
.subhead--dont { color: var(--smoke); }
.body-list--never li {
  color: var(--mist);
  font-weight: 400;
}
.body-list--never li:last-child {
  color: var(--mist);
  font-style: italic;
}
.body-list {
  list-style: none;
  color: var(--mist);
  font-size: 0.9rem;
}
.body-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo-clearspace {
  position: relative;
  padding: 2.5rem;
  border: 1px dashed rgba(255,255,255,0.12);
  margin-bottom: 1rem;
}
.clear-mark {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--mist);
}
.asset-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ice);
  text-decoration: none;
  padding: 0.75rem 0;
  min-height: 44px;
  transition: color 0.2s, text-shadow 0.2s;
}
.asset-link:hover {
  color: var(--smoke);
  text-decoration: underline;
  text-shadow: 0 0 18px rgba(168, 216, 255, 0.22);
}

/* locked type stack */
.type-stack {
  background: var(--ground);
  border: 1px solid var(--border-card);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.type-stack-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-card);
}
.type-stack-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
.type-stack-head .type-headline { margin: 0; flex: 1; }
.type-stack-sample {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--smoke);
}
.type-stack-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.type-stack-table th {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--mist);
  padding: 0.5rem 0.75rem 0.65rem 0;
  border-bottom: 1px solid var(--border-card);
}
.type-stack-table th:last-child { text-align: right; }
.type-stack-table td {
  padding: 0.75rem 0.75rem 0.75rem 0;
  border-bottom: 1px solid var(--border-card);
  vertical-align: middle;
}
.type-stack-table td:last-child { text-align: right; }
.type-stack-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.type-stack-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--smoke);
}
.type-stack-link {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.type-stack-link:hover {
  color: var(--ice);
  text-decoration: underline;
}
@media (max-width: 540px) {
  .type-stack-table th:nth-child(2),
  .type-stack-table td:nth-child(2) { display: none; }
  .type-stack-table th:first-child::after { content: " / Font"; }
}
.type-stack-note {
  font-size: 0.85rem;
  color: var(--mist);
  margin: 0;
}
.type-stamp {
  margin: 0.5rem 0 1.35rem;
  padding-bottom: 0.15rem;
}
.type-block--mono .code-block { margin-top: 0; }
.font-opt-sample {
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  color: var(--smoke);
}
.font-opt.active .font-opt-sample { color: var(--infrared); }
.fp-space { font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.fp-syne { font-family: "Syne", sans-serif; font-weight: 800; }
.fp-instrument { font-family: "Instrument Serif", serif; font-weight: 400; font-style: italic; }
.fp-archivo { font-family: "Archivo", sans-serif; font-weight: 700; letter-spacing: 0.06em; }
.fp-bricolage { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; }
.fp-flex { font-family: "Roboto Flex", sans-serif; font-weight: 600; }
.font-opt {
  text-align: left;
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem;
  min-height: 52px;
  cursor: pointer;
  color: var(--mist);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.font-opt:hover {
  border-color: rgba(168, 216, 255, 0.35);
  transform: translateY(-2px);
}
.font-opt.active {
  border-color: rgba(255, 76, 0, 0.5);
  background: rgba(255, 76, 0, 0.06);
  color: var(--smoke);
}
.font-opt-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
.font-opt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.font-opt-note {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* font research */
.font-research {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-bottom: 2rem;
}
@media (max-width: 1000px) { .font-research { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .font-research { grid-template-columns: 1fr; } }
.font-src {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem;
}
.font-src--nexus { border-color: rgba(255, 76, 0, 0.25); }
.font-src .type-mono { display: block; margin-bottom: 0.5rem; }

.code-block {
  margin-top: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 229, 160, 0.15);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.7;
  color: var(--mist);
  overflow-x: auto;
}
.code-block--lg { font-size: 0.72rem; margin-top: 0; margin-bottom: 1rem; }

/* motifs */
.motif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (max-width: 700px) { .motif-grid { grid-template-columns: 1fr; } }
.motif-card {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  position: relative;
  min-height: 220px;
}
.motif-card::before,
.motif-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(168, 216, 255, 0.35);
  border-style: solid;
  pointer-events: none;
}
.motif-card::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.motif-card::after { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }
.motif-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 1rem;
}
.quantum-demo {
  height: 100px;
  margin-bottom: 1rem;
  background:
    linear-gradient(rgba(0, 229, 160, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 216, 255, 0.15) 1px, transparent 1px);
  background-size: 16px 16px;
  border: 1px solid rgba(0, 229, 160, 0.12);
}
.mirror-demo {
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(168, 216, 255, 0.12);
}
.mirror-top {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.28em;
  color: var(--smoke);
}
.mirror-reflect {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.28em;
  color: var(--smoke);
  opacity: 0.25;
  transform: scaleY(-1);
  margin-top: -0.25rem;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.ir-demo {
  height: 100px;
  margin-bottom: 1rem;
  position: relative;
  background: var(--void);
  border: 1px solid rgba(255, 76, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.ir-heat {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 45%, rgba(255, 76, 0, 0.55), transparent 35%),
    radial-gradient(circle at 30% 60%, rgba(168, 216, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 160, 0.12), transparent 30%);
  filter: contrast(1.2);
}
.ir-demo .type-mono { position: relative; z-index: 1; color: var(--infrared); font-size: 0.55rem; }
.pcb-demo {
  height: 100px;
  margin-bottom: 1rem;
  color: var(--phosphor);
  border: 1px solid rgba(0, 229, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
.pcb-demo svg { width: 90%; height: auto; }
.robot-demo {
  height: 100px;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid rgba(168, 216, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.target-square {
  width: 56px;
  height: 56px;
  position: relative;
  border: 0.5px solid rgba(76, 89, 107, 0.5);
}
.target-square-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 0.5px solid var(--phosphor);
}
.target-square-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.target-square-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.target-square-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.target-square-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.robot-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--infrared);
  animation: robotScan 2.5s linear infinite;
  opacity: 0.7;
}
@keyframes robotScan {
  0% { top: 10%; }
  100% { top: 90%; }
}
/* type */
.type-specimens { margin-top: 1rem; }
.type-block {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.type-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--infrared);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.type-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.type-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}
.type-headline em, .accent { font-style: normal; color: var(--infrared); }
.type-body { color: var(--mist); font-size: 1rem; max-width: 44ch; line-height: 1.75; }
.type-mono {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--mist);
}

/* mood */
.board-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) { .board-tabs { grid-template-columns: repeat(4, 1fr); } }
.board-tabs button,
.board-tabs .mood-cat-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  min-height: 48px;
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--mist);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s var(--ease);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.board-tabs .mood-cat-btn > * {
  position: relative;
  z-index: 1;
}
.mood-cat-num { color: var(--infrared); font-size: 0.62rem; }
.mood-cat-title { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: none; color: var(--smoke); }
.mood-cat-count { font-size: 0.55rem; opacity: 0.7; }
.board-tabs button:hover,
.board-tabs .mood-cat-btn:hover {
  border-color: rgba(255, 76, 0, 0.35);
  color: var(--smoke);
  transform: translateY(-2px);
}
.board-tabs button.active,
.board-tabs .mood-cat-btn.active {
  color: var(--smoke);
  border-color: rgba(255, 76, 0, 0.45);
  background: rgba(255, 76, 0, 0.05);
  transition: border-color 0.85s ease, color 0.85s ease, background 0.85s ease, transform 0.25s var(--ease);
}
.board-tabs button.active::before,
.board-tabs .mood-cat-btn.active::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 42% 48% at 22% 42%, rgba(255, 76, 0, 0.34), transparent 58%),
    radial-gradient(ellipse 36% 40% at 78% 58%, rgba(255, 120, 48, 0.22), transparent 54%),
    radial-gradient(ellipse 52% 38% at 48% 82%, rgba(255, 60, 0, 0.14), transparent 52%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  animation: heatSignatureDrift 9.5s ease-in-out infinite;
  transition: opacity 1.1s ease;
}
.board-tabs button.active::before,
.board-tabs .mood-cat-btn.active::before {
  opacity: 1;
}
@keyframes heatSignatureDrift {
  0%, 100% {
    background-position: 0% 35%, 100% 55%, 45% 100%;
    transform: translate(-6%, -4%) scale(1);
  }
  33% {
    background-position: 85% 20%, 10% 75%, 90% 30%;
    transform: translate(8%, 6%) scale(1.06);
  }
  66% {
    background-position: 40% 90%, 65% 15%, 5% 50%;
    transform: translate(2%, 10%) scale(0.97);
  }
}
.mood-concept-strip {
  margin: 1.25rem 0 1.75rem;
  padding: 1.25rem 0 1.5rem 1rem;
  border-left: 2px solid rgba(168, 216, 255, 0.35);
}
.mood-concept-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.mood-concept-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 5vw, 2.85rem);
  color: var(--smoke);
  margin-bottom: 0.85rem;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 11ch;
}
.mood-concept-copy {
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--mist);
}
.board-panel {
  display: none !important;
}
.board-panel.active {
  display: block !important;
}
.board-panel[hidden] {
  display: none !important;
}
.board-line {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.75rem;
}
.mood-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-top: 1.5rem;
}
@media (min-width: 540px) {
  .mood-stack { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .mood-stack { grid-template-columns: repeat(3, 1fr); }
}
.mood-stack figure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.mood-stack figure:hover {
  border-color: rgba(255, 76, 0, 0.35);
  transform: translateY(-3px);
  animation: moodCardHeatPulse 10s ease-in-out infinite;
}
@keyframes moodCardHeatPulse {
  0%, 100% {
    box-shadow:
      inset 28px -16px 56px rgba(255, 76, 0, 0.07),
      inset -36px 24px 64px rgba(255, 96, 36, 0.05);
  }
  50% {
    box-shadow:
      inset -22px 34px 72px rgba(255, 76, 0, 0.14),
      inset 42px -18px 48px rgba(255, 110, 50, 0.09);
  }
}
.mood-stack figure::before,
.mood-stack figure::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(76, 89, 107, 0.45);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mood-stack figure::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.mood-stack figure::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.mood-stack figure:hover::before,
.mood-stack figure:hover::after { opacity: 1; }
.mood-stack img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.05);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.mood-stack figure:hover img {
  transform: scale(1.03);
  animation: moodImgHeatRise 2.6s ease-out forwards;
}
@keyframes moodImgHeatRise {
  0% {
    filter: grayscale(0.12) contrast(1.05);
  }
  45% {
    filter: sepia(0.65) hue-rotate(-18deg) saturate(1.5) contrast(1.08) brightness(0.88);
  }
  100% {
    filter: sepia(1) hue-rotate(-30deg) saturate(2.5) contrast(1.15) brightness(0.72);
  }
}
.mood-stack figcaption {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  padding: 0.65rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ground);
}
.mood-stack .spec-code { color: var(--phosphor); }
.mood-stack figure:hover .spec-code { color: var(--infrared); }

/* space diagram */
.space-diagram {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 229, 160, 0.15);
  background: var(--ground);
  padding: 1.25rem;
}
.space-diagram-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.space-svg {
  width: 100%;
  height: auto;
  display: block;
}
.space-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--mist);
  letter-spacing: 0.06em;
}
.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.legend-dot--phosphor { background: var(--phosphor); }
.legend-dot--ice { background: var(--ice); }
.legend-dot--ir { background: var(--infrared); }

/* nebula */
.nebula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 1.5rem;
}
.nebula-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.nebula-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(0.98) saturate(0.78);
}
.nebula-veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.018);
  pointer-events: none;
}
.nebula-grid .wide { grid-column: span 2; }
.nebula-grid .wide img { aspect-ratio: 21/9; }
.nebula-frame--render img { filter: brightness(0.94) contrast(1) saturate(0.85); }
.nebula-frame--render .nebula-veil { background: rgba(0, 0, 0, 0.01); }
.nebula-frame:first-of-type:not(.nebula-frame--render) img { filter: brightness(0.9) contrast(0.96) saturate(0.65); }

/* rules */
.rules-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 600px) { .rules-cols { grid-template-columns: 1fr; } }

/* apply */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}
@media (min-width: 900px) {
  .apply-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.apply-card {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.apply-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--infrared);
  text-transform: uppercase;
}
.apply-card--site {
  min-height: 360px;
}
.apply-card--site img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(0.2);
}
.apply-card-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  background: linear-gradient(to top, var(--void), transparent 60%);
}
.apply-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.28em;
}
.deck-mock {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
  padding-top: 2.5rem;
}
.deck-mock-slide {
  aspect-ratio: 16/9;
  background: var(--void);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.deck-mock-slide--img {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.deck-mock-slide--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.deck-mock-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, var(--void), transparent 70%);
}
.deck-n {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--infrared);
}
.story-feed {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
  padding-top: 2.5rem;
}
.story-card {
  position: relative;
  background: var(--void);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.story-card:hover {
  border-color: rgba(255, 76, 0, 0.35);
  transform: translateX(4px);
}
.story-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.story-rec { color: var(--infrared); animation: recBlink 1.4s step-end infinite; }
.story-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.5s;
}
.story-card:hover img {
  filter: sepia(0.4) hue-rotate(-20deg) saturate(1.8) contrast(1.1);
}
.story-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.story-code {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}
.story-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--smoke);
}
.story-meta {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--smoke);
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.btn {
  position: relative;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn:hover {
  border-color: var(--infrared);
  color: var(--infrared);
  background: rgba(255, 76, 0, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 76, 0, 0.12);
}
.btn:active { transform: translateY(0); }
.btn-ghost { color: var(--mist); }
.btn-ghost:hover { color: var(--ice); border-color: rgba(168, 216, 255, 0.35); background: rgba(168, 216, 255, 0.06); box-shadow: 0 4px 20px rgba(168, 216, 255, 0.08); }

.glitch-flash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: var(--infrared);
  opacity: 0;
}
.glitch-flash.on { animation: glitch 0.25s steps(2) forwards; }
@keyframes glitch {
  0% { opacity: 0.7; }
  100% { opacity: 0; }
}

.footer {
  padding: 3rem var(--pad);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.footer-lockup {
  display: none;
}
.footer-lockup img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
}

/* generated strip */
.gen-strip {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}
.gen-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.gen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 700px) { .gen-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gen-grid { grid-template-columns: repeat(5, 1fr); } }
.gen-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.gen-card:hover { border-color: rgba(255,76,0,0.35); transform: translateY(-3px); }
.gen-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: filter 0.5s var(--ease);
}
.gen-card:hover img { filter: sepia(0.5) hue-rotate(-25deg) saturate(2); }

/* dither on imagery — dithertone-adjacent ordered noise */
.dither-hover {
  position: relative;
  overflow: hidden;
}
.dither-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect width='1' height='1' fill='%23fff'/%3E%3Crect x='4' y='4' width='1' height='1' fill='%23fff'/%3E%3Crect x='2' y='0' width='1' height='1' fill='%23fff' opacity='.5'/%3E%3Crect x='6' y='2' width='1' height='1' fill='%23fff' opacity='.5'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}
.dither-hover::after { opacity: 0.22; }
.dither-hover:hover::after { opacity: 0.65; }
.hero-media .ir-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect width='1' height='1' fill='%23ff4c00'/%3E%3Crect x='4' y='4' width='1' height='1' fill='%23ff4c00'/%3E%3Crect x='2' y='6' width='1' height='1' fill='%231e4a38' opacity='.6'/%3E%3C/svg%3E");
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.texture-overlay,
.texture-overlay-card::before {
  background-image:
    linear-gradient(135deg, rgba(255, 76, 0, 0.22) 0%, transparent 45%, rgba(30, 74, 56, 0.15) 100%),
    url("assets/overlays/texture-ir-02.jpg");
  background-size: cover, cover;
  background-blend-mode: overlay, soft-light;
}

.texture-overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.mood-stack figure { position: relative; }
.mood-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect width='1' height='1' fill='%23ff4c00'/%3E%3Crect x='4' y='4' width='1' height='1' fill='%23ff4c00'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  mix-blend-mode: color-dodge;
}
.mood-stack figure:hover::after { opacity: 0.18; }
.gen-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.6rem;
  color: var(--mist);
  background: var(--ground);
}

/* video mood cards */
.video-card { position: relative; }
.video-card .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: var(--smoke);
  background: rgba(0,0,0,0.45);
  pointer-events: none;
  transition: border-color 0.3s, background 0.3s;
}
.video-card:hover .play-badge { border-color: var(--infrared); background: rgba(255,76,0,0.2); }

.gallery-more {
  margin-top: 1rem;
  width: 100%;
}

/* spotlight cards */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--spot-x) var(--spot-y), rgba(255,76,0,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.spotlight-card:hover::before { opacity: 1; }

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--phosphor), var(--slate), var(--infrared), var(--phosphor)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  animation: borderBeam 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes borderBeam {
  to { filter: hue-rotate(360deg); }
}

/* logo gen */
.logo-gen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 1.5rem 0 2rem;
}
.logo-gen-grid--four {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .logo-gen-grid--four { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .logo-gen-grid,
  .logo-gen-grid--four { grid-template-columns: 1fr; }
}
.logo-gen-card {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.logo-gen-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.78) contrast(0.82) saturate(0.42);
}
.logo-gen-lead {
  margin-bottom: 1rem;
  max-width: 56ch;
}
.logo-gen-card--render img {
  object-fit: contain;
  background: #0a0a0a;
  filter: brightness(0.92) contrast(0.9) saturate(0.55);
}
.mood-board-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-pinterest {
  border-color: rgba(168, 216, 255, 0.35);
  color: var(--ice);
}
.btn-pinterest:hover {
  background: rgba(168, 216, 255, 0.08);
  border-color: var(--ice);
  color: var(--smoke);
}
.mood-board-cta-meta {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  text-transform: uppercase;
}
.logo-gen-card--matte .logo-matte-stage {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: #0a0a0a;
  padding: 2rem 1rem 1.5rem;
}
.logo-matte-word,
.logo-matte-reflect {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.28em;
  line-height: 1;
  color: #b8b2ab;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.logo-matte-reflect {
  transform: scaleY(-1);
  opacity: 0.22;
  filter: blur(0.4px);
  margin-top: 0.1rem;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
}
.logo-x--matte::before,
.logo-x--matte::after {
  background: #9a948d;
  height: 1.5px;
}
.logo-x--matte {
  width: 0.42em;
  height: 0.72em;
}
.logo-gen-card figcaption {
  padding: 0.65rem 0.75rem;
}

/* components */
.component-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) { .component-grid { grid-template-columns: 1fr; } }
.component-card {
  background: var(--ground);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem;
}
.component-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.65rem;
}
.texture-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (max-width: 600px) { .texture-samples { grid-template-columns: 1fr; } }
.texture-samples img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.05);
}

/* apply actions */
.apply-card-actions {
  position: relative;
  z-index: 2;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(to top, var(--void), transparent);
}
.btn-apply {
  margin-top: 0.5rem;
  font-size: 0.62rem;
  padding: 0.75rem 1.1rem;
  min-height: 44px;
  border-color: rgba(255, 76, 0, 0.45);
  background: rgba(255, 76, 0, 0.1);
}
.apply-card--site .btn-apply { margin-top: 0.75rem; align-self: flex-start; }
.apply-card-actions--social {
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border-card);
  background: var(--ground);
}
.apply-action-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.apply-card-actions--social .apply-tag {
  position: static;
  margin: 0;
}
.apply-action-meta {
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  opacity: 0.85;
}
.apply-card-actions--social .btn-apply {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}

/* social mock */
.social-mock {
  padding: 3px;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0 0.75rem;
  font-size: 0.52rem;
}
.phone-frame {
  position: relative;
  margin: 0 auto;
  width: min(220px, 72%);
  border: 2px solid rgba(255, 76, 0, 0.35);
  border-radius: 22px;
  padding: 10px 8px 12px;
  background: var(--void);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,0.45);
}
.phone-notch {
  width: 36%;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.12);
}
.story-card--hero { border: none; }
.story-card--hero .story-head {
  padding: 0.5rem 0.65rem;
  font-size: 0.48rem;
}
.story-spec-id { margin-left: auto; margin-right: 0.5rem; }
.story-media {
  position: relative;
  overflow: hidden;
}
.story-media img {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  display: block;
  filter: contrast(1.08) saturate(0.9);
}
.story-ir-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,76,0,0.12) 0%, transparent 35%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.story-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--infrared);
  opacity: 0.75;
  pointer-events: none;
}
.story-corner--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.story-corner--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.story-card--hero .story-body { padding: 0.75rem 0.65rem 0.85rem; }
.story-card--hero .story-line {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}
.social-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 0.5rem 0.5rem;
}
.story-card--mini {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--void);
}
.story-card--mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.story-card--mini .story-code {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.55);
  padding: 0.2rem 0.35rem;
}
.story-card--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-style: dashed;
  border-color: rgba(255,76,0,0.35);
  font-size: 0.48rem;
}

@media (max-width: 899px) {
  .apply-grid { gap: 1rem; }
  .apply-card--site { min-height: 300px; }
  .nebula-grid { grid-template-columns: 1fr; }
  .nebula-grid .wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gen-grid { grid-template-columns: 1fr 1fr; }
  body.has-custom-cursor { cursor: auto; }
  body.has-custom-cursor a, body.has-custom-cursor button { cursor: pointer; }
  #cursor, #cursor-ring { display: none; }
}

/* 404 — threshold not found */
.err404-body {
  min-height: 100dvh;
  background: var(--void);
  color: var(--smoke);
}
.err404-hud .hud-corner { padding-top: 1.25rem; }
.err404 {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem var(--pad) 4rem;
}
.err404-frame {
  position: absolute;
  inset: clamp(1.5rem, 6vw, 4rem);
  pointer-events: none;
  border: 1px solid rgba(76, 89, 107, 0.22);
}
.err404-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(168, 216, 255, 0.45);
}
.err404-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.err404-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.err404-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.err404-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.err404-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42vw, 220px);
  height: min(42vw, 220px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 76, 0, 0.35);
  border-radius: 50%;
  animation: err404Reticle 5s ease-in-out infinite;
}
.err404-reticle::before,
.err404-reticle::after {
  content: "";
  position: absolute;
  background: rgba(255, 76, 0, 0.5);
}
.err404-reticle::before {
  left: 50%;
  top: -8%;
  bottom: -8%;
  width: 1px;
  transform: translateX(-50%);
}
.err404-reticle::after {
  top: 50%;
  left: -8%;
  right: -8%;
  height: 1px;
  transform: translateY(-50%);
}
.err404-heat {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 38% 42% at 32% 44%, rgba(255, 76, 0, 0.14), transparent 58%),
    radial-gradient(ellipse 30% 36% at 68% 58%, rgba(255, 110, 48, 0.1), transparent 54%);
  background-size: 200% 200%;
  mix-blend-mode: screen;
  animation: heatSignatureDrift 11s ease-in-out infinite;
  opacity: 0.75;
}
@keyframes err404Reticle {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.85; }
}
.err404-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.25rem;
}
.err404-code-wrap {
  position: relative;
  margin-bottom: 1rem;
  line-height: 0.9;
}
.err404-code-shadow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 9rem);
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 76, 0, 0.18);
  pointer-events: none;
  user-select: none;
}
.err404-code {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 9rem);
  letter-spacing: 0.12em;
  opacity: 0.92;
}
.err404-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  max-width: 16ch;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.err404-headline em {
  font-style: normal;
  color: var(--infrared);
}
.err404-lead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mist);
  max-width: 38ch;
  margin: 0 0 1.5rem;
}
.err404-meta {
  font-size: 0.58rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--mist);
  margin-bottom: 2rem;
  text-align: left;
}
.err404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn-err404-back {
  border-color: rgba(255, 76, 0, 0.35);
}
.btn-err404-back:hover {
  border-color: var(--infrared);
  color: var(--infrared);
}
.err404-foot {
  position: fixed;
  bottom: calc(1rem + var(--safe-b));
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(138, 127, 120, 0.55);
  pointer-events: none;
}

/* massive desktop — dot-com column + runway stage */
:root {
  --stage-scroll: 0px;
  --stage-mx: 0;
  --stage-my: 0;
}
.desktop-stage {
  display: none;
}
.page-canvas {
  position: relative;
}
.page-frame {
  display: none;
}

@media (min-width: 1600px) {
  .desktop-stage {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #000;
  }
  .desktop-stage__media {
    position: absolute;
    inset: -6% -4%;
    will-change: transform;
    transform:
      translate3d(
        calc(var(--stage-mx) * 32px),
        calc(var(--stage-scroll) * -0.14 + var(--stage-my) * 22px),
        0
      )
      scale(1.1);
    transition: transform 0.08s linear;
  }
  .desktop-stage__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.14) brightness(0.48);
  }
  .desktop-stage__grid {
    position: absolute;
    inset: -20%;
    opacity: 0.14;
    background-image:
      linear-gradient(rgba(47, 143, 104, 0.35) 1px, transparent 1px),
      linear-gradient(90deg, rgba(47, 143, 104, 0.22) 1px, transparent 1px);
    background-size: 48px 48px;
    transform:
      translate3d(
        calc(var(--stage-mx) * -18px),
        calc(var(--stage-scroll) * 0.06 + var(--stage-my) * -10px),
        0
      );
    animation: stageGridDrift 48s linear infinite;
    mask-image: radial-gradient(ellipse 88% 72% at 50% 46%, #000 20%, transparent 72%);
  }
  @keyframes stageGridDrift {
    to { background-position: 48px 96px; }
  }
  .desktop-stage__term {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(140px, 14vw, 220px);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.52rem;
    line-height: 2.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(47, 143, 104, 0.55);
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  }
  .desktop-stage__term--left {
    left: 0;
    padding-left: 1.25rem;
    transform: translate3d(calc(var(--stage-mx) * -12px), calc(var(--stage-scroll) * 0.22), 0);
    -webkit-mask-image:
      linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent),
      linear-gradient(90deg, #000 0%, transparent 82%);
    mask-image:
      linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent),
      linear-gradient(90deg, #000 0%, transparent 82%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
  .desktop-stage__term--right {
    right: 0;
    padding-right: 1.25rem;
    text-align: right;
    transform: translate3d(calc(var(--stage-mx) * 14px), calc(var(--stage-scroll) * -0.18), 0);
    -webkit-mask-image:
      linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent),
      linear-gradient(270deg, #000 0%, transparent 82%);
    mask-image:
      linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent),
      linear-gradient(270deg, #000 0%, transparent 82%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
  .desktop-stage__term-track {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    animation: stageTermScroll 52s linear infinite;
    will-change: transform;
  }
  .desktop-stage__term-track--rev {
    animation-name: stageTermScrollRev;
    animation-duration: 58s;
  }
  @keyframes stageTermScroll {
    to { transform: translateY(-50%); }
  }
  @keyframes stageTermScrollRev {
    to { transform: translateY(50%); }
  }
  .desktop-stage__term-line {
    display: block;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(47, 143, 104, 0.35);
  }
  .desktop-stage__term-line--dim { opacity: 0.38; }
  .desktop-stage__term-line--ice { color: rgba(168, 216, 255, 0.42); }
  .desktop-stage__ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    overflow: hidden;
    height: 1.25rem;
    opacity: 0.5;
    transform: translate3d(0, calc(var(--stage-scroll) * -0.04), 0);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .desktop-stage__ticker-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(47, 143, 104, 0.65);
    white-space: nowrap;
    animation: stageTicker 90s linear infinite;
  }
  .desktop-stage__ticker-sep {
    color: rgba(255, 76, 0, 0.45);
  }
  @keyframes stageTicker {
    to { transform: translateX(-50%); }
  }
  .desktop-stage__reticle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(72vw, 920px);
    height: min(72vh, 720px);
    transform:
      translate3d(
        calc(-50% + var(--stage-mx) * 42px),
        calc(-50% + var(--stage-my) * 32px + var(--stage-scroll) * -0.05),
        0
      );
    border: 1px solid rgba(47, 143, 104, 0.12);
    box-shadow:
      inset 0 0 0 1px rgba(168, 216, 255, 0.04),
      0 0 40px rgba(47, 143, 104, 0.06);
    opacity: 0.55;
  }
  .desktop-stage__reticle::before,
  .desktop-stage__reticle::after {
    content: "";
    position: absolute;
    background: rgba(47, 143, 104, 0.35);
  }
  .desktop-stage__reticle::before {
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(47, 143, 104, 0.25);
  }
  .desktop-stage__reticle::after {
    left: 50%;
    top: 8%;
    bottom: 8%;
    width: 1px;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(47, 143, 104, 0.25);
  }
  .desktop-stage__scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: -4%;
    background: linear-gradient(90deg, transparent, rgba(168, 216, 255, 0.35) 42%, rgba(47, 143, 104, 0.55) 50%, rgba(255, 76, 0, 0.25) 58%, transparent);
    box-shadow: 0 0 24px rgba(47, 143, 104, 0.35);
    opacity: 0.65;
    animation: stageScanSweep 7.5s ease-in-out infinite;
  }
  @keyframes stageScanSweep {
    0%, 100% { top: -4%; opacity: 0; }
    8% { opacity: 0.65; }
    92% { opacity: 0.45; }
    50% { top: 104%; }
  }
  .desktop-stage__veil {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 72% 88% at 50% 42%, transparent 0%, rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.55) 100%),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
      );
    transform: translate3d(0, calc(var(--stage-scroll) * -0.03), 0);
  }

  .page {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    background: var(--void);
    box-shadow:
      0 0 0 1px rgba(30, 74, 56, 0.22),
      0 24px 120px rgba(0, 0, 0, 0.92);
    transform: translate3d(calc(var(--stage-mx) * -3px), calc(var(--stage-scroll) * 0.02), 0);
    will-change: transform;
  }
  .page-canvas {
    --frame-green: #2f8f68;
    --frame-glow: rgba(47, 143, 104, 0.45);
  }
  .page-frame {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    transform: translate3d(calc(var(--stage-mx) * 4px), calc(var(--stage-my) * 3px), 0);
  }
  .page-frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--frame-green);
    border-style: solid;
    filter: drop-shadow(0 0 6px var(--frame-glow));
    transform-origin: center;
  }
  .page-frame-corner--tl {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
  }
  .page-frame-corner--tr {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
  }
  .page-frame-corner--bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
  }
  .page-frame-corner--br {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
  }
  .page-frame-seg {
    position: absolute;
    background: var(--frame-green);
    box-shadow: 0 0 8px var(--frame-glow);
  }
  .page-frame-seg--top-a {
    top: 0;
    left: 38px;
    width: 34%;
    height: 1px;
  }
  .page-frame-seg--top-b {
    top: 0;
    left: 52%;
    width: 18%;
    height: 1px;
  }
  .page-frame-seg--top-c {
    top: 0;
    right: 28px;
    width: 14%;
    height: 1px;
  }
  .page-frame-seg--right-a {
    top: 14%;
    right: 0;
    width: 1px;
    height: 22%;
  }
  .page-frame-seg--right-b {
    top: 48%;
    right: 0;
    width: 1px;
    height: 36%;
  }
  .page-frame-seg--bottom-a {
    bottom: 0;
    left: 0;
    width: 42%;
    height: 1px;
  }
  .page-frame-seg--bottom-b {
    bottom: 0;
    right: 18%;
    width: 28%;
    height: 1px;
  }
  .page-frame-seg--left-a {
    top: 22%;
    left: 0;
    width: 1px;
    height: 26%;
  }
  .page-frame-seg--left-b {
    top: 58%;
    left: 0;
    width: 1px;
    height: 18%;
  }

  .footer {
    background: #000;
    border-top: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: clamp(9rem, 22vh, 16rem);
    margin-top: 2rem;
  }
  .footer-meta {
    justify-content: center;
    gap: 0.65rem 1.5rem;
    color: rgba(138, 127, 120, 0.72);
  }
  .footer-lockup {
    display: block;
    width: min(420px, 72%);
    margin-top: 2.75rem;
  }

  #grain { opacity: 0.038; }
  .quantum-field { opacity: 0.07; }
  .scanlines { opacity: 0.045; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #particles { display: none; }
  #dither { display: none; }
  .desktop-stage__video { display: none; }
  .desktop-stage__term-track,
  .desktop-stage__ticker-track,
  .desktop-stage__scan,
  .desktop-stage__grid { animation: none; }
  .desktop-stage__media,
  .desktop-stage__term,
  .desktop-stage__veil,
  .desktop-stage__reticle,
  .page,
  .page-frame { transform: none; }
  .hero-media::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .board-tabs button.active::before,
  .board-tabs .mood-cat-btn.active::before,
  .mood-stack figure:hover,
  .mood-stack figure:hover img { animation: none; }
  .err404-reticle,
  .err404-heat { animation: none; }
}