@import url('https://fonts.googleapis.com/css2?family=Anton&family=JetBrains+Mono:wght@400;700&family=Bebas+Neue&display=swap');

:root {
  --bg: #0a0f0a;
  --ink: #050505;
  --bone: #f1ece0;
  --primary: #39ff14;
  --secondary: #ff8a14;
  --gold: #d4a23a;
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--primary); color: var(--ink); }

.accent { color: var(--primary); }

img { display: block; max-width: 100%; height: auto; }

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

/* ============ Shared utilities ============ */
.halftone {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.4;
}

.panel-frame {
  border: 4px solid var(--bone);
  box-shadow: 8px 8px 0 0 var(--ink), 8px 8px 0 4px var(--bone);
  position: relative;
  background: var(--ink);
}

.eyebrow, .eyebrow-sm {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-sm { font-size: 10px; letter-spacing: 0.3em; display: block; }

.eyebrow .rule { display: inline-block; width: 40px; height: 1px; background: var(--primary); }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(241, 236, 224, 0.6);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 20px;
}
.brand-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
  transition: color 0.2s;
}
.primary-nav a:hover { color: var(--primary); }
.nav-cta {
  border: 2px solid var(--primary);
  background: var(--primary); color: var(--ink) !important;
  padding: 6px 14px;
}
.nav-cta:hover { background: transparent; color: var(--primary) !important; }

@media (max-width: 720px) { .primary-nav { display: none; } }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 16px 60px;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; max-width: 1000px; text-align: center; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin: 24px 0;
}
.hero-title .line { display: block; }

/* MANTIS ORIGIN dramatic animations */
.line-the {
  animation: drop-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.1s;
}
.line-mantis {
  color: var(--primary);
  animation: mantis-slam 1.1s cubic-bezier(0.2, 0.9, 0.1, 1) both, mantis-flicker 4s ease-in-out 2s infinite;
  animation-delay: 0.4s, 2s;
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}
.line-origin {
  -webkit-text-stroke: 2px var(--bone);
  color: transparent;
  animation: origin-stroke 1.2s ease-out both;
  animation-delay: 1s;
}

@keyframes drop-in {
  0% { opacity: 0; transform: translateY(-60px) rotate(-2deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes mantis-slam {
  0% { opacity: 0; transform: scale(2.2) translateY(-30px); filter: blur(12px); }
  60% { opacity: 1; transform: scale(0.92) translateY(0); filter: blur(0); }
  80% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@keyframes mantis-flicker {
  0%, 92%, 100% { opacity: 1; transform: translate(0,0); }
  93% { opacity: 0.4; transform: translate(-3px, 1px); }
  94% { opacity: 1; transform: translate(2px, -1px); }
  95% { opacity: 0.6; transform: translate(-1px, 2px); }
  96% { opacity: 1; transform: translate(0,0); }
}
@keyframes origin-stroke {
  0% { opacity: 0; letter-spacing: -0.5em; }
  100% { opacity: 1; letter-spacing: -0.01em; }
}

/* Glitch layered effect */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.glitch::before {
  color: var(--primary);
  transform: translate(-3px, 0);
  mix-blend-mode: screen;
  animation: glitch-shift-1 5s infinite steps(1);
}
.glitch::after {
  color: var(--secondary);
  transform: translate(3px, 0);
  mix-blend-mode: screen;
  animation: glitch-shift-2 5s infinite steps(1);
}
@keyframes glitch-shift-1 {
  0%, 90%, 100% { transform: translate(-3px, 0); clip-path: inset(0 0 0 0); }
  92% { transform: translate(-6px, 2px); clip-path: inset(20% 0 30% 0); }
  94% { transform: translate(-2px, -2px); clip-path: inset(60% 0 10% 0); }
}
@keyframes glitch-shift-2 {
  0%, 90%, 100% { transform: translate(3px, 0); clip-path: inset(0 0 0 0); }
  92% { transform: translate(6px, -2px); clip-path: inset(40% 0 40% 0); }
  94% { transform: translate(2px, 2px); clip-path: inset(10% 0 60% 0); }
}

.hero-lede {
  max-width: 540px;
  margin: 30px auto 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 236, 224, 0.8);
}

.scroll-hint {
  margin-top: 40px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(241, 236, 224, 0.6);
}
.scroll-line {
  display: block; width: 1px; height: 48px;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.reg-mark {
  position: absolute; width: 24px; height: 24px;
  border: 2px solid var(--primary); opacity: 0.6;
}
.reg-mark.tl { top: 16px; left: 16px; }
.reg-mark.tr { top: 16px; right: 16px; }
.reg-mark.bl { bottom: 16px; left: 16px; }
.reg-mark.br { bottom: 16px; right: 16px; }

/* Spores */
.spores { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.spores span {
  position: absolute; bottom: 0;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
  animation: float-spore 18s linear infinite;
  opacity: 0.6;
}
.spores span:nth-child(1) { left: 5%;  animation-duration: 15s; animation-delay: -2s; }
.spores span:nth-child(2) { left: 12%; animation-duration: 20s; animation-delay: -7s; width: 3px; height: 3px; }
.spores span:nth-child(3) { left: 19%; animation-duration: 17s; animation-delay: -12s; }
.spores span:nth-child(4) { left: 26%; animation-duration: 22s; animation-delay: -4s; width: 5px; height: 5px; }
.spores span:nth-child(5) { left: 33%; animation-duration: 16s; animation-delay: -9s; }
.spores span:nth-child(6) { left: 40%; animation-duration: 19s; animation-delay: -1s; width: 3px; height: 3px; }
.spores span:nth-child(7) { left: 47%; animation-duration: 21s; animation-delay: -14s; }
.spores span:nth-child(8) { left: 54%; animation-duration: 18s; animation-delay: -6s; width: 5px; height: 5px; }
.spores span:nth-child(9) { left: 61%; animation-duration: 23s; animation-delay: -3s; }
.spores span:nth-child(10){ left: 68%; animation-duration: 17s; animation-delay: -11s; width: 4px; height: 4px; }
.spores span:nth-child(11){ left: 75%; animation-duration: 20s; animation-delay: -8s; }
.spores span:nth-child(12){ left: 82%; animation-duration: 16s; animation-delay: -5s; width: 3px; height: 3px; }
.spores span:nth-child(13){ left: 89%; animation-duration: 22s; animation-delay: -13s; }
.spores span:nth-child(14){ left: 96%; animation-duration: 19s; animation-delay: -10s; }
.spores span:nth-child(15){ left: 9%;  animation-duration: 24s; animation-delay: -15s; width: 5px; height: 5px; }
.spores span:nth-child(16){ left: 22%; animation-duration: 18s; animation-delay: -2s; }
.spores span:nth-child(17){ left: 38%; animation-duration: 21s; animation-delay: -7s; }
.spores span:nth-child(18){ left: 56%; animation-duration: 17s; animation-delay: -4s; }
.spores span:nth-child(19){ left: 71%; animation-duration: 20s; animation-delay: -9s; }
.spores span:nth-child(20){ left: 86%; animation-duration: 19s; animation-delay: -12s; }

@keyframes float-spore {
  0% { transform: translate3d(0,0,0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate3d(40px, -110vh, 0); opacity: 0; }
}

/* ============ Comic Panels ============ */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 16px;
  max-width: 1400px; margin: 0 auto;
}

.panel-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(241, 236, 224, 0.7);
}
.panel-meta .tag { border: 1px solid rgba(241, 236, 224, 0.4); padding: 4px 8px; }
.panel-meta .meta-note { flex: 1; margin-left: 12px; }
.panel-meta .page-num { font-size: 10px; color: rgba(241, 236, 224, 0.5); }

.panel-frame > img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  animation: shutter-in 0.9s cubic-bezier(0.7, 0, 0.3, 1) both;
}
@keyframes shutter-in {
  0% { clip-path: inset(50% 0 50% 0); opacity: 0.4; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

.panel-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 60%, rgba(5,5,5,0.4) 100%);
  pointer-events: none;
}

.panel-title {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.05em;
  background: rgba(5,5,5,0.7);
  border-left: 4px solid var(--primary);
  padding: 6px 14px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.caption {
  position: absolute;
  bottom: 24px;
  max-width: 420px;
  background: var(--bone);
  color: var(--ink);
  border: 2px solid var(--bone);
  padding: 14px 18px;
  z-index: 2;
}
.caption-label {
  display: block;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(5, 5, 5, 0.7);
  margin-bottom: 6px;
}
.caption p { font-size: 15px; line-height: 1.4; }

.align-left .caption { left: 32px; }
.align-right .caption { right: 32px; }
.align-center .caption { left: 50%; transform: translateX(-50%); }

.sfx {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--secondary);
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-8deg);
  z-index: 2;
  animation: sfx-pop 0.6s cubic-bezier(0.2, 1.5, 0.4, 1) both;
}
@keyframes sfx-pop {
  0% { transform: rotate(-8deg) scale(0.3); opacity: 0; }
  100% { transform: rotate(-8deg) scale(1); opacity: 1; }
}

.panel-cta {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(6px);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 3;
}
.cta-eyebrow {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--primary);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 0 var(--ink);
}
.cta-tag {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(241, 236, 224, 0.8);
}

@media (max-width: 720px) {
  .panel-frame > img { height: 55vh; }
  .caption { max-width: 80%; padding: 10px 12px; }
  .caption p { font-size: 13px; }
  .align-left .caption { left: 16px; }
  .align-right .caption { right: 16px; }
  .panel-title { top: 16px; left: 16px; }
}

/* ============ Issues ============ */
.issues {
  border-top: 4px solid var(--bone);
  padding: 100px 32px;
}
.section-head { max-width: 1500px; margin: 0 auto 48px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.section-lede {
  margin-top: 16px;
  max-width: 480px;
  font-size: 14px;
  color: rgba(241, 236, 224, 0.7);
  line-height: 1.6;
}

.issue-grid {
  list-style: none;
  max-width: 1500px; margin: 0 auto;
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.issue-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 4px solid var(--bone);
  box-shadow: 8px 8px 0 0 var(--ink), 8px 8px 0 4px var(--bone);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--ink);
}
.issue-card:hover {
  transform: translateY(-10px) rotate(-1.5deg);
  box-shadow: 16px 16px 0 0 var(--primary);
}
.issue-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.issue-card:hover img { transform: scale(1.1); }

.issue-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(5,5,5,0.3) 60%, transparent);
  pointer-events: none;
}

.issue-no {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--ink);
  padding: 4px 8px;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  z-index: 2;
}
.issue-status {
  position: absolute; top: 12px; left: 60px;
  border: 1px solid var(--bone);
  color: var(--bone);
  padding: 4px 8px;
  font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.2em;
  z-index: 2;
}
.issue-status.out { background: var(--bone); color: var(--ink); border: none; }

.issue-card footer {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  z-index: 2;
}
.issue-date {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(241, 236, 224, 0.6);
}
.issue-card h3 {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.06em;
  line-height: 1.1;
}

/* ============ The Shoe ============ */
.the-shoe {
  position: relative;
  border-top: 4px solid var(--bone);
  background: var(--ink);
  padding: 100px 32px;
  overflow: hidden;
}

.shoe-stage {
  max-width: 1500px; margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}

.shoe-glow {
  position: absolute; left: 50%; top: 50%;
  width: 60%; height: 80%;
  transform: translate(-50%, -50%);
  background: rgba(57, 255, 20, 0.2);
  filter: blur(120px);
  border-radius: 50%;
}
.shoe-ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.shoe-ring.outer {
  width: 80%; aspect-ratio: 1;
  border: 1px solid rgba(57, 255, 20, 0.3);
  animation: spin-slow 22s linear infinite;
}
.shoe-ring.inner {
  width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(241, 236, 224, 0.15);
}
@keyframes spin-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.shoe-img {
  position: absolute; left: 50%; top: 50%;
  height: 70%; width: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 60px rgba(57, 255, 20, 0.4));
  animation: float-shoe 6s ease-in-out infinite;
}
@keyframes float-shoe {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 14px)); }
}

.callout {
  position: absolute;
  max-width: 200px;
  border-left: 2px solid var(--primary);
  background: var(--bone);
  color: var(--ink);
  padding: 8px 10px;
  z-index: 3;
}
.callout-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
.callout-desc { font-size: 11px; margin-top: 4px; line-height: 1.4; color: rgba(5,5,5,0.8); }
.pos-tl { left: 8%; top: 12%; }
.pos-tr { right: 6%; top: 28%; }
.pos-bl { left: 10%; bottom: 18%; }
.pos-br { right: 8%; bottom: 10%; }

@media (max-width: 720px) { .callout { display: none; } }

/* ============ Lore ============ */
.lore { border-top: 4px solid var(--bone); }

.ticker {
  border-block: 2px solid var(--primary);
  background: rgba(57, 255, 20, 0.1);
  padding: 10px 0;
  overflow: hidden;
}
.ticker p {
  white-space: nowrap;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--primary);
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lore-body { max-width: 1300px; margin: 0 auto; padding: 100px 32px; }

.lore-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 720px) { .lore-grid { grid-template-columns: 1fr; } }

.file-card {
  border: 2px solid var(--bone);
  padding: 24px;
  font-size: 12px; line-height: 1.6;
  color: rgba(241, 236, 224, 0.7);
}
.file-card header {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid rgba(241, 236, 224, 0.3);
  padding-bottom: 8px; margin-bottom: 16px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--primary);
}
.file-card .signoff { margin-top: 16px; color: rgba(241, 236, 224, 0.4); }

.lore-entries { display: flex; flex-direction: column; gap: 12px; }

details {
  border: 2px solid rgba(241, 236, 224, 0.4);
  background: rgba(241, 236, 224, 0.03);
  transition: border-color 0.2s;
}
details[open] { border-color: var(--primary); }

summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  display: flex; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }

.entry-no {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--primary);
}
.entry-q {
  flex: 1;
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.06em;
}
.entry-plus {
  font-family: var(--font-display);
  font-size: 28px; color: var(--primary);
  transition: transform 0.3s;
}
details[open] .entry-plus { transform: rotate(45deg); }

details > p {
  border-top: 1px solid rgba(241, 236, 224, 0.2);
  padding: 16px;
  font-size: 14px; line-height: 1.6;
  color: rgba(241, 236, 224, 0.85);
}

/* ============ Join ============ */
.join {
  position: relative;
  border-top: 4px solid var(--bone);
  background: var(--ink);
  padding: 100px 32px;
}

.join-panel {
  max-width: 1100px; margin: 0 auto;
  background: var(--bg);
  padding: 56px;
  position: relative;
}

.join-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
@media (max-width: 720px) { .join-grid { grid-template-columns: 1fr; } .join-panel { padding: 32px; } }

.join-grid header h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.05em;
}
.join-grid header p {
  margin-top: 16px;
  max-width: 420px;
  font-size: 14px; color: rgba(241, 236, 224, 0.7);
}

.join-form { display: flex; flex-direction: column; gap: 12px; }
.join-form label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(241, 236, 224, 0.6);
}
.join-form input {
  width: 100%;
  border: 2px solid var(--bone);
  background: transparent;
  color: var(--bone);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 14px;
}
.join-form input:focus { outline: none; border-color: var(--primary); }
.join-form input::placeholder { color: rgba(241, 236, 224, 0.3); }

.join-form button {
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.05em;
  padding: 12px 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  animation: heartbeat 1.4s ease-in-out infinite;
  transition: background 0.2s, color 0.2s;
}
.join-form button:hover { background: transparent; color: var(--primary); }
@keyframes heartbeat {
  0%, 70%, 100% { transform: scale(1); }
  35% { transform: scale(1.04); }
  50% { transform: scale(1.01); }
}

.form-foot {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(241, 236, 224, 0.4);
}
.form-success {
  display: none;
  border: 2px solid var(--primary);
  background: rgba(57, 255, 20, 0.1);
  padding: 20px; text-align: center;
  font-family: var(--font-display);
  font-size: 24px; color: var(--primary);
  letter-spacing: 0.05em;
}
.join-form.submitted > * { display: none; }
.join-form.submitted .form-success { display: block; }

/* ============ Footer ============ */
.site-footer {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 24px 32px 40px;
  border-top: 1px solid rgba(241, 236, 224, 0.2);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(241, 236, 224, 0.5);
}
.site-footer p span { margin-right: 16px; }
@media (max-width: 720px) {
  .site-footer { flex-direction: column; align-items: center; text-align: center; }
}

/* ============ Sound Toggle ============ */
.sound-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  border: 2px solid var(--bone);
  background: var(--bg);
  color: var(--bone);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sound-toggle:hover { background: var(--primary); color: var(--ink); }
.sound-toggle .dot {
  display: inline-block; width: 8px; height: 8px;
  background: rgba(241, 236, 224, 0.4);
}
.sound-toggle.on .dot { background: var(--primary); animation: pulse 1.5s infinite; }
