/* Black Craft — Dimension Disrupt
   Quirky toon dark-fantasy. Purple void + toxic green + arcane violet */

:root {
  --bg: #120821;
  --bg-2: #190d2c;
  --bg-3: #221038;
  --ink: #efe9f5;
  --ink-2: #c8bcd8;
  --muted: #8a7ca0;
  --green: #6ef07e;
  --green-deep: #2faa45;
  --violet: #a96bff;
  --violet-deep: #6a35c4;
  --magenta: #ff5cc8;
  --rule: rgba(239, 233, 245, 0.10);
  --paper-noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.91  0 0 0 0 0.96  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--paper-noise);
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.display { font-family: 'Lilita One', 'Nunito', sans-serif; font-weight: 400; letter-spacing: 0.01em; }
.mono { font-family: 'Space Mono', 'Courier New', monospace; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(18,8,33,0.9), transparent);
  backdrop-filter: blur(4px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lilita One', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-brand .mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--bg);
  box-shadow: 0 0 18px rgba(110, 240, 126, 0.4);
  transition: transform 0.4s;
}
.nav-brand:hover .mark {
  transform: rotate(20deg) scale(1.05);
}
.nav-brand .mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* nav right cluster: links + language picker */
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* ============ LANGUAGE PICKER (dropdown) ============ */
.lang-picker {
  position: relative;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 12px 7px 10px;
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lang-current:hover,
.lang-picker.open .lang-current {
  color: var(--ink);
  border-color: rgba(110, 240, 126, 0.5);
  background: rgba(110, 240, 126, 0.06);
}
.lang-current .chev {
  transition: transform 0.25s;
  color: var(--muted);
}
.lang-picker.open .lang-current .chev { transform: rotate(180deg); }

.lang-picker .flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 168px;
  background: #0a0418;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(169, 107, 255, 0.18);
  z-index: 200;
  animation: lang-pop 0.16s ease-out;
}
@keyframes lang-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 0.18s, color 0.18s;
}
.lang-item:hover { background: rgba(255, 255, 255, 0.05); color: var(--ink); }
.lang-item.active {
  color: var(--green);
  background: rgba(110, 240, 126, 0.08);
}
.lang-item.active::after {
  content: "✓";
  margin-left: auto;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--green);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 36px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 38% at 30% 36%, rgba(169, 107, 255, 0.22), transparent 70%),
    radial-gradient(ellipse 52% 36% at 70% 50%, rgba(110, 240, 126, 0.16), transparent 70%),
    radial-gradient(ellipse 72% 38% at 50% 44%, rgba(106, 53, 196, 0.25), transparent 72%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
}
.hero-logo {
  position: relative;
  display: inline-block;
  max-width: min(980px, 92vw);
  width: 100%;
  margin: 0 auto 12px;
  filter: drop-shadow(0 10px 0 rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(169, 107, 255, 0.35));
  animation: logo-bob 6s ease-in-out infinite;
  transition: transform 0.3s;
}
.hero-logo:hover {
  animation-play-state: paused;
  transform: scale(1.02) rotate(-1deg);
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes logo-bob {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50%      { transform: translateY(-12px) rotate(0.4deg); }
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.9;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 30px rgba(169, 107, 255, 0.35),
    4px 4px 0 var(--violet-deep);
}
.hero h1 .accent-word {
  display: inline-block;
  color: var(--green);
  text-shadow:
    0 0 30px rgba(110, 240, 126, 0.5),
    4px 4px 0 var(--green-deep);
}

.hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-2);
  max-width: 620px;
  margin: 32px auto 36px;
  line-height: 1.5;
}
.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(0,0,0,0.3);
}
.tag.green { border-color: rgba(110, 240, 126, 0.4); color: var(--green); }
.tag.violet { border-color: rgba(169, 107, 255, 0.4); color: var(--violet); }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Lilita One', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  position: relative;
  border-radius: 999px;
}
.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 4px 0 var(--green-deep), 0 0 24px rgba(110, 240, 126, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 var(--green-deep), 0 0 32px rgba(110, 240, 126, 0.5);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--green-deep);
}
.btn-ghost {
  border: 1.5px solid var(--rule);
  color: var(--ink);
  background: rgba(0,0,0,0.2);
}
.btn-ghost:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: rgba(169, 107, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-cue .pulse {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--green));
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.9; transform: scaleY(1); }
}

/* ============ MAGIC PARTICLES ============ */
.particles-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: drift linear infinite;
  opacity: 0;
}
.particle.green {
  background: var(--green);
  box-shadow: 0 0 12px var(--green), 0 0 24px rgba(110, 240, 126, 0.5);
}
.particle.violet {
  background: var(--violet);
  box-shadow: 0 0 12px var(--violet), 0 0 24px rgba(169, 107, 255, 0.5);
}
.particle.tiny { width: 3px; height: 3px; }
.particle.large { width: 10px; height: 10px; filter: blur(1.5px); }

@keyframes drift {
  0%   { transform: translate(0, 100vh) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(20px, 50vh) scale(1); }
  90%  { opacity: 0.8; }
  100% { transform: translate(-30px, -20vh) scale(0.8); opacity: 0; }
}

/* Bubbling potion sparkles — concentrated in pockets */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: bubble 3s ease-in infinite;
  opacity: 0;
}
.spark.v {
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}
@keyframes bubble {
  0%   { transform: translateY(0) scale(0.5); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

/* ============ EYES (in shadow) — each animates on its own schedule ============ */
.eye {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transform-origin: center;
  aspect-ratio: 1 / 1;
}
/* Static fallback (eye 2 / eye 3 until frames land) — CSS-driven fake blink */
.eye .eye-png {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform-origin: center;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.85));
  animation:
    eye-fade var(--fade-dur, 14s) var(--fade-delay, 0s) infinite ease-in-out,
    eye-blink var(--blink-dur, 5.5s) var(--blink-delay, 0s) infinite ease-in-out;
}
/* Sprite version — stacked frames, JS-driven opacity & frame swap */
.eye .eye-sprite {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.85));
}
.eye .eye-sprite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  visibility: hidden;
}
.eye .eye-sprite img.on { visibility: visible; }
@keyframes eye-blink {
  0%, 88%, 94%, 100% { transform: scaleY(1); }
  91%                { transform: scaleY(0.05); }
}

/* ============ SECTIONS ============ */
section {
  position: relative;
  padding: 140px 36px;
  z-index: 3;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label.violet { color: var(--violet); }
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.section-title {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--ink);
}
.section-title .pop-g { color: var(--green); }
.section-title .pop-v { color: var(--violet); }
.section-lede {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-2);
  max-width: 640px;
  line-height: 1.5;
  margin: 0 0 60px;
}

/* ============ GAME SECTION ============ */
.game-section {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 100%);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}
.pillar {
  padding: 36px 28px;
  position: relative;
  background: rgba(0,0,0,0.25);
  border: 1.5px solid var(--rule);
  border-radius: 24px;
  transition: all 0.3s;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 60%, currentColor 90%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 24px;
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: 0 0 30px currentColor;
}
.pillar.p-green { color: var(--green); }
.pillar.p-violet { color: var(--violet); }
.pillar.p-magenta { color: var(--magenta); }

.pillar-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: currentColor;
  margin-bottom: 24px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: currentColor;
  filter: drop-shadow(0 0 8px currentColor);
}
.pillar h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 28px;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.pillar p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.features {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 100px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.feature-list li:first-child { border-top: 1px solid var(--rule); }
.feature-list .num {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
  letter-spacing: 0.1em;
}
.feature-list .copy h4 {
  font-family: 'Lilita One', sans-serif;
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.feature-list .copy p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* Placeholder image */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(169,107,255,0.06) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.placeholder::before, .placeholder::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--green);
  opacity: 0.6;
  border-radius: 4px;
}
.placeholder::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.placeholder::after { bottom: 10px; right: 10px; border-left: none; border-top: none; border-color: var(--violet); }

.keyart-placeholder {
  aspect-ratio: 4/5;
  width: 100%;
}

/* ============ STUDIO SECTION ============ */
.studio-section {
  background: var(--bg-2);
}
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  margin-top: 50px;
}
.member {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 24px;
  row-gap: 6px;
  align-items: start;
}
.member-portrait {
  grid-row: 1 / span 4;
  grid-column: 1;
  aspect-ratio: 3/4;
  width: 180px;
  margin-bottom: 0;
  position: relative;
}
.member-portrait .frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  opacity: 0.8;
  border-radius: 4px;
}
.member.violet .member-portrait .frame-corner { border-color: var(--violet); }
.fc-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.fc-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 12px; }
.fc-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 12px; }
.fc-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }

.member-name {
  font-family: 'Lilita One', sans-serif;
  font-size: 36px;
  margin: 0 0 2px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  align-self: end;
}
.member.violet .member-name { color: var(--violet); }
.member:not(.violet) .member-name { color: var(--green); }
.member-role {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.member-bio {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.member-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.member-stats .k { color: var(--green); }
.member.violet .member-stats .k { color: var(--violet); }

/* ============ DEVLOG ============ */
.devlog-section {
  background: linear-gradient(to bottom, var(--bg-2) 0%, var(--bg) 100%);
  overflow: hidden;
}
/* keep section eyes tucked behind the content */
.devlog-section > .eye { z-index: 1; }
.devlog-section > .container { position: relative; z-index: 3; }
.devlog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.devlog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.entry {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s;
}
.entry:hover { transform: translateY(-4px); }
.entry:hover .entry-thumb {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(110, 240, 126, 0.25);
}
.entry-thumb {
  aspect-ratio: 4/3;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.entry-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}
.entry-meta .tag-inline {
  color: var(--violet);
}
.entry-title {
  font-family: 'Lilita One', sans-serif;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.entry-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.entry.featured .entry-title { font-size: 36px; }
.entry.featured .entry-thumb { aspect-ratio: 16/11; }

/* ============ FOOTER ============ */
footer {
  background: #0a0418;
  padding: 80px 36px 36px;
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}
/* footer eyes peek from behind the columns */
footer > .eye { z-index: 1; }
.footer-inner, .footer-bottom { position: relative; z-index: 3; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand h4 {
  font-family: 'Lilita One', sans-serif;
  font-size: 32px;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.footer-brand h4 .g { color: var(--green); }
.footer-brand p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  max-width: 320px;
}
.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--violet); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- funding / sponsor credit ---- */
.footer-support {
  max-width: 1180px;
  margin: 0 auto 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 28px;
}
.footer-support-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.footer-support-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity 0.25s, filter 0.25s;
  filter: brightness(1.18) saturate(1.05);
}
.footer-support-logo:hover {
  opacity: 1;
  filter: brightness(1.35) saturate(1.1) drop-shadow(0 0 14px rgba(169, 107, 255, 0.45));
}
.footer-support-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-support-blurb {
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .footer-support {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }
  .footer-support-logo img { height: 34px; }
}
.lore-rune {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
  color: var(--violet);
  opacity: 0.3;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}
.lore-rune.green { color: var(--green); }
.lore-rune:hover {
  opacity: 1;
  transform: scale(1.4) rotate(20deg);
  filter: drop-shadow(0 0 10px currentColor);
}
.lore-rune svg { width: 100%; height: 100%; }

.lore-tooltip {
  position: fixed;
  padding: 16px 20px;
  background: #0a0418;
  border: 1.5px solid var(--violet);
  border-radius: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  max-width: 280px;
  z-index: 1000;
  pointer-events: none;
  line-height: 1.55;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 24px rgba(169, 107, 255, 0.3);
}
.lore-tooltip::before {
  content: "▸ FRAGMENT RECOVERED";
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 10px;
}

/* ============ GLITCH TITLE ============ */
.glitchable { position: relative; display: inline-block; }
.glitchable .ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
}
.glitchable.active .ghost.r {
  opacity: 0.8;
  color: var(--violet);
  transform: translate(-4px, 1px);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-1 0.18s infinite;
  text-shadow: none;
}
.glitchable.active .ghost.c {
  opacity: 0.8;
  color: var(--green);
  transform: translate(4px, -1px);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-2 0.18s infinite;
  text-shadow: none;
}
.glitchable.active .main { animation: jitter 0.15s infinite; }
@keyframes glitch-1 {
  0%, 100% { transform: translate(-4px, 1px); }
  50% { transform: translate(-7px, 0); }
}
@keyframes glitch-2 {
  0%, 100% { transform: translate(4px, -1px); }
  50% { transform: translate(7px, 1px); }
}
@keyframes jitter {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, 1px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 40px; }
  .team { grid-template-columns: 1fr; gap: 36px; }
  .member { grid-template-columns: 140px 1fr; column-gap: 20px; }
  .member-portrait { width: 140px; }
  .devlog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; font-size: 11px; }
  .nav-right { gap: 14px; }
  .lang-current { padding: 6px 10px 6px 8px; font-size: 11px; }
  section { padding: 90px 22px; }
}

/* ============================================================
   DEVLOG ARCHIVE  ("All Entries")
   ============================================================ */
.archive {
  position: relative;
  min-height: 100vh;
  padding: 150px 36px 110px;
  background: linear-gradient(to bottom, var(--bg-2) 0%, var(--bg) 60%);
  overflow: hidden;
}
.archive > .eye { z-index: 1; }
.archive-inner { position: relative; z-index: 3; }

.archive-head { margin-bottom: 44px; }
.archive-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 26px;
  transition: color 0.2s, gap 0.2s;
}
.archive-back:hover { color: var(--green); gap: 12px; }
.archive-head .section-title { font-size: clamp(40px, 5vw, 70px); margin: 10px 0 18px; }
.archive-head .section-lede { max-width: 560px; }

/* filter bar */
.archive-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-sort-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}
.chip {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.chip:hover { color: var(--ink); border-color: rgba(110, 240, 126, 0.4); }
.chip.active {
  color: var(--bg);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(110, 240, 126, 0.35);
}
.archive-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.archive-entry { cursor: default; }
.archive-entry:hover { transform: translateY(-4px); }
.entry-author { color: var(--ink-2); }
.entry-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.archive-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 1000px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .archive { padding: 130px 22px 90px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-filters { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   NOTE WORKSHOP  (internal drafting tool)
   ============================================================ */
body.ws-page {
  height: 100vh;
  overflow: hidden;
  font-size: 16px;
}
body.ws-page::after { display: none; } /* drop the heavy vignette in the tool */

.ws-root {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* top bar */
.ws-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  padding: 0 22px;
  background: rgba(10, 4, 24, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
.ws-bar-left { display: flex; align-items: center; gap: 12px; }
.ws-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--bg);
}
.ws-mark svg { width: 15px; height: 15px; }
.ws-bar-title {
  font-family: 'Lilita One', sans-serif;
  font-size: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.ws-badge {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  border: 1px solid rgba(255, 92, 200, 0.4);
  border-radius: 999px;
  padding: 4px 9px;
}
.ws-bar-right { display: flex; align-items: center; gap: 18px; }
.ws-counts { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.ws-saved {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  animation: ws-saved-pulse 1.6s ease-out;
}
@keyframes ws-saved-pulse {
  0% { opacity: 0; }
  15% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}
.ws-bar-link {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.ws-bar-link:hover { color: var(--green); }

/* three-pane body */
.ws-body {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

/* ---- left: drafts list ---- */
.ws-list {
  flex: 0 0 304px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.18);
  min-height: 0;
}
.ws-list-top {
  padding: 16px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ws-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Lilita One', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--green);
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--green-deep);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ws-new:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--green-deep); }
.ws-new:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--green-deep); }
.ws-search {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.ws-search:focus { border-color: rgba(110, 240, 126, 0.5); }
.ws-search::placeholder { color: var(--muted); }

.ws-list-scroll { flex: 1 1 auto; overflow-y: auto; padding: 10px; }
.ws-list-empty { padding: 30px 12px; text-align: center; color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.ws-item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 13px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
}
.ws-item:hover { background: rgba(255, 255, 255, 0.035); }
.ws-item.active {
  background: rgba(110, 240, 126, 0.07);
  border-color: rgba(110, 240, 126, 0.32);
}
.ws-item-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; padding-right: 20px; }
.ws-item-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}
.ws-item-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.ws-item-tag { color: var(--violet); }
.ws-item-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.ws-item-del {
  position: absolute;
  top: 10px;
  right: 9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: var(--muted);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.15s, color 0.15s, background 0.15s;
}
.ws-item:hover .ws-item-del { opacity: 1; }
.ws-item-del:hover { color: var(--magenta); background: rgba(255, 92, 200, 0.12); }

/* status pills */
.ws-status {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid currentColor;
  flex: 0 0 auto;
}
.ws-status-draft { color: var(--muted); }
.ws-status-review { color: var(--violet); }
.ws-status-published { color: var(--green); }

/* ---- center: editor ---- */
.ws-editor {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  padding: 30px 34px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ws-editor-empty, .ws-preview-empty {
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ws-field {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.ws-field:focus { border-color: rgba(110, 240, 126, 0.5); background: rgba(0, 0, 0, 0.34); }
.ws-field::placeholder { color: var(--muted); }
.ws-title-field {
  font-family: 'Lilita One', sans-serif;
  font-size: 28px;
  letter-spacing: 0.01em;
  padding: 14px 16px;
}
.ws-excerpt-field { font-size: 15px; resize: vertical; line-height: 1.5; min-height: 92px; }

.ws-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ws-control { display: flex; flex-direction: column; gap: 7px; }
.ws-control-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ws-hint { text-transform: none; letter-spacing: 0; opacity: 0.7; }
.ws-select {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--rule);
  border-radius: 9px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.ws-select:focus { border-color: rgba(110, 240, 126, 0.5); }
.ws-select::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }

.ws-segment {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--rule);
  border-radius: 9px;
  padding: 3px;
  gap: 3px;
}
.ws-segment button {
  flex: 1 1 0;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.ws-segment button:hover { color: var(--ink); }
.ws-segment button.active { color: var(--bg); background: var(--green); }
.ws-segment-status button.active { background: var(--violet); color: var(--ink); }

.ws-thumb-control { margin-top: 2px; }
.ws-body-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
}
.ws-wordcount { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.ws-body-field {
  flex: 1 1 auto;
  min-height: 280px;
  font-size: 15px;
  line-height: 1.7;
  resize: vertical;
  font-family: 'Space Mono', monospace;
}

/* ---- right: preview ---- */
.ws-preview {
  flex: 0 0 430px;
  overflow-y: auto;
  padding: 26px 28px 60px;
  border-left: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ws-preview-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.ws-preview-label:not(:first-child) { margin-top: 16px; }
.ws-preview-card { cursor: default; pointer-events: none; }
.ws-read {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 22px 8px;
}
.ws-read-title {
  font-family: 'Lilita One', sans-serif;
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 10px;
}
.ws-read-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ws-read-p { font-size: 15px; line-height: 1.7; color: var(--ink-2); margin: 0 0 14px; }
.ws-read-empty { color: var(--muted); font-style: italic; }

@media (max-width: 1100px) {
  .ws-preview { flex-basis: 360px; }
}
@media (max-width: 920px) {
  body.ws-page { overflow: auto; }
  .ws-root { height: auto; min-height: 100vh; }
  .ws-body { flex-direction: column; }
  .ws-list { flex-basis: auto; max-height: 280px; border-right: none; border-bottom: 1px solid var(--rule); }
  .ws-preview { flex-basis: auto; border-left: none; border-top: 1px solid var(--rule); }
  .ws-bar { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 10px; }
  .ws-counts { display: none; }
}

/* ---- editor language toggle ---- */
.ws-langbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(169, 107, 255, 0.07);
  border: 1px solid rgba(169, 107, 255, 0.28);
  border-radius: 11px;
}
.ws-langbar-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}
.ws-langtoggle { display: inline-flex; gap: 4px; background: rgba(0,0,0,0.34); border-radius: 999px; padding: 4px; }
.ws-langtoggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.ws-langtoggle button:hover { color: var(--ink); }
.ws-langtoggle button.active { color: var(--bg); background: var(--violet); }
.ws-langtoggle .flag { width: 18px; height: 12px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,0.4); }
.ws-langtoggle .dot-empty {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.6;
}
.ws-langtoggle .dot-full {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
}

/* list item per-language presence flags — separate badges, only langs that exist */
.ws-langflags {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.ws-langflag {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border: 1px solid rgba(110, 240, 126, 0.4);
  border-radius: 5px;
  color: var(--green);
}

/* ---- cover image uploader ---- */
.ws-cover-control { display: flex; flex-direction: column; gap: 7px; }
.ws-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 132px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.26);
  border: 1.5px dashed var(--rule);
  border-radius: 11px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.ws-dropzone:hover, .ws-dropzone.drag {
  border-color: var(--green);
  color: var(--ink);
  background: rgba(110, 240, 126, 0.06);
}
.ws-dropzone svg { color: var(--green); }
.ws-dropzone-hint { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; }
.ws-cover-has { position: relative; border-radius: 11px; overflow: hidden; border: 1px solid var(--rule); }
.ws-cover-has img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ws-cover-actions {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(to top, rgba(10,4,24,0.85), transparent);
}
.ws-cover-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--rule);
  border-radius: 7px;
  padding: 6px 11px;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: border-color 0.15s, color 0.15s;
}
.ws-cover-btn:hover { border-color: var(--green); color: var(--green); }
.ws-cover-btn.danger:hover { border-color: var(--magenta); color: var(--magenta); }
.ws-cover-busy { color: var(--green); font-family: 'Space Mono', monospace; font-size: 12px; }
