:root {
  --black: #0b0b0d;
  --deep: #15161a;
  --graphite: #2a2d33;
  --metal: #8b8f98;
  --panel: rgba(21, 22, 26, 0.86);
  --panel-soft: rgba(42, 45, 51, 0.42);
  --orange: #ff5a00;
  --orange-2: #ff5a00;
  --amber: #ff5a00;
  --blue: #8b8f98;
  --green: #8b8f98;
  --purple: #8b8f98;
  --text: #f3f0eb;
  --text-soft: #c8c3ba;
  --muted: #8b8f98;
  --line: rgba(139, 143, 152, 0.22);
  --line-strong: rgba(255, 90, 0, 0.44);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --fo: "Orbitron", monospace;
  --fr: "Inter", sans-serif;
  --fd: "Rajdhani", sans-serif;
  --fc: "Courier Prime", monospace;
  --max: 1240px;
  --radius-lg: 18px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

html.has-lightbox {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 90, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(21, 22, 26, 0.96), rgba(11, 11, 13, 0.98) 42%, #0b0b0d),
    var(--black);
  color: var(--text);
  font-family: var(--fr);
  line-height: 1.7;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid rgba(255, 136, 0, 0.88);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 12000;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(3, 3, 3, 0.96);
  color: var(--text);
  font-family: var(--fc);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  pointer-events: none;
  z-index: 9990;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  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 type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9989;
}

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

button {
  font: inherit;
}

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

.audio-element {
  display: none;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 85, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 10010;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 85, 0, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10009;
  mix-blend-mode: screen;
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease;
}

.cursor-ring.on {
  width: 42px;
  height: 42px;
  border-color: var(--orange-2);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 3rem;
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav.is-scrolled {
  background: rgba(11, 11, 13, 0.9);
  border-color: rgba(255, 90, 0, 0.24);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fo);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-logo-sub {
  color: var(--muted);
  font-weight: 400;
}

.nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: blink 1.6s step-end infinite;
}

.nav-links {
  display: flex;
  gap: clamp(0.9rem, 1.5vw, 1.6rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6c8ce;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--orange-2);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  min-height: 2.25rem;
  padding: 0.18rem;
  border: 1px solid rgba(255, 85, 0, 0.2);
  border-radius: 999px;
  background: rgba(21, 22, 26, 0.52);
  font-family: var(--fc);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 85, 0, 0.08);
  box-shadow: 0 0 18px rgba(255, 85, 0, 0.1);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.12rem;
  min-height: 1.76rem;
  padding: 0 0.38rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lang-option.is-active {
  border-color: rgba(255, 136, 0, 0.44);
  background: var(--orange);
  color: var(--black);
  box-shadow:
    0 0 16px rgba(255, 85, 0, 0.2),
    inset 0 0 12px rgba(255, 255, 255, 0.14);
}

.lang-divider {
  color: rgba(139, 143, 152, 0.42);
}

.nav-cta,
.btn-enter,
.btn-ghost,
.btn-archive,
.track-link,
.signal-state,
.m-tag,
.timeline-node,
.album-badge {
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.35rem;
  border: 1px solid var(--orange);
  font-family: var(--fo);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 22px rgba(255, 90, 0, 0.24);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--orange);
  transition: all 240ms ease;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  scroll-margin-top: 5.5rem;
}

#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 68% 45%, rgba(255, 90, 0, 0.2), transparent 28rem),
    linear-gradient(90deg, rgba(11, 11, 13, 0.98), rgba(11, 11, 13, 0.72) 48%, rgba(11, 11, 13, 0.94)),
    #0b0b0d;
}

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

#hero::before {
  inset: 4.2rem 0 0;
  background:
    linear-gradient(rgba(139, 143, 152, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 143, 152, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 46%, #000 0, transparent 58%);
  opacity: 0.7;
}

#hero::after {
  --portal-y: -48%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  right: min(3vw, 2.5rem);
  top: 50%;
  transform: translateY(var(--portal-y));
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 38%, rgba(255, 90, 0, 0.42) 39%, transparent 41%),
    radial-gradient(circle, transparent 50%, rgba(255, 90, 0, 0.22) 51%, transparent 53%),
    conic-gradient(from 90deg, transparent 0 11%, rgba(255, 90, 0, 0.62) 12% 15%, transparent 16% 28%, rgba(255, 90, 0, 0.4) 29% 31%, transparent 32% 100%);
  filter: drop-shadow(0 0 34px rgba(255, 90, 0, 0.3));
  opacity: 0.78;
  animation: portal-breathe 7s ease-in-out infinite;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 70% at 67% 44%,
    transparent 22%,
    rgba(11, 11, 13, 0.96) 100%
  );
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--black));
}

.hero-portal-figure {
  position: absolute;
  right: 18.5%;
  bottom: 15%;
  z-index: 1;
  width: 6.6rem;
  height: 17rem;
  pointer-events: none;
  filter:
    drop-shadow(0 0 18px rgba(255, 90, 0, 0.28))
    drop-shadow(0 26px 36px rgba(0, 0, 0, 0.7));
  opacity: 0.74;
}

.figure-core,
.figure-shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.figure-core {
  bottom: 1.6rem;
  width: 2.5rem;
  height: 12.5rem;
  border: 1px solid rgba(255, 90, 0, 0.36);
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(circle at 50% 13%, rgba(255, 90, 0, 0.82), transparent 0.42rem),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 90, 0, 0.18) 19% 22%, transparent 23% 77%, rgba(255, 90, 0, 0.18) 78% 81%, transparent 82%),
    linear-gradient(180deg, rgba(139, 143, 152, 0.2), rgba(0, 0, 0, 0.76));
}

.figure-core::before,
.figure-core::after {
  content: "";
  position: absolute;
  top: 4.6rem;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.72), transparent);
}

.figure-core::before {
  right: 100%;
  transform: rotate(-28deg);
  transform-origin: right;
}

.figure-core::after {
  left: 100%;
  transform: rotate(28deg);
  transform-origin: left;
}

.figure-shadow {
  bottom: 0;
  width: 6rem;
  height: 1.2rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.24), transparent 68%);
}

.hero-orbit-map {
  position: absolute;
  inset: 8rem 4rem 5rem auto;
  z-index: 1;
  width: min(45vw, 620px);
  pointer-events: none;
}

.orbit-mark {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 90, 0, 0.26);
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.45);
  color: rgba(255, 90, 0, 0.76);
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 90, 0, 0.08);
}

.orbit-mark-a {
  top: 5%;
  left: 46%;
}

.orbit-mark-b {
  top: 38%;
  right: 3%;
}

.orbit-mark-c {
  right: 22%;
  bottom: 8%;
}

.orbit-mark-d {
  bottom: 28%;
  left: 7%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-tag,
.manifeste-eyebrow,
.section-label,
.archive-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--orange);
  text-transform: uppercase;
}

.hero-tag {
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fade-up 800ms 120ms forwards;
  flex-wrap: wrap;
}

.hero-tag span {
  color: var(--muted);
  white-space: nowrap;
}

.hero-title,
.manifeste-title,
.section-title,
.archive-title {
  margin: 0;
  font-family: var(--fo);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  margin-bottom: 1.1rem;
  padding-left: 0.05em;
  font-size: 5.9rem;
  opacity: 0;
  animation: fade-up 900ms 300ms forwards;
}

.hero-title .line1,
.hero-title .line2,
.hero-title .line3 {
  display: block;
}

.hero-title .line1 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 90, 0, 0.74);
}

.hero-title .line2 {
  position: relative;
  color: var(--orange);
  text-shadow:
    0 0 36px rgba(255, 90, 0, 0.52),
    0 0 100px rgba(255, 90, 0, 0.22);
}

.hero-title .line2::after {
  content: "_";
  color: var(--amber);
  animation: blink 1s step-end infinite;
}

.hero-title .line3 {
  margin-top: 0.6rem;
  font-size: 0.36em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--muted);
  max-width: 24ch;
}

.hero-sub,
.section-intro,
.manifeste-text,
.pipe-node p,
.signal-node-copy p,
.archive-sub,
.track-meta,
.album-description {
  color: var(--muted);
}

.section-intro-center {
  margin-inline: auto;
  text-align: center;
}

.hero-sub {
  max-width: 56ch;
  margin: 0 0 2rem;
  font-family: var(--fr);
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0;
  opacity: 0;
  animation: fade-up 800ms 520ms forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 800ms 700ms forwards;
}

.btn-enter,
.btn-ghost,
.btn-archive {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-enter {
  padding: 1rem 2.4rem;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--black);
  font-family: var(--fo);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.btn-enter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}

.btn-enter:hover::before,
.btn-enter:focus-visible::before {
  transform: translateX(0);
}

.btn-enter:hover,
.btn-enter:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 26px rgba(255, 90, 0, 0.32),
    inset 0 0 18px rgba(255, 255, 255, 0.16);
}

.btn-enter span,
.btn-archive span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  padding: 1rem 1.8rem;
  border: 1px solid rgba(139, 143, 152, 0.32);
  background: rgba(21, 22, 26, 0.42);
  color: #f3f0eb;
  font-family: var(--fo);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: rgba(255, 90, 0, 0.08);
  color: var(--orange);
}

.panel-metric,
.pipe-node,
.story-card,
.hero-panel,
.album-summary,
.album-body,
.visual-card,
.track-item,
.video-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
}

.panel-metric strong {
  display: block;
  font-family: var(--fo);
  font-size: 1.05rem;
  color: var(--text);
}

.panel-metric span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--fc);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 540px;
  border-color: rgba(255, 90, 0, 0.16);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 0, 0.22), transparent 29%),
    radial-gradient(circle at 82% 12%, rgba(255, 136, 0, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(42, 45, 51, 0.36), rgba(11, 11, 13, 0.86) 58%),
    rgba(8, 8, 10, 0.9);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 90, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 2rem;
  border-radius: 999px;
  pointer-events: none;
}

.hero-panel::before {
  inset: 4.25rem 3.15rem 8.9rem;
  border: 1px solid rgba(255, 90, 0, 0.3);
  box-shadow:
    0 0 44px rgba(255, 90, 0, 0.2),
    0 0 110px rgba(255, 90, 0, 0.08),
    inset 0 0 44px rgba(255, 90, 0, 0.08);
  animation: portal-breathe 6.5s ease-in-out infinite;
}

.hero-panel::after {
  inset: 4.9rem 3.8rem 9.45rem;
  border: 1px solid rgba(255, 90, 0, 0.18);
  background:
    linear-gradient(rgba(139, 143, 152, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 143, 152, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 0 58%, transparent 72%);
}

.panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem 0.95rem;
  border-bottom: 1px solid rgba(255, 85, 0, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.08), transparent 40%, rgba(255, 90, 0, 0.05)),
    rgba(0, 0, 0, 0.12);
  font-family: var(--fc);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-head span::before {
  content: "";
  width: 0.42rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.75);
}

.panel-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 90, 0, 0.075);
  color: var(--orange);
  box-shadow: inset 0 0 18px rgba(255, 90, 0, 0.04);
}

.panel-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  min-height: 405px;
  padding: 1.35rem 1.4rem 0.65rem;
  align-content: center;
}

.panel-ring {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  min-height: 0;
  margin-inline: auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 53%, rgba(255, 90, 0, 0.22), transparent 18%),
    radial-gradient(circle at center, rgba(255, 90, 0, 0.09), transparent 38%),
    radial-gradient(circle at center, transparent 53%, rgba(255, 90, 0, 0.34) 54%, transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(7, 7, 9, 0.72);
  border: 1px solid rgba(255, 90, 0, 0.18);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 48px rgba(255, 90, 0, 0.16),
    0 0 120px rgba(255, 90, 0, 0.06),
    inset 0 0 60px rgba(255, 90, 0, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.panel-ring::before,
.panel-ring::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  animation: pulse-ring 5s ease-in-out infinite;
}

.panel-ring::before {
  inset: 10px;
  background: conic-gradient(
    from 218deg,
    transparent 0 7%,
    rgba(255, 90, 0, 0.9) 9% 23%,
    transparent 25% 48%,
    rgba(255, 136, 0, 0.52) 50% 61%,
    transparent 63% 77%,
    rgba(255, 90, 0, 0.7) 79% 91%,
    transparent 93% 100%
  );
  filter: drop-shadow(0 0 16px rgba(255, 90, 0, 0.32));
  mask-image: radial-gradient(circle, transparent 0 68%, #000 69% 72%, transparent 73%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 68%, #000 69% 72%, transparent 73%);
  opacity: 0.78;
}

.panel-ring::after {
  inset: 48px;
  border: 1px solid rgba(255, 136, 0, 0.2);
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255, 90, 0, 0.22) 14%, transparent 15% 85%, rgba(255, 90, 0, 0.18) 86%, transparent 87%),
    linear-gradient(0deg, transparent 0 12%, rgba(255, 90, 0, 0.14) 13%, transparent 14% 86%, rgba(255, 90, 0, 0.12) 87%, transparent 88%),
    radial-gradient(circle at center, rgba(255, 90, 0, 0.12), transparent 52%);
  box-shadow:
    0 0 30px rgba(255, 90, 0, 0.12),
    inset 0 0 34px rgba(255, 90, 0, 0.07);
  animation-delay: 800ms;
}

.panel-ring small {
  position: absolute;
  top: 5.15rem;
  z-index: 2;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 90, 0, 0.2);
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--fc);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.78);
  box-shadow:
    0 0 22px rgba(255, 90, 0, 0.08),
    inset 0 0 18px rgba(255, 90, 0, 0.035);
}

.panel-ring span {
  position: relative;
  z-index: 1;
  font-family: var(--fo);
  font-size: clamp(4.9rem, 8.5vw, 6.4rem);
  letter-spacing: 0.02em;
  color: var(--orange);
  text-shadow:
    0 0 28px rgba(255, 90, 0, 0.58),
    0 0 80px rgba(255, 90, 0, 0.28);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
  width: min(100%, 430px);
  margin: -2.5rem auto 0;
  isolation: isolate;
}

.panel-metric {
  position: relative;
  min-height: 5.45rem;
  overflow: hidden;
  padding: 0.95rem 1rem 0.85rem;
  border-color: rgba(255, 90, 0, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(42, 45, 51, 0.66), rgba(8, 8, 10, 0.82));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.panel-metric::before {
  content: attr(data-index);
  position: absolute;
  top: 0.72rem;
  right: 0.78rem;
  font-family: var(--fc);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  color: rgba(255, 136, 0, 0.58);
}

.panel-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 136, 0, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.2), transparent 62%),
    radial-gradient(circle at 12% 16%, rgba(255, 90, 0, 0.28), transparent 18%);
  opacity: 0.7;
  pointer-events: none;
}

.panel-metric strong,
.panel-metric span {
  position: relative;
  z-index: 1;
}

.panel-metric strong {
  font-size: 1.02rem;
  color: #fff3e8;
  text-shadow: 0 0 16px rgba(255, 90, 0, 0.18);
}

.hero-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0 1.3rem 1.3rem;
}

.hero-ribbon-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 85, 0, 0.14);
  background: rgba(0, 0, 0, 0.5);
}

.hero-ribbon-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0.22rem;
  object-fit: contain;
}

.hero-ribbon-card span {
  position: relative;
  justify-self: stretch;
  padding: 0.18rem 0.32rem;
  border-top: 1px solid rgba(255, 85, 0, 0.1);
  background: rgba(3, 3, 3, 0.75);
  font-family: var(--fc);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--text);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-up 700ms 1100ms forwards;
}

.scroll-hint span {
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--orange), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

#manifeste,
#lab,
#lab-notes,
#pipeline,
#ecosystem,
#enter-archive {
  background:
    linear-gradient(180deg, rgba(21, 22, 26, 0.78), rgba(11, 11, 13, 0.96)),
    var(--black);
}

#manifeste,
#lab,
#lab-notes,
#timeline,
#albums,
#pipeline,
#signal,
#ecosystem,
#enter-archive {
  padding: 6.5rem 0;
}

#manifeste::before,
#lab::before,
#lab-notes::before,
#pipeline::before,
#ecosystem::before,
#enter-archive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.manifeste-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
}

.manifeste-index {
  padding-top: 0.5rem;
  font-family: var(--fo);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.7;
}

.manifeste-eyebrow::before {
  content: "//";
  color: var(--muted);
}

.manifeste-title {
  margin-bottom: 1.6rem;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.manifeste-title em,
.section-title em {
  font-style: normal;
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 85, 0, 0.22);
}

.manifeste-text {
  max-width: 68ch;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.9;
}

.manifeste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.m-tag {
  padding: 0.38rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 85, 0, 0.04);
  font-family: var(--fc);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-label {
  margin-bottom: 0.7rem;
}

.section-label::before {
  content: "[ ";
  color: var(--muted);
}

.section-label::after {
  content: " ]";
  color: var(--muted);
}

.section-label-center {
  justify-content: center;
}

.section-title {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-title-center {
  max-width: none;
  text-align: center;
}

.section-title em {
  color: transparent;
  -webkit-text-stroke: 1px var(--orange);
  text-shadow: none;
}

.section-intro {
  max-width: 74ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
}

.timeline-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.timeline-node {
  position: relative;
  min-height: 170px;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.08), transparent 55%),
    rgba(12, 12, 12, 0.94);
  content-visibility: auto;
  contain-intrinsic-size: 180px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.timeline-launch {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.timeline-launch:focus-visible {
  outline: 1px solid rgba(255, 90, 0, 0.78);
  outline-offset: 0.45rem;
}

.timeline-node:hover,
.timeline-node:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 24px rgba(255, 85, 0, 0.08);
}

.timeline-node::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.55);
}

.timeline-node strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--fo);
  font-size: 1rem;
  color: var(--text);
}

.timeline-node span {
  display: block;
  font-family: var(--fc);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.timeline-node p {
  flex: 1;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.timeline-node small {
  width: fit-content;
  margin-top: 1rem;
  padding-top: 0.52rem;
  border-top: 1px solid rgba(255, 90, 0, 0.3);
  color: var(--orange);
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-layer {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.story-head {
  display: grid;
  gap: 0.55rem;
  max-width: 58ch;
}

.story-kicker {
  margin: 0;
  font-family: var(--fc);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.story-head h3 {
  margin: 0;
  font-family: var(--fo);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text);
}

.story-head p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.story-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem;
  border-radius: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 240px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.story-card:hover,
.story-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 24px rgba(255, 85, 0, 0.08);
}

.story-card span {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.story-card strong {
  font-family: var(--fo);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
}

.story-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.protocol-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  min-height: 248px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 90, 0, 0.07), transparent 58%),
    var(--panel);
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 220px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.protocol-card::before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 90, 0, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 90, 0, 0.7) 45% 55%, transparent 56%),
    rgba(11, 11, 13, 0.7);
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.1);
}

.protocol-card:hover,
.protocol-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 24px rgba(255, 85, 0, 0.08);
}

.protocol-card span {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.protocol-card strong {
  font-family: var(--fo);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.protocol-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.lab-notes-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.lab-notes-head {
  position: sticky;
  top: 6rem;
}

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

.lab-note-card {
  position: relative;
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid rgba(139, 143, 152, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lab-note-card::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(255, 90, 0, 0.18);
  transform: rotate(45deg);
  opacity: 0.7;
}

.lab-note-card span {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.lab-note-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--fo);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
}

.lab-note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1.8fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.6rem;
}

.archive-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.archive-guide-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.archive-guide-card span {
  display: block;
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.archive-guide-card strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--fo);
  font-size: 0.8rem;
  line-height: 1.45;
}

.archive-search {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--panel);
  box-shadow: var(--shadow);
}

.archive-search span {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.archive-search input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 85, 0, 0.16);
  border-radius: 14px;
  background: rgba(3, 3, 3, 0.72);
  color: var(--text);
  font-family: var(--fc);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.archive-search input::placeholder {
  color: var(--muted);
}

.archive-search input:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(255, 136, 0, 0.18);
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.archive-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 85, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.04);
  color: var(--muted);
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.archive-filter:hover,
.archive-filter:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--text);
}

.archive-filter small {
  min-width: 1.4rem;
  padding: 0.18rem 0.34rem;
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.08);
  font-family: var(--fc);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.archive-filter.is-active {
  border-color: rgba(255, 136, 0, 0.38);
  background: rgba(255, 85, 0, 0.1);
  color: var(--orange-2);
  box-shadow: 0 0 24px rgba(255, 85, 0, 0.08);
}

.archive-results {
  grid-column: 1 / -1;
  margin: -0.05rem 0 0;
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-empty-state {
  grid-template-columns: 1fr;
  min-height: 0;
}

.album-entries {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.album-entry {
  border: 0;
}

.album-entry summary {
  list-style: none;
  cursor: pointer;
}

.album-entry summary::-webkit-details-marker {
  display: none;
}

.album-summary {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 4.4rem);
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.album-entry[open] .album-summary,
.album-summary:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow:
    var(--shadow),
    0 0 26px rgba(255, 85, 0, 0.08);
}

.album-cover {
  position: relative;
  overflow: hidden;
  align-self: center;
  width: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 90, 0, 0.08), transparent 58%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 38%),
    rgba(0, 0, 0, 0.58);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 85, 0, 0.12);
}

.album-cover[data-format="portrait"] {
  width: 100%;
  justify-self: stretch;
  aspect-ratio: 1;
}

.album-cover[data-format="paysage"] {
  aspect-ratio: 1;
}

.album-cover img {
  width: 100%;
  height: 100%;
  padding: clamp(0.45rem, 3%, 0.85rem);
  object-fit: contain;
  object-position: center;
  transition: filter 240ms ease;
}

.album-summary:hover .album-cover img,
.album-entry[open] .album-cover img {
  filter: saturate(1.06) contrast(1.03);
}

.album-seq {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.28rem 0.42rem;
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.72);
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.album-summary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: clamp(0.4rem, 1.2vw, 1.2rem);
  position: relative;
  z-index: 2;
}

.album-kicker {
  font-family: var(--fc);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.album-summary h3 {
  margin: 0.45rem 0 0.5rem;
  font-family: var(--fo);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.06;
}

.album-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.album-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.album-badge,
.track-link,
.signal-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 85, 0, 0.18);
  background: rgba(255, 85, 0, 0.05);
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-toggle {
  margin-top: 1rem;
  font-family: var(--fo);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.album-body {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.85rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  animation: fade-up 420ms ease both;
}

.album-mode-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.album-focus-button,
.album-preview-open {
  border: 1px solid rgba(255, 85, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.06), transparent 58%),
    rgba(5, 5, 5, 0.9);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.album-focus-button {
  display: grid;
  justify-items: start;
  gap: 0.2rem;
  min-width: min(100%, 18rem);
  padding: 0.85rem 1rem;
  border-radius: 16px;
}

.album-preview-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-family: var(--fo);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.album-focus-button:hover,
.album-focus-button:focus-visible,
.album-preview-open:hover,
.album-preview-open:focus-visible,
.album-focus-button[aria-pressed="true"] {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 0 24px rgba(255, 85, 0, 0.1);
}

.album-focus-label {
  font-family: var(--fo);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.album-focus-meta {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-detail-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  transition: grid-template-columns 240ms ease;
}

.album-hero-media {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  justify-items: center;
  align-items: stretch;
  border-radius: 18px;
  border: 1px solid rgba(255, 85, 0, 0.15);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 0, 0.1), transparent 58%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 36px),
    rgba(0, 0, 0, 0.62);
}

.album-hero-media img {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: auto;
  height: auto;
  max-width: min(calc(100% - clamp(0.8rem, 2vw, 1.4rem)), 860px);
  max-height: min(62svh, 720px);
  padding: clamp(0.7rem, 2vw, 1.35rem);
  object-fit: contain;
  object-position: center;
}

.album-hero-media[data-format="portrait"] img {
  max-width: min(calc(100% - clamp(0.8rem, 2vw, 1.4rem)), 560px);
  max-height: min(68svh, 820px);
}

.album-hero-media[data-format="paysage"] img {
  max-width: min(calc(100% - clamp(0.8rem, 2vw, 1.4rem)), 980px);
}

.album-preview-image.is-swapping {
  animation: preview-refresh 320ms ease;
}

.album-preview-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.album-preview-caption.is-swapping {
  animation: fade-up 280ms ease;
}

.album-body.is-focus-mode {
  border-color: rgba(255, 90, 0, 0.42);
  box-shadow:
    var(--shadow),
    0 0 40px rgba(255, 85, 0, 0.08);
}

.album-body.is-focus-mode .album-detail-top {
  grid-template-columns: 1fr;
}

.album-body.is-focus-mode .album-hero-media {
  min-height: auto;
  border-color: var(--line-strong);
  box-shadow:
    0 0 42px rgba(255, 85, 0, 0.12),
    inset 0 0 42px rgba(255, 85, 0, 0.04);
}

.album-body.is-focus-mode .album-hero-media[data-format="portrait"] {
  min-height: auto;
}

.album-body.is-focus-mode .album-data-grid,
.album-body.is-focus-mode .album-panel-secondary {
  display: none;
}

.album-detail-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 1rem;
}

.album-detail-copy .album-panel-section:first-child,
.album-detail-copy .album-panel-section:nth-child(2) {
  align-self: start;
}

.album-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.data-tile {
  padding: 0.8rem;
  border: 1px solid rgba(255, 85, 0, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 85, 0, 0.03);
}

.data-tile strong {
  display: block;
  font-family: var(--fo);
  font-size: 0.95rem;
}

.data-tile span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.album-panel-section {
  scroll-margin-top: 6.2rem;
  display: grid;
  gap: 0.7rem;
}

.album-panel-section h4 {
  margin: 0;
  font-family: var(--fo);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.album-focus-grid,
.album-audit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.focus-tile,
.audit-tile {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 85, 0, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.05), transparent 58%),
    rgba(4, 4, 4, 0.76);
}

.focus-tile span,
.audit-tile span {
  display: block;
  font-family: var(--fc);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.focus-tile strong,
.audit-tile strong {
  display: block;
  margin-top: 0.36rem;
  font-family: var(--fr);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

.album-playback-panel {
  display: grid;
  gap: 0.75rem;
}

.album-playback-button {
  display: grid;
  justify-items: start;
  gap: 0.22rem;
  width: 100%;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(255, 85, 0, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.08), transparent 58%),
    rgba(6, 6, 6, 0.88);
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.album-playback-button:hover,
.album-playback-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 0 24px rgba(255, 85, 0, 0.08);
}

.album-playback-button.is-playing {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.12), transparent 58%),
    rgba(7, 7, 7, 0.94);
  box-shadow: 0 0 28px rgba(255, 85, 0, 0.1);
}

.album-playback-label {
  font-family: var(--fo);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.album-playback-meta,
.album-playback-status {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.album-playback-meta {
  color: var(--muted);
}

.album-playback-status {
  margin: 0;
  color: var(--text-soft);
}

.pack-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
  gap: 0.8rem;
}

.pack-strip[data-format="portrait"] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
}

.pack-strip[data-format="paysage"] {
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
}

.pack-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 85, 0, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 0, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(255, 90, 0, 0.08), transparent 40%),
    rgba(0, 0, 0, 0.58);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pack-strip[data-format="portrait"] .pack-card {
  aspect-ratio: 2 / 3;
}

.pack-strip[data-format="paysage"] .pack-card {
  aspect-ratio: 3 / 2;
}

.pack-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(0.45rem, 3%, 0.85rem);
  object-fit: contain;
  object-position: center;
  transition: filter 240ms ease;
}

.pack-card span {
  position: relative;
  z-index: 1;
  justify-self: stretch;
  padding: 0.26rem 0.46rem;
  border-top: 1px solid rgba(255, 85, 0, 0.12);
  background: rgba(3, 3, 3, 0.82);
  font-family: var(--fc);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}

.pack-card:hover,
.pack-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.pack-card:hover img,
.pack-card:focus-visible img,
.pack-card.is-active img {
  filter: saturate(1.06) contrast(1.03);
}

.pack-card.is-active {
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 24px rgba(255, 85, 0, 0.1);
}

.visual-card {
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 0, 0.08), transparent 60%),
    rgba(0, 0, 0, 0.58);
}

.visual-card img {
  width: 100%;
  padding: clamp(0.45rem, 3%, 0.85rem);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
}

.visual-card figcaption {
  padding: 0.7rem 0.8rem 0.85rem;
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.video-card {
  overflow: hidden;
  border-radius: 16px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-card figcaption {
  padding: 0.7rem 0.8rem 0.85rem;
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.track-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
}

.track-item.is-active {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.08), transparent 42%),
    var(--panel);
  box-shadow: 0 0 28px rgba(255, 85, 0, 0.06);
}

.track-head {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.track-select {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.track-num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 85, 0, 0.22);
  font-family: var(--fo);
  font-size: 0.64rem;
  color: var(--orange);
}

.track-copy {
  min-width: 0;
}

.track-copy strong {
  display: block;
  font-family: var(--fo);
  font-size: 0.82rem;
  color: var(--text);
  overflow-wrap: anywhere;
}

.track-select-label {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--fc);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.audio-player {
  --audio-progress: 0%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 85, 0, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.05), transparent 55%),
    rgba(5, 5, 5, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 0 0 rgba(255, 85, 0, 0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.audio-player:hover,
.audio-player:focus-within,
.audio-player.is-playing {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 0 24px rgba(255, 85, 0, 0.08);
}

.audio-player.is-playing {
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.08), transparent 55%),
    rgba(5, 5, 5, 0.9);
}

.audio-button-group {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.audio-toggle-button {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 85, 0, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 85, 0, 0.14), transparent 62%),
    rgba(12, 12, 12, 0.95);
  color: var(--orange);
  font-family: var(--fo);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.audio-skip-button {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 85, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.045);
  color: var(--muted);
  font-family: var(--fo);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.audio-toggle-button:hover,
.audio-toggle-button:focus-visible,
.audio-skip-button:hover,
.audio-skip-button:focus-visible {
  transform: scale(1.04);
  border-color: var(--line-strong);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.12);
}

.audio-skip-button:hover,
.audio-skip-button:focus-visible {
  background: rgba(255, 85, 0, 0.09);
  color: var(--orange);
}

.audio-skip-button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  transform: none;
  box-shadow: none;
}

.audio-player.is-playing .audio-toggle-button {
  color: var(--text);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.16);
}

.audio-progress-wrap {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.audio-progress {
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.audio-progress:focus {
  outline: none;
}

.audio-progress::-webkit-slider-runnable-track {
  height: 0.44rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 85, 0, 0.95) 0,
      rgba(255, 136, 0, 0.88) var(--audio-progress),
      rgba(255, 255, 255, 0.06) var(--audio-progress),
      rgba(255, 255, 255, 0.06) 100%
    );
  border: 1px solid rgba(255, 85, 0, 0.12);
}

.audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  margin-top: -0.34rem;
  border: 1px solid rgba(255, 136, 0, 0.5);
  border-radius: 999px;
  background: #090909;
  box-shadow:
    0 0 0 2px rgba(255, 85, 0, 0.14),
    0 0 18px rgba(255, 85, 0, 0.12);
}

.audio-progress::-moz-range-track {
  height: 0.44rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 85, 0, 0.12);
}

.audio-progress::-moz-range-progress {
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 85, 0, 0.95), rgba(255, 136, 0, 0.88));
}

.audio-progress::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(255, 136, 0, 0.5);
  border-radius: 999px;
  background: #090909;
  box-shadow:
    0 0 0 2px rgba(255, 85, 0, 0.14),
    0 0 18px rgba(255, 85, 0, 0.12);
}

.audio-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.audio-current,
.audio-duration {
  color: var(--text);
}

.audio-separator {
  opacity: 0.45;
}

.track-link:hover,
.track-link:focus-visible {
  color: var(--orange);
  border-color: var(--line-strong);
}

.pipeline-grid {
  display: grid;
  gap: 2rem;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.pipe-node {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  display: grid;
  align-content: space-between;
  gap: 0.85rem;
  padding: 1.05rem;
  border-radius: 22px;
  border-color: rgba(255, 90, 0, 0.14);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 90, 0, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(42, 45, 51, 0.5), rgba(7, 7, 9, 0.86));
  content-visibility: auto;
  contain-intrinsic-size: 210px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pipe-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 136, 0, 0.32);
  background:
    linear-gradient(120deg, rgba(255, 90, 0, 0.16), transparent 44%),
    radial-gradient(circle at 12% 18%, rgba(255, 90, 0, 0.2), transparent 18%);
  pointer-events: none;
}

.pipe-node::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -1.8rem;
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 90, 0, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 24px rgba(255, 90, 0, 0.08);
  pointer-events: none;
}

.pipe-node:hover,
.pipe-node:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    var(--shadow),
    0 0 28px rgba(255, 85, 0, 0.12);
}

.pipe-node-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 85, 0, 0.2);
  font-family: var(--fo);
  font-size: 0.58rem;
  color: var(--orange);
}

.pipe-logo {
  position: relative;
  z-index: 1;
  min-height: 3.7rem;
  display: grid;
  place-items: center;
  padding: 0.72rem 0.5rem;
  border: 1px solid rgba(255, 90, 0, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.14), transparent 50%),
    rgba(0, 0, 0, 0.28);
  font-family: var(--fo);
  font-size: clamp(0.72rem, 1.2vw, 0.96rem);
  letter-spacing: 0.1em;
  text-transform: none;
  color: #fff3e8;
  text-align: center;
  box-shadow:
    inset 0 0 22px rgba(255, 90, 0, 0.05),
    0 0 20px rgba(255, 90, 0, 0.06);
}

.pipe-node[data-brand="google"] .pipe-logo {
  letter-spacing: 0.08em;
}

.pipe-node[data-brand="anthropic"] .pipe-logo {
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  letter-spacing: 0.12em;
}

.pipe-node[data-brand="xai"] .pipe-logo {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.16em;
}

.pipe-node h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--fo);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.pipe-node p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--fc);
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--muted);
}

#signal {
  text-align: center;
}

.signal-network {
  position: relative;
  width: min(100%, 980px);
  min-height: 760px;
  margin: 2.4rem auto 0;
}

.signal-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter:
    drop-shadow(0 0 12px rgba(255, 85, 0, 0.16))
    drop-shadow(0 0 30px rgba(255, 85, 0, 0.12));
}

.signal-web-halo polygon,
.signal-web-halo line {
  fill: none;
  stroke: rgba(255, 85, 0, 0.18);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.signal-web-lines polygon,
.signal-web-lines line {
  fill: none;
  stroke: rgba(255, 136, 0, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.4;
}

.signal-node {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(190px, 21vw, 240px);
  aspect-ratio: 1;
  color: inherit;
}

.signal-bubble {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 136, 0, 0.72), rgba(255, 85, 0, 0.22));
  transition:
    transform 220ms ease,
    filter 220ms ease;
  filter:
    drop-shadow(0 0 18px rgba(255, 85, 0, 0.14))
    drop-shadow(0 0 36px rgba(255, 85, 0, 0.08));
}

.signal-bubble::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 85, 0, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(6, 6, 6, 0.99) 76%);
}

.signal-bubble::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 999px;
  border: 1px solid rgba(255, 85, 0, 0.12);
  background: radial-gradient(circle at center, rgba(255, 85, 0, 0.11), transparent 66%);
  opacity: 0.95;
}

.signal-node-copy {
  position: absolute;
  inset: 17% 14%;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.34rem;
  text-align: center;
}

.signal-node:hover .signal-bubble,
.signal-node:focus-visible .signal-bubble {
  transform: scale(1.03);
  filter:
    drop-shadow(0 0 24px rgba(255, 85, 0, 0.2))
    drop-shadow(0 0 44px rgba(255, 85, 0, 0.12));
}

.signal-node strong {
  font-family: var(--fo);
  font-size: 1rem;
  color: var(--text);
}

.signal-handle {
  font-family: var(--fc);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.signal-node-copy p {
  margin: 0;
  font-family: var(--fc);
  font-size: 0.57rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.signal-node.live .signal-bubble {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(51, 207, 255, 0.28), rgba(255, 85, 0, 0.74));
}

.signal-node.pending .signal-bubble {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(155, 77, 255, 0.3), rgba(255, 85, 0, 0.74));
}

.signal-state {
  width: fit-content;
  padding-inline: 0.58rem;
  border-color: rgba(255, 85, 0, 0.2);
  color: var(--orange-2);
}

.signal-youtube {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.signal-instagram {
  top: 25%;
  left: 4%;
}

.signal-tiktok {
  top: 25%;
  right: 4%;
}

.signal-spotify {
  bottom: 2%;
  left: 19%;
}

.signal-soundcloud {
  right: 19%;
  bottom: 2%;
}

.signal-x {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(150px, 16vw, 184px);
  transform: translate(-50%, -50%);
}

.contact-terminal {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 1rem;
  margin: 1.5rem auto 0;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 90, 0, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(21, 22, 26, 0.92), rgba(11, 11, 13, 0.95));
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-terminal-copy {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 90, 0, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(0, 0, 0, 0.2);
}

.contact-kicker,
.contact-config,
.contact-status {
  margin: 0;
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-kicker {
  color: var(--orange);
}

.contact-title {
  margin: 0.85rem 0 0.7rem;
  color: var(--text);
  font-family: var(--fo);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-config {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-config[data-state="ready"],
.contact-status[data-state="success"] {
  color: #39ff88;
}

.contact-status[data-state="error"] {
  color: #ff6b35;
}

.contact-status[data-state="loading"] {
  color: var(--orange);
}

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

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-field {
  display: grid;
  gap: 0.42rem;
}

.contact-field-wide,
.contact-submit,
.contact-status {
  grid-column: 1 / -1;
}

.contact-field span {
  color: var(--orange);
  font-family: var(--fc);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(139, 143, 152, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(200, 195, 186, 0.42);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.09);
}

.contact-submit {
  justify-self: start;
  min-width: min(100%, 280px);
  border: 1px solid rgba(255, 90, 0, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.98), rgba(255, 90, 0, 0.58));
  color: #0b0b0d;
  cursor: pointer;
  font-family: var(--fo);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.92rem 1.2rem;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.22));
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  filter: grayscale(0.2);
}

.ecosystem-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(139, 143, 152, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 90, 0, 0.16), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(255, 90, 0, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(21, 22, 26, 0.9), rgba(11, 11, 13, 0.96));
  box-shadow: var(--shadow);
}

.ecosystem-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 90, 0, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.ecosystem-shell::after {
  content: "555 // SATELLITE MESH";
  position: absolute;
  top: 1.35rem;
  right: 1.55rem;
  color: rgba(255, 90, 0, 0.2);
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.ecosystem-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.46fr);
  gap: 0.8rem 2rem;
  align-items: end;
}

.ecosystem-head .section-label {
  grid-column: 1 / -1;
}

.ecosystem-head .section-title {
  margin: 0;
}

.ecosystem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ecosystem-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 13.6rem;
  padding: 1.15rem;
  border: 1px solid rgba(139, 143, 152, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.62rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: auto auto 1.05rem 1.05rem;
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 90, 0, 0.3) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgba(255, 90, 0, 0.26) 49%, transparent 51%);
  opacity: 0.32;
  z-index: -1;
}

.ecosystem-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.52);
  opacity: 0.72;
}

.ecosystem-card span {
  color: var(--orange);
  font-family: var(--fc);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ecosystem-card strong {
  color: var(--text);
  font-family: var(--fo);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.ecosystem-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.68;
}

.ecosystem-card small {
  width: fit-content;
  margin-top: 0.35rem;
  padding-top: 0.52rem;
  border-top: 1px solid rgba(255, 90, 0, 0.28);
  color: var(--muted);
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem-card:hover,
.ecosystem-card:focus-visible {
  border-color: rgba(255, 90, 0, 0.54);
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 90, 0, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.32);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 90, 0, 0.12);
  transform: translateY(-3px);
}

.ecosystem-shop {
  grid-column: 1 / -1;
  min-height: 10.2rem;
  padding-right: min(34vw, 22rem);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 90, 0, 0.2), transparent 24%),
    linear-gradient(104deg, rgba(255, 90, 0, 0.13), transparent 46%),
    rgba(0, 0, 0, 0.3);
}

.ecosystem-shop::before {
  inset: auto 3.2rem -1.8rem auto;
  width: 10rem;
  height: 10rem;
  border-color: rgba(255, 90, 0, 0.34);
  opacity: 0.58;
  box-shadow:
    0 0 0 1.3rem rgba(255, 90, 0, 0.025),
    0 0 44px rgba(255, 90, 0, 0.12);
}

.ecosystem-shop::after {
  top: 50%;
  right: 7rem;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 0.5rem rgba(255, 90, 0, 0.05),
    0 0 28px rgba(255, 90, 0, 0.7);
}

.ecosystem-shop strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.enter-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 85, 0, 0.08), transparent 50%),
    rgba(12, 12, 12, 0.9);
  text-align: center;
  box-shadow: var(--shadow);
}

.archive-eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.archive-rating {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  margin-bottom: 1.25rem;
}

.archive-rating-stars {
  font-family: var(--fc);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--orange-2);
  text-shadow: 0 0 18px rgba(255, 85, 0, 0.2);
}

.archive-rating strong {
  font-family: var(--fo);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--orange);
  text-shadow:
    0 0 24px rgba(255, 85, 0, 0.3),
    0 0 48px rgba(255, 85, 0, 0.12);
}

.archive-rating-label {
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.archive-title {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.archive-title span {
  color: var(--orange);
  text-shadow: 0 0 28px rgba(255, 85, 0, 0.28);
}

.archive-sub {
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.btn-archive {
  padding: 1.15rem 3rem;
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
  font-family: var(--fo);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  transition:
    color 220ms ease,
    box-shadow 220ms ease;
}

.btn-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(102%);
  transition: transform 320ms ease;
}

.btn-archive:hover::before,
.btn-archive:focus-visible::before {
  transform: translateY(0);
}

.btn-archive:hover,
.btn-archive:focus-visible {
  color: var(--black);
  box-shadow:
    0 0 40px rgba(255, 85, 0, 0.25),
    0 0 80px rgba(255, 85, 0, 0.12);
}

.visual-lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: grid;
  place-items: center;
  padding: 5rem 1.2rem 1.2rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 90, 0, 0.18), transparent 38%),
    rgba(3, 3, 4, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.visual-lightbox[hidden] {
  display: none;
}

.visual-lightbox-frame {
  position: relative;
  width: min(100%, 980px);
  max-height: min(82vh, 900px);
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.visual-lightbox-frame img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.72);
  box-shadow:
    var(--shadow),
    0 0 70px rgba(255, 85, 0, 0.16);
}

.visual-lightbox-frame figcaption {
  justify-self: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 85, 0, 0.18);
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.72);
  font-family: var(--fc);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.visual-lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 85, 0, 0.26);
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.86);
  color: var(--orange);
  font-family: var(--fo);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-lightbox-close:hover,
.visual-lightbox-close:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 0 24px rgba(255, 85, 0, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.8rem 3rem 6.5rem;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-logo {
  font-family: var(--fo);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
}

.footer-copy,
.footer-links a {
  font-family: var(--fc);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.3rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.live-audio-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  z-index: 950;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(440px, calc(100% - 2rem));
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 85, 0, 0.08), transparent 58%),
    rgba(4, 4, 4, 0.96);
  box-shadow:
    var(--shadow),
    0 0 30px rgba(255, 85, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.live-audio-bar[hidden] {
  display: none;
}

.live-audio-copy,
.live-audio-actions {
  display: grid;
  gap: 0.25rem;
}

.live-audio-actions {
  justify-items: end;
}

.live-audio-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.live-audio-kicker,
.live-audio-meta,
.live-audio-time {
  font-family: var(--fc);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-audio-kicker {
  color: var(--orange-2);
}

.live-audio-title {
  font-family: var(--fo);
  font-size: 0.92rem;
  color: var(--text);
}

.live-audio-meta,
.live-audio-time {
  color: var(--muted);
}

.live-audio-button {
  min-width: 6rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 85, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.08);
  color: var(--text);
  font-family: var(--fo);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.live-audio-nav-button {
  min-width: 3.35rem;
  padding: 0.7rem 0.68rem;
  border: 1px solid rgba(255, 85, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.045);
  color: var(--muted);
  font-family: var(--fo);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.live-audio-button:hover,
.live-audio-button:focus-visible,
.live-audio-nav-button:hover,
.live-audio-nav-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 85, 0, 0.14);
}

.live-audio-nav-button:hover,
.live-audio-nav-button:focus-visible {
  color: var(--orange);
}

.live-audio-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
  background: rgba(255, 85, 0, 0.025);
}

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-ready .reveal.up {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 100ms;
}

.reveal-d2 {
  transition-delay: 200ms;
}

.reveal-d3 {
  transition-delay: 300ms;
}

.reveal-d4 {
  transition-delay: 400ms;
}

.reveal-d5 {
  transition-delay: 500ms;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preview-refresh {
  0% {
    opacity: 0.35;
    transform: scale(1.015);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.78;
  }
}

@keyframes portal-breathe {
  0%,
  100% {
    transform: translateY(var(--portal-y, 0)) scale(0.985);
    opacity: 0.64;
    filter: drop-shadow(0 0 28px rgba(255, 90, 0, 0.22));
  }

  50% {
    transform: translateY(var(--portal-y, 0)) scale(1.018);
    opacity: 0.9;
    filter: drop-shadow(0 0 46px rgba(255, 90, 0, 0.38));
  }
}

@media (pointer: fine) {
  .js-ready.has-fine-pointer body,
  .js-ready.has-fine-pointer a,
  .js-ready.has-fine-pointer button,
  .js-ready.has-fine-pointer summary {
    cursor: none;
  }

  .js-ready.has-fine-pointer .cursor-dot,
  .js-ready.has-fine-pointer .cursor-ring {
    display: block;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .lab-notes-shell,
  .archive-head,
  .album-detail-top,
  .album-detail-copy,
  .album-body.is-focus-mode .album-detail-top,
  .pipeline-flow {
    grid-template-columns: 1fr;
  }

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

  .story-grid,
  .protocol-grid,
  .lab-notes-grid,
  .archive-guide,
  .archive-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-network {
    min-height: 680px;
  }

  .signal-node {
    width: clamp(170px, 24vw, 210px);
  }

  .timeline-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 720px;
    min-height: 460px;
  }

  .hero-title {
    font-size: 4.7rem;
  }

  #hero::after {
    width: min(72vw, 700px);
    right: -8%;
    opacity: 0.54;
  }

  .archive-head {
    align-items: stretch;
  }

  .album-summary {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
  }

  .album-cover[data-format="portrait"] {
    width: min(100%, 132px);
  }

  .track-item {
    grid-template-columns: 1fr;
  }

  .album-focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  html.has-live-audio body,
  body:has(.live-audio-bar:not([hidden])) {
    padding-bottom: 8.25rem;
  }

  .site-nav {
    padding: 0.9rem 1.3rem;
  }

  .nav-tools {
    gap: 0.55rem;
  }

  .lang-switch {
    min-height: 2rem;
    font-size: 0.5rem;
  }

  .lang-option {
    min-width: 1.95rem;
    min-height: 1.55rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(3, 3, 3, 0.98);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 810;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .container {
    width: min(calc(100% - 1.4rem), var(--max));
  }

  #hero,
  #manifeste,
  #lab,
  #lab-notes,
  #timeline,
  #albums,
  #pipeline,
  #signal,
  #ecosystem,
  #enter-archive {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #lab-notes {
    display: none;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  #hero::after {
    width: min(92vw, 560px);
    right: -20%;
    opacity: 0.42;
  }

  .album-data-grid,
  .panel-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifeste-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-grid,
  .protocol-grid,
  .lab-notes-grid,
  .archive-guide,
  .archive-toolbar {
    grid-template-columns: 1fr;
  }

  .story-layer,
  .archive-guide {
    display: none;
  }

  .manifeste-index {
    display: none;
  }

  .lab-notes-head {
    position: relative;
    top: auto;
  }

  .album-summary {
    grid-template-columns: 1fr;
  }

  .album-audit-grid {
    grid-template-columns: 1fr;
  }

  .panel-core {
    grid-template-columns: 1fr;
  }

  .panel-ring {
    min-height: 240px;
  }

  .hero-portal-figure {
    right: 9%;
    opacity: 0.42;
  }

  .hero-orbit-map {
    opacity: 0.42;
  }

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

  .archive-filters {
    gap: 0.55rem;
  }

  .archive-filter {
    min-height: 2.75rem;
  }

  .archive-toolbar {
    gap: 0.9rem;
  }

  .signal-network {
    width: min(100%, 620px);
    min-height: auto;
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 0.6rem;
  }

  .signal-web {
    display: none;
  }

  .signal-node {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    aspect-ratio: auto;
    margin-inline: auto;
    transform: none;
  }

  .signal-bubble {
    min-height: 6.2rem;
    transform: none;
    border-radius: 22px;
  }

  .signal-bubble::before {
    inset: 1px;
    border-radius: 20px;
  }

  .signal-bubble::after {
    display: none;
  }

  .signal-node:hover .signal-bubble,
  .signal-node:focus-visible .signal-bubble {
    transform: scale(1.02);
  }

  .signal-node-copy {
    position: relative;
    inset: auto;
    min-height: 6.2rem;
    padding: 0.95rem 1rem;
  }

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

  .ecosystem-head,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 1.3rem;
    flex-direction: column;
    text-align: center;
  }

  .live-audio-bar {
    top: auto;
    right: max(0.7rem, env(safe-area-inset-right));
    bottom: max(0.7rem, env(safe-area-inset-bottom));
    left: max(0.7rem, env(safe-area-inset-left));
    width: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    padding: 0.68rem;
    border-radius: 18px;
  }

  .live-audio-copy {
    min-width: 0;
  }

  .live-audio-actions {
    justify-items: stretch;
    align-items: center;
  }

  .live-audio-button {
    min-width: 0;
    width: 100%;
    padding: 0.55rem 0.7rem;
    font-size: 0.56rem;
  }

  .live-audio-controls {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) minmax(0, 0.82fr);
    width: 100%;
    gap: 0.38rem;
  }

  .live-audio-nav-button {
    min-width: 0;
    width: 100%;
    padding: 0.55rem 0.48rem;
    font-size: 0.5rem;
  }

  .live-audio-kicker,
  .live-audio-meta,
  .live-audio-time {
    font-size: 0.48rem;
  }

  .live-audio-title {
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .live-audio-meta {
    display: none;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 4.8rem;
  }

  #hero {
    min-height: 88svh;
    align-items: flex-end;
  }

  .site-nav {
    padding: 0.72rem 0.75rem;
  }

  .nav-logo {
    max-width: 11.5rem;
    overflow: hidden;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .nav-logo-sub {
    display: none;
  }

  .lang-switch {
    letter-spacing: 0.08em;
  }

  .lang-option {
    min-width: 1.75rem;
    padding-inline: 0.28rem;
  }

  .album-summary {
    grid-template-columns: minmax(84px, 104px) minmax(0, 1fr);
    gap: 0.78rem;
    align-items: center;
    padding: 0.68rem;
    border-radius: 20px;
  }

  .album-cover {
    width: 100%;
    justify-self: center;
    border-radius: 15px;
  }

  .album-cover[data-format="portrait"] {
    width: 100%;
    justify-self: center;
    aspect-ratio: 1;
  }

  .album-cover[data-format="paysage"] {
    width: 100%;
    aspect-ratio: 1;
  }

  .album-cover img {
    padding: 0.34rem;
  }

  .album-seq {
    top: 0.45rem;
    left: 0.45rem;
    padding: 0.2rem 0.32rem;
    font-size: 0.48rem;
  }

  .album-summary-copy {
    align-items: flex-start;
    min-width: 0;
    justify-content: center;
    padding-left: 0;
    text-align: left;
  }

  .album-kicker {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.54rem;
    line-height: 1.42;
    letter-spacing: 0.11em;
  }

  .album-summary h3 {
    margin-block: 0.28rem 0.2rem;
    max-width: 100%;
    font-size: clamp(0.98rem, 5.8vw, 1.2rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .album-summary .album-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .album-meta {
    justify-content: flex-start;
    gap: 0.42rem;
    margin-top: 0.62rem;
  }

  .album-meta .album-badge:nth-child(n + 4) {
    display: none;
  }

  .album-toggle {
    margin-top: 0.75rem;
    font-size: 0.58rem;
  }

  .hero-title {
    font-size: 3.05rem;
  }

  .hero-title .line3 {
    max-width: 18ch;
    letter-spacing: 0.08em;
  }

  #hero::after {
    width: min(112vw, 460px);
    right: -38%;
    opacity: 0.34;
  }

  #heroCanvas {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .panel-ring {
    min-height: 220px;
  }

  .panel-ring span {
    font-size: 4.2rem;
  }

  .protocol-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 0.9rem;
    min-height: auto;
    padding: 1rem;
  }

  .protocol-card::before {
    grid-row: 1 / span 2;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 7px;
  }

  .protocol-card span,
  .protocol-card strong {
    min-width: 0;
  }

  .protocol-card p {
    grid-column: 1 / -1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .protocol-card p,
  .pipe-node p,
  .archive-sub {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-portal-figure,
  .hero-orbit-map {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .album-mode-bar,
  .album-focus-button,
  .album-preview-open {
    width: 100%;
  }

  .album-mode-bar {
    gap: 0.58rem;
  }

  .album-focus-button,
  .album-preview-open {
    padding: 0.76rem 0.85rem;
  }

  .album-preview-open {
    border-radius: 16px;
  }

  .hero-sub,
  .section-intro,
  .manifeste-text {
    font-size: 0.94rem;
  }

  .hero-actions,
  .album-data-grid,
  .panel-metrics {
    grid-template-columns: 1fr;
  }

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

  .btn-enter,
  .btn-ghost,
  .btn-archive {
    width: 100%;
  }

  .hero-ribbon {
    display: none;
  }

  .track-head {
    align-items: flex-start;
  }

  .track-item {
    padding: 0.78rem;
    gap: 0.75rem;
    border-radius: 18px;
  }

  .track-meta {
    display: none;
  }

  .audio-player {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .audio-button-group {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr) minmax(0, 0.8fr);
    width: 100%;
    gap: 0.45rem;
  }

  .audio-toggle-button,
  .audio-skip-button {
    width: 100%;
    height: 2.75rem;
    border-radius: 14px;
  }

  .js-ready #albums .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pipeline-flow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pipe-node {
    display: grid;
    grid-template-columns: auto minmax(6.8rem, 0.75fr) minmax(0, 1fr);
    min-height: auto;
    gap: 0.35rem 0.75rem;
    align-items: center;
    padding: 0.95rem;
  }

  .pipe-node-index {
    grid-row: 1 / span 2;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0;
    font-size: 0.58rem;
  }

  .pipe-logo {
    grid-row: 1 / span 2;
    min-height: 3rem;
    padding: 0.55rem 0.62rem;
    font-size: 0.68rem;
  }

  .pipe-node h3 {
    margin: 0;
    font-size: 0.74rem;
  }

  .pipe-node p {
    grid-column: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ecosystem-shell {
    padding: 1.05rem;
    border-radius: 22px;
  }

  .ecosystem-shell::before {
    inset: 0.58rem;
    border-radius: 18px;
  }

  .ecosystem-shell::after {
    display: none;
  }

  .ecosystem-card {
    min-height: auto;
    padding: 1rem;
    border-radius: 18px;
  }

  .ecosystem-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ecosystem-shop {
    min-height: auto;
    padding-right: 1rem;
  }

  .ecosystem-shop::before {
    right: -2.6rem;
    bottom: -3.6rem;
    width: 8rem;
    height: 8rem;
  }

  .ecosystem-shop::after {
    top: 1rem;
    right: 1rem;
    transform: none;
  }

  .album-body {
    gap: 0.92rem;
    margin-top: 0.62rem;
    padding: 0.68rem;
    border-radius: 20px;
  }

  .album-detail-copy .album-panel-section:first-child,
  .album-detail-copy .album-panel-section:nth-child(2),
  .album-data-grid,
  .album-panel-secondary,
  .album-audit-grid {
    display: none;
  }

  .album-detail-copy {
    gap: 0.8rem;
  }

  .album-hero-media {
    border-radius: 18px;
  }

  .album-hero-media img {
    max-width: calc(100% - 0.65rem);
    max-height: min(52svh, 480px);
    padding: 0.48rem;
  }

  .pack-strip,
  .pack-strip[data-format="portrait"],
  .pack-strip[data-format="paysage"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
  }

  .pack-card {
    border-radius: 14px;
  }

  .pack-card img {
    padding: 0.34rem;
  }

  .pack-card span {
    padding: 0.28rem 0.34rem;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

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

  .archive-guide-card,
  .focus-tile,
  .audit-tile {
    padding-inline: 0.9rem;
  }

  .signal-network {
    gap: 0.72rem;
  }

  .signal-node {
    width: 100%;
  }

  .signal-bubble,
  .signal-node-copy {
    min-height: 5.4rem;
  }

  .signal-node-copy p {
    display: none;
  }

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

  .contact-submit {
    width: 100%;
  }

  .enter-shell {
    padding: 1.25rem;
  }

  .footer-copy {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1rem), var(--max));
  }

  html.has-live-audio body,
  body:has(.live-audio-bar:not([hidden])) {
    padding-bottom: 7.7rem;
  }

  .hero-title {
    font-size: 2.58rem;
  }

  .section-title {
    font-size: clamp(1.9rem, 13vw, 2.7rem);
  }

  .hero-sub,
  .section-intro,
  .manifeste-text {
    font-size: 0.88rem;
    line-height: 1.66;
  }

  .panel-metrics {
    gap: 0.55rem;
  }

  .pipe-node {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pipe-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    min-width: min(100%, 8rem);
  }

  .pipe-node h3 {
    grid-column: 2;
  }

  .pipe-node p {
    grid-column: 1 / -1;
  }

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

  .archive-filter {
    justify-content: center;
    padding: 0.68rem 0.55rem;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .album-summary {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.62rem;
    padding: 0.56rem;
  }

  .album-summary .album-description,
  .album-meta .album-badge:nth-child(n + 3) {
    display: none;
  }

  .album-toggle {
    margin-top: 0.48rem;
  }

  .live-audio-bar {
    padding: 0.58rem;
  }

  .live-audio-kicker,
  .live-audio-time {
    font-size: 0.44rem;
  }

  .live-audio-button,
  .live-audio-nav-button {
    min-height: 2.45rem;
    padding-inline: 0.34rem;
  }
}

.save-data #heroCanvas,
.save-data .hero-orbit-map,
.save-data .hero-portal-figure {
  display: none;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 10rem 0 4rem;
}

.legal-hero {
  position: relative;
  max-width: 860px;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 90, 0, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(21, 22, 26, 0.96), rgba(11, 11, 13, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legal-hero::after {
  content: "555";
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: -0.8rem;
  color: rgba(255, 90, 0, 0.08);
  font-family: var(--fo);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--text);
  font-family: var(--fo);
  font-size: clamp(2.3rem, 6.4vw, 4.7rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.legal-hero p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

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

.legal-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(21, 22, 26, 0.94), rgba(11, 11, 13, 0.9)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-card span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-family: var(--fc);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-family: var(--fo);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.legal-card p + p {
  margin-top: 0.85rem;
}

.legal-card-status {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 90, 0, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(21, 22, 26, 0.94), rgba(11, 11, 13, 0.9));
}

@media (max-width: 780px) {
  .legal-main {
    width: min(100% - 1rem, var(--max));
    padding-top: 7rem;
  }

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

  .legal-card {
    min-height: auto;
  }
}

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

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

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

  .hero-portal-figure,
  .hero-orbit-map {
    display: none;
  }
}
