:root {
  --ink: #000;
  --ink2: #0a0a0a;
  --paper: #f2f2f2;
  --copper: #fff;
  --copper2: #e8e8e8;
  --ember: #fff;
  --signal: #fff;
  --muted: #8a8a8a;
  --line: rgba(255,255,255,.12);
  --glass: rgba(8,8,8,.72);
  --ok: #fff;
  --bad: #ff5c6a;
  --display: "Cormorant Garamond", Georgia, serif;
  --ui: Syne, ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  min-height: 100%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ui);
  overflow-x: hidden;
}
body { cursor: crosshair; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; color: inherit; }
::selection { background: var(--copper); color: #000; }

.fx-noise, .fx-glow, .fx-scan, .veil, .fx-orb {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.fx-noise {
  z-index: 3;
  opacity: .09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain .32s steps(4) infinite;
}
.fx-glow {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,255,255,.16), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(255,255,255,.04), transparent 50%),
    #000 url("../img/bg.png?v=8") center / 118% 118% no-repeat;
  animation: bgDrift 48s ease-in-out infinite alternate;
}
.fx-scan {
  z-index: 2;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 2px,
    rgba(0,0,0,.12) 2px 3px
  );
  opacity: .35;
  animation: scan 9s linear infinite;
}
.fx-orb {
  z-index: 2;
  width: 42vw; height: 42vw;
  left: -21vw; top: -21vw;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%);
  transform: translate(var(--mx, 50vw), var(--my, 40vh));
  transition: transform .12s linear;
}
.veil { z-index: 1; overflow: hidden; }
.veil-hydra, .veil-hand {
  position: absolute;
  top: 4%;
  height: 92vh;
  background-image: url("../img/hero-art.png?v=8");
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  filter: contrast(1.12) brightness(1.02) grayscale(1);
  opacity: .18;
}
.page-home .veil-hydra, .page-home .veil-hand,
.is-auth .veil-hydra, .is-auth .veil-hand { opacity: .88; }
.veil-hydra {
  left: -12%; width: 58vw;
  background-position: 8% 42%; background-size: 145% auto;
  mask-image: linear-gradient(90deg, #000 35%, transparent 88%);
  animation: floatL 16s ease-in-out infinite alternate;
}
.veil-hand {
  right: -10%; width: 50vw;
  background-position: 92% 55%; background-size: 150% auto;
  mask-image: linear-gradient(270deg, #000 32%, transparent 88%);
  animation: floatR 18s ease-in-out infinite alternate;
}

@keyframes grain {
  0% { transform: translate(0,0); }
  25% { transform: translate(-1.4%, .8%); }
  50% { transform: translate(1.2%, -1%); }
  75% { transform: translate(-.6%, 1.2%); }
  100% { transform: translate(0,0); }
}
@keyframes bgDrift {
  from { transform: scale(1) translate(0,0); }
  to { transform: scale(1.08) translate(-2.4%, 1.6%); }
}
@keyframes floatL {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(18px,-14px,0) scale(1.04); }
}
@keyframes floatR {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-16px,12px,0) scale(1.03); }
}
@keyframes scan {
  from { background-position: 0 0; }
  to { background-position: 0 120px; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes sheen {
  from { background-position: -40% 0; }
  to { background-position: 140% 0; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
@keyframes radar {
  0% { transform: scale(.4); opacity: .55; }
  100% { transform: scale(1.6); opacity: 0; }
}

.top, .side, .stage, .assist, .preview, .page, .site-foot,
.panel-shell, .auth-stage { position: relative; z-index: 4; }

.top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5,4,10,.7), transparent);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  letter-spacing: .28em; font-weight: 700; font-size: 12px;
}
.mark { width: 28px; height: 28px; color: var(--copper); }
.brand:hover .mark { animation: spinSlow 4s linear infinite; }
.top-center { display: flex; justify-content: center; }
.sigil {
  font-family: var(--mono); font-size: 10px; letter-spacing: .32em;
  color: var(--copper); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px;
}
.top-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.who {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: #fff;
}
.who i {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 10px #fff; animation: pulse 1.8s ease-in-out infinite;
}
.user-pill {
  display: flex; align-items: center; gap: 10px;
  height: 44px; padding: 4px 14px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(8,6,14,.75));
  box-shadow: 0 8px 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  max-width: 240px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.user-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 12px 36px rgba(255,255,255,.18);
}
.user-pill img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,.35);
}
.user-pill-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.user-pill-meta b {
  font-size: 12px; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.user-pill-meta small {
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: var(--copper);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.op-strip {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(8,6,14,.55));
  backdrop-filter: blur(16px);
}
.op-ava { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--copper); }
.op-name { font-size: 16px; font-weight: 700; letter-spacing: .04em; }
.op-sub { color: var(--muted); font-size: 12px; margin-top: 3px; }
.op-sub a { color: var(--copper2); border-bottom: 1px solid var(--line); }
.op-badge {
  margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; color: #8a8a8a;
}
.op-badge.on { color: #fff; border-color: rgba(255,255,255,.4); box-shadow: 0 0 16px rgba(255,255,255,.12); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px; border-radius: 999px;
  font-size: 11px; letter-spacing: .16em; font-weight: 700;
  border: 1px solid var(--line); cursor: pointer; background: transparent;
  transition: transform .25s, background .25s, box-shadow .25s, color .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn.solid {
  background: #fff;
  color: #000; border-color: transparent;
  box-shadow: 0 0 24px rgba(255,255,255,.25);
}
.btn.solid:hover { box-shadow: 0 0 36px rgba(255,255,255,.4); }
.btn.ghost:hover { background: rgba(255,255,255,.08); color: var(--copper2); }
.btn.discord, .btn-discord {
  background: #fff !important;
  color: #000 !important;
  border-color: transparent !important;
  box-shadow: 0 0 28px rgba(255,255,255,.18);
  margin-top: 28px;
}
.btn-discord:hover { box-shadow: 0 0 40px rgba(255,255,255,.28); }

.side {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; text-align: right; z-index: 6;
}
.side a {
  font-size: 10px; letter-spacing: .26em; color: #666; font-weight: 600;
  transition: color .25s, letter-spacing .25s;
}
.side a:hover, .side a.is-on { color: var(--copper2); letter-spacing: .34em; }

.stage { max-width: 1080px; margin: 0 auto; padding: 28px 24px 100px; }
.page-home .stage { max-width: 920px; padding-top: 48px; }

.hero { text-align: center; padding: 28px 0 36px; }
.live {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: #cfcfcf; margin-bottom: 22px;
  animation: rise .8s ease both;
}
.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 12px #fff;
  animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500; letter-spacing: -.03em; line-height: .92;
  animation: rise .9s .05s ease both;
}
.hero h1 em { font-style: italic; color: var(--copper2); }
.lede {
  max-width: 560px; margin: 18px auto 0; color: var(--muted);
  font-size: 15px; line-height: 1.7; font-weight: 500;
  animation: rise .9s .12s ease both;
}

.search {
  margin: 36px auto 0; max-width: 680px; position: relative;
  animation: rise .9s .18s ease both;
}
.search input {
  width: 100%; height: 64px; border-radius: 999px; padding: 0 70px 0 28px;
  background: rgba(12,10,18,.72); border: 1px solid var(--line);
  backdrop-filter: blur(18px); font-size: 16px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.search input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(255,255,255,.12), 0 20px 60px rgba(0,0,0,.45);
}
.search button {
  position: absolute; right: 8px; top: 8px; width: 48px; height: 48px;
  border-radius: 50%; border: 0; background: var(--paper); color: #000;
  cursor: pointer; display: grid; place-items: center;
  transition: transform .25s, box-shadow .25s;
}
.search button:hover { transform: scale(1.06) rotate(-8deg); box-shadow: 0 0 24px rgba(243,234,220,.35); }
.micro {
  margin-top: 14px; text-align: center; color: #777;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
}

.ticker {
  margin: 28px auto 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 10px 0;
}
.ticker-track {
  display: flex; gap: 42px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--copper);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 28px 0 8px;
}
.stat {
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  background: var(--glass); backdrop-filter: blur(16px);
  animation: rise .7s ease both;
}
.stat:nth-child(2) { animation-delay: .08s; }
.stat:nth-child(3) { animation-delay: .16s; }
.stat b {
  display: block; font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--copper2);
}
.stat span { font-size: 11px; letter-spacing: .14em; color: var(--muted); }

.preview {
  margin-top: 22px; display: grid; grid-template-columns: 72px 1fr;
  gap: 0; border: 1px solid var(--line); border-radius: 24px;
  background: var(--glass); backdrop-filter: blur(22px);
  overflow: hidden; min-height: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.rail {
  border-right: 1px solid var(--line); padding: 18px 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: #888;
}
.rail span {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px;
  font-size: 13px; transition: background .2s, color .2s;
}
.rail .on, .rail span:hover { color: var(--copper2); background: rgba(255,255,255,.1); }
.canvas { padding: 22px; }
.canvas h3 {
  font-size: 11px; letter-spacing: .22em; margin-bottom: 12px; color: var(--copper);
}
.ask {
  width: 100%; min-height: 88px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(5,4,10,.7); padding: 14px; resize: none; outline: none; color: #cfc3b2;
}
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.mini {
  border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  transition: transform .35s, border-color .35s;
}
.mini:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.45); }
.mini h4 { font-size: 12px; letter-spacing: .16em; margin-bottom: 8px; color: var(--paper); }
.mini p { color: var(--muted); font-size: 12px; line-height: 1.55; }

.page { max-width: 980px; margin: 0 auto; padding: 48px 24px 120px; }
.kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .28em;
  color: var(--copper); margin-bottom: 12px;
}
.page h1 {
  font-family: var(--display); font-size: clamp(40px, 7vw, 72px);
  font-weight: 500; letter-spacing: -.03em; line-height: .95;
}
.page h1 em { font-style: italic; color: var(--copper2); }
.page .lede { margin: 16px 0 0; text-align: left; max-width: 640px; }

.pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.pricing.three { grid-template-columns: repeat(3, 1fr); }
.plan {
  padding: 32px 28px; border: 1px solid var(--line); border-radius: 22px;
  background: var(--glass); backdrop-filter: blur(18px);
  transition: transform .35s, box-shadow .35s;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.plan.hot {
  border-color: rgba(255,255,255,.45);
  box-shadow: inset 0 0 80px rgba(255,255,255,.06);
}
.plan .badge {
  display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; margin-bottom: 14px;
  color: var(--copper);
}
.plan h2 { font-size: 12px; letter-spacing: .2em; color: #ccc; font-weight: 700; }
.price {
  font-family: var(--display); font-size: 56px; font-weight: 500; margin: 12px 0 18px;
}
.plan ul { list-style: none; color: var(--muted); font-size: 14px; line-height: 2; }
.plan li::before { content: "▸ "; color: var(--copper); }

.form { max-width: 440px; display: grid; gap: 14px; margin-top: 28px; }
.field { position: relative; }
.field input, .form textarea, .form select, .field select {
  width: 100%; background: rgba(8,6,14,.75); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 14px 10px; outline: none; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.form textarea { min-height: 128px; padding: 14px; }
.field label {
  position: absolute; left: 14px; top: 16px; color: #888;
  font-size: 13px; letter-spacing: .08em; pointer-events: none;
  transition: .2s;
}
.field input:focus, .form textarea:focus, .field input:not(:placeholder-shown) {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 6px; font-size: 10px; letter-spacing: .16em; color: var(--copper);
}
.msg { margin-top: 14px; color: var(--muted); font-size: 14px; }
.msg.ok { color: var(--signal); }
.msg.bad { color: var(--bad); }

.list { margin-top: 32px; display: grid; gap: 14px; }
.list article {
  border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px;
  background: var(--glass); backdrop-filter: blur(14px);
  transition: transform .3s;
}
.list article:hover { transform: translateX(6px); }
.list h2 { font-size: 18px; margin-bottom: 8px; font-family: var(--display); font-weight: 600; }
.list p { color: var(--muted); line-height: 1.7; font-size: 14px; }

.auth-stage {
  min-height: calc(100vh - 90px);
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: stretch; padding: 24px 28px 40px;
  gap: 24px;
}
.auth-art {
  border: 1px solid var(--line); border-radius: 28px;
  background: var(--glass); backdrop-filter: blur(16px);
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; position: relative;
}
.auth-art::before {
  content: ""; position: absolute; inset: -20%;
  background: conic-gradient(from 180deg, transparent, rgba(255,255,255,.12), transparent 40%);
  animation: spinSlow 18s linear infinite;
}
.auth-art h2 {
  position: relative; font-family: var(--display); font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; line-height: .95; max-width: 12ch;
}
.auth-art em { font-style: italic; color: var(--copper2); }
.auth-art p { position: relative; margin-top: 16px; color: var(--muted); max-width: 36ch; line-height: 1.6; }
.auth-card {
  border: 1px solid var(--line); border-radius: 28px;
  background: rgba(8,6,14,.78); backdrop-filter: blur(22px);
  padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
  animation: rise .7s ease both;
}
.auth-card .kicker { margin-bottom: 8px; }
.auth-card h1 { font-family: var(--display); font-size: 42px; font-weight: 500; }
.auth-card .form { margin-top: 28px; max-width: none; }
.auth-switch { margin-top: 18px; color: var(--muted); font-size: 13px; }
.auth-switch a { color: var(--copper2); border-bottom: 1px solid var(--line); }

.panel-shell {
  display: grid; grid-template-columns: 88px 1fr; min-height: calc(100vh - 74px);
  padding: 16px 96px 40px 18px; gap: 16px;
}
.panel-rail {
  border: 1px solid var(--line); border-radius: 22px;
  background: var(--glass); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 0;
}
.panel-rail a {
  width: 46px; height: 46px; color: #8a8a8a; border-radius: 14px;
  display: grid; place-items: center; font-size: 15px; transition: .2s;
}
.panel-rail a:hover, .panel-rail .on {
  background: rgba(255,255,255,.12); color: var(--copper2);
}
.panel-main { min-width: 0; }
.glass {
  border: 1px solid var(--line); border-radius: 24px;
  background: var(--glass); backdrop-filter: blur(22px); padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.kicker.hud { display: flex; align-items: center; justify-content: space-between; }
.hunt-row { display: grid; grid-template-columns: 150px 1fr 128px; gap: 10px; }
.hunt-row select, .hunt-row input {
  height: 52px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(5,4,10,.7); padding: 0 14px; outline: none;
  font-family: var(--mono); font-size: 13px;
}
.hunt-row input:focus, .hunt-row select:focus {
  border-color: var(--copper); box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.status {
  margin-top: 12px; color: #ccc; font-size: 12px; min-height: 18px;
  font-family: var(--mono); letter-spacing: .06em;
}
.grid { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card {
  border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(5,4,10,.5));
  animation: rise .5s ease both;
}
.card:nth-child(2) { animation-delay: .05s; }
.card:nth-child(3) { animation-delay: .1s; }
.card:nth-child(4) { animation-delay: .15s; }
.card h2 {
  font-size: 11px; letter-spacing: .2em; color: var(--copper); margin-bottom: 12px;
  font-weight: 700;
}
.kv { font-size: 13px; line-height: 1.7; word-break: break-word; font-family: var(--mono); }
.k { color: #888; }
.hit { color: #fff; }
.miss { color: #777; }
.bad { color: var(--bad); }
.tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tool {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  font-size: 11px; letter-spacing: .12em; cursor: pointer; color: #ccc;
  transition: .2s;
}
.tool:hover, .tool.is-on {
  color: #000; background: #fff; border-color: #fff;
}

.scan-wait {
  display: grid; place-items: center; min-height: 220px; position: relative;
}
.radar {
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid var(--line); position: relative;
}
.radar i {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  animation: radar 1.6s ease-out infinite;
}
.radar i:nth-child(2) { animation-delay: .5s; }
.radar i:nth-child(3) { animation-delay: 1s; }

.site-foot {
  max-width: 980px; margin: 0 auto; padding: 0 24px 40px;
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 18px;
  color: #777; font-size: 12px; letter-spacing: .04em;
}
.site-foot nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-foot a:hover { color: var(--copper2); }

.assist-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 9;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  background: #0a0810; cursor: pointer; color: var(--copper);
  display: grid; place-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  transition: transform .3s;
}
.assist-fab:hover { transform: scale(1.08) rotate(-12deg); }
.assist-fab .mark { width: 26px; height: 26px; }
.assist-box {
  position: fixed; right: 22px; bottom: 86px; z-index: 9; width: 260px;
  background: rgba(10,8,16,.92); border: 1px solid var(--line);
  border-radius: 18px; padding: 16px; font-size: 13px; line-height: 1.55;
  backdrop-filter: blur(16px); animation: rise .3s ease;
}
.bind-box {
  margin: 22px 0; padding: 16px; border: 1px solid var(--line); border-radius: 16px;
  font-family: var(--mono); font-size: 12px; line-height: 1.8;
}
.wallet-hero {
  margin-top: 28px; padding: 28px; border: 1px solid var(--line); border-radius: 22px;
  background: var(--glass);
}
button.btn[disabled] { opacity: .35; cursor: not-allowed; }
.assist-box a { display: inline-block; margin-top: 10px; color: var(--copper2); }

.top::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: .45;
}
.brand .mark {
  filter: drop-shadow(0 0 8px rgba(255,255,255,.45));
}
.glass, .auth-card, .preview, .plan, .list article {
  position: relative;
}
.glass::before, .auth-card::before, .preview::before {
  content: "";
  pointer-events: none;
  position: absolute; inset: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.page-panel .panel-shell {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 8px;
}
.page-panel .glass {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 30px 80px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.hero h1 {
  text-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.search input {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 50px rgba(0,0,0,.35);
}
.auth-card {
  box-shadow: 0 40px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07);
}
.sigil {
  animation: pulse 3.6s ease-in-out infinite;
}

@media (max-width: 980px) {
  .side { display: none; }
  .top { grid-template-columns: 1fr auto; }
  .top-center { display: none; }
  .pricing, .pricing.three { grid-template-columns: 1fr; }
  .panel-rail { display: none; }
  .op-strip { flex-wrap: wrap; }
  .auth-art { min-height: 220px; padding: 28px; }
  .veil-hydra, .veil-hand { width: 70vw; opacity: .4; }
  .site-foot { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.is-desk {
  cursor: default;
  font-family: Manrope, Syne, ui-sans-serif, system-ui, sans-serif;
}
.is-desk .veil { opacity: .07; }
.is-desk .fx-scan { opacity: .12; }
.is-desk .top {
  padding: 12px 20px;
  background: rgba(0,0,0,.78);
}
.is-desk .sigil { animation: none; }

.desk {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 68px);
  position: relative;
  z-index: 4;
}
.desk-nav {
  border-right: 1px solid var(--line);
  background: rgba(8,8,8,.88);
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.desk-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  padding: 6px 8px 16px;
}
.desk-brand .mark { width: 22px; height: 22px; }
.desk-sec {
  margin: 14px 8px 6px;
  font-size: 10px; letter-spacing: .18em; color: #6a6a6a; text-transform: uppercase;
}
.desk-nav > a:not(.desk-brand):not(.desk-me):not(.desk-buy) {
  display: flex; align-items: center; gap: 10px;
  height: 38px; padding: 0 10px; border-radius: 10px;
  font-size: 13px; font-weight: 500; color: #bdbdbd;
}
.desk-nav > a svg { width: 16px; height: 16px; flex: none; }
.desk-nav > a:hover, .desk-nav > a.on {
  background: rgba(255,255,255,.08); color: #fff;
}
.desk-foot { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.desk-clear {
  border: 1px solid var(--line); border-radius: 14px; padding: 12px;
  background: rgba(255,255,255,.03);
}
.desk-clear b { display: block; font-size: 11px; letter-spacing: .08em; }
.desk-clear span, .desk-clear small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.desk-meter {
  height: 6px; border-radius: 99px; background: rgba(255,255,255,.1); margin-top: 10px; overflow: hidden;
}
.desk-meter i { display: block; height: 100%; background: #fff; border-radius: 99px; }
.desk-buy {
  display: flex; margin-top: 10px; height: 32px; align-items: center; justify-content: center;
  border-radius: 99px; background: #fff; color: #000 !important; font-size: 12px; font-weight: 700;
}
.desk-me {
  display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 12px;
  font-size: 13px; font-weight: 600;
}
.desk-me img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.desk-main { padding: 22px 28px 48px; max-width: 1180px; }
.desk-head {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; margin-bottom: 22px;
}
.desk-crumb { font-size: 12px; color: #888; margin-bottom: 6px; }
.desk-head h1 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.desk-lead { color: var(--muted); margin-top: 6px; font-size: 14px; }
.desk-head-act { display: flex; gap: 8px; flex-wrap: wrap; }
.desk-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 14px;
}
.desk-stats article {
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  background: rgba(12,12,12,.78);
}
.desk-stats span { font-size: 12px; color: #8a8a8a; }
.desk-stats b { display: block; font-size: 28px; margin: 8px 0 4px; letter-spacing: -.03em; }
.desk-stats small, .desk-stats small a { color: #7a7a7a; font-size: 12px; }
.desk-stats a { text-decoration: underline; text-underline-offset: 3px; }
.desk-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px;
  background: rgba(10,10,10,.82); margin-bottom: 14px;
}
.desk-card-h { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.desk-card-h h2 { font-size: 15px; font-weight: 700; }
.desk-card-h p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.desk-card-h a { font-size: 12px; color: #ccc; }
.desk-pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  border: 1px solid var(--line); border-radius: 99px; padding: 6px 10px; color: #bbb;
}
.hunt-card.is-locked .hunt-row { opacity: .55; }
.desk-split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 12px; }
.desk-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.desk-table th {
  text-align: left; font-size: 11px; letter-spacing: .1em; color: #777;
  padding: 0 8px 10px; border-bottom: 1px solid var(--line); font-weight: 600;
}
.desk-table td { padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.desk-table a { color: #fff; }
.desk-empty { min-height: 140px; display: grid; place-content: center; text-align: center; gap: 6px; }
.muted { color: var(--muted); font-size: 13px; }
.desk-big { font-size: 32px; }
.desk-bars {
  display: flex; align-items: flex-end; gap: 3px; height: 92px;
}
.desk-bars i {
  flex: 1; background: rgba(255,255,255,.28); border-radius: 3px 3px 0 0; min-height: 4px;
}
.is-desk .panel-shell { display: none; }
.is-desk .assist-fab { right: 18px; }
.admin-mini { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.admin-mini button, .admin-mini select, .admin-mini input {
  height: 28px; font-size: 11px; border-radius: 8px; border: 1px solid var(--line);
  background: #111; padding: 0 8px; color: #fff;
}
.admin-mini button { cursor: pointer; }
.admin-desk .desk-table td { vertical-align: top; font-size: 12px; }
.desk-plans { margin-top: 4px; }
.desk .plan { background: rgba(10,10,10,.82); }
.desk-help { max-width: 720px; }
.desk .form { display: flex; flex-direction: column; gap: 12px; }
.desk .form textarea {
  min-height: 100px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(5,4,10,.7); padding: 12px; outline: none; color: #fff;
}

@media (max-width: 1100px) {
  .desk-stats { grid-template-columns: 1fr 1fr; }
  .desk-split { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .desk { grid-template-columns: 1fr; }
  .desk-nav {
    flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line);
    gap: 6px;
  }
  .desk-foot, .desk-sec, .desk-brand span { display: none; }
  .desk-main { padding: 16px; }
  .desk-head { flex-direction: column; align-items: flex-start; }
  .hunt-row { grid-template-columns: 1fr; }
}
