/* ============================================================
   luthfi.sh — personal site
   Built on Mekari Pixel 2.4 tokens (dark surface scale + indigo).
   ============================================================ */

:root{
  /* Dark surfaces — derived from Pixel slate/dark scale, deepened */
  --bg:        #0a0d11;
  --bg-soft:   #0f131a;
  --panel:     #141a22;
  --panel-2:   #1a212b;
  --panel-hi:  #1f2832;
  --line:      #242d39;
  --line-soft: #1a212b;
  --line-glow: #2e3a4a;

  /* Ink */
  --ink:       #e9eef6;
  --ink-sub:   #aab2c0;
  --ink-mute:  #717c8d;
  --ink-faint: #4d5666;

  /* Accent — Pixel indigo-400 (#4b61dc) lifted for dark-bg AA contrast */
  --accent:    #7d90f4;
  --accent-2:  #4b61dc;       /* spec indigo, for glows/fills */
  --accent-deep:#34459e;

  /* Semantic (from Pixel) */
  --green:     #4dc395;
  --green-dim: #1f9d57;
  --amber:     #e8a92e;
  --red:       #e2483d;
  --teal:      #4cc6cc;

  --maxw: 1080px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:84px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--pxl-font-sans);
  background:var(--bg);
  color:var(--ink);
  font-size:15px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---- ambient background: grid + glow + scanlines -------------- */
.bg-canvas { position:fixed; inset:0; z-index:0; pointer-events:none; opacity:0.8; }
.bg-fx{ position:fixed; inset:0; z-index:0; pointer-events:none; }
.bg-fx::before{   /* grid */
  content:""; position:absolute; inset:-2px;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 85%);
  opacity:.7;
}
.bg-fx::after{   /* top glow */
  content:""; position:absolute; top:-280px; left:50%; transform:translateX(-50%);
  width:900px; height:600px;
  background:radial-gradient(ellipse at center, rgba(75,97,220,.22), transparent 62%);
  filter:blur(20px);
}
.scanlines{ position:fixed; inset:0; z-index:1; pointer-events:none; opacity:.5;
  background:repeating-linear-gradient(to bottom, rgba(255,255,255,.014) 0 1px, transparent 1px 3px); }
@media (prefers-reduced-motion: reduce){ .scanlines{ display:none; } }

/* ---- layout ---- */
.shell{ position:relative; z-index:2; }
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
@media (max-width:600px){ .container{ padding:0 18px; } }

.skip{ position:absolute; left:-999px; top:8px; background:var(--accent-2); color:#fff;
  padding:8px 14px; border-radius:8px; z-index:200; font-size:14px; }
.skip:focus{ left:16px; }

/* ---- nav ---- */
.nav{ position:sticky; top:0; z-index:100;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(10,13,17,.72);
  border-bottom:1px solid var(--line-soft); }
.nav-in{ display:flex; align-items:center; gap:18px; height:60px; }
.brand{ display:flex; align-items:center; gap:9px; font-family:var(--pxl-font-mono);
  font-size:15px; font-weight:500; color:var(--ink); text-decoration:none; letter-spacing:-.01em; }
.brand .dot{ width:9px; height:9px; border-radius:50%; background:var(--green);
  box-shadow:0 0 0 0 rgba(77,195,149,.5); animation:pulse 2.4s var(--ease) infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(77,195,149,.45);} 70%{ box-shadow:0 0 0 7px rgba(77,195,149,0);} 100%{ box-shadow:0 0 0 0 rgba(77,195,149,0);} }
@media (prefers-reduced-motion: reduce){ .brand .dot{ animation:none; } }
.brand .pfx{ color:var(--accent); }
.nav-links{ display:flex; gap:4px; margin-left:auto; }
.nav-links a{ font-family:var(--pxl-font-mono); font-size:13px; color:var(--ink-mute);
  text-decoration:none; padding:8px 12px; border-radius:7px; transition:color .15s, background .15s; }
.nav-links a:hover{ color:var(--ink); background:var(--panel); }
.nav-cta{ display:inline-flex; align-items:center; gap:7px; font-family:var(--pxl-font-mono);
  font-size:13px; color:var(--ink); text-decoration:none; border:1px solid var(--line);
  background:var(--panel); padding:7px 13px; border-radius:8px; transition:border-color .15s, background .15s; }
.nav-cta:hover{ border-color:var(--accent-2); background:var(--panel-hi); }
@media (max-width:760px){ .nav-links{ display:none; } }

/* ---- shared section bits ---- */
section{ padding:92px 0; position:relative; }
@media (max-width:600px){ section{ padding:64px 0; } }
.sec-label{ font-family:var(--pxl-font-mono); font-size:13px; letter-spacing:.02em;
  color:var(--ink-mute); display:flex; align-items:center; gap:10px; margin:0 0 30px; }
.sec-label .p{ color:var(--accent); }
.sec-label::after{ content:""; flex:1; height:1px;
  background:linear-gradient(90deg, var(--line) , transparent); }
.h2{ font-family:var(--pxl-font-mono); font-weight:500; font-size:clamp(22px,3.4vw,30px);
  line-height:1.18; letter-spacing:-.015em; margin:0 0 14px; color:var(--ink); }
.lede{ font-size:16px; color:var(--ink-sub); max-width:64ch; margin:0; }

/* ============================ HERO ============================ */
.hero{ padding:96px 0 84px; }
.hero-status{ display:inline-flex; align-items:center; gap:9px; font-family:var(--pxl-font-mono);
  font-size:12.5px; color:var(--ink-sub); border:1px solid var(--line); background:var(--panel);
  border-radius:999px; padding:6px 13px 6px 11px; margin-bottom:26px; white-space:nowrap; }
.hero-status .dot{ width:7px; height:7px; border-radius:50%; background:var(--green);
  box-shadow:0 0 8px var(--green); }
.hero h1{ font-family:var(--pxl-font-mono); font-weight:500;
  font-size:clamp(34px,7vw,68px); line-height:1.04; letter-spacing:-.03em;
  margin:0 0 8px; color:#fff; }
.hero h1 .role{ display:block; color:var(--ink-mute); font-size:clamp(15px,2.4vw,21px);
  letter-spacing:0; margin-top:18px; font-weight:400; }
.hero h1 .role b{ color:var(--accent); font-weight:500; }
.cursor{ display:inline-block; width:.5ch; height:.92em; background:var(--accent);
  margin-left:.06em; vertical-align:-.06em; animation:blink 1.05s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }
@media (prefers-reduced-motion: reduce){ .cursor{ animation:none; } }

.one-liner{ font-size:clamp(16px,2.1vw,19px); line-height:1.6; color:var(--ink-sub);
  max-width:60ch; margin:30px 0 0; }
.one-liner b{ color:var(--ink); font-weight:600; }

/* stat chips */
.chips{ display:flex; flex-wrap:wrap; gap:12px; margin:34px 0 0; }
.chip{ display:flex; flex-direction:column; gap:3px; background:var(--panel);
  border:1px solid var(--line); border-radius:12px; padding:13px 17px; min-width:128px;
  position:relative; overflow:hidden; }
.chip::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:var(--accent-2); opacity:.85; }
.chip .v{ font-family:var(--pxl-font-mono); font-size:18px; font-weight:500; color:#fff; letter-spacing:-.02em; }
.chip .k{ font-family:var(--pxl-font-mono); font-size:11px; color:var(--ink-mute); letter-spacing:.02em; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:36px; }
.btn{ display:inline-flex; align-items:center; gap:9px; font-family:var(--pxl-font-mono);
  font-size:14px; text-decoration:none; padding:12px 20px; border-radius:9px; cursor:pointer;
  border:1px solid transparent; transition:background .15s, border-color .15s, color .15s; }
.btn-primary{ background:var(--accent-2); color:#fff; }
.btn-primary:hover{ background:var(--accent-deep); }
.btn-ghost{ background:transparent; border-color:var(--line); color:var(--ink); }
.btn-ghost:hover{ border-color:var(--accent-2); background:var(--panel); }
.btn svg{ width:16px; height:16px; }

/* ============================ ABOUT ============================ */
.about-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:32px; align-items:start; }
@media (max-width:820px){ .about-grid{ grid-template-columns:1fr; gap:26px; } }
.about-copy p{ font-size:16.5px; line-height:1.72; color:var(--ink-sub); margin:0 0 16px; }
.about-copy p b{ color:var(--ink); font-weight:600; }
.about-copy p:last-child{ margin-bottom:0; }
.fact-card{ background:var(--panel); border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.fact-card .fc-head{ font-family:var(--pxl-font-mono); font-size:12px; color:var(--ink-mute);
  padding:13px 18px; border-bottom:1px solid var(--line); background:var(--bg-soft); }
.fact-row{ display:flex; gap:14px; padding:14px 18px; border-bottom:1px solid var(--line-soft); }
.fact-row:last-child{ border-bottom:0; }
.fact-row .fk{ font-family:var(--pxl-font-mono); font-size:12.5px; color:var(--accent); min-width:84px; }
.fact-row .fv{ font-size:14px; color:var(--ink-sub); }
.fact-row .fv b{ color:var(--ink); font-weight:600; }

/* ============================ STACK ============================ */
.stack-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(258px,1fr)); gap:14px; }
.stack-group{ background:var(--panel); border:1px solid var(--line); border-radius:13px; padding:18px 19px; }
.stack-group h3{ font-family:var(--pxl-font-mono); font-size:12px; font-weight:500; letter-spacing:.04em;
  text-transform:uppercase; color:var(--ink-mute); margin:0 0 14px; display:flex; align-items:center; gap:8px; }
.stack-group h3 .ic{ color:var(--accent); }
.tags{ display:flex; flex-wrap:wrap; gap:7px; }
.tag{ font-family:var(--pxl-font-mono); font-size:12.5px; color:var(--ink-sub);
  background:var(--panel-2); border:1px solid var(--line); border-radius:6px; padding:4px 9px;
  transition:color .15s, border-color .15s; }
.stack-group:hover .tag{ color:var(--ink); }

/* ============================ BUILT ============================ */
.filters{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.filter{ font-family:var(--pxl-font-mono); font-size:12.5px; color:var(--ink-mute);
  background:var(--panel); border:1px solid var(--line); border-radius:999px; padding:7px 14px;
  cursor:pointer; transition:all .15s; }
.filter:hover{ color:var(--ink); border-color:var(--line-glow); }
.filter[aria-pressed="true"]{ color:#fff; background:var(--accent-2); border-color:var(--accent-2); }

.builds{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (max-width:780px){ .builds{ grid-template-columns:1fr; } }

.build{ background:var(--panel); border:1px solid var(--line); border-radius:14px;
  padding:0; overflow:hidden; transition:border-color .2s, transform .2s, opacity .25s;
  display:flex; flex-direction:column; }
.build.hidden{ display:none; }
.build:hover{ border-color:var(--line-glow); }
.build-head{ width:100%; text-align:left; background:transparent; border:0; cursor:pointer;
  padding:20px 22px; display:flex; flex-direction:column; gap:12px; color:inherit; font:inherit; }
.build-head:focus-visible{ outline:2px solid var(--accent); outline-offset:-2px; border-radius:14px; }
.build-top{ display:flex; align-items:center; gap:10px; }
.cat{ font-family:var(--pxl-font-mono); font-size:11px; letter-spacing:.04em; text-transform:uppercase;
  padding:4px 9px; border-radius:6px; border:1px solid; }
.cat.fire{ color:#f0a98a; border-color:#5a3a2e; background:rgba(228,105,16,.08); }
.cat.fast{ color:#9aa9f6; border-color:#2e3a6a; background:rgba(75,97,220,.1); }
.cat.cheap{ color:#7fd3a6; border-color:#1f4a36; background:rgba(31,157,87,.1); }
.cat.see{ color:#7cd5da; border-color:#1c4a4d; background:rgba(76,198,204,.1); }
.cat.bots{ color:#c3aef0; border-color:#3a3268; background:rgba(130,112,219,.12); }
.metric{ margin-left:auto; font-family:var(--pxl-font-mono); font-size:12px; color:var(--ink);
  background:var(--bg-soft); border:1px solid var(--line); border-radius:6px; padding:4px 9px; white-space:nowrap; }
.build h3{ font-family:var(--pxl-font-sans); font-size:18px; font-weight:600; line-height:1.3;
  margin:0; color:#fff; letter-spacing:-.01em; }
.build .pa{ display:flex; flex-direction:column; gap:7px; }
.pa-row{ display:flex; gap:10px; font-size:13.5px; line-height:1.5; }
.pa-row .lbl{ font-family:var(--pxl-font-mono); font-size:11px; color:var(--ink-mute);
  min-width:42px; padding-top:2px; flex-shrink:0; letter-spacing:.02em; }
.pa-row.mess .txt{ color:var(--ink-sub); }
.pa-row.did .txt{ color:var(--ink); }
.pa-row.win .lbl{ color:var(--green); }
.pa-row.win .txt{ color:var(--green); font-weight:500; }
.expander{ display:flex; align-items:center; gap:7px; font-family:var(--pxl-font-mono);
  font-size:12px; color:var(--accent); margin-top:2px; }
.expander svg{ width:14px; height:14px; transition:transform .25s var(--ease); }
.build[data-open="true"] .expander svg{ transform:rotate(180deg); }
.build-detail{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.build[data-open="true"] .build-detail{ max-height:520px; }
.detail-in{ padding:0 22px 22px; border-top:1px solid var(--line-soft); margin-top:2px; }
.detail-in p{ font-size:13.5px; line-height:1.66; color:var(--ink-sub); margin:16px 0 0; }
.detail-in p b{ color:var(--ink); }
.detail-in code{ font-family:var(--pxl-font-mono); font-size:12px; background:var(--panel-2);
  border:1px solid var(--line); border-radius:4px; padding:1px 5px; color:#cdd6e3; }

/* ============================ NOW ============================ */
.now-term{ background:var(--bg-soft); border:1px solid var(--line); border-radius:13px;
  overflow:hidden; box-shadow:0 24px 60px -28px rgba(0,0,0,.7); }
.term-bar{ display:flex; align-items:center; gap:8px; padding:12px 16px;
  background:var(--panel); border-bottom:1px solid var(--line); }
.term-bar .lights{ display:flex; gap:7px; }
.term-bar .lights i{ width:11px; height:11px; border-radius:50%; display:block; }
.term-bar .lights i:nth-child(1){ background:#e2483d; }
.term-bar .lights i:nth-child(2){ background:#e8a92e; }
.term-bar .lights i:nth-child(3){ background:#4dc395; }
.term-bar .ttl{ font-family:var(--pxl-font-mono); font-size:12.5px; color:var(--ink-mute);
  margin-left:6px; }
.term-bar .stamp{ margin-left:auto; font-family:var(--pxl-font-mono); font-size:11.5px; color:var(--ink-faint); }
.term-body{ padding:24px 22px 28px; font-family:var(--pxl-font-mono); font-size:14px; line-height:1.7; }
.term-line{ color:var(--ink-sub); }
.term-line .pr{ color:var(--green); }
.term-line .cmd{ color:#fff; }
.term-out{ color:var(--ink-mute); margin:4px 0 20px; font-size:12.5px; }
.now-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.now-list li{ display:flex; gap:13px; }
.now-list .mk{ color:var(--accent); flex-shrink:0; }
.now-list .body strong{ color:#fff; font-weight:500; font-family:var(--pxl-font-sans); font-size:15px; }
.now-list .body span{ display:block; font-family:var(--pxl-font-sans); font-size:14px;
  color:var(--ink-sub); line-height:1.6; margin-top:3px; }
.now-foot{ margin-top:24px; color:var(--ink-faint); font-size:12.5px; }
.now-foot .ic{ color:var(--green); }

/* ============================ CONTACT ============================ */
.contact-card{ background:var(--panel); border:1px solid var(--line); border-radius:16px;
  padding:44px 40px; text-align:center; position:relative; overflow:hidden; }
.contact-card::before{ content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 120% at 50% -20%, rgba(75,97,220,.16), transparent 60%); }
.contact-card > *{ position:relative; }
.contact-card .prompt{ font-family:var(--pxl-font-mono); font-size:13px; color:var(--ink-mute); margin-bottom:14px; }
.contact-card h2{ font-family:var(--pxl-font-mono); font-weight:500; font-size:clamp(24px,4vw,34px);
  letter-spacing:-.02em; color:#fff; margin:0 0 14px; }
.contact-card p{ color:var(--ink-sub); max-width:50ch; margin:0 auto 28px; font-size:15.5px; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.copy-line{ display:inline-flex; align-items:center; gap:9px; font-family:var(--pxl-font-mono);
  font-size:13px; color:var(--ink-sub); border:1px solid var(--line); background:var(--bg-soft);
  border-radius:9px; padding:12px 16px; cursor:pointer; transition:border-color .15s, color .15s; }
.copy-line:hover{ border-color:var(--accent-2); color:var(--ink); }
.copy-line.copied{ border-color:var(--green-dim); color:var(--green); }
.copy-line svg{ width:15px; height:15px; }

/* ---- footer ---- */
.foot{ border-top:1px solid var(--line-soft); padding:30px 0 46px; }
.foot-in{ display:flex; flex-wrap:wrap; gap:12px; align-items:center;
  font-family:var(--pxl-font-mono); font-size:12px; color:var(--ink-faint); }
.foot-in .sep{ color:var(--line-glow); }
.foot-in a{ color:var(--ink-mute); text-decoration:none; }
.foot-in a:hover{ color:var(--ink-sub); }
.foot-in .right{ margin-left:auto; }

/* ---- 3D Tilt Cards ---- */
.tilt-card { transform-style: preserve-3d; }
.tilt-card > * { transform: translateZ(25px); transition: transform 0.3s; }
.build-head { transform: translateZ(25px); }

/* ---- reveal-on-scroll ---- */
.reveal{ opacity:0; transform:perspective(1200px) rotateX(-12deg) translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:perspective(1200px) rotateX(0deg) translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================ CHAOS SIMULATOR ============================ */
.chaos-trigger {
  position: fixed; bottom: 24px; right: 24px; z-index: 10005;
  background: var(--panel-hi); border: 1px solid var(--red); color: var(--red);
  width: 44px; height: 44px; border-radius: 50%; font-size: 18px;
  cursor: pointer; box-shadow: 0 4px 14px rgba(226,72,61,0.25);
  transition: transform 0.2s, background 0.2s; display: flex; align-items: center; justify-content: center;
}
.chaos-trigger:hover { transform: scale(1.1); background: rgba(226,72,61,0.15); }

.chaos-panel {
  position: fixed; bottom: 84px; right: 24px; width: 280px;
  background: var(--bg-soft); border: 1px solid var(--red); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.8); z-index: 10006;
  display: flex; flex-direction: column; opacity: 0; pointer-events: none;
  transform: translateY(20px); transition: opacity 0.3s, transform 0.3s;
}
.chaos-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.chaos-header {
  padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex;
  justify-content: space-between; font-family: var(--pxl-font-mono); font-size: 13px; color: var(--red);
}
.chaos-header button { background: none; border: none; color: var(--ink-sub); cursor: pointer; font-size: 16px; }
.chaos-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.btn-chaos {
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
  padding: 8px 12px; font-family: var(--pxl-font-mono); font-size: 12px;
  border-radius: 6px; cursor: pointer; text-align: left; transition: all 0.2s;
}
.btn-chaos:hover { background: rgba(226,72,61,0.1); border-color: var(--red); color: var(--red); }
.btn-chaos.active-chaos { background: var(--red); color: #fff; border-color: var(--red); animation: chaos-pulse 1s infinite; }

@keyframes chaos-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Chaos Overlays */
.chaos-overlay {
  position: fixed; inset: 0; background: #000; z-index: 9999;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.chaos-overlay.hidden { display: none; }
.terminal-crash { font-family: var(--pxl-font-mono); color: #fff; font-size: 16px; text-align: center; }
.terminal-crash .red { color: #ff5555; font-size: 20px; font-weight: bold; margin-bottom: 16px; }
.kernel-panic { font-family: var(--pxl-font-mono); color: #fff; font-size: 13px; background: #000; padding: 20px; width: 100%; height: 100%; white-space: pre-wrap; display: flex; align-items: center; justify-content: center; }

/* Animations */
.chaos-shake { animation: shake 0.4s infinite; }
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  20% { transform: translate(-2px, -2px) rotate(-1deg); }
  40% { transform: translate(2px, -1px) rotate(1deg); }
  60% { transform: translate(-2px, 2px) rotate(-1deg); }
  80% { transform: translate(2px, 1px) rotate(1deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.chaos-gravity { animation: fallDown 1.5s forwards cubic-bezier(0.55, 0.085, 0.68, 0.53); }
@keyframes fallDown {
  to { transform: translateY(120vh) rotate(25deg); opacity: 0; }
}

.glitch-out { animation: glitch 0.2s infinite; opacity: 0.3 !important; }
@keyframes glitch {
  0% { transform: translate(0) skew(0deg); }
  20% { transform: translate(-5px, 2px) skew(5deg); }
  40% { transform: translate(5px, -2px) skew(-5deg); }
  60% { transform: translate(0) skew(0deg); }
  80% { transform: translate(2px, 5px) skew(2deg); }
  100% { transform: translate(-2px, -5px) skew(-2deg); }
}

.ddos-container { position: fixed; inset: 0; pointer-events: none; z-index: 9998; overflow: hidden; }
.ddos-cursor { position: absolute; font-size: 24px; }
.ddos-banner {
  position: fixed; top: 20%; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; padding: 20px 40px; font-family: var(--pxl-font-mono);
  font-size: 24px; font-weight: bold; z-index: 10000; border-radius: 8px;
  box-shadow: 0 10px 40px rgba(226,72,61,0.6); white-space: nowrap;
}
.ddos-banner.hidden { display: none; }

.chaos-radar {
  position: fixed; top: 0; left: 0; right: 0; height: 8px; background: rgba(77, 195, 149, 0.8);
  box-shadow: 0 0 20px rgba(77, 195, 149, 1); z-index: 9000; pointer-events: none;
}
.chaos-radar.hidden { display: none; }
.slow-query-target { border: 2px solid var(--red) !important; box-shadow: 0 0 30px var(--red); position: relative; }
.slow-query-target::after {
  content: "SLOW QUERY DETECTED: 45.2s"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--red); color: #fff; font-weight: bold; padding: 10px 20px; font-size: 14px; border-radius: 8px; z-index: 10;
}
.kill-laser {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 0; height: 0; background: var(--green); box-shadow: 0 0 50px var(--green);
  z-index: 9999; border-radius: 50%; animation: laserSnipe 0.5s ease-out forwards;
}
@keyframes laserSnipe {
  0% { width: 0; height: 0; opacity: 1; }
  50% { width: 300px; height: 300px; opacity: 1; }
  100% { width: 200vw; height: 200vh; opacity: 0; }
}

.scroll-lock { overflow: hidden !important; pointer-events: none !important; }
.scroll-lock #chaos-panel, .scroll-lock .chaos-trigger { pointer-events: auto !important; }

/* ---- toast for easter egg ---- */
.toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--panel-hi); border:1px solid var(--accent-2); color:var(--ink);
  font-family:var(--pxl-font-mono); font-size:13px; padding:12px 18px; border-radius:10px;
  box-shadow:0 16px 40px -16px rgba(0,0,0,.7); opacity:0; pointer-events:none; z-index:300;
  transition:opacity .3s, transform .3s; }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
