* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --void: #000000;
  --ink: #030305;
  --panel: #09090d;
  --panel-2: #111016;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-violet: rgba(185, 76, 255, 0.34);
  --text: #f7f7ff;
  --muted: #b8b6c4;
  --dim: #777383;
  --violet: #b94cff;
  --violet-hot: #d86cff;
  --violet-deep: #220043;
  --violet-black: #090010;
  --max: 1180px;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

::selection {
  background: rgba(185, 76, 255, 0.45);
  color: #fff;
}

html {
  background: var(--void);
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 72% 20%, rgba(185, 76, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(216, 108, 255, 0.1), transparent 24%),
    linear-gradient(145deg, #000000 0%, #050506 46%, #090010 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 76, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0%, black 34%, transparent 82%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 9% 23%, rgba(255, 255, 255, 0.7), transparent 2px),
    radial-gradient(1px 1px at 84% 18%, rgba(216, 108, 255, 0.72), transparent 2px),
    radial-gradient(1px 1px at 71% 81%, rgba(255, 255, 255, 0.38), transparent 2px),
    radial-gradient(1px 1px at 31% 70%, rgba(185, 76, 255, 0.42), transparent 2px),
    radial-gradient(1.4px 1.4px at 52% 14%, rgba(255, 255, 255, 0.42), transparent 2px),
    radial-gradient(1px 1px at 17% 88%, rgba(216, 108, 255, 0.5), transparent 2px);
  opacity: 0.62;
  z-index: 0;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Michroma", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.5), 0 0 34px rgba(185, 76, 255, 0.5);
  position: relative;
}

.mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 1px;
  left: 8px;
  border-radius: 50%;
  background: var(--void);
}

.brand-lockup:hover .mark,
.brand-lockup:focus-visible .mark {
  animation: mark-pulse 1.4s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 255, 255, 0.5), 0 0 34px rgba(185, 76, 255, 0.5); }
  50%      { box-shadow: 0 0 22px rgba(255, 255, 255, 0.85), 0 0 60px rgba(216, 108, 255, 0.85); }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a,
.site-footer span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 200ms ease, text-shadow 200ms ease;
}

.nav-links a {
  position: relative;
}

.nav-links a::before {
  content: "·";
  margin-right: 6px;
  color: var(--dim);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--violet-hot);
  text-shadow: 0 0 14px rgba(185, 76, 255, 0.55);
  outline: none;
}

main {
  position: relative;
  z-index: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(118px, 13vh, 156px) max(20px, calc((100vw - var(--max)) / 2)) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: end;
  padding-bottom: clamp(58px, 8vh, 96px);
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 36%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.4) 86%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 30%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 9% max(20px, calc((100vw - var(--max)) / 2)) 19%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-color: rgba(216, 108, 255, 0.34);
  border-right-color: rgba(216, 108, 255, 0.12);
  clip-path: polygon(0 0, 78% 0, 100% 18%, 100% 100%, 22% 100%, 0 82%);
  opacity: 0.7;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: contrast(1.08) brightness(0.78) saturate(1.05);
  transform: scale(1.02);
  animation: hero-breathe 18s ease-in-out infinite;
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1.02); filter: contrast(1.08) brightness(0.78) saturate(1.05); }
  50%      { transform: scale(1.05); filter: contrast(1.12) brightness(0.82) saturate(1.08); }
}

.hero-meta {
  position: absolute;
  top: clamp(96px, 11vh, 130px);
  left: max(20px, calc((100vw - var(--max)) / 2));
  right: max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: rgba(247, 247, 255, 0.5);
  text-transform: uppercase;
  z-index: 3;
}

.hero-meta::before,
.hero-meta::after {
  content: "—";
  color: rgba(216, 108, 255, 0.5);
  flex: 0 0 auto;
}

.hero-meta [data-live-coord] {
  transition: opacity 260ms ease;
}

.hero-meta [data-live-clock] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.18em;
}

.signal-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(216, 108, 255, 0.4);
  border-radius: 999px;
  background: rgba(185, 76, 255, 0.08);
  color: var(--violet-hot) !important;
  text-shadow: 0 0 12px rgba(185, 76, 255, 0.5);
  font-size: 0.6rem !important;
  letter-spacing: 0.22em !important;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-hot);
  box-shadow: 0 0 10px rgba(216, 108, 255, 0.9), 0 0 22px rgba(185, 76, 255, 0.6);
  animation: signal-blink 1.6s ease-in-out infinite;
}

@keyframes signal-blink {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%      { opacity: 0.45; transform: scale(0.78); }
}

/* ===== STARFIELD ===== */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.starfield-layer {
  position: absolute;
  inset: -10% -10%;
  background-repeat: repeat;
  will-change: transform;
}

.starfield-l1 {
  background-image:
    radial-gradient(0.6px 0.6px at 12% 18%, rgba(255,255,255,0.55), transparent 2px),
    radial-gradient(0.6px 0.6px at 78% 62%, rgba(255,255,255,0.5), transparent 2px),
    radial-gradient(0.6px 0.6px at 33% 84%, rgba(255,255,255,0.45), transparent 2px),
    radial-gradient(0.6px 0.6px at 92% 22%, rgba(255,255,255,0.55), transparent 2px),
    radial-gradient(0.6px 0.6px at 5% 70%, rgba(255,255,255,0.45), transparent 2px);
  background-size: 100% 100%;
  opacity: 0.55;
}

.starfield-l2 {
  background-image:
    radial-gradient(0.9px 0.9px at 20% 30%, rgba(216,108,255,0.55), transparent 2.4px),
    radial-gradient(0.9px 0.9px at 64% 12%, rgba(255,255,255,0.7), transparent 2.4px),
    radial-gradient(0.9px 0.9px at 47% 78%, rgba(216,108,255,0.5), transparent 2.4px),
    radial-gradient(0.9px 0.9px at 88% 50%, rgba(255,255,255,0.55), transparent 2.4px);
  background-size: 100% 100%;
  opacity: 0.6;
  animation: star-twinkle-2 11s ease-in-out infinite;
}

.starfield-l3 {
  background-image:
    radial-gradient(1.2px 1.2px at 38% 22%, rgba(255,255,255,0.85), transparent 3px),
    radial-gradient(1.2px 1.2px at 72% 80%, rgba(216,108,255,0.85), transparent 3px),
    radial-gradient(1.2px 1.2px at 16% 56%, rgba(255,255,255,0.75), transparent 3px);
  background-size: 100% 100%;
  opacity: 0.7;
  animation: star-twinkle-3 7s ease-in-out infinite;
}

@keyframes star-twinkle-2 {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.78; }
}

@keyframes star-twinkle-3 {
  0%, 100% { opacity: 0.6; }
  35%      { opacity: 0.32; }
  70%      { opacity: 0.85; }
}

.brand-orbit-2 {
  width: min(46vw, 480px) !important;
  border-top-color: rgba(216, 108, 255, 0.18) !important;
  border-bottom-color: rgba(216, 108, 255, 0.36) !important;
  transform: rotate(34deg) scaleY(0.36);
  animation: orbit-drift-2 84s linear infinite;
  opacity: 0.7;
}

@keyframes orbit-drift-2 {
  from { transform: rotate(34deg) scaleY(0.36); }
  to   { transform: rotate(394deg) scaleY(0.36); }
}

.eyebrow-rule {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--violet-hot);
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(185, 76, 255, 0.7);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
  grid-column: 1;
}

.hero-lockup {
  width: min(100%, 580px);
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
}

.hero-lockup::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 500px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(216, 108, 255, 0.72), transparent);
  box-shadow: 0 0 20px rgba(185, 76, 255, 0.42);
}

.eyebrow {
  color: var(--violet-hot);
  text-shadow: 0 0 18px rgba(185, 76, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.eyebrow strong {
  color: #fff;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Michroma", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  color: #fff;
}

h1 {
  font-size: clamp(4.4rem, 9.4vw, 9.2rem);
  line-height: 0.86;
  margin-bottom: 28px;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.22), 0 0 62px rgba(185, 76, 255, 0.24);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  max-width: 760px;
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

p strong {
  color: #fff;
  font-weight: 600;
}

.hero-line {
  max-width: 560px;
  color: #eeeeff;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: lowercase;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
  position: relative;
}

.button.primary {
  background: var(--text);
  color: var(--void);
  border-color: var(--text);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.14), 0 0 42px rgba(185, 76, 255, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-violet);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(185, 76, 255, 0.34), 0 0 60px rgba(185, 76, 255, 0.18);
  outline: none;
}

.button.secondary:hover {
  background: rgba(185, 76, 255, 0.08);
  border-color: rgba(216, 108, 255, 0.6);
}

.hero-art {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: clamp(430px, 50vw, 610px);
  padding: 0;
  isolation: isolate;
  overflow: visible;
  z-index: 2;
  opacity: 0.86;
  grid-column: 2;
  grid-row: 1;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(64vw, 710px);
  height: min(64vw, 710px);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(185, 76, 255, 0.18) 22%, rgba(185, 76, 255, 0.06) 42%, transparent 68%);
  filter: blur(20px);
  opacity: 0.86;
  z-index: -2;
}

.hero-art::after {
  content: "";
  position: absolute;
  width: min(66vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), rgba(216, 108, 255, 0.92), transparent);
  box-shadow: 0 0 26px rgba(185, 76, 255, 0.66);
  opacity: 0.72;
  transform: translateY(72px);
  z-index: -1;
}

.brand-orbit,
.hero-emblem,
.signal-rail {
  position: absolute;
  pointer-events: none;
}

.brand-orbit {
  width: min(58vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(216, 108, 255, 0.48);
  border-bottom-color: rgba(185, 76, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.48);
  box-shadow: inset 0 0 40px rgba(185, 76, 255, 0.08), 0 0 54px rgba(185, 76, 255, 0.12);
  z-index: -1;
  animation: orbit-drift 60s linear infinite;
}

@keyframes orbit-drift {
  from { transform: rotate(-18deg) scaleY(0.48); }
  to   { transform: rotate(342deg) scaleY(0.48); }
}

.hero-emblem {
  width: min(28vw, 270px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, transparent 0 32%, rgba(255, 255, 255, 0.78) 33%, rgba(255, 255, 255, 0.18) 35%, transparent 37%),
    radial-gradient(circle at center, rgba(216, 108, 255, 0.18), transparent 60%);
  filter: blur(0.2px);
  opacity: 0.48;
  transform: translateY(-42px);
  z-index: -1;
  animation: emblem-pulse 6s ease-in-out infinite;
}

@keyframes emblem-pulse {
  0%, 100% { opacity: 0.42; transform: translateY(-42px) scale(1); }
  50%      { opacity: 0.56; transform: translateY(-42px) scale(1.03); }
}

.signal-rail {
  width: min(48vw, 520px);
  height: 132px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(185, 76, 255, 0.2);
  transform: skewY(-8deg) translateY(28px);
  opacity: 0.68;
  z-index: -2;
}

.hero-logo {
  display: block;
  width: min(55vw, 820px);
  height: auto;
  max-height: 260px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.24))
    drop-shadow(0 0 34px rgba(185, 76, 255, 0.52))
    drop-shadow(0 0 92px rgba(185, 76, 255, 0.22));
  position: relative;
  z-index: 1;
}

.hero-logo-inline {
  width: min(100%, 560px);
  max-height: 118px;
  object-position: left center;
}

.hero-seal {
  width: min(100%, 520px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 247, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: lowercase;
}

.hero-seal::before,
.hero-seal::after {
  content: "";
  height: 1px;
  flex: 1 1 44px;
  background: linear-gradient(90deg, transparent, rgba(216, 108, 255, 0.68), rgba(255, 255, 255, 0.62));
  box-shadow: 0 0 18px rgba(185, 76, 255, 0.42);
}

.hero-seal::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(216, 108, 255, 0.68), transparent);
}

/* ===== MARQUEE ===== */
.hero-marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-left: calc(-1 * max(20px, (100vw - var(--max)) / 2));
  margin-right: calc(-1 * max(20px, (100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  gap: 56px;
  padding: 14px 0;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: rgba(247, 247, 255, 0.62);
  text-transform: lowercase;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.marquee-track span {
  flex: 0 0 auto;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* code-review fix — slow marquee 38s -> 50s for contemplative pace */
.marquee-track { animation-duration: 50s !important; }

/* code-review fix — strengthen button hover violet glow */
.button:hover,
.button:focus-visible {
  box-shadow: 0 0 42px rgba(185, 76, 255, 0.6), 0 0 90px rgba(185, 76, 255, 0.22) !important;
}

/* code-review fix — harmonize eyebrow rule glow */
.eyebrow-rule { box-shadow: 0 0 10px rgba(185, 76, 255, 0.7) !important; }

/* experiment — dynamic phase-of-day overlay tint, keyed to body[data-phase] (UTC hour bucket) */
:root {
  --phase-tint: rgba(185, 76, 255, 0);
  --phase-warmth: 1;
}
body[data-phase="α"], body[data-phase="θ"] { --phase-tint: rgba(140, 60, 220, 0.10); --phase-warmth: 0.94; } /* deep night */
body[data-phase="β"], body[data-phase="η"] { --phase-tint: rgba(160, 70, 235, 0.08); --phase-warmth: 0.97; } /* pre-dawn / dusk-edge */
body[data-phase="γ"], body[data-phase="δ"] { --phase-tint: rgba(216, 108, 255, 0.06); --phase-warmth: 1.02; } /* midday signal-strong */
body[data-phase="ε"], body[data-phase="ζ"] { --phase-tint: rgba(185, 76, 255, 0.09); --phase-warmth: 0.98; } /* afternoon → twilight */

body::before { background-color: var(--phase-tint); transition: background-color 1.6s ease; }
.hero-media img { filter: contrast(1.08) brightness(calc(0.78 * var(--phase-warmth))) saturate(1.05) !important; transition: filter 1.6s ease; }
.fb-media img { filter: contrast(1.06) brightness(calc(0.85 * var(--phase-warmth))) saturate(1.05) !important; transition: filter 1.6s ease; }

/* ===== SECTIONS ===== */
.split-section,
.feature-grid,
.band,
.channels,
.cta,
.ticker-strip,
.page-shell {
  padding: clamp(56px, 9vh, 96px) min(5vw, 64px);
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

/* ===== SCROLL REVEAL (CSS visible by default; JS opts in) ===== */
.reveal { opacity: 1; transform: none; }
.has-js .reveal.reveal-armed {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.has-js .reveal.reveal-armed.reveal-in {
  opacity: 1;
  transform: none;
}

/* ===== TICKER STRIP ===== */
.ticker-strip {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(185, 76, 255, 0.08), transparent 50%),
    rgba(9, 9, 13, 0.5);
}

.ticker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--muted);
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet-hot);
  text-shadow: 0 0 12px rgba(185, 76, 255, 0.4);
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-hot);
  box-shadow: 0 0 10px rgba(216, 108, 255, 0.8);
  animation: signal-blink 1.6s ease-in-out infinite;
}

.ticker-sub {
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.ticker-list {
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
}

.ticker-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: background 200ms ease;
}

.ticker-list li:last-child { border-bottom: none; }
.ticker-list li:hover { background: rgba(185, 76, 255, 0.05); }

.t-code {
  color: var(--violet-hot);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(185, 76, 255, 0.4);
}

.t-title {
  color: #f0eff8;
  letter-spacing: 0.06em;
}

.t-time {
  color: var(--dim);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

/* ===== LORE SPLIT (with art) ===== */
.split-section--art {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.lore-art {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(9, 9, 13, 0.6);
  isolation: isolate;
}

.lore-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) brightness(0.92) saturate(1.06);
}

.lore-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(circle at 18% 18%, rgba(185, 76, 255, 0.16), transparent 50%);
  pointer-events: none;
}

.lore-art-mark {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--violet-hot);
  text-shadow: 0 0 14px rgba(185, 76, 255, 0.7);
  padding: 6px 12px;
  border: 1px solid rgba(216, 108, 255, 0.42);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  text-transform: uppercase;
}

.lore-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

/* ===== VOID ARCHITECTURE ===== */
.void-arch {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(56px, 9vh, 96px) min(5vw, 64px);
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(185, 76, 255, 0.1), transparent 55%),
    rgba(5, 5, 6, 0.6);
}

.va-media {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}

.va-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.95);
}

.va-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(0deg, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.va-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.va-copy h2 {
  letter-spacing: -0.005em;
}

.va-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.va-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-left: 1px solid rgba(216, 108, 255, 0.28);
  border-radius: 2px;
  background: rgba(9, 9, 13, 0.52);
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: #d8d6e2;
  text-transform: lowercase;
  transition: border-color 220ms ease, background 220ms ease;
}

.va-list li:hover {
  border-left-color: var(--violet-hot);
  background: rgba(185, 76, 255, 0.06);
}

.va-tag {
  color: var(--violet-hot);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-shadow: 0 0 8px rgba(185, 76, 255, 0.4);
}

/* ===== FULL-BLEED BANDS ===== */
.full-bleed {
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.fb-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) brightness(0.85) saturate(1.05);
  animation: fb-breathe 22s ease-in-out infinite;
}

@keyframes fb-breathe {
  0%, 100% { transform: scale(1.02); }
  50%      { transform: scale(1.06); }
}

.fb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.32) 64%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
}

.fb-overlay--bottom {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.74) 78%, rgba(0, 0, 0, 0.94) 100%);
}

.fb-content {
  position: relative;
  z-index: 2;
  padding: 56px max(20px, calc((100vw - var(--max)) / 2));
  width: 100%;
  display: grid;
  gap: 18px;
}

.fb-content--center {
  text-align: center;
  justify-items: center;
}

.fb-content--center .va-list {
  margin: 22px auto 0;
}

.fb-content--bottom {
  align-self: flex-end;
  padding-bottom: 64px;
}

.fb-content h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  max-width: 920px;
  margin: 0 auto;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.8), 0 0 60px rgba(185, 76, 255, 0.18);
}

.fb-line {
  max-width: 780px;
  margin: 0 auto;
  color: #eeeef8;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}

.va-list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.va-list--inline li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(216, 108, 255, 0.4);
  border-left-width: 1px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: #f0eff8;
}

.va-list--inline li:hover {
  background: rgba(185, 76, 255, 0.14);
}

/* ===== TRX FEATURE (motion teaser) ===== */
.trx-feature {
  padding: clamp(56px, 9vh, 96px) min(5vw, 64px);
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 50%, rgba(185, 76, 255, 0.08), transparent 55%),
    rgba(5, 5, 6, 0.6);
}

.trx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.trx-meta {
  display: grid;
  gap: 14px;
}

.trx-video {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(9, 9, 13, 0.6);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(216, 108, 255, 0.16);
  aspect-ratio: 9 / 16;
  max-height: 720px;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
}

.trx-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trx-video figcaption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  font-family: var(--mono);
  text-transform: lowercase;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  padding: 22px 6px 0;
  pointer-events: none;
}

.trx-video .gc {
  color: var(--violet-hot);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-shadow: 0 0 10px rgba(185, 76, 255, 0.6);
  text-transform: uppercase;
}

.trx-video .gt {
  color: #f0eff8;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .trx-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SIGNAL DIVIDER ===== */
.signal-divider {
  position: relative;
  height: clamp(140px, 22vh, 220px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.sd-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
  animation: sd-drift 28s ease-in-out infinite;
}

@keyframes sd-drift {
  0%, 100% { transform: scale(1.04) translateX(0); }
  50%      { transform: scale(1.06) translateX(-2%); }
}

.sd-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.42) 28%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.sd-meta {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: #f0eff8;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
}

.sd-meta span:nth-child(2n) {
  color: var(--violet-hot);
  text-shadow: 0 0 12px rgba(185, 76, 255, 0.6);
}

/* ===== VIS GALLERY ===== */
.vis-gallery {
  padding: clamp(56px, 9vh, 96px) min(5vw, 64px);
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
}

.gallery-head {
  margin-bottom: 32px;
  max-width: 640px;
}

.gallery-sub {
  margin-top: 14px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(9, 9, 13, 0.6);
  isolation: isolate;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), border-color 320ms ease, box-shadow 320ms ease;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) brightness(0.92) saturate(1.04);
  transition: transform 720ms cubic-bezier(.2,.7,.2,1), filter 320ms ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.gallery-tile figcaption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  font-family: var(--mono);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.gallery-tile .gc {
  color: var(--violet-hot);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-shadow: 0 0 10px rgba(185, 76, 255, 0.5);
  text-transform: uppercase;
}

.gallery-tile .gt {
  color: #f0eff8;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.gallery-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 108, 255, 0.42);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(216, 108, 255, 0.16);
}

.gallery-tile:hover img {
  transform: scale(1.05);
  filter: contrast(1.1) brightness(0.96) saturate(1.1);
}

.gallery-tile--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile--wide {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .split-section--art {
    grid-template-columns: 1fr;
  }
  .void-arch {
    grid-template-columns: 1fr;
  }
  .va-media {
    min-height: 360px;
    order: 2;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }
  .gallery-tile--lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-tile--wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-tile--lg,
  .gallery-tile--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-tile--lg {
    grid-row: span 2;
  }
  .lore-art {
    min-height: 300px;
  }
  .va-media {
    min-height: 340px;
  }
}

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

.split-section > *,
.feature-grid > *,
.legal-block section,
.contact-panel > section {
  min-width: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.split-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 520px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 108, 255, 0.4), transparent);
}

.aside {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--violet-hot);
  text-shadow: 0 0 14px rgba(185, 76, 255, 0.4);
}

.copy-stack {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 13, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  position: relative;
  overflow: hidden;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-top: 1px solid rgba(216, 108, 255, 0.4);
  border-right: 1px solid rgba(216, 108, 255, 0.4);
  opacity: 0.6;
}

.feature-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 108, 255, 0.36);
  box-shadow: 0 0 0 1px rgba(216, 108, 255, 0.18), 0 16px 48px rgba(0, 0, 0, 0.6);
}

.feature-grid .code,
.feature-grid span.code {
  display: inline-block;
  color: var(--violet-hot);
  text-shadow: 0 0 14px rgba(185, 76, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(216, 108, 255, 0.34);
  border-radius: 2px;
  background: rgba(185, 76, 255, 0.06);
}

/* ===== BAND ===== */
.band {
  border-bottom: 1px solid var(--line);
}

.band > * {
  max-width: 780px;
}

.band p {
  margin-top: 20px;
}

.phase-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 32px;
  max-width: 620px;
}

.phase-list li {
  display: grid;
  grid-template-columns: 56px 130px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(9, 9, 13, 0.55);
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.phase-bar {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.phase-bar-fill {
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, rgba(216, 108, 255, 0.9), rgba(255, 255, 255, 0.85));
  box-shadow: 0 0 12px rgba(185, 76, 255, 0.7);
  transition: width 1.6s cubic-bezier(.2,.7,.2,1);
}

.phase-list .phase-tag {
  color: var(--violet-hot);
  font-weight: 600;
}

.phase-list .phase-name {
  color: #fff;
  letter-spacing: 0.18em;
}

.phase-list .phase-state {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.phase-list li:first-child {
  border-color: rgba(216, 108, 255, 0.42);
  background: linear-gradient(90deg, rgba(185, 76, 255, 0.1), rgba(9, 9, 13, 0.55));
}

.phase-list li:first-child .phase-state {
  color: var(--violet-hot);
  text-shadow: 0 0 14px rgba(185, 76, 255, 0.5);
}

/* ===== CHANNELS ===== */
.channels {
  border-bottom: 1px solid var(--line);
}

.channels-head {
  margin-bottom: 32px;
  max-width: 640px;
}

.channels-sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: 540px;
}

.channels-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(9, 9, 13, 0.55);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: lowercase;
}

.ch-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dim);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.channel-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.channel-list li {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.channel-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  color: #fff;
  text-decoration: none;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}

.channel-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(185, 76, 255, 0.08) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease, transform 600ms ease;
  transform: translateX(-30%);
}

.ch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.ch-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.channel-list .ch-name {
  font-size: 0.92rem;
  font-weight: 500;
}

.channel-list .ch-handle {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.ch-arrow {
  font-family: var(--mono);
  color: var(--dim);
  transition: color 220ms ease, transform 220ms ease;
}

.channel-list a:hover,
.channel-list a:focus-visible {
  background: rgba(185, 76, 255, 0.06);
  color: var(--violet-hot);
  outline: none;
}

.channel-list a:hover::before,
.channel-list a:focus-visible::before {
  opacity: 1;
  transform: translateX(30%);
}

.channel-list a:hover .ch-icon,
.channel-list a:focus-visible .ch-icon {
  border-color: rgba(216, 108, 255, 0.55);
  color: var(--violet-hot);
  box-shadow: 0 0 18px rgba(185, 76, 255, 0.3);
  transform: rotate(-4deg);
}

.channel-list a:hover .ch-handle { color: #fff; }
.channel-list a:hover .ch-arrow {
  color: var(--violet-hot);
  transform: translate(2px, -2px);
}

.channel-list.compact {
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
}

.channel-list.compact li {
  border-right: none;
}

/* ===== CTA ===== */
.cta {
  border-bottom: 1px solid var(--line);
  text-align: left;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(185, 76, 255, 0.14), transparent 60%),
    rgba(9, 9, 13, 0.5);
}

.cta > * {
  max-width: 720px;
}

.cta p {
  margin-top: 18px;
}

/* ===== FOOTER ===== */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
  background: var(--void);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-mark {
  font-family: "Michroma", Arial, sans-serif !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.24em !important;
  color: #fff !important;
}

.footer-meta {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.footer-meta span {
  font-family: var(--mono);
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  color: var(--dim) !important;
  text-transform: lowercase !important;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--violet-hot);
  outline: none;
}

/* ===== LEGAL / PAGE-SHELL ===== */
.page-shell {
  max-width: calc(940px + 2 * max(20px, calc((100vw - var(--max)) / 2)));
  padding-top: clamp(140px, 18vh, 200px);
}

.page-shell h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 22px;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 42px;
  color: #d8d6e2;
}

.legal-block,
.contact-panel {
  display: grid;
  gap: 22px;
}

.legal-block section,
.contact-panel > section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 13, 0.7);
  position: relative;
}

.legal-block section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 28px;
  height: 1px;
  background: rgba(216, 108, 255, 0.6);
  box-shadow: 0 0 10px rgba(185, 76, 255, 0.4);
}

.legal-block h2,
.contact-panel h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.legal-block code {
  font-family: var(--mono);
  font-size: 0.92em;
  padding: 2px 6px;
  background: rgba(185, 76, 255, 0.1);
  border: 1px solid rgba(216, 108, 255, 0.24);
  border-radius: 2px;
  color: #fff;
}

.contact-panel a {
  color: var(--violet-hot);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 108, 255, 0.34);
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-panel a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact-panel .muted {
  color: var(--dim);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    grid-column: 1;
    grid-row: 2;
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px;
  }

  .hero,
  .split-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 152px;
    width: 100%;
    max-width: 100vw;
  }

  .hero::after {
    inset: 138px 20px 18%;
  }

  .hero-meta {
    top: 130px;
    font-size: 0.6rem;
  }

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

  .hero-logo {
    width: min(100%, 560px);
    max-height: 210px;
  }

  .hero-logo-inline {
    width: min(100%, 520px);
    max-height: 112px;
  }

  .hero-emblem {
    width: min(58vw, 250px);
  }

  h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .split-section,
  .feature-grid,
  .band,
  .channels,
  .cta,
  .page-shell,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-lockup {
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 12px;
  }

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

  .nav-links a::before {
    display: none;
  }

  h1,
  .page-shell h1 {
    font-size: 2.6rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-line {
    font-size: 1.08rem;
    max-width: calc(100vw - 40px);
  }

  .hero-copy,
  .hero-art {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    max-width: calc(100vw - 40px);
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    width: min(110%, 430px);
    max-width: none;
    margin-left: 0;
  }

  .hero-logo-inline {
    width: min(100%, 390px);
    max-height: 96px;
  }

  .hero-seal {
    width: 100%;
    gap: 10px;
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }

  .hero-art::after {
    width: 100%;
  }

  .phase-list li {
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
    font-size: 0.78rem;
  }

  .channel-list a {
    padding: 18px 18px;
  }

  .footer-row {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .ticker-list li {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 14px;
    padding: 12px 14px;
    font-size: 0.78rem;
  }
  .ticker-list .t-time {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.68rem;
  }
  .channels-note {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  .phase-list li {
    grid-template-columns: 36px 86px 1fr auto;
    gap: 10px;
  }
  .signal-pill {
    font-size: 0.55rem !important;
    letter-spacing: 0.18em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-orbit,
  .brand-orbit-2,
  .hero-emblem,
  .marquee-track,
  .starfield-l2,
  .starfield-l3,
  .signal-dot,
  .ticker-dot {
    animation: none !important;
  }
  .has-js .reveal.reveal-armed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
