:root {
  --bg: #0a0b0a;
  --bg-2: #0d0f0d;
  --panel: #111312;
  --panel-2: #0f110f;
  --card: #131613;
  --line: #1f241f;
  --line-2: #283028;
  --ink: #e8ebe8;
  --muted: #8a918a;
  --muted-2: #6a716a;
  --green: #2ee06a;
  --green-2: #22c55e;
  --green-dim: #16361f;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 14px; color: var(--ink); }
::placeholder { color: var(--muted-2); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #20262044; border-radius: 8px; }

/* ---------- buttons ---------- */
.btn { padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; background: #1b201b; color: var(--ink); transition: .15s; display: inline-flex; align-items: center; gap: 6px; justify-content: center; }
.btn:hover { background: #232a23; }
.btn-primary { background: var(--green-2); color: #07140b; }
.btn-primary:hover { background: var(--green); }
.btn-ghost { background: transparent; border: 1px solid var(--line-2); }
.btn-ghost:hover { background: #161a16; }
.btn-sm { padding: 6px 12px; font-size: 13px; border-radius: 9px; }
.btn:disabled { opacity: .5; cursor: default; }

/* ---------- avatar ---------- */
.avatar { border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #07140b; font-weight: 800; flex-shrink: 0; }
.avatar.ring { box-shadow: 0 0 0 2px var(--green), 0 0 18px -4px var(--green); }
.av-24 { width: 24px; height: 24px; font-size: 11px; border-radius: 7px; }
.av-32 { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
.av-40 { width: 40px; height: 40px; font-size: 15px; }
.av-64 { width: 64px; height: 64px; font-size: 24px; border-radius: 16px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); display: inline-block; }

/* ================= LANDING ================= */
.land-nav { display: flex; align-items: center; padding: 18px 26px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand .bolt { width: 30px; height: 30px; border-radius: 9px; background: var(--green-2); color: #07140b; display: grid; place-items: center; font-size: 17px; box-shadow: 0 0 18px -3px var(--green); }
.land-nav .right { margin-left: auto; display: flex; gap: 10px; }
.hero { max-width: 860px; margin: 0 auto; padding: 90px 24px; text-align: center; }
.hero h1 { font-size: 52px; line-height: 1.04; letter-spacing: -.03em; margin-bottom: 18px; }
.hero h1 .g { color: var(--green); }
.hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.hero .cta { display: flex; gap: 12px; justify-content: center; }
.badges { display: flex; gap: 26px; justify-content: center; margin-top: 48px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.badges b { color: var(--green); font-weight: 700; }

/* ================= APP SHELL ================= */
.shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.sidebar { background: var(--panel-2); border-right: 1px solid var(--line); display: flex; flex-direction: column; padding: 18px 14px; position: sticky; top: 0; height: 100vh; }
.sb-brand { display: flex; flex-direction: column; gap: 2px; padding: 6px 8px 16px; }
.sb-brand .row { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; }
.sb-brand .tag { font-size: 11px; color: var(--muted-2); padding-left: 1px; }
.sb-user { display: flex; align-items: center; gap: 10px; padding: 11px; margin: 4px 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.sb-user .nm { font-weight: 700; font-size: 14px; }
.sb-user .earn { font-size: 12px; color: var(--green); font-weight: 600; }
.sb-user .trend { margin-left: auto; color: var(--green); }
.sb-nav { display: flex; flex-direction: column; gap: 3px; }
.sb-item { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 14px; background: none; width: 100%; text-align: left; }
.sb-item:hover { background: #161a16; color: var(--ink); }
.sb-item.active { background: var(--green-dim); color: var(--green); border: 1px solid #1f4a2b; }
.sb-item .ic { width: 18px; text-align: center; }
.sb-spacer { flex: 1; }
.sb-fee { border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: var(--card); }
.sb-fee .t { font-size: 12px; font-weight: 700; color: var(--green); display: flex; gap: 6px; align-items: center; margin-bottom: 5px; }
.sb-fee p { font-size: 11.5px; color: var(--muted-2); line-height: 1.45; }
.sb-bottom { display: flex; align-items: center; gap: 9px; padding: 12px 8px 2px; color: var(--muted-2); font-size: 13px; }

.main { min-width: 0; }
.main-inner { max-width: 1000px; margin: 0 auto; padding: 28px 30px 70px; }

/* ---------- dashboard ---------- */
.profile-head { border-radius: 16px; border: 1px solid var(--line); padding: 24px; display: flex; gap: 18px; align-items: flex-start;
  background: radial-gradient(120% 140% at 0% 0%, #0e2417 0%, #0d0f0d 55%); }
.profile-head .meta { flex: 1; }
.profile-head h1 { font-size: 22px; letter-spacing: -.02em; }
.profile-head .sub { color: var(--muted); font-size: 13.5px; margin-top: 1px; }
.tags-row { display: flex; gap: 8px; align-items: center; margin-top: 9px; flex-wrap: wrap; }
.pill { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 9px; border-radius: 20px; }
.pill-green { background: var(--green-dim); color: var(--green); border: 1px solid #1f4a2b; }
.pill-verified { background: rgba(43,217,255,.14); color: var(--cyan); border: 1px solid rgba(43,217,255,.5); box-shadow: 0 0 12px -4px var(--cyan); }
.verified-tag { color: var(--cyan); font-weight: 800; }
.pro-perks { display: flex; flex-direction: column; gap: 7px; margin: 10px 0 2px; font-size: 13.5px; color: var(--ink); }
.pro-perks b { color: var(--cyan); }
.panel.pro-on { border-color: rgba(43,217,255,.4); box-shadow: 0 0 24px -10px var(--cyan); }
.book-box { border: 1px solid rgba(43,217,255,.3); border-radius: 12px; padding: 14px; margin: 4px 0 14px; background: var(--panel-2); box-shadow: 0 0 20px -10px var(--cyan); }
.book-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.book-box input { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; outline: none; color: var(--ink); color-scheme: dark; }
.book-box input:focus { border-color: var(--cyan); }
.kind-toggle { display: flex; gap: 8px; justify-content: center; margin: 0 0 14px; }
.ktab { padding: 8px 18px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); color: var(--muted); font-weight: 700; font-size: 14px; }
.ktab:hover { color: var(--ink); }
.ktab.active { background: var(--green-dim); color: var(--green); border-color: #1f4a2b; box-shadow: 0 0 14px -4px var(--green); }
.kind-badge { position: absolute; bottom: 10px; left: 10px; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 8px; background: rgba(0,0,0,.55); color: #cbd3cb; backdrop-filter: blur(4px); }
.ltag.cond { background: rgba(43,217,255,.14); color: var(--cyan); }
.muted-sm { color: var(--muted-2); font-size: 12.5px; }
.bio { color: var(--muted); font-size: 14px; margin: 16px 2px 4px; }
.links-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 2px 2px; }
.link-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink); transition: .15s; }
.link-chip:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 14px -5px var(--cyan); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 14px; margin-top: 16px; background: var(--card); overflow: hidden; }
.stat { padding: 18px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.stat .l { font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.stat .n.green { color: var(--green); }
.stat .n.blue { color: #38bdf8; }
.stat .n.amber { color: #f59e0b; }
.stat .n.purple { color: #a78bfa; }

.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
@media (max-width: 820px){ .cols{grid-template-columns:1fr} .stats{grid-template-columns:1fr 1fr} }

.panel { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 18px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.panel-head h2 { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 7px; }

/* journey */
.prog-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); margin-bottom: 6px; }
.prog { height: 6px; border-radius: 6px; background: #1c221c; overflow: hidden; margin-bottom: 16px; }
.prog > i { display: block; height: 100%; background: linear-gradient(90deg, var(--green-2), var(--green)); border-radius: 6px; }
.steps { display: flex; flex-direction: column; gap: 4px; }
.step { display: flex; align-items: center; gap: 12px; padding: 9px 6px; }
.step .box { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }
.step.done .box { background: var(--green-2); color: #07140b; }
.step.todo .box { border: 1px solid var(--line-2); }
.step .tx { font-size: 14px; font-weight: 600; }
.step.todo .tx { color: var(--muted-2); }
.step .ring { margin-left: auto; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line-2); }
.step.done .ring { background: var(--green); border-color: var(--green); box-shadow: 0 0 8px var(--green); }

/* my listings */
.mini-list { display: flex; flex-direction: column; gap: 8px; }
.mini { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: var(--panel-2); }
.mini-del { width: 28px; height: 28px; border-radius: 8px; background: transparent; border: 1px solid var(--line); color: var(--muted-2); font-size: 13px; line-height: 1; flex-shrink: 0; margin-left: 8px; }
.mini-del:hover { border-color: #ff4d6a; color: #ff4d6a; background: rgba(255,77,106,.09); }
.mini-thumb { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.mini-thumb.ph { background: #1f2a1f; }
.mini .nm { font-weight: 600; font-size: 14px; }
.mini .pr { font-size: 12.5px; color: var(--muted); }
.mini .badge { margin-left: auto; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.badge.active { background: var(--green-dim); color: var(--green); }
.badge.draft { background: #23262a; color: #9aa3ad; }
.fee-box { margin-top: 14px; border: 1px solid var(--line); border-radius: 11px; padding: 13px; background: var(--panel-2); }
.fee-box .t { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.fee-box p { font-size: 12.5px; color: var(--muted-2); line-height: 1.5; }

/* ---------- marketplace ---------- */
.mkt-head h1 { font-size: 24px; letter-spacing: -.02em; }
.mkt-head p { color: var(--muted); font-size: 14px; margin-top: 3px; }
.search { display: flex; align-items: center; gap: 10px; margin: 18px 0 12px; }
.search .box { flex: 1; display: flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 11px 14px; }
.search .box input { background: none; border: none; outline: none; width: 100%; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fchip { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); color: var(--muted); }
.fchip:hover { color: var(--ink); }
.fchip.active { background: var(--green-dim); color: var(--green); border-color: #1f4a2b; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px){ .cards{grid-template-columns:1fr 1fr} }
@media (max-width: 640px){ .cards{grid-template-columns:1fr} .shell{grid-template-columns:1fr} .sidebar{display:none} }
.svc { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px; display: flex; flex-direction: column; gap: 11px; transition: .15s; }
.svc:hover { border-color: #2a3a2a; transform: translateY(-2px); }
.svc .top { display: flex; align-items: flex-start; gap: 11px; }
.svc .top .nm { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 6px; }
.svc .top .by { font-size: 12px; color: var(--muted-2); }
.svc .sbadge { margin-left: auto; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; background: #1a1d1a; color: #cbd3cb; white-space: nowrap; }
.svc .desc { font-size: 13px; color: var(--muted); }
.svc .chips { display: flex; gap: 6px; flex-wrap: wrap; }
.svc .chip { font-size: 11.5px; padding: 3px 9px; border-radius: 7px; background: #1a1d1a; color: #aab3aa; }
.svc .info { display: flex; gap: 12px; font-size: 12px; color: var(--muted-2); flex-wrap: wrap; }
.svc .info .star { color: #f5b942; }
.svc .foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 2px; padding-top: 11px; border-top: 1px solid var(--line); }
.svc .price .from { font-weight: 800; font-size: 16px; }
.svc .price .mo { font-size: 12px; color: var(--green); font-weight: 600; }

/* ---------- messages ---------- */
.msg-wrap { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 0px); border-left: 1px solid var(--line); }
.msg-list { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.msg-list .h { padding: 18px 18px 12px; font-size: 17px; font-weight: 700; }
.msg-search { margin: 0 14px 8px; display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
.msg-search input { background: none; border: none; outline: none; width: 100%; font-size: 13px; }
.convo { display: flex; gap: 11px; padding: 13px 16px; cursor: pointer; border-bottom: 1px solid var(--line); }
.convo:hover { background: #131613; }
.convo.active { background: var(--green-dim); }
.convo .body { flex: 1; min-width: 0; }
.convo .r1 { display: flex; justify-content: space-between; gap: 8px; }
.convo .nm { font-weight: 700; font-size: 13.5px; }
.convo .tm { font-size: 11px; color: var(--muted-2); white-space: nowrap; }
.convo .pv { font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.convo .unread { background: var(--green-2); color: #07140b; font-size: 11px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 5px; }
.convo-sec { padding: 12px 16px 5px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.bub-author { font-size: 11px; font-weight: 700; color: var(--cyan); margin-bottom: 3px; }

.chat { display: flex; flex-direction: column; min-width: 0; }
.chat-head { padding: 15px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 11px; }
.chat-head .nm { font-weight: 700; display: flex; align-items: center; gap: 7px; }
.chat-head .st { font-size: 12px; color: var(--green); }
.chat-body { flex: 1; overflow-y: auto; padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; }
.bubble { max-width: 70%; width: fit-content; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; word-break: break-word; overflow-wrap: anywhere; }
.bubble .tm { font-size: 10.5px; color: var(--muted-2); margin-top: 5px; display: flex; align-items: center; gap: 4px; }
.bubble.them { background: #16191a; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 5px; }
.bubble.me { background: var(--green-2); color: #07140b; align-self: flex-end; border-bottom-right-radius: 5px; }
.bubble.me .tm { color: #0a3d1d; }
.chat-input { padding: 14px 18px; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.chat-input input { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; outline: none; }
.chat-input input:focus { border-color: #2a3a2a; }

/* ---------- modal / toast ---------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal { background: var(--panel); border: 1px solid var(--line-2); border-radius: 16px; width: 100%; max-width: 420px; padding: 26px; }
.modal h2 { font-size: 20px; margin-bottom: 4px; }
.modal .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); outline: none; }
.field input:focus { border-color: var(--green-2); }
.modal-actions { display: flex; gap: 10px; margin-top: 6px; }
.modal-actions .btn { flex: 1; }
.switch { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }
.switch a { color: var(--green); font-weight: 600; cursor: pointer; }
.err { color: #f87171; font-size: 13px; min-height: 18px; margin-bottom: 6px; }
.upload { display: block; border: 1px dashed var(--line-2); border-radius: 11px; padding: 18px; text-align: center; cursor: pointer; color: var(--muted); font-size: 14px; margin-bottom: 14px; transition: .15s; }
.upload:hover { border-color: var(--green-2); color: var(--ink); }
.upload input { display: none; }
.upload-prev { display: none; width: 100%; height: 150px; object-fit: cover; border-radius: 10px; margin-top: 10px; }

#toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 200;
  background: #1b201b; border: 1px solid var(--line-2); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: .25s; }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.empty { text-align: center; color: var(--muted-2); padding: 50px 20px; }

/* ============ MARKETPLACE (Yad2 + Fiverr style) ============ */
.ai-hero { text-align: center; padding: 14px 0 22px; }
.ai-hero h1 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 16px; }
.ai-hero h1 .ai { color: var(--green); }
.ai-search { position: relative; max-width: 620px; margin: 0 auto; display: flex; align-items: center;
  background: var(--card); border-radius: 14px; padding: 4px;
  box-shadow: 0 0 0 2px transparent; border: 2px solid transparent;
  background-image: linear-gradient(var(--card), var(--card)), linear-gradient(90deg, var(--green-2), #19c3a0, var(--green));
  background-origin: border-box; background-clip: padding-box, border-box; }
.ai-search .beta { background: var(--green-2); color: #07140b; font-size: 11px; font-weight: 800; padding: 5px 9px; border-radius: 8px; margin: 0 6px; }
.ai-search input { flex: 1; background: none; border: none; outline: none; padding: 12px 8px; font-size: 15px; }
.ai-search .spark { padding: 0 14px; font-size: 16px; }

.cat-strip { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 6px 0 22px; }
.cat-ic { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 92px; padding: 12px 6px; border-radius: 14px; background: none; }
.cat-ic:hover { background: #131613; }
.cat-ic.active { background: var(--green-dim); }
.cat-ic .ic { width: 54px; height: 54px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; font-size: 26px; }
.cat-ic.active .ic { border-color: #1f4a2b; box-shadow: 0 0 14px -4px var(--green); }
.cat-ic .lb { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.cat-ic.active .lb { color: var(--green); }

.res-bar { display: flex; justify-content: space-between; align-items: center; padding: 4px 2px 14px; color: var(--muted-2); font-size: 13px; }
.res-bar .sort { font-weight: 600; }

.grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px){ .grid-cards{grid-template-columns:repeat(3,1fr)} }
@media (max-width: 760px){ .grid-cards{grid-template-columns:1fr 1fr} }
@media (max-width: 460px){ .grid-cards{grid-template-columns:1fr} }

.lcard { border: 1px solid var(--line); border-radius: 14px; background: var(--card); overflow: hidden; transition: .15s; cursor: pointer; }
.lcard:hover { border-color: #2a3a2a; transform: translateY(-2px); }
.lcard .thumb { position: relative; height: 160px; overflow: hidden; background: #16191a; }
.lcard .thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lcard .thumb-ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted-2); font-size: 13px; }
.lcard .thumb .emoji { font-size: 54px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.lcard .fav { position: absolute; top: 10px; left: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.35); color: #fff; font-size: 16px; display: grid; place-items: center; backdrop-filter: blur(4px); }
.lcard .fav.on { color: #ff5d8f; }
.lcard .lbadge { position: absolute; top: 10px; right: 10px; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 20px; background: rgba(0,0,0,.45); color: #fff; backdrop-filter: blur(4px); }
.lbody { padding: 13px 14px 14px; display: flex; flex-direction: column; gap: 6px; }
.lprice { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.ltitle { font-size: 14px; font-weight: 600; line-height: 1.3; }
.lloc { font-size: 12.5px; color: var(--muted-2); }
.ltags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.ltag { font-size: 11px; padding: 3px 8px; border-radius: 7px; background: #1a1d1a; color: #aab3aa; }
.lfoot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; padding-top: 11px; border-top: 1px solid var(--line); }
.lseller { font-size: 12px; color: var(--muted-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lseller .star { color: #f5b942; font-weight: 700; }

/* ================= NEON / CYBERPUNK SKIN ================= */
:root { --cyan: #2bd9ff; --magenta: #ff3bd4; --neon: #34ff8a; }
body {
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #05060b;
  background-image:
    radial-gradient(900px 520px at 50% -12%, rgba(124,58,237,.20), transparent 60%),
    radial-gradient(760px 520px at 100% 0%, rgba(43,217,255,.10), transparent 55%),
    radial-gradient(680px 520px at 0% 12%, rgba(255,59,212,.08), transparent 55%),
    linear-gradient(rgba(43,217,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,217,255,.045) 1px, transparent 1px);
  background-size: auto, auto, auto, 38px 38px, 38px 38px;
  background-attachment: fixed;
}
h1, h2, .brand, .sb-brand .row, .logo, .hero h1, .ai-hero h1 { font-family: 'Orbitron', sans-serif; }

/* brand */
.brand { color: var(--cyan); letter-spacing: .04em; text-shadow: 0 0 18px rgba(43,217,255,.55); }
.brand .bolt { background: linear-gradient(135deg, var(--cyan), var(--neon)); color: #04121a; box-shadow: 0 0 18px var(--cyan), 0 0 5px var(--cyan); }

/* landing hero */
.hero { padding: 60px 24px 96px; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px; border: 1px solid rgba(52,255,138,.5);
  border-radius: 30px; color: var(--neon); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  box-shadow: inset 0 0 18px rgba(52,255,138,.12), 0 0 16px rgba(52,255,138,.15); margin-bottom: 30px; }
.status-pill .led { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: 104px; line-height: .9; letter-spacing: .02em; text-transform: uppercase; font-weight: 900; margin-bottom: 22px;
  background: linear-gradient(92deg, #ff2bd6, #ff6a3d 55%, #ffd23d); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,43,214,.35)); }
.hero h1 .g { display: block; font-size: .34em; margin-top: 14px; letter-spacing: .04em; -webkit-text-fill-color: #eaf6ff; color: #eaf6ff;
  filter: drop-shadow(0 0 16px rgba(43,217,255,.5)); }
.hero p { font-size: 18px; }
.badges b { color: var(--neon); }
@media (max-width: 640px){ .hero h1{ font-size: 58px; } }

/* buttons */
.btn-primary { background: linear-gradient(135deg, var(--neon), #12d268); color: #03130a; box-shadow: 0 0 18px rgba(52,255,138,.35); }
.btn-primary:hover { background: linear-gradient(135deg, #57ffa0, #18e070); box-shadow: 0 0 28px rgba(52,255,138,.6); }
.btn-ghost { border-color: rgba(43,217,255,.4); color: var(--cyan); }
.btn-ghost:hover { border-color: var(--cyan); background: rgba(43,217,255,.07); box-shadow: 0 0 16px rgba(43,217,255,.22); }

/* surfaces */
.panel, .lcard, .profile-head, .stats, .sb-fee, .sb-user, .modal, .mini, .fee-box, .res-bar, .convo, .chat-head, .msg-search { border-color: rgba(43,217,255,.16); }
.lcard:hover { border-color: var(--cyan); box-shadow: 0 0 26px -8px var(--cyan); }
.panel:hover { border-color: rgba(43,217,255,.32); }

/* sidebar */
.sidebar { background: rgba(7,9,14,.72); backdrop-filter: blur(8px); border-right-color: rgba(43,217,255,.14); }
.sb-item.active { background: rgba(52,255,138,.10); color: var(--neon); border-color: rgba(52,255,138,.5); box-shadow: 0 0 16px -4px var(--neon); }
.avatar.ring { box-shadow: 0 0 0 2px var(--neon), 0 0 20px -2px var(--neon); }
.sb-fee .t, .sb-user .earn { color: var(--neon); }

/* dashboard accents */
.pill-green { background: rgba(52,255,138,.12); color: var(--neon); border-color: rgba(52,255,138,.5); }
.stat .n.green { color: var(--neon); text-shadow: 0 0 16px rgba(52,255,138,.45); }
.stat .n.blue { color: var(--cyan); text-shadow: 0 0 16px rgba(43,217,255,.45); }
.prog > i { background: linear-gradient(90deg, var(--cyan), var(--neon)); box-shadow: 0 0 12px var(--neon); }
.step.done .box, .badge.active { background: var(--neon); color: #03130a; }
.badge.active { background: rgba(52,255,138,.14); color: var(--neon); }
.step.done .ring { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 10px var(--neon); }
.profile-head { background: radial-gradient(130% 150% at 0% 0%, rgba(52,255,138,.14) 0%, #0a0c12 55%); }

/* marketplace */
.ai-hero h1 .ai { color: var(--cyan); text-shadow: 0 0 16px rgba(43,217,255,.55); }
.ai-search { box-shadow: 0 0 24px -6px var(--cyan);
  background-image: linear-gradient(var(--card), var(--card)), linear-gradient(92deg, var(--magenta), var(--cyan), var(--neon)); }
.ai-search .beta { background: linear-gradient(135deg, var(--magenta), #ff7a3d); color: #1a0010; }
.fchip.active { background: rgba(52,255,138,.12); color: var(--neon); border-color: rgba(52,255,138,.5); box-shadow: 0 0 14px -4px var(--neon); }
.lprice { color: #eaf6ff; text-shadow: 0 0 14px rgba(43,217,255,.25); }

/* messages */
.bubble.me { background: linear-gradient(135deg, var(--neon), #12d268); color: #03130a; box-shadow: 0 0 16px -4px var(--neon); }
.bubble.me .tm { color: #064020; }
.convo.active { background: rgba(52,255,138,.10); }
.dot { background: var(--neon); box-shadow: 0 0 10px var(--neon); }
.chat-head .st { color: var(--neon); }

/* danger button + follow */
/* landing waitlist / early access */
.waitlist { max-width: 440px; margin: 40px auto 0; border: 1px solid var(--line-2); border-radius: 16px; padding: 22px; background: var(--card);
  box-shadow: 0 0 30px -10px var(--cyan); }
.wl-title { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.wl-sub { font-size: 13.5px; color: var(--muted); margin: 4px 0 14px; }
.wl-form { display: flex; gap: 8px; }
.wl-form input { flex: 1; background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; outline: none; color: var(--ink); }
.wl-form input:focus { border-color: var(--cyan); }
.wl-note { margin-top: 10px; min-height: 18px; }

.contact-list { display: flex; flex-direction: column; gap: 8px; margin: 6px 0 16px; }
.contact-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--card); color: var(--ink); transition: .15s; }
.contact-row:hover { border-color: var(--cyan); box-shadow: 0 0 14px -6px var(--cyan); }
.contact-row span { color: var(--muted); font-size: 13px; }
.contact-row b { margin-left: auto; font-size: 13px; color: var(--cyan); }
.agreement { border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; margin: 4px 0 12px; background: var(--panel-2); display: flex; flex-direction: column; gap: 8px; }
.agreement-item { font-size: 13px; color: var(--muted); line-height: 1.45; padding-left: 16px; position: relative; }
.agreement-item::before { content: '•'; position: absolute; left: 2px; color: var(--green); }
.agree-check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); margin-bottom: 14px; cursor: pointer; }
.agree-check input { width: 16px; height: 16px; accent-color: var(--green-2); }
.split-preview { border: 1px solid var(--line); border-radius: 11px; padding: 6px 12px; margin: 4px 0 14px; background: var(--panel-2); }
.split-row { display: flex; justify-content: space-between; padding: 7px 2px; font-size: 14px; border-bottom: 1px solid var(--line); }
.split-row:last-child { border-bottom: none; }
.split-row.owner b { color: var(--neon); }
.appeal-box { width: 100%; min-height: 90px; resize: vertical; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; outline: none; color: var(--ink); font-size: 14px; }
.appeal-box:focus { border-color: var(--green-2); }
.btn-danger { background: linear-gradient(135deg, #ff4d6a, #e11d48); color: #fff; box-shadow: 0 0 16px rgba(255,77,106,.35); }
.btn-danger:hover { background: linear-gradient(135deg, #ff6680, #f01e4d); box-shadow: 0 0 24px rgba(255,77,106,.55); }
.lactions { display: flex; gap: 6px; }
.follow-btn.on { background: rgba(52,255,138,.12); color: var(--neon); border-color: rgba(52,255,138,.5); box-shadow: 0 0 12px -4px var(--neon); }

/* signup payment / billing */
.sec-label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); margin: 16px 0 8px; }
.row2 { display: flex; gap: 10px; margin-bottom: 13px; }
.row2 > input, .row2 > select { flex: 1; width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); outline: none; }
.row2 > input:focus { border-color: var(--green-2); }
.pay-note { font-size: 11.5px; color: var(--muted-2); line-height: 1.45; margin: 4px 0 6px; }
.bill-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 2px; font-size: 14px; border-top: 1px solid var(--line); }
.bill-row:first-of-type { border-top: none; }
.bill-row > span:first-child { color: var(--muted); }

/* sponsored / promote */
.sponsored { position: absolute; top: 10px; right: 10px; font-size: 10.5px; font-weight: 800; padding: 3px 9px; border-radius: 20px;
  background: rgba(0,0,0,.55); color: #ffd23d; backdrop-filter: blur(4px); letter-spacing: .03em; box-shadow: 0 0 12px -3px #ffd23d; }
.mini-promote { width: 28px; height: 28px; border-radius: 8px; background: transparent; border: 1px solid var(--line); color: var(--muted-2); font-size: 13px; line-height: 1; flex-shrink: 0; margin-left: 6px; }
.mini-promote:hover { border-color: var(--cyan); color: var(--cyan); }
.mini-promote.on { border-color: #ffd23d; color: #ffd23d; }
.promo-opts { display: flex; gap: 10px; margin: 6px 0 14px; }
.promo-opt { flex: 1; display: flex; flex-direction: column; gap: 3px; align-items: center; padding: 14px 8px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--card); color: var(--ink); }
.promo-opt b { font-size: 18px; color: var(--neon); }
.promo-opt span { font-size: 11px; color: var(--muted-2); text-align: center; }
.promo-opt:hover { border-color: var(--neon); box-shadow: 0 0 16px -6px var(--neon); }

/* requests (reverse marketplace) */
.req { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.req:hover { border-color: rgba(43,217,255,.32); }
.req .rb { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.req .rtitle { font-weight: 700; font-size: 15px; line-height: 1.3; }
.req .rbudget { font-size: 18px; font-weight: 800; color: var(--neon); white-space: nowrap; text-shadow: 0 0 14px rgba(52,255,138,.4); }
.req .rdesc { font-size: 13px; color: var(--muted); }
.req .rmeta { font-size: 12px; color: var(--muted-2); }
.req .rfoot { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 4px; padding-top: 11px; border-top: 1px solid var(--line); }
.rstatus { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.status-open { background: rgba(43,217,255,.12); color: var(--cyan); }
.status-taken { background: rgba(245,158,11,.16); color: #f59e0b; }
.status-done { background: rgba(52,255,138,.14); color: var(--neon); }
.boosted { font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 20px; background: rgba(255,210,61,.14); color: #ffd23d; letter-spacing: .03em; white-space: nowrap; }
.section-sub { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); margin: 4px 0 10px; }

/* team chat */
.team-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.team-chat { max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 4px 2px; }
.tmsg { background: var(--panel-2); border: 1px solid var(--line); border-radius: 11px; padding: 9px 12px; max-width: 80%; align-self: flex-start; }
.tmsg.mine { align-self: flex-end; background: rgba(52,255,138,.10); border-color: rgba(52,255,138,.3); }
.tmsg .ta { font-size: 12px; font-weight: 700; color: var(--cyan); }
.tmsg.mine .ta { color: var(--neon); }
.tmsg .tt { font-size: 10.5px; color: var(--muted-2); margin-left: 7px; }
.tmsg .tx { font-size: 13.5px; margin-top: 3px; word-break: break-word; }
.team-input { display: flex; gap: 8px; margin-top: 12px; }
.team-input input { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; outline: none; }
.team-input input:focus { border-color: #2a3a2a; }

/* ---------- description textarea ---------- */
.field textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); outline: none; resize: vertical; min-height: 80px; line-height: 1.5; color: var(--ink); }
.field textarea:focus { border-color: var(--green-2); }
.ldesc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 8px 0 14px; }

/* ---------- star picker ---------- */
.stars { display: flex; gap: 4px; margin: 10px 0 18px; }
.star-btn { font-size: 30px; background: none; padding: 2px 4px; border-radius: 8px; color: var(--muted-2); transition: color .1s, filter .1s; }
.star-btn.on { color: #ffd23d; filter: drop-shadow(0 0 8px rgba(255,210,61,.65)); }
.star-btn:hover { color: #ffd23d; opacity: .8; }

/* ---------- reviews ---------- */
.rev-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.rev-item { border: 1px solid rgba(43,217,255,.12); border-radius: 11px; padding: 13px; background: var(--panel-2); }
.rev-head { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.rev-stars { color: #ffd23d; font-size: 13px; letter-spacing: 1px; margin-left: auto; text-shadow: 0 0 8px rgba(255,210,61,.5); }
.rev-text { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.rev-date { font-size: 11px; color: var(--muted-2); margin-top: 5px; }

/* ---------- logout ---------- */
.sb-logout { display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 10px; color: var(--muted-2); font-weight: 600; font-size: 13px; background: none; width: 100%; text-align: left; margin-top: 2px; }
.sb-logout:hover { background: rgba(255,77,106,.10); color: #ff6680; }

/* ---------- notification badge ---------- */
.notif-badge { background: #ff4d6a; color: #fff; font-size: 10px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; display: inline-grid; place-items: center; padding: 0 5px; margin-left: auto; box-shadow: 0 0 10px rgba(255,77,106,.55); }

/* ---------- notification panel ---------- */
.notif-list { display: flex; flex-direction: column; max-height: 420px; overflow-y: auto; gap: 2px; }
.notif-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 8px; border-radius: 10px; }
.notif-item.unread { background: rgba(43,217,255,.06); border: 1px solid rgba(43,217,255,.14); }
.notif-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notif-body { flex: 1; min-width: 0; }
.notif-text { font-size: 13.5px; line-height: 1.4; }
.notif-date { font-size: 11px; color: var(--muted-2); margin-top: 3px; }
.notif-dot-sm { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); flex-shrink: 0; margin-top: 6px; }

/* ---------- edit listing button ---------- */
.mini-edit { width: 28px; height: 28px; border-radius: 8px; background: transparent; border: 1px solid var(--line); color: var(--muted-2); font-size: 15px; line-height: 1; flex-shrink: 0; margin-left: 6px; }
.mini-edit:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 10px -3px var(--cyan); }
