/* ============================================================
   LineVerse — Minimal Arcade v2
   Site styles. Extracted verbatim from directions/home.html
   (the canonical Claude Design reference) so the brand is preserved
   exactly. Design tokens come from colors_and_type.css.
   ============================================================ */
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-mono); }
html { scroll-padding-top: 96px; scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle, rgba(255,212,0,.05) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--bg);
  overflow-x: hidden;
}

/* ============== UTILITIES ============== */
/* Brand-prefixed utilities (.lv-pixel, .lv-mono, .lv-display, .lv-meta, etc.)
   live in colors_and_type.css — use those for new code. The three classes
   below are the only short-name utilities actually referenced by index.html. */
.slab    { color: var(--lv-yellow); position: relative; display: inline-block; padding-bottom: .04em; }
.slab::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .06em; background: var(--lv-yellow); opacity: .65; }
.slab--mint { color: var(--lv-mint); }
.slab--mint::after { background: var(--lv-mint); }
.cursor  { display: inline-block; width: .45em; height: .9em; background: var(--lv-mint); transform: skewX(-12deg); vertical-align: -.05em; margin: 0 .14em; }

/* ============== SECTION SHELL ============== */
.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section { padding: 128px 0 0; position: relative; scroll-margin-top: 88px; }
section:last-of-type { padding-bottom: 96px; }
.sec-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
  margin-bottom: 48px; padding-bottom: 18px; border-bottom: 1px solid var(--lv-line);
}
.sec-head h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(28px, 4.5vw, 56px); line-height: .95; letter-spacing: .005em;
  margin: 14px 0 0; color: var(--fg); overflow-wrap: break-word;
}
.sec-head .chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-pixel); font-size: 11px; color: var(--lv-mint); border: 1px solid var(--lv-mint); padding: 5px 10px; letter-spacing: .06em; text-transform: uppercase; align-self: start; }
.sec-head .chip::before { content: "◆"; }
.sec-head .idx { font-family: var(--font-mono); font-size: 12px; color: var(--lv-muted-2); letter-spacing: .16em; text-transform: uppercase; }

/* ============== HEADER ============== */
.top {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px 40px; border-bottom: 1px solid var(--lv-line);
  background: rgba(5,5,5,.86);
}
.top .logo { font-family: var(--font-pixel); font-size: 22px; color: var(--lv-yellow); letter-spacing: .04em; display: flex; align-items: center; gap: 4px; }
.top .logo::before { content: "▸"; color: var(--lv-mint); font-size: 14px; margin-right: 6px; }
.top nav { display: flex; gap: 36px; justify-content: center; }
.top nav a { font-family: var(--font-pixel); font-size: 11px; color: var(--fg); text-decoration: none; letter-spacing: .06em; opacity: .9; }
.top nav a:hover { color: var(--lv-yellow); opacity: 1; }
.top .start { justify-self: end; }
.top .start button {
  font-family: var(--font-pixel); font-size: 11px; letter-spacing: .06em;
  padding: 11px 16px; background: var(--lv-yellow); color: #000; border: 0;
  box-shadow: 4px 4px 0 0 #c39a00; cursor: pointer;
}
.top .start button:hover { background: var(--lv-yellow-soft); }

/* ============== MARQUEE ============== */
.marquee {
  display: flex; gap: 48px; overflow: hidden; align-items: center;
  border-bottom: 1px solid var(--lv-line); padding: 10px 0; margin-bottom: 0;
  font-family: var(--font-pixel); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .08em;
  opacity: .7;
}
.marquee .track { display: flex; gap: 48px; flex-shrink: 0; align-items: center; animation: scroll 48s linear infinite; }
.marquee span { white-space: nowrap; }
.marquee .star { color: var(--lv-yellow); opacity: .6; }
@keyframes scroll { to { transform: translateX(-50%); } }

.xp-pill {
  position: fixed; top: 80px; right: 40px; z-index: 40;
  padding: 8px 14px; border: 1px solid var(--lv-yellow); background: #000;
  font-family: var(--font-pixel); font-size: 11px; color: var(--lv-yellow); letter-spacing: .08em;
  display: flex; align-items: center; gap: 14px;
}
.xp-pill b { color: var(--lv-cream); font-weight: 400; }

/* ============== HERO ============== */
.hero { padding: 80px 0 32px; }
.hero .row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(48px, 8vw, 96px); line-height: .95; letter-spacing: .005em;
  margin: 0; color: var(--fg);
  overflow-wrap: break-word; hyphens: none;
  max-width: 14ch;
}
.hero .sub {
  font-family: var(--font-mono); font-size: 15px; color: var(--lv-muted-2);
  margin: 24px 0 0; max-width: 48ch; line-height: 1.7;
}
.hero .sub b { color: var(--lv-cream); font-weight: 500; }
.hero .menu { display: flex; flex-direction: column; gap: 10px; margin-top: 36px; max-width: 520px; }
.hero .menu .item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; border: 1px solid var(--lv-line); min-height: 52px;
  font-family: var(--font-pixel); font-size: 12px; color: var(--lv-cream); letter-spacing: .06em;
  background: transparent; cursor: pointer; transition: border-color .15s, background .15s;
  text-decoration: none;
}
.hero .menu .item:hover { border-color: var(--lv-yellow); }
.hero .menu .primary {
  background: var(--lv-yellow); border-color: var(--lv-yellow); color: #000;
  box-shadow: 0 3px 0 0 var(--lv-mint);
}
.hero .menu .primary:hover { background: var(--lv-yellow-soft); border-color: var(--lv-yellow-soft); }
.hero .menu .item .key { font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .08em; }
.hero .menu .primary .key { background: #000; color: var(--lv-mint); padding: 3px 7px; }

/* HUD card */
.hud {
  align-self: start; margin-top: 32px;
  background: #000; border: 2px solid var(--lv-yellow);
  padding: 0; max-width: 340px;
}
.hud .hb { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--lv-line-yellow); font-family: var(--font-pixel); font-size: 10px; color: var(--lv-yellow); letter-spacing: .06em; }
.hud .hb .lvl { background: var(--lv-mint); color: #000; padding: 3px 7px; font-size: 10px; }
.hud .body { padding: 14px; }
.hud .avatar {
  width: 100%; aspect-ratio: 1/1.05; background: #0e0e0c;
  border: 1px solid var(--lv-line-yellow); display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  position: relative;
}
.hud .avatar img { width: 92%; image-rendering: pixelated; transform: translateY(6%); }
.hud .avatar .corner { position: absolute; font-family: var(--font-pixel); font-size: 8px; color: var(--lv-muted-2); padding: 6px; letter-spacing: .05em; }
.hud .avatar .c-tl { top: 0; left: 0; }
.hud .avatar .c-br { bottom: 0; right: 0; }
.hud .stats { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.hud .stat { display: grid; grid-template-columns: 32px 1fr 56px; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 10px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; }
.hud .stat .bar { height: 6px; background: #1a1a14; border: 1px solid var(--lv-line-yellow); position: relative; }
.hud .stat .bar > span { display: block; height: 100%; }
.hud .stat .num { text-align: right; color: var(--lv-cream); font-family: var(--font-mono); }

/* ============== CARD SYSTEM ============== */
.card {
  background: var(--lv-ink); border: 2px solid var(--lv-line);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color .15s;
}
.card.active { border-color: var(--lv-yellow); }
.card .top-row { display: flex; justify-content: space-between; align-items: center; }
.card .meta-label { font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .1em; text-transform: uppercase; }
.card .badge { font-family: var(--font-pixel); font-size: 10px; padding: 5px 8px; letter-spacing: .05em; border: 1px solid; }
.badge.air { color: var(--lv-red); border-color: var(--lv-red); background: rgba(255,61,85,.1); }
.badge.daily { color: var(--lv-mint); border-color: var(--lv-mint); background: rgba(46,230,166,.08); }
.badge.live { color: var(--lv-mint); border-color: var(--lv-mint); }
.badge.coming { color: var(--lv-yellow); border-color: var(--lv-yellow); }
.badge.locked { color: var(--lv-muted-2); border-color: var(--lv-muted-2); }
.badge.passed { color: var(--lv-muted); border-color: var(--lv-muted); }
.badge.current { background: var(--lv-mint); color: #000; border-color: var(--lv-mint); font-weight: 700; }
.badge.new   { background: var(--lv-mint); color: #000; border-color: var(--lv-mint); }
.card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 30px; line-height: .95; margin: 0; letter-spacing: .005em; }
.card p { font-family: var(--font-mono); font-size: 13px; color: var(--lv-muted-2); margin: 0; line-height: 1.5; }
.card .icon { width: 42px; height: 42px; background: var(--lv-yellow); display: flex; align-items: center; justify-content: center; color: #000; }
.card .icon svg { width: 24px; height: 24px; }
.card .bottom-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--lv-line); padding-top: 14px; margin-top: auto; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--lv-muted-2); }
.card .bottom-row .a { color: var(--lv-yellow); }

/* ============== CHANNELS ============== */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ============== DROPS (videos) ============== */
.drops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video {
  background: var(--lv-ink); border: 2px solid var(--lv-line);
  display: flex; flex-direction: column;
}
.video .well {
  aspect-ratio: 16/10; position: relative;
  background:
    linear-gradient(rgba(255,212,0,.05) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, rgba(255,212,0,.05) 1px, transparent 1px) 0 0/24px 24px,
    #0a0a08;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.video .well .corner-pl { position: absolute; bottom: 12px; left: 12px; width: 28px; height: 28px; background: var(--lv-yellow); color: #000; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.video .info { padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--lv-line); }
.video .info .tag { font-family: var(--font-mono); font-size: 10px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; display: flex; gap: 8px; }
.video .info .tag .recent { color: var(--lv-mint); }
.video .info .title { font-family: var(--font-mono); font-size: 14px; color: var(--lv-cream); }
.video .info .title b { color: var(--lv-yellow); font-weight: 500; }
.drops-cta { margin-top: 32px; display: flex; justify-content: center; }
.btn-line {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px; border: 2px solid var(--lv-yellow); background: transparent; color: var(--lv-yellow);
  font-family: var(--font-pixel); font-size: 12px; letter-spacing: .06em; cursor: pointer; text-decoration: none;
}
.btn-line:hover { background: rgba(255,212,0,.08); }
.btn-line::before { content: "★"; }

/* ============== TOAST STACK ============== */
.toasts { position: fixed; right: 24px; bottom: 84px; z-index: 30; display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.toast {
  background: #0a1612; border: 1px solid var(--lv-mint); padding: 10px 12px;
  box-shadow: 0 0 0 1px var(--lv-mint), 0 0 28px rgba(46,230,166,.25);
  display: flex; gap: 10px; align-items: flex-start;
}
.toast img { width: 18px; height: 18px; opacity: .95; image-rendering: pixelated; }
.toast .body { font-family: var(--font-mono); font-size: 12px; color: var(--lv-cream); line-height: 1.4; }
.toast .h { font-family: var(--font-pixel); font-size: 10px; letter-spacing: .06em; color: var(--lv-mint); display: block; margin-bottom: 2px; }
.toast .x { font-family: var(--font-pixel); font-size: 10px; color: var(--lv-mint); display: block; margin-top: 4px; }

/* Toast tone variants */
.toast.t-scanned { background: #0a1612; border-color: var(--lv-mint); box-shadow: 0 0 0 1px var(--lv-mint), 0 0 28px rgba(46,230,166,.25); }
.toast.t-scanned .h, .toast.t-scanned .x { color: var(--lv-mint); }
.toast.t-unlocked, .toast.t-xp { background: #1a1605; border-color: var(--lv-yellow); box-shadow: 0 0 0 1px var(--lv-yellow), 0 0 28px rgba(255,212,0,.28); }
.toast.t-unlocked .h, .toast.t-unlocked .x, .toast.t-xp .h, .toast.t-xp .x { color: var(--lv-yellow); }
.toast.t-secret { background: #1a1605; border-color: var(--lv-yellow); box-shadow: 0 0 0 1px var(--lv-yellow), 0 0 32px rgba(255,212,0,.5); animation: secretPulse .9s steps(2,end) 2; }
@keyframes secretPulse { 50% { box-shadow: 0 0 0 1px var(--lv-yellow), 0 0 56px rgba(255,212,0,.85); } }
.toast.t-secret .h, .toast.t-secret .x { color: var(--lv-yellow); }
.toast.t-locked { background: #1f0a0d; border-color: var(--lv-red); box-shadow: 0 0 0 1px var(--lv-red), 0 0 28px rgba(255,61,85,.25); }
.toast.t-locked .h, .toast.t-locked .x { color: var(--lv-red); }
.toast.t-endgame { background: #0a1612; border-color: var(--lv-mint); box-shadow: 0 0 0 1px var(--lv-mint), 0 0 36px rgba(46,230,166,.4); }
.toast.t-endgame .h, .toast.t-endgame .x { color: var(--lv-mint); }

/* ============== SFX TOGGLE ============== */
.sfx-toggle {
  position: fixed; right: 24px; bottom: 24px; z-index: 35;
  width: 42px; height: 42px;
  border: 1px solid var(--lv-yellow); background: #000;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-family: var(--font-pixel); font-size: 10px; color: var(--lv-yellow); letter-spacing: .05em;
  transition: border-color .15s, color .15s;
}
.sfx-toggle::after {
  content: ""; width: 6px; height: 6px; background: var(--lv-mint);
  box-shadow: 0 0 8px var(--lv-mint);
  position: absolute; bottom: 5px; right: 5px;
}
.sfx-toggle.off { color: var(--lv-muted-2); border-color: var(--lv-line); }
.sfx-toggle.off::after { display: none; }
/* Diagonal mute slash makes the OFF state unmistakable at a glance —
   the colour-only difference is too subtle at 42×42 px. */
.sfx-toggle.off::before {
  content: "";
  position: absolute;
  left: 6px; right: 6px; top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: var(--lv-muted-2);
  transform: rotate(-22deg);
  pointer-events: none;
}
.sfx-toggle:hover { border-color: var(--lv-mint); }

/* ============== DAILY STRIP (drop + quest) ============== */
.daily-strip { display: grid; grid-template-columns: 1.1fr 1fr; gap: 16px; margin-top: 0; }
.drop-card { background: #000; border: 1px solid var(--lv-yellow); }
.drop-card .h {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--lv-line-yellow);
  font-family: var(--font-pixel); font-size: 10px; color: var(--lv-yellow); letter-spacing: .06em;
}
.drop-card .h .timer { color: var(--lv-mint); }
.drop-card .b { padding: 18px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; }
.drop-card .lid {
  width: 64px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, var(--lv-yellow) 0 5px, #c39a00 5px 10px);
  border: 2px solid var(--lv-yellow);
  font-family: var(--font-pixel); font-size: 22px; color: #000;
  text-shadow: 1px 1px 0 rgba(255,255,255,.4);
}
.drop-card.opened .lid { background: #0a0e0c; border-color: var(--lv-mint); color: var(--lv-mint); text-shadow: none; }
.drop-card .info h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; line-height: .95; color: var(--lv-cream); margin: 0 0 4px; letter-spacing: .005em; }
.drop-card .info h3 .kw { color: var(--lv-yellow); position: relative; display: inline-block; padding-bottom: .04em; }
.drop-card .info h3 .kw::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .06em; background: var(--lv-yellow); opacity: .65; }
.drop-card .info p { font-family: var(--font-mono); font-size: 12px; color: var(--lv-muted-2); margin: 0; line-height: 1.5; }
.drop-card .info p b { color: var(--lv-cream); font-weight: 500; }
.drop-card .open {
  font-family: var(--font-pixel); font-size: 10px; letter-spacing: .08em;
  padding: 13px 16px; background: var(--lv-yellow); color: #000;
  border: 0; cursor: pointer; box-shadow: 3px 3px 0 0 #c39a00;
  transition: transform .12s, box-shadow .12s; white-space: nowrap;
}
.drop-card .open:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 #c39a00; }
.drop-card .open:active { transform: translate(2px,2px); box-shadow: 0 0 0 0 #c39a00; }
.drop-card.opened .open { background: transparent; color: var(--lv-mint); border: 1px solid var(--lv-mint); box-shadow: none; }

.quest-card { background: var(--lv-ink); border: 1px solid var(--lv-line); padding: 14px 16px; }
.quest-card .h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-pixel); font-size: 10px; color: var(--lv-muted-2); letter-spacing: .06em;
  padding-bottom: 10px; border-bottom: 1px solid var(--lv-line); margin-bottom: 12px;
}
.quest-card .h .reward { color: var(--lv-yellow); }
.quest-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; line-height: 1; color: var(--lv-cream); margin: 0 0 6px; letter-spacing: .005em; }
.quest-card h3 .kw { color: var(--lv-yellow); position: relative; display: inline-block; padding-bottom: .04em; }
.quest-card h3 .kw::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .06em; background: var(--lv-yellow); opacity: .65; }
.quest-card p { font-family: var(--font-mono); font-size: 12px; color: var(--lv-muted-2); margin: 0 0 10px; line-height: 1.5; }
.quest-card p b { color: var(--lv-yellow); font-weight: 500; }
.quest-card .pbar { height: 5px; background: #1a1a14; border: 1px solid var(--lv-line-yellow); position: relative; }
.quest-card .pbar > i { display: block; height: 100%; width: 33%; background: repeating-linear-gradient(135deg, var(--lv-yellow) 0 4px, #c39a00 4px 8px); transition: width .4s ease; }
.quest-card .pmeta { display: flex; justify-content: space-between; margin-top: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; }
.quest-card .pmeta b { color: var(--lv-cream); }

/* Hidden L easter egg — footer hover reveal.
   Bumped above the toast (z:30) and SFX toggle (z:35) so a click always wins,
   even when the fixed-position UI hovers over its spot at the bottom-right. */
footer .ee { width: 18px; height: 18px; opacity: .55; image-rendering: pixelated; transition: opacity .2s, filter .3s; cursor: pointer; position: relative; z-index: 36; }
footer .ee:hover { opacity: 1; }
footer .ee.found { opacity: 1; filter: drop-shadow(0 0 8px var(--lv-yellow)) drop-shadow(0 0 16px var(--lv-yellow)); }

/* ============== PROFILE ============== */
.profile { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.profile h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(48px, 7vw, 96px); line-height: .92; letter-spacing: -.01em; margin: 0; }
.profile-portrait {
  margin-top: 32px; aspect-ratio: 1/1; background: #0a0e0c; border: 2px solid var(--lv-line);
  max-width: 340px; display: flex; align-items: flex-end; justify-content: center;
  position: relative; overflow: hidden;
}
.profile-portrait img { width: 90%; image-rendering: pixelated; transform: translateY(4%); }
.profile-portrait .corner { position: absolute; font-family: var(--font-pixel); font-size: 9px; color: var(--lv-yellow); padding: 8px; letter-spacing: .06em; }
.profile-portrait .c-tl { top: 0; left: 0; }
.profile-portrait .c-tr { top: 0; right: 0; }
.profile-portrait .c-bl { bottom: 0; left: 0; color: var(--lv-mint); }
.profile-portrait .c-br { bottom: 0; right: 0; color: var(--lv-muted-2); }
.profile p { font-family: var(--font-mono); font-size: 15px; color: var(--lv-cream); line-height: 1.6; margin: 24px 0 12px; max-width: 48ch; }
.profile p b { color: var(--lv-yellow); font-weight: 500; }
.profile p .mint { color: var(--lv-mint); }
.profile-card { background: var(--lv-ink); border: 2px solid var(--lv-yellow); padding: 20px; }
.profile-card .ph { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--lv-line-yellow); font-family: var(--font-pixel); font-size: 10px; letter-spacing: .06em; color: var(--lv-yellow); }
.profile-card .ph .online { color: var(--lv-mint); display: flex; align-items: center; gap: 6px; }
.profile-card .ph .online::before { content: ""; width: 6px; height: 6px; background: var(--lv-mint); border-radius: 50%; box-shadow: 0 0 8px var(--lv-mint); }
.profile-card .name { font-family: var(--font-display); text-transform: uppercase; font-size: 48px; line-height: .95; letter-spacing: .005em; color: var(--lv-yellow); margin: 20px 0 4px; }
.profile-card .role { font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .1em; text-transform: uppercase; }
.profile-card .role b { color: var(--lv-cream); font-weight: 500; }
.profile-card .stats { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--lv-line-yellow); }
.profile-card .stat { display: grid; grid-template-columns: 46px 1fr 70px; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; }
.profile-card .stat .bar { height: 8px; background: #1a1a14; border: 1px solid var(--lv-line-yellow); }
.profile-card .stat .bar > span { display: block; height: 100%; }
.profile-card .stat .num { text-align: right; color: var(--lv-cream); }
.profile-card .tags { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--lv-line-yellow); display: flex; gap: 8px; flex-wrap: wrap; }
.profile-card .tag { font-family: var(--font-pixel); font-size: 10px; padding: 5px 8px; border: 1px solid var(--lv-yellow); color: var(--lv-yellow); letter-spacing: .05em; }

/* ============== ROADMAP ============== */
.roadmap { display: flex; flex-direction: column; gap: 14px; position: relative; }
.roadmap::before { content: ""; position: absolute; left: 32px; top: 14px; bottom: 14px; width: 1px; background: var(--lv-line); }
.lvl {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center;
  padding: 18px 20px 18px 0; border: 2px solid var(--lv-line); background: var(--lv-ink);
}
.lvl .lvl-box {
  align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--lv-line); color: var(--lv-muted-2);
  font-family: var(--font-pixel); font-size: 9px; line-height: 1.1; letter-spacing: .06em;
  padding: 10px; min-height: 54px;
}
.lvl .lvl-box big { font-size: 18px; }
.lvl.passed .lvl-box { background: var(--lv-ink-3); color: var(--lv-muted); }
.lvl.current { border-color: var(--lv-mint); box-shadow: inset 0 -3px 0 0 var(--lv-mint); }
.lvl.current .lvl-box { background: var(--lv-mint); color: #000; }
.lvl.coming { border-color: var(--lv-yellow); }
.lvl.coming .lvl-box { background: var(--lv-yellow); color: #000; }
.lvl.locked .lvl-box { background: var(--lv-line); color: var(--lv-muted); }
.lvl .info { display: flex; flex-direction: column; gap: 4px; }
.lvl .info .yr { font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; display: flex; gap: 8px; align-items: center; }
.lvl .info .yr .now { background: var(--lv-mint); color: #000; padding: 2px 5px; font-family: var(--font-pixel); font-size: 9px; letter-spacing: .05em; }
.lvl .info .yr .next { background: var(--lv-yellow); color: #000; padding: 2px 5px; font-family: var(--font-pixel); font-size: 9px; letter-spacing: .05em; }
.lvl .info .ttl { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; line-height: 1; color: var(--lv-cream); letter-spacing: .005em; }
.lvl.current .info .ttl { color: var(--lv-mint); }
.lvl.coming  .info .ttl { color: var(--lv-yellow); }
.lvl.locked  .info .ttl { color: var(--lv-muted); }
.lvl .info .desc { font-family: var(--font-mono); font-size: 12px; color: var(--lv-muted-2); }

/* ============== PRODUCTS / SLOTS ============== */
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.slot {
  background: var(--lv-ink); border: 2px solid var(--lv-line);
  display: flex; flex-direction: column;
}
.slot.filled { border-color: var(--lv-yellow); }
.slot.locked { cursor: pointer; }
.slot .sh { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--lv-line); font-family: var(--font-pixel); font-size: 10px; letter-spacing: .06em; color: var(--lv-muted-2); }
.slot.filled .sh { color: var(--lv-yellow); }
.slot .well {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(rgba(255,212,0,.05) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, rgba(255,212,0,.05) 1px, transparent 1px) 0 0/24px 24px,
    #0a0a08;
  position: relative;
}
.slot .well .icon { width: 96px; height: 120px; border: 2px solid var(--lv-yellow); display: flex; align-items: center; justify-content: center; color: var(--lv-yellow); font-size: 36px; }
.slot .well .qmark { font-family: var(--font-pixel); font-size: 64px; color: var(--lv-muted); position: relative; }
.slot:not(.filled) .well .ee { position: absolute; bottom: 14px; right: 14px; width: 18px; opacity: 0; transition: opacity .2s; image-rendering: pixelated; }
.slot:not(.filled):hover .well .ee { opacity: .6; }

.slot .info { padding: 14px 16px; border-top: 1px solid var(--lv-line); display: flex; flex-direction: column; gap: 8px; }
.slot .info .lbl { font-family: var(--font-pixel); font-size: 10px; letter-spacing: .06em; color: var(--lv-yellow); }
.slot.locked .info .lbl { color: var(--lv-muted-2); }
.slot .info h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; margin: 0; line-height: 1; letter-spacing: .005em; color: var(--lv-yellow); }
.slot.locked .info h4 { color: var(--lv-muted); }
.slot .info .platforms { display: flex; gap: 6px; }
.slot .info .platforms span { font-family: var(--font-pixel); font-size: 9px; padding: 4px 7px; border: 1px solid var(--lv-yellow); color: var(--lv-yellow); letter-spacing: .06em; }
.slot .info .desc { font-family: var(--font-mono); font-size: 12px; color: var(--lv-muted-2); }
.slot .foot { display: flex; justify-content: space-between; padding: 10px 16px; border-top: 1px solid var(--lv-line); font-family: var(--font-mono); font-size: 11px; color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase; }
.slot.filled .foot { color: var(--lv-yellow); }
.slot.filled .foot .a { color: var(--lv-yellow); }

/* ============== GAMING PROFILE (Supercell HUD) ==============
   Three player cards in a grid (Brawl Stars / Clash of Clans / Clash
   Royale). Visual language mirrors .profile-card and .card: yellow-frame
   on dark ink, mono labels, pixel headers, mint/yellow/blue stat bars.
   Content is rendered by script.js renderGamingProfile() — mock first,
   then upgraded if /api/gaming-profile returns valid JSON. */
.gp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gp-card {
  background: var(--lv-ink); border: 2px solid var(--lv-yellow);
  padding: 20px; display: flex; flex-direction: column; gap: 14px;
}
.gp-card .gp-h {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--lv-line-yellow);
  font-family: var(--font-pixel); font-size: 10px; letter-spacing: .08em;
}
.gp-card .gp-game { color: var(--lv-yellow); text-transform: uppercase; }
.gp-card .gp-status {
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: .05em;
  padding: 3px 6px; border: 1px solid; text-transform: uppercase;
}
.gp-card .gp-status[data-status="live"] {
  color: var(--lv-mint); border-color: var(--lv-mint);
  background: rgba(46, 230, 166, .08);
}
.gp-card .gp-status[data-status="mock"] {
  color: var(--lv-muted-2); border-color: var(--lv-muted-2);
}
.gp-card .gp-id { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.gp-card .gp-name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 32px; line-height: .95; letter-spacing: .005em;
  color: var(--lv-yellow);
}
.gp-card .gp-tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--lv-muted-2); letter-spacing: .08em;
}
.gp-card .gp-stats {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--lv-line-yellow);
}
.gp-card .gp-stat {
  display: grid; grid-template-columns: 78px 1fr 64px;
  align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase;
}
.gp-card .gp-stat .gp-val { text-align: right; color: var(--lv-cream); }
.gp-card .gp-bar { height: 6px; background: var(--lv-ink-3); position: relative; }
.gp-card .gp-bar > span {
  display: block; height: 100%; width: 0;
  background: var(--lv-yellow);
  transition: width .6s var(--ease-snap);
}
.gp-card .gp-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--lv-line);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lv-muted-2); letter-spacing: .08em; text-transform: uppercase;
}
.gp-card .gp-foot b { color: var(--lv-yellow); font-weight: 500; }

/* Public-profile link (e.g. BrawlBoost on the Brawl Stars card). Small
   mint-bordered pill, left-aligned at the bottom of the card. Mint
   accent matches the .gp-status[data-status="live"] vocabulary so a
   future LIVE swap reads as a single coherent palette. */
.gp-card .gp-link {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--lv-mint);
  border: 1px solid var(--lv-mint);
  padding: 6px 10px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.gp-card .gp-link:hover {
  background: rgba(46, 230, 166, .1);
}

/* ============== CONTACT / PRESS START ============== */
.contact { text-align: center; padding: 128px 0 32px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.contact .chip { font-family: var(--font-pixel); font-size: 11px; color: var(--lv-yellow); border: 1px solid var(--lv-yellow); padding: 6px 12px; letter-spacing: .06em; display: inline-flex; gap: 8px; }
.contact .chip::before { content: "◆"; color: var(--lv-yellow); }
.contact .char { width: 140px; aspect-ratio: 1/1.05; background: #0a0e0c; border: 1px solid var(--lv-line); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; position: relative; }
.contact .char::before { content: "★ ONLINE"; position: absolute; top: 6px; left: 8px; font-family: var(--font-pixel); font-size: 8px; color: var(--lv-mint); letter-spacing: .06em; }
.contact .char::after { content: "LVL 99"; position: absolute; top: 6px; right: 8px; font-family: var(--font-pixel); font-size: 8px; color: var(--lv-yellow); letter-spacing: .05em; }
.contact .char img { width: 85%; image-rendering: pixelated; transform: translateY(6%); }
.contact h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(56px, 9vw, 120px); line-height: .95; letter-spacing: .005em; margin: 8px 0 0; color: var(--lv-cream); }
.contact h2 .l1 { display: inline; color: var(--lv-cream); }
.contact h2 .l2 { color: var(--lv-yellow); }
.contact .email {
  margin-top: 16px; padding: 18px 28px; border: 2px solid var(--lv-yellow);
  font-family: var(--font-mono); font-size: 22px; color: var(--lv-yellow);
  background: transparent; cursor: pointer; letter-spacing: .02em; line-height: 1;
  text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  transition: background .15s, color .15s;
}
.contact .email::before { content: "▸"; font-family: var(--font-pixel); font-size: 14px; color: var(--lv-mint); }
.contact .email:hover { background: var(--lv-yellow); color: #000; }
.contact .email:hover::before { color: #000; }
.contact .socials { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.contact .socials a {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; min-width: 88px; justify-content: center;
  border: 1px solid var(--lv-line); color: var(--lv-cream);
  font-family: var(--font-pixel); font-size: 11px; letter-spacing: .08em; text-decoration: none;
  transition: border-color .15s, color .15s;
}
.contact .socials a:hover { border-color: var(--lv-yellow); color: var(--lv-yellow); }

/* ============== FOOTER ============== */
footer {
  border-top: 1px solid var(--lv-line); margin-top: 64px;
  /* Reserve bottom room so the fixed SFX toggle (bottom-right, 42px + 24px gap)
     and the toast stack do not overlap or steal clicks from the hidden L mark. */
  padding: 18px 40px 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  font-family: var(--font-pixel); font-size: 10px; color: var(--lv-muted-2); letter-spacing: .06em;
}
footer .left { display: flex; gap: 18px; }
footer .mid { font-family: var(--font-mono); }
footer .right { display: flex; justify-content: flex-end; gap: 10px; align-items: center; }

/* ============================================================
   BOOT OVERLAY — scoped under #boot-overlay so .well / .stage / .bar
   class names cannot collide with the live site below.
   Lifted from directions/boot.html, simplified to a static boot card.
   ============================================================ */
#boot-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: #000; color: var(--lv-cream);
  font-family: var(--font-mono); cursor: pointer;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 32px 40px;
  opacity: 1; transition: opacity .45s ease-out, visibility 0s linear 0s;
}
#boot-overlay[hidden] { display: none !important; }
#boot-overlay.fading { opacity: 0; pointer-events: none; transition: opacity .45s ease-out, visibility 0s linear .45s; }
#boot-overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.65) 100%),
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,.28) 2px, rgba(0,0,0,.28) 3px);
}
#boot-overlay::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 6; opacity: .06;
  background: repeating-linear-gradient(90deg, rgba(255,212,0,.6) 0 1px, transparent 1px 2px);
}

#boot-overlay .boot-top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: #5f5e57;
  letter-spacing: .16em; text-transform: uppercase;
}
#boot-overlay .boot-top .grp { display: flex; gap: 32px; flex-wrap: wrap; }
#boot-overlay .boot-top b { color: var(--lv-yellow); font-weight: 400; }
#boot-overlay .boot-top .dots { display: flex; gap: 4px; align-items: center; }
#boot-overlay .boot-top .dots i { width: 6px; height: 6px; background: #1a1a14; display: block; }
#boot-overlay .boot-top .dots i.on { background: var(--lv-mint); box-shadow: 0 0 6px var(--lv-mint); }

#boot-overlay .boot-stage {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 22px;
  padding: 16px 0;
}

/* Small SYS strip just under the topbar (above the logo) */
#boot-overlay .boot-submeta {
  font-family: var(--font-mono); font-size: 12px;
  color: #5f5e57; letter-spacing: .22em; text-transform: uppercase;
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: center;
  animation: boot-fade-in .25s ease-out .1s both;
}
#boot-overlay .boot-submeta b { color: var(--lv-yellow); font-weight: 400; }

#boot-overlay .boot-logo {
  font-family: var(--font-pixel);
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: .04em; color: var(--lv-yellow);
  animation: boot-fade-up .5s var(--ease-snap) .2s both;
}
#boot-overlay .boot-logo .cur {
  display: inline-block; width: .5em; height: .9em;
  background: var(--lv-mint); transform: skewX(-12deg);
  vertical-align: -.05em; margin: 0 .14em;
  animation: boot-blink 800ms steps(2,end) infinite;
}
@keyframes boot-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes boot-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes boot-blink { 50% { opacity: 0; } }

/* Player avatar well — staged build:
   seed dot → horizontal mint line → line gains height → frame settles to dim
   warm border → background grid fades in → avatar scan-reveals → corner labels
   stagger in → mint "scan complete" flash. All synthesized with one clip-path
   keyframe + a stack of small transitions, no fluff. */
#boot-overlay .boot-well {
  width: 200px; height: 240px; position: relative;
  border: 2px solid transparent;
  background: transparent;
  /* Initial state: fully clipped to a one-pixel seed in the center.
     The .building class drives the build keyframe; .built later layers
     in the inner scanline grid. */
  clip-path: inset(50% 49% 50% 49%);
  overflow: hidden;
}
#boot-overlay .boot-well.building {
  animation: boot-well-build 1.6s var(--ease-snap) .2s forwards;
}
/* PERSISTENT visible state.
   The build keyframe REVEALS the card. This class KEEPS it visible
   after any later animation (.scan-complete) replaces the `animation`
   shorthand and wipes the build's forwards fill. Static rules can't
   be cancelled by a subsequent `animation:` declaration. */
#boot-overlay .boot-well.player-ready {
  clip-path: inset(0);
  border-color: var(--lv-line);
  background-color: #0a0a08;
}
/* Subtle "locked-in" warm glow that lingers after .scan-complete fades.
   Only kicks in once player-ready is set, so it never appears before
   the card is fully built. */
#boot-overlay .boot-well.player-ready.locked-in {
  box-shadow: 0 0 0 1px rgba(255,212,0,.18), 0 0 16px rgba(255,212,0,.08);
  transition: box-shadow .6s var(--ease-snap);
}
@keyframes boot-well-build {
  /* Stage 1 — invisible: clipped to a one-pixel seed in the center, nothing painted. */
  0%   { clip-path: inset(50% 49.5% 50% 49.5%); border-color: transparent; background-color: transparent; }
  /* Stage 2 — seed dot: mint background visible through the tiny aperture. */
  6%   { clip-path: inset(49.5% 49.5% 49.5% 49.5%); border-color: transparent; background-color: var(--lv-mint); }
  /* Stage 3 — horizontal mint line, full width, 1-pixel tall. */
  14%  { clip-path: inset(49.5% 0 49.5% 0); border-color: transparent; background-color: var(--lv-mint); }
  /* Stage 4 — line gains thickness, becoming a narrow mint band. */
  28%  { clip-path: inset(42% 0 42% 0); border-color: transparent; background-color: var(--lv-mint); }
  /* Stage 5 — band keeps growing, mint starts dimming as the frame emerges. */
  46%  { clip-path: inset(20% 0 20% 0); border-color: var(--lv-mint); background-color: rgba(46,230,166,.4); }
  /* Stage 6 — full reveal, mint frame brightly outlined, inside dimming. */
  64%  { clip-path: inset(0); border-color: var(--lv-mint); background-color: rgba(10,10,8,.7); }
  /* Stage 7 — settled dark fill, mint frame still hot. */
  82%  { clip-path: inset(0); border-color: var(--lv-mint); background-color: #0a0a08; }
  /* Stage 8 — frame cools to the standard dim warm border. */
  100% { clip-path: inset(0); border-color: var(--lv-line); background-color: #0a0a08; }
}
/* Once the build keyframe is done we paint in the subtle inner grid that
   matches the rest of the LineVerse wells. */
#boot-overlay .boot-well.built {
  background-image:
    linear-gradient(rgba(255,212,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,212,0,.05) 1px, transparent 1px);
  background-size: 16px 16px, 16px 16px;
  transition: background-image .4s ease;
}

#boot-overlay .boot-well .ch {
  position: absolute; inset: 0;
  background: url('assets/character-pixel-md.png') center 96%/auto 102% no-repeat;
  clip-path: inset(100% 0 0 0);
  image-rendering: pixelated;
  z-index: 1;
}
#boot-overlay .boot-well .ch.up { animation: boot-scan-down .9s linear forwards; }
@keyframes boot-scan-down { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
/* Persistent revealed state for the avatar. Same rationale as
   .player-ready on the well: any future animation on .ch would replace
   the `boot-scan-down forwards` fill, so we lock the final clip-path
   into a static class. */
#boot-overlay .boot-well .ch.sprite-revealed { clip-path: inset(0 0 0 0); }
#boot-overlay .boot-well .scan {
  position: absolute; left: -2px; right: -2px; height: 2px;
  background: var(--lv-mint); box-shadow: 0 0 12px var(--lv-mint);
  top: 100%; opacity: 0; z-index: 1;
}
#boot-overlay .boot-well .scan.up { animation: boot-scan-line .9s linear forwards; }
@keyframes boot-scan-line {
  /* CRT scan-line: travels at constant speed (linear), but stays bright in
     the middle and only fades at the entry/exit so the eye reads a crisp
     bar of light, not a constantly-dimming smear. */
  0%   { top: 100%; opacity: 0; }
  12%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 0%;   opacity: 0; }
}

/* Corner labels — start hidden, fade in only after .built. Staggered by corner. */
#boot-overlay .boot-well .corner {
  position: absolute; font-family: var(--font-pixel); font-size: 9px;
  color: var(--lv-yellow); padding: 6px; letter-spacing: .06em;
  z-index: 2;
  text-shadow: 1px 1px 0 #000, 0 0 4px #000;
  max-width: 60%; white-space: nowrap; overflow: hidden;
  opacity: 0;
  transition: opacity .4s var(--ease-snap);
}
#boot-overlay .boot-well.built .c-tl { opacity: 1; transition-delay: .05s; }
#boot-overlay .boot-well.built .c-tr { opacity: 1; transition-delay: .14s; }
#boot-overlay .boot-well.built .c-bl { opacity: 1; transition-delay: .22s; }
#boot-overlay .boot-well.built .c-br { opacity: 1; transition-delay: .3s;  }
#boot-overlay .boot-well .c-tl { top: 0; left: 0; }
#boot-overlay .boot-well .c-tr { top: 0; right: 0; text-align: right; }
#boot-overlay .boot-well .c-bl { bottom: 0; left: 0; color: var(--lv-mint); }
#boot-overlay .boot-well .c-br { bottom: 0; right: 0; color: #5f5e57; text-align: right; }

/* "Scan complete" — single short mint flash on the frame after avatar reveal.
   .4s — tight enough to feel like an event, long enough to be readable. */
#boot-overlay .boot-well.scan-complete { animation: boot-well-flash .4s var(--ease-snap); }
@keyframes boot-well-flash {
  0%   { box-shadow: 0 0 0 0 rgba(46,230,166,0);                                 border-color: var(--lv-line); }
  40%  { box-shadow: 0 0 0 1px var(--lv-mint), 0 0 22px rgba(46,230,166,.55);    border-color: var(--lv-mint); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,166,0);                                 border-color: var(--lv-line); }
}

@media (prefers-reduced-motion: reduce) {
  #boot-overlay .boot-well,
  #boot-overlay .boot-well.building,
  #boot-overlay .boot-well.scan-complete,
  #boot-overlay .boot-well.player-ready,
  #boot-overlay .boot-well.player-ready.locked-in {
    animation: none !important;
    clip-path: none !important;
    border-color: var(--lv-line) !important;
    background-color: #0a0a08;
    box-shadow: none !important;
  }
  #boot-overlay .boot-well .corner { opacity: 1 !important; transition: none !important; }
  #boot-overlay .boot-well .ch,
  #boot-overlay .boot-well .ch.sprite-revealed { clip-path: none !important; animation: none !important; }
  #boot-overlay .boot-well .scan { display: none; }
  #boot-overlay .boot-sfx-hint.shown { animation: none; opacity: .42; }
}

/* Terminal log — fixed-width, text-left, mint CRT body */
#boot-overlay .boot-term {
  font-family: var(--font-crt); font-size: 18px; color: var(--lv-mint);
  text-align: left; width: min(620px, 84vw); min-height: 200px;
  line-height: 1.4; letter-spacing: .04em;
  animation: boot-fade-in .25s ease-out .45s both;
}
#boot-overlay .boot-term .l {
  display: flex; justify-content: space-between; gap: 14px; opacity: 0;
  transform: translateX(-4px);
}
#boot-overlay .boot-term .l.in {
  animation: boot-term-line .22s var(--ease-snap) forwards;
}
@keyframes boot-term-line {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}
#boot-overlay .boot-term .l .ok { color: var(--lv-yellow); opacity: 0; transition: opacity .2s; }
#boot-overlay .boot-term .l .ok.show { opacity: 1; }
#boot-overlay .boot-term .l .ok.star { color: var(--lv-mint); }
#boot-overlay .boot-term .cur {
  display: inline-block; width: .5em; height: .85em;
  background: currentColor; vertical-align: -.05em; margin-left: .25em;
  animation: boot-blink 700ms steps(2,end) infinite;
}

#boot-overlay .boot-bar-row {
  width: min(620px, 84vw); display: flex; align-items: center; gap: 14px;
  animation: boot-fade-in .25s ease-out .55s both;
}
#boot-overlay .boot-bar {
  flex: 1; height: 18px; border: 2px solid var(--lv-yellow); position: relative; background: #000;
}
#boot-overlay .boot-bar > i {
  display: block; height: 100%; width: 0%;
  background: repeating-linear-gradient(135deg, var(--lv-yellow) 0 6px, #c39a00 6px 12px);
  /* Slightly longer + eased so jumps between pct steps feel like fluid fill
     instead of stepped ratchet. Brand ease-snap = decelerating arrive. */
  transition: width .35s var(--ease-snap);
}
#boot-overlay .boot-pct {
  font-family: var(--font-pixel); font-size: 14px;
  color: var(--lv-yellow); min-width: 56px; text-align: right; letter-spacing: .04em;
}

/* "Press any key" — pulsing mint TEXT, not a button */
#boot-overlay .boot-press-line {
  font-family: var(--font-pixel); font-size: 14px;
  color: var(--lv-mint); letter-spacing: .1em;
  opacity: 0; visibility: hidden;
}
#boot-overlay .boot-press-line.ready {
  opacity: 1; visibility: visible;
  animation: boot-fade-in .25s ease-out forwards, boot-pulse-text 900ms steps(2,end) .3s infinite;
}
@keyframes boot-pulse-text { 50% { opacity: .35; } }

/* Unobtrusive SFX opt-in chip in the top-right of the boot stage.
   It only appears via JS on a fresh visit while audio is still locked
   AND sfx is on; the moment the user interacts (audio unlocks) OR
   press-line goes .ready, JS adds .gone to fade it out. */
#boot-overlay .boot-sfx-hint {
  position: absolute;
  top: clamp(14px, 4vh, 28px);
  right: clamp(14px, 3.5vw, 32px);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--lv-mint); letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; visibility: hidden;
  pointer-events: none; user-select: none;
  transition: opacity .35s ease-out, visibility 0s linear .35s;
}
#boot-overlay .boot-sfx-hint.shown {
  visibility: visible;
  opacity: .42;
  transition: opacity .5s ease-out .9s, visibility 0s linear .9s;
  animation: boot-sfx-hint-blink 2.6s ease-in-out 1.4s infinite;
}
#boot-overlay .boot-sfx-hint.gone {
  /* Override .shown — fade out fast, then hide so it doesn't trap layout. */
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity .25s ease-out, visibility 0s linear .25s;
  animation: none;
}
@keyframes boot-sfx-hint-blink {
  0%, 100% { opacity: .42; }
  50%      { opacity: .18; }
}

#boot-overlay .boot-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-mono); font-size: 10px;
  color: #5f5e57; letter-spacing: .16em; text-transform: uppercase;
}
#boot-overlay .boot-bottom b { color: var(--lv-yellow); font-weight: 400; }
#boot-overlay .boot-bottom img { width: 14px; height: 14px; opacity: .55; image-rendering: pixelated; vertical-align: middle; margin-right: 6px; }

/* Tiny "restart intro" affordance in the live site */
.brand-logo { cursor: pointer; user-select: none; }
.brand-logo[title]:hover { color: var(--lv-yellow-soft) !important; }

@media (max-width: 880px) {
  #boot-overlay { padding: 24px 20px; }
  #boot-overlay .boot-stage { gap: 18px; }
  #boot-overlay .boot-well { width: 168px; height: 200px; }
  #boot-overlay .boot-term { font-size: 16px; min-height: 180px; }
}
@media (max-width: 520px) {
  #boot-overlay { padding: 16px 14px; }
  #boot-overlay .boot-top { font-size: 9px; gap: 12px; flex-wrap: wrap; }
  #boot-overlay .boot-top .grp { gap: 14px; }
  #boot-overlay .boot-top .dots { display: none; }
  #boot-overlay .boot-submeta { gap: 14px; font-size: 10px; letter-spacing: .12em; }
  #boot-overlay .boot-stage { gap: 14px; }
  #boot-overlay .boot-logo { font-size: 32px; }
  #boot-overlay .boot-well { width: 140px; height: 168px; }
  #boot-overlay .boot-well .corner { font-size: 7px; padding: 4px; }
  #boot-overlay .boot-term { font-size: 13px; min-height: 160px; line-height: 1.45; }
  #boot-overlay .boot-bar { height: 14px; }
  #boot-overlay .boot-pct { font-size: 11px; min-width: 46px; }
  #boot-overlay .boot-press-line { font-size: 11px; }
  #boot-overlay .boot-sfx-hint { font-size: 9px; letter-spacing: .1em; }
  #boot-overlay .boot-bottom { font-size: 9px; gap: 14px; }
  #boot-overlay .boot-bottom span:nth-child(2) { display: none; }
}
@media (max-height: 720px) {
  /* On short viewports (landscape phones / small laptops) make the
     boot stage shrink so nothing clips at the bottom. */
  #boot-overlay .boot-stage { gap: 14px; }
  #boot-overlay .boot-well { width: 140px; height: 168px; }
  #boot-overlay .boot-term { font-size: 14px; min-height: 150px; line-height: 1.35; }
}

/* ============================================================
   MICRO-INTERACTIONS / POLISH
   Small, additive transitions on existing elements. Never overrides
   the brand layer — adds easing, subtle lift, and short pulse cues.
   ============================================================ */

/* Hero: staged reveal — only on fresh boot, never on skip-reload.
   Gating on body.boot-fresh prevents the 0.85s-blank-then-fade visual
   when the user reloads inside the same tab and boot is hidden. */
body.boot-fresh .hero h1                       { animation: lv-stage-up .5s  var(--ease-snap) .85s both; }
body.boot-fresh .hero .sub                     { animation: lv-stage-up .5s  var(--ease-snap) 1.00s both; }
body.boot-fresh .hero .menu .item:nth-child(1) { animation: lv-stage-up .42s var(--ease-snap) 1.20s both; }
body.boot-fresh .hero .menu .item:nth-child(2) { animation: lv-stage-up .42s var(--ease-snap) 1.30s both; }
body.boot-fresh .hero .menu .item:nth-child(3) { animation: lv-stage-up .42s var(--ease-snap) 1.40s both; }
body.boot-fresh .hero .menu .item:nth-child(4) { animation: lv-stage-up .42s var(--ease-snap) 1.50s both; }
body.boot-fresh .hero .hud                     { animation: lv-stage-up .55s var(--ease-snap) 1.05s both; }
@keyframes lv-stage-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* XP pill: a short pulse when XP is added. JS toggles .xp-pulse. */
.xp-pill { transition: box-shadow .25s ease; }
.xp-pill.xp-pulse {
  animation: lv-xp-pulse .55s var(--ease-snap);
}
@keyframes lv-xp-pulse {
  0%   { background: #000; border-color: var(--lv-yellow); transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,212,0,0); }
  25%  { background: rgba(255,212,0,.18); border-color: var(--lv-yellow-soft); transform: scale(1.045); box-shadow: 0 0 0 1px var(--lv-yellow), 0 0 18px rgba(255,212,0,.4); }
  100% { background: #000; border-color: var(--lv-yellow); transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}

/* Toast: reveal/hide via opacity + transform. JS now toggles .visible
   instead of setting display directly. */
.toast {
  opacity: 0;
  transform: translateX(14px);
  pointer-events: none;
  transition: opacity .26s ease-out, transform .26s var(--ease-snap);
  will-change: opacity, transform;
}
.toast.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Card hover: a small lift + soft accent ring. Doesn't fight the
   existing border-color swap. Reused by .slot.filled below. */
.card,
.slot.filled,
.gp-card { transition: border-color .18s, transform .2s var(--ease-snap), box-shadow .25s ease; }
.card:hover,
.slot.filled:hover,
.gp-card:hover {
  border-color: var(--lv-yellow);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--lv-yellow-deep), 0 8px 18px rgba(255,212,0,.06);
}

/* Primary CTAs: Press Start button + btn-line + email — get a small lift
   on hover so the press↔release feels physical, not a flat color swap. */
.top .start button {
  transition: transform .15s var(--ease-snap),
              box-shadow .15s var(--ease-snap),
              background .15s ease;
}
.top .start button:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 0 #c39a00; }
.top .start button:active { transform: translate(2px, 2px); box-shadow: 0 0 0 0 #c39a00; }

.btn-line { transition: background .15s ease, transform .2s var(--ease-snap), border-color .15s ease; }
.btn-line:hover { transform: translateY(-1px); }

.contact .email { transition: background .15s ease, color .15s ease, transform .2s var(--ease-snap); }
.contact .email:hover { transform: translateY(-2px); }

.contact .socials a { transition: border-color .15s ease, color .15s ease, transform .18s var(--ease-snap), background .15s ease; }
.contact .socials a:hover { transform: translateY(-1px); background: rgba(255,212,0,.06); }

/* Hero menu items: small inward slide on hover so the list reads like
   a focused item is selected, not just a border swap. */
.hero .menu .item { transition: border-color .15s, background .15s, transform .15s var(--ease-snap); }
.hero .menu .item:not(.primary):hover { transform: translateX(2px); }

/* XP pill: tabular numerals so the digit width is stable. Without this,
   "1,400" → "1,450" causes a tiny layout shimmer when the pulse runs. */
.xp-pill b { font-variant-numeric: tabular-nums; }

/* SFX toggle: a tiny pulse the moment the user toggles state so the
   click registers visually beyond the icon swap. JS adds .sfx-toggled
   for 360ms. */
.sfx-toggle.sfx-toggled { animation: lv-sfx-tap .36s var(--ease-snap); }
@keyframes lv-sfx-tap {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(46,230,166,0); }
  35%  { transform: scale(1.12); box-shadow: 0 0 0 2px var(--lv-mint), 0 0 14px rgba(46,230,166,.45); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(46,230,166,0); }
}
.sfx-toggle.off.sfx-toggled { animation: lv-sfx-tap-off .36s var(--ease-snap); }
@keyframes lv-sfx-tap-off {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(107,102,90,0); }
  35%  { transform: scale(.92);  box-shadow: 0 0 0 2px var(--lv-muted), 0 0 10px rgba(107,102,90,.4); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(107,102,90,0); }
}

/* Daily Drop unlock: a single short flip + scale on the lid the moment
   it becomes .opened. JS toggles .lid-flip for one frame to trigger. */
.drop-card .lid { transition: background .25s ease, border-color .25s ease, color .25s ease; }
.drop-card.opened .lid.lid-flip { animation: lv-lid-flip .55s var(--ease-snap); }
@keyframes lv-lid-flip {
  0%   { transform: scale(1)    rotateZ(0);    box-shadow: 0 0 0 0 rgba(46,230,166,0); }
  35%  { transform: scale(1.08) rotateZ(-4deg); box-shadow: 0 0 0 1px var(--lv-mint), 0 0 18px rgba(46,230,166,.5); }
  70%  { transform: scale(.96)  rotateZ(2deg);  box-shadow: 0 0 0 1px var(--lv-mint), 0 0 10px rgba(46,230,166,.3); }
  100% { transform: scale(1)    rotateZ(0);    box-shadow: 0 0 0 0 rgba(46,230,166,0); }
}

/* Marquee: pause on hover so the eye can read the rotation without
   chasing it. Tiny touch but feels like the system respects you. */
.marquee:hover .track { animation-play-state: paused; }

/* SECTION STAGED REVEAL.
   IntersectionObserver in script.js adds .in-view when a section
   enters viewport. Children animate up in sequence: chip → idx → h2
   → content. One-shot, never replays — the observer unobserves
   on first hit. */
section:not(.hero) .sec-head .chip,
section:not(.hero) .sec-head .idx,
section:not(.hero) .sec-head h2,
section:not(.hero) .channels,
section:not(.hero) .drops,
section:not(.hero) .drops-cta,
section:not(.hero) .roadmap,
section:not(.hero) .slots,
section:not(.hero) .profile,
section:not(.hero) .daily-strip,
section:not(.hero) .gp-grid,
section.contact .chip,
section.contact .char,
section.contact h2,
section.contact .email,
section.contact .socials {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease-snap), transform .5s var(--ease-snap);
}
section.in-view .sec-head .chip       { opacity: 1; transform: none; transition-delay: .05s; }
section.in-view .sec-head .idx        { opacity: 1; transform: none; transition-delay: .1s;  }
section.in-view .sec-head h2          { opacity: 1; transform: none; transition-delay: .15s; }
section.in-view .channels,
section.in-view .drops,
section.in-view .daily-strip          { opacity: 1; transform: none; transition-delay: .25s; }
section.in-view .roadmap,
section.in-view .slots,
section.in-view .profile,
section.in-view .gp-grid              { opacity: 1; transform: none; transition-delay: .25s; }
section.in-view .drops-cta            { opacity: 1; transform: none; transition-delay: .4s; }
section.contact.in-view .chip         { opacity: 1; transform: none; transition-delay: .05s; }
section.contact.in-view .char         { opacity: 1; transform: none; transition-delay: .15s; }
section.contact.in-view h2            { opacity: 1; transform: none; transition-delay: .25s; }
section.contact.in-view .email        { opacity: 1; transform: none; transition-delay: .35s; }
section.contact.in-view .socials      { opacity: 1; transform: none; transition-delay: .45s; }

/* Slot: a brief red border flash + small shake when the user clicks a
   locked slot. JS adds .denied for 600ms. */
.slot { transition: border-color .18s, transform .2s; }
.slot.locked.denied {
  animation: lv-slot-deny .55s cubic-bezier(.36,.07,.19,.97);
  border-color: var(--lv-red);
  box-shadow: 0 0 0 1px var(--lv-red), 0 0 18px rgba(255,61,85,.18);
}
@keyframes lv-slot-deny {
  0%, 100% { transform: translateX(0); }
  18%, 58% { transform: translateX(-3px); }
  38%, 78% { transform: translateX(3px); }
}

/* Hidden L: a short bounce on find — sits on top of the persistent .found glow. */
footer .ee.find-burst {
  animation: lv-ee-burst .6s var(--ease-snap);
}
@keyframes lv-ee-burst {
  0%   { transform: scale(1);   filter: drop-shadow(0 0 0 var(--lv-yellow)); }
  35%  { transform: scale(1.7); filter: drop-shadow(0 0 14px var(--lv-yellow)) drop-shadow(0 0 28px var(--lv-yellow)); }
  70%  { transform: scale(.92); filter: drop-shadow(0 0 8px var(--lv-yellow)); }
  100% { transform: scale(1);   filter: drop-shadow(0 0 8px var(--lv-yellow)) drop-shadow(0 0 16px var(--lv-yellow)); }
}

@media (prefers-reduced-motion: reduce) {
  body.boot-fresh .hero h1,
  body.boot-fresh .hero .sub,
  body.boot-fresh .hero .menu .item,
  body.boot-fresh .hero .hud { animation: none !important; }
  .xp-pill.xp-pulse, .slot.locked.denied, footer .ee.find-burst,
  .sfx-toggle.sfx-toggled, .drop-card.opened .lid.lid-flip { animation: none !important; }
  .toast { transition: none !important; }
  .card:hover, .slot.filled:hover, .gp-card:hover,
  .top .start button:hover, .btn-line:hover,
  .contact .email:hover, .contact .socials a:hover,
  .hero .menu .item:hover { transform: none !important; }
  .gp-card .gp-bar > span { transition: none !important; }
  .marquee:hover .track { animation-play-state: running !important; }
  /* Staged reveal: show everything immediately. */
  section:not(.hero) .sec-head .chip,
  section:not(.hero) .sec-head .idx,
  section:not(.hero) .sec-head h2,
  section:not(.hero) .channels,
  section:not(.hero) .drops,
  section:not(.hero) .drops-cta,
  section:not(.hero) .roadmap,
  section:not(.hero) .slots,
  section:not(.hero) .profile,
  section:not(.hero) .daily-strip,
  section:not(.hero) .gp-grid,
  section.contact .chip,
  section.contact .char,
  section.contact h2,
  section.contact .email,
  section.contact .socials {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============== MOBILE ============== */
@media (max-width: 880px) {
  .top { grid-template-columns: 1fr auto; padding: 14px 20px; }
  .top nav { display: none; }
  .wrap { padding: 0 20px; }
  section { padding: 80px 0 0; }
  .hero .row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 64px; }
  .hud { margin-top: 0; }
  .channels, .drops, .slots, .gp-grid { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile-portrait { max-width: none; }
  .lvl { grid-template-columns: 54px 1fr; }
  .lvl .badge { grid-column: 1/-1; justify-self: start; }
  /* Mobile bottom layout:
       Right side: SFX toggle (16) + toast band (80).
       Left side:  XP pill — moved off the right edge so it can't overlap
                   either the bottom-right stack OR the right-side menu-item
                   keys ([1], [2], [3], NEW) inside the hero menu. */
  .xp-pill { top: auto; bottom: 16px; left: 16px; right: auto; }
  /* Hide section-aware toasts on mobile to free space, but keep clicked toasts */
  .toasts { display: none; }
  .toasts.force-show { display: flex; bottom: 80px; right: 16px; max-width: 240px; }
  .sfx-toggle { right: 16px; bottom: 16px; }
  .daily-strip { grid-template-columns: 1fr; }
  .drop-card .b { grid-template-columns: 1fr; gap: 14px; }
  footer { grid-template-columns: 1fr; gap: 8px; text-align: center; padding: 18px 20px; }
  footer .left, footer .right { justify-content: center; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 44px; }
  .top .start button { padding: 9px 12px; font-size: 10px; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head .idx { justify-self: start; }
  .contact h2 { font-size: 44px; }
  .contact .email { font-size: 17px; padding: 14px 18px; }
}
@media (max-width: 380px) {
  /* Below brand spec minimum (375), but iPhone SE / small Androids still
     reach 320–360. At 22px Press Start 2P, LINE/VERSE alone is ~246px wide
     and pushes the header past 320 once the PRESS START button + padding
     are factored in. Shrink the logo + tighten chrome so it fits at 320. */
  .top { padding: 12px 14px; }
  .top .logo { font-size: 18px; }
  .top .start button { padding: 9px 10px; font-size: 9px; letter-spacing: .04em; }
}

/* ============================================================
   MOBILE TAP TARGETS
   iOS HIG / Android Material both recommend ≥44px for any interactive
   element. The header logo, Press Start, and social buttons were
   reading 28-42px on small viewports; this pass extends their tap
   area without enlarging the visible glyph. ============================ */
@media (max-width: 880px) {
  /* Brand logo: expand the clickable area without changing the visual
     size of the logo. Negative margin keeps the layout identical. */
  .brand-logo {
    padding: 12px 6px;
    margin: -12px -6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Press Start: maintain the original button width but guarantee
     vertical tap room. */
  .top .start button { min-height: 44px; }
  /* Social buttons (contact section): pad them up to 44px. */
  .contact .socials a { padding: 13px 18px; min-height: 44px; }
  /* The btn-line (ВСЕ ВИДЕО) — also ensure 44px. */
  .btn-line { min-height: 44px; }
  /* Drop "OPEN / SHARE" button. Brand spec keeps SFX toggle intentionally
     at 42×42 — every other touch target gets bumped to ≥44. */
  .drop-card .open { min-height: 44px; }
}

/* ============================================================
   TYPOGRAPHY POLISH
   Single block at the end of the file so it overrides earlier rules
   cleanly and can be reviewed / rolled back as one unit.
   Goals:
     · subtle layered text-shadow on big display headings — engraved
       feel on dark bg, premium depth, never cartoonish
     · WELCOME TO / LINEVERSE visual lockup
     · ЖМИ СЮДА — remove the awkward partial underline under just СЮДА
       (the "!" outside the span cut off the underline visually)
   No -webkit-text-stroke — it renders unevenly on Cyrillic glyphs at
   large sizes. text-shadow stays clean across the whole alphabet.
   ============================================================ */

/* All large display headings — a thin engraved feel + soft depth. */
.hero h1,
.sec-head h2,
.profile h2,
.contact h2,
.profile-card .name {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),     /* sharp 1px black drop */
    0 3px 14px rgba(0, 0, 0, .22);  /* soft depth */
}

/* Yellow slab / keyword highlight — keep the brand underline (.slab::after)
   but add a tasteful warm halo on top. Override the parent's depth shadow
   so the highlight sits with its own light. */
.slab,
.hero h1 .l2 {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),
    0 0 18px rgba(255, 212, 0, .22);
}

/* Single mint V in LINEVERSE — visual nod to the brand cursor. The slab
   underline + spacing stay on the parent .l2, so this only re-colors one
   glyph and swaps its halo to mint (so the warm yellow halo doesn't bleed
   over a mint letter). Halo alpha matches the surrounding .l2 / .slab
   (.22) so the V doesn't glow brighter than the rest of the wordmark.
   Inherits font, size, weight, letter-spacing. */
.hero h1 .l2 .lv-v {
  color: var(--lv-mint);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),
    0 0 18px rgba(46, 230, 166, .22);
}
.slab--mint {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),
    0 0 16px rgba(46, 230, 166, .22);
}

/* ───── Hero lockup (WELCOME TO / LINEVERSE) ─────
   Color + letter-spacing inherit from .hero h1 (cream + .005em) so we
   only declare the values that differ between the eyebrow and the mark. */
.hero h1 .l1 {
  display: block;
  font-size: 0.78em;          /* makes "WELCOME TO" sit visually within the LINEVERSE width */
  letter-spacing: .04em;       /* tasteful tracking — "eyebrow" feel */
  margin-bottom: .04em;        /* small breathing space above the wordmark */
}

/* ───── Contact heading (ЖМИ СЮДА) ─────
   The terminal CTA's keyword carries a unified warm halo — stronger
   than other slabs since this is the page's last call to action.
   (The previous partial-underline pattern and its inline-block layout
   trick were dropped from the base rule above — keyword sits as plain
   inline now, so the word-pair reads as one tight phrase.) */
.contact h2 .l2 {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, .55),
    0 0 22px rgba(255, 212, 0, .35);
}

/* ───── Footer signoff colors ─────
   Сделано in yellow, в жёлтой шапке in mint. Brand voice colors using
   existing tokens; .meta-label-like dim grey of the original makes way
   for the team-color two-tone. */
footer .mid .made { color: var(--lv-yellow); }
footer .mid .hat  { color: var(--lv-mint); }
