/* ============================================================
   NinoByte Games — design tokens
   ============================================================ */
:root {
  --void: #07060f;
  --surface: #131022;
  --violet: #a855f7;
  --cyan: #4ed7f1;
  --magenta: #e858c8;
  --ember: #ffb347;
  --tomato: #ff5a4e;
  --star: #f2efff;
  --muted: #9b93b8;

  /* ambient world light — animated by JS as you travel between worlds */
  --ambient-a: rgba(168, 85, 247, 0.16);
  --ambient-b: rgba(78, 215, 241, 0.1);

  --font-display: "Anybody", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-hud: "Space Mono", monospace;

  --max-width: 74rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--star);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ============================================================
   Ambient world light + grain
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 82% 10%, var(--ambient-a), transparent 65%),
    radial-gradient(50rem 36rem at 12% 85%, var(--ambient-b), transparent 65%);
  transition: none;
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ============================================================
   Boot sequence
   ============================================================ */
.boot {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--void);
  place-items: center;
}

.js .boot { display: grid; }

.boot-inner { text-align: center; }

.boot-mark {
  display: grid;
  grid-template-columns: repeat(5, 14px);
  gap: 4px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.boot-mark span {
  width: 14px;
  height: 14px;
  background: var(--violet);
  opacity: 0;
}

.boot-mark span:nth-child(3n) { background: var(--cyan); }
.boot-mark span:nth-child(7n) { background: var(--magenta); }

.boot-text {
  font-family: var(--font-hud);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 1rem;
  min-height: 1.2em;
}

.boot-caret { animation: caret-blink 0.7s steps(1) infinite; color: var(--cyan); }

@keyframes caret-blink { 50% { opacity: 0; } }

.boot-bar {
  width: 200px;
  height: 4px;
  margin: 0 auto;
  background: rgba(242, 239, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.boot-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor-dot, .cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
  border-radius: 50%;
  translate: -50% -50%;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-enabled .cursor-dot,
  .cursor-enabled .cursor-ring { display: block; }
  .cursor-enabled, .cursor-enabled a, .cursor-enabled button { cursor: none; }
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(168, 85, 247, 0.75);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.cursor-ring.is-active {
  width: 56px;
  height: 56px;
  border-color: var(--magenta);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
  padding: 0 var(--gutter);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(7, 6, 15, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 0;
  background: none;
  color: var(--star);
  padding: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  font-size: 0.8rem;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: var(--void);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.45);
}

.brand-name em { font-style: normal; color: var(--cyan); }

.site-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.25s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover { color: var(--star); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--void);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  white-space: nowrap;
}

.cta-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--void);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
}

/* ============================================================
   Shared bits
   ============================================================ */
main { position: relative; z-index: 1; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.eyebrow .tick { color: var(--cyan); }

.eyebrow .tick::after {
  content: "▌";
  margin-left: 0.3em;
  animation: caret-blink 1s steps(1) infinite;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  will-change: transform;
}

.button span { position: relative; z-index: 1; }

.button.primary {
  color: var(--void);
  background: linear-gradient(100deg, var(--violet), var(--magenta));
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
}

.button.primary:hover { box-shadow: 0 6px 34px rgba(232, 88, 200, 0.55); }

.button.ghost {
  color: var(--star);
  border: 1.5px solid rgba(242, 239, 255, 0.28);
  background: rgba(242, 239, 255, 0.03);
}

.button.ghost:hover { border-color: var(--cyan); box-shadow: 0 0 24px rgba(78, 215, 241, 0.25); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 4rem;
  overflow: hidden;
}

.hero-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
}

.hero-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 150%;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(2.5rem, 8.2vw, 6.75rem);
  text-transform: uppercase;
}

.hero-title .line { display: block; white-space: nowrap; }

.hero-title .char {
  display: inline-block;
  background: linear-gradient(180deg, var(--star) 55%, rgba(242, 239, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .line-games {
  font-size: 0.42em;
  letter-spacing: 0.42em;
  margin-top: 0.35em;
}

.hero-title .line-games .char {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  margin: 0 0 1rem;
  color: var(--star);
}

.hero-tagline strong {
  background: linear-gradient(90deg, var(--magenta), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* floating mini cards */
.hero-cards { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.mini-card {
  position: absolute;
  width: clamp(52px, 6vw, 84px);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  opacity: 0.85;
}

.mini-card svg { width: 100%; height: auto; }

.mc-frame { stroke-width: 2; fill: #0e0b1d; }
.mc-line { stroke-width: 2; fill: none; stroke-linecap: round; }
.mc-line.thick { stroke-width: 4; }

.mc-sigil { top: 22%; left: 12%; rotate: -12deg; }
.mc-sigil .mc-frame { stroke: var(--violet); }
.mc-sigil .mc-line { stroke: var(--cyan); }

.mc-food { top: 60%; right: 10%; rotate: 10deg; }
.mc-food .mc-frame { stroke: var(--ember); }
.mc-food .mc-line { stroke: var(--ember); }
.mc-food .mc-fill { fill: var(--tomato); }

.mc-pad { top: 18%; right: 18%; rotate: 7deg; }
.mc-pad .mc-frame { stroke: var(--cyan); }
.mc-pad .mc-line { stroke: var(--star); }
.mc-pad .mc-fill { fill: var(--tomato); }
.mc-pad .mc-fill.alt { fill: var(--cyan); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.cue-track {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(242, 239, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.cue-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: cue-drop 1.8s var(--ease-out) infinite;
}

@keyframes cue-drop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.cue-label {
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ============================================================
   Studio / manifesto
   ============================================================ */
.studio { padding: clamp(6rem, 14vh, 10rem) 0; }

.manifesto {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin: 0 0 3rem;
  max-width: 20ch;
}

.manifesto .word { display: inline-block; }

.studio-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.studio-copy { margin: 0; color: var(--muted); max-width: 38rem; }

.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-chips li {
  font-family: var(--font-hud);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--star);
  background: rgba(168, 85, 247, 0.08);
}

.focus-chips li:nth-child(2n) {
  border-color: rgba(78, 215, 241, 0.4);
  background: rgba(78, 215, 241, 0.07);
}

/* ============================================================
   Showcase — pinned horizontal gallery
   ============================================================ */
.showcase { position: relative; }

.showcase-pin { overflow: hidden; }

.showcase-track {
  display: flex;
  width: max-content;
}

.panel {
  width: 100vw;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  max-width: 100vw;
}

.panel-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.panel-info { max-width: 30rem; }

.panel-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 1.25rem;
}

.panel-mystic .panel-title {
  background: linear-gradient(120deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel-kitchen .panel-title {
  background: linear-gradient(120deg, var(--ember), var(--tomato));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-hud);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; }

.panel-status.live { color: #6ee7a0; }
.panel-status.live .status-dot { background: #6ee7a0; box-shadow: 0 0 10px #6ee7a0; animation: pulse 1.6s infinite; }
.panel-status.soon { color: var(--ember); }
.panel-status.soon .status-dot { background: var(--ember); box-shadow: 0 0 10px var(--ember); }

.panel-copy { color: var(--muted); margin: 0 0 1.5rem; }

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.panel-tags li {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 239, 255, 0.18);
  color: var(--muted);
}

/* holo card */
.holo-card {
  width: clamp(220px, 24vw, 320px);
  perspective: 1000px;
  outline-offset: 8px;
}

.holo-inner {
  position: relative;
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
  box-shadow: 0 30px 80px rgba(78, 215, 241, 0.15), 0 10px 40px rgba(168, 85, 247, 0.3);
}

.holo-glare {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    24rem 24rem at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(242, 239, 255, 0.22),
    transparent 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.sigil-spin { transform-origin: 150px 178px; animation: sigil-rotate 24s linear infinite; }

@keyframes sigil-rotate { to { transform: rotate(360deg); } }

.orbit-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-spark.s1 { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); top: 18%; left: 22%; animation: spark-float 5s ease-in-out infinite; }
.orbit-spark.s2 { background: var(--magenta); box-shadow: 0 0 12px var(--magenta); bottom: 20%; right: 20%; animation: spark-float 6s ease-in-out 1s infinite; }
.orbit-spark.s3 { background: var(--violet); box-shadow: 0 0 12px var(--violet); top: 60%; left: 14%; animation: spark-float 7s ease-in-out 2s infinite; }

@keyframes spark-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50% { transform: translate(10px, -18px); opacity: 0.4; }
}

/* kitchen scene */
.counter-scene { width: clamp(320px, 42vw, 600px); }

.food { transform-box: fill-box; transform-origin: center bottom; }

.food-tomato { animation: food-bounce 1.6s var(--ease-out) infinite; }
.food-lemon { animation: food-bounce 1.9s var(--ease-out) 0.3s infinite; }
.food-pea { animation: food-bounce 1.3s var(--ease-out) 0.5s infinite; }
.food-cheese { animation: food-bounce 1.7s var(--ease-out) 0.8s infinite; }
.food-pan { animation: pan-rock 2.4s ease-in-out infinite; }

@keyframes food-bounce {
  0%, 100% { transform: translateY(0) scaleY(1); }
  12% { transform: translateY(2px) scaleY(0.92); }
  45% { transform: translateY(-26px) scaleY(1.04); }
  80% { transform: translateY(0) scaleY(1); }
  88% { transform: translateY(1px) scaleY(0.96); }
}

@keyframes pan-rock {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-3deg); }
  65% { transform: rotate(2deg); }
}

.wisp { stroke-dasharray: 60; animation: steam-rise 3s linear infinite; }
.wisp.w2 { animation-delay: 1.4s; }

@keyframes steam-rise {
  0% { stroke-dashoffset: 60; opacity: 0; }
  30% { opacity: 0.6; }
  100% { stroke-dashoffset: -60; opacity: 0; }
}

/* ============================================================
   Vision
   ============================================================ */
.vision {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: clamp(3rem, 8vh, 5rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-row {
  display: inline-flex;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 239, 255, 0.22);
  will-change: transform;
}

.vision-inner { position: relative; z-index: 1; }

.vision-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}

.vision-copy { color: var(--muted); max-width: 40rem; margin: 0; }

.vision-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb.o1 { width: 300px; height: 300px; background: var(--violet); top: 10%; right: -5%; }
.orb.o2 { width: 220px; height: 220px; background: var(--cyan); bottom: 5%; left: -4%; }
.orb.o3 { width: 180px; height: 180px; background: var(--ember); top: 50%; right: 25%; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0 2.5rem;
  border-top: 1px solid rgba(242, 239, 255, 0.07);
  overflow: hidden;
}

.footer-inner { position: relative; z-index: 1; text-align: center; }

.press-start {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: clamp(3rem, 8vh, 5rem);
}

.ps-line {
  display: block;
  font-weight: 900;
  font-stretch: 150%;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 239, 255, 0.35);
  transition: color 0.35s var(--ease-out), -webkit-text-stroke-color 0.35s var(--ease-out);
}

.ps-accent { -webkit-text-stroke-color: rgba(78, 215, 241, 0.55); }

.press-start:hover .ps-line,
.press-start:focus-visible .ps-line {
  color: var(--star);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
}

.press-start:hover .ps-accent,
.press-start:focus-visible .ps-accent {
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(78, 215, 241, 0.7);
}

.ps-sub {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-hud);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  text-align: left;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(242, 239, 255, 0.07);
}

.footer-brand-block p { color: var(--muted); font-size: 0.9rem; margin: 0.9rem 0 0; }

.footer-brand { cursor: pointer; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--star); }

.footer-links a small {
  margin-left: 0.35em;
  font-family: var(--font-hud);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--violet);
  vertical-align: super;
}

.footer-note {
  margin: 3rem 0 0;
  font-size: 0.8rem;
  color: rgba(155, 147, 184, 0.6);
}

.burst-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .site-nav { display: none; }

  .studio-body { grid-template-columns: 1fr; gap: 2rem; }

  .panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: center;
    justify-items: center;
    text-align: center;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .panel-info { display: flex; flex-direction: column; align-items: center; }

  .panel-tags { justify-content: center; }

  /* vertical stack fallback — JS keeps horizontal pin desktop-only */
  .showcase-track { flex-direction: column; width: 100%; }
  .panel { width: 100%; }

  .mc-pad { display: none; }

  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   Reduced motion — calm everything down
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .boot { display: none !important; }

  .grain,
  .cue-dot,
  .cta-pulse,
  .sigil-spin,
  .food, .wisp,
  .orbit-spark,
  .boot-caret,
  .eyebrow .tick::after,
  .panel-status.live .status-dot {
    animation: none !important;
  }

  .holo-inner { transition: none; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
