:root {
  --bg: #07070f;
  --bg-2: #0c0c18;
  --surface: #11111f;
  --surface-2: #161628;
  --surface-3: #1c1c34;
  --line: #26263f;
  --line-soft: #1d1d31;
  --text: #f4f2ff;
  --muted: #8f8fb3;
  --violet: #a855f7;
  --violet-2: #c084fc;
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
  --pink: #f43f7e;
  --accent: var(--violet);
  --accent-2: var(--violet-2);
  --ok: #2dd4a7;
  --warn: #fbbf24;
  --err: #fb6f7e;
  --danger: #f43f5e;
  --grad: linear-gradient(110deg, var(--violet), var(--cyan));
  --grad-soft: linear-gradient(110deg, rgba(168,85,247,.7), rgba(34,211,238,.7));
  --glow-v: 0 0 24px rgba(168,85,247,.55);
  --glow-c: 0 0 24px rgba(34,211,238,.45);
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 30px 70px -32px rgba(0,0,0,.85);
  --font: "Segoe UI", "Inter", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Consolas", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(800px 600px at 0% 10%, rgba(34,211,238,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
a { color: var(--cyan-2); text-decoration: none; transition: color .15s; }
a:hover { color: #aef3ff; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.18; }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }
.page { padding: 30px 0 70px; position: relative; z-index: 1; }
.page--center { display: flex; align-items: center; min-height: 80vh; }
.page-title { font-size: 22px; font-weight: 800; letter-spacing: .3px; }
.muted { color: var(--muted); }
.empty { padding: 30px; text-align: center; color: var(--muted); }
.backlink { display: inline-block; color: var(--muted); margin-bottom: 16px; letter-spacing: .3px; }
.backlink:hover { color: var(--cyan-2); }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; color: var(--text); }
.brand__mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; font-weight: 900; color: #fff; font-size: 16px; background: var(--grad); box-shadow: var(--glow-v); }
.brand__name { font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase; }
.brand--lg .brand__mark { width: 42px; height: 42px; font-size: 21px; border-radius: 11px; }
.brand--lg .brand__name { font-size: 21px; }
.brand--admin .brand__name { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 11px; padding: 11px 19px; font-weight: 700; font-size: 14px; cursor: pointer; transition: .18s ease; background: var(--surface-2); color: var(--text); white-space: nowrap; letter-spacing: .3px; position: relative; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--block { width: 100%; }
.btn--sm { padding: 7px 13px; font-size: 13px; border-radius: 9px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--glow-v); }
.btn--primary:hover { box-shadow: 0 0 34px rgba(168,85,247,.7), 0 0 18px rgba(34,211,238,.4); }
.btn--outline { background: rgba(255,255,255,.02); border-color: var(--line); color: var(--text); }
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan-2); box-shadow: var(--glow-c); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--violet); box-shadow: var(--glow-v); }
.btn--muted { background: var(--surface-2); color: var(--muted); }
.btn--danger { background: rgba(244,63,94,.12); color: #ff9aa8; border-color: rgba(244,63,94,.35); }
.btn--danger:hover { background: rgba(244,63,94,.2); box-shadow: 0 0 22px rgba(244,63,94,.4); }
.btn--vk { background: #4a76a8; color: #fff; }
.btn--tg { background: linear-gradient(120deg,#2aabee,#229ed9); color: #fff; }

.input { width: 100%; background: #0c0c17; border: 1px solid var(--line); color: var(--text); border-radius: 11px; padding: 12px 14px; font-size: 14px; font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.input::placeholder { color: #5c5c7a; }
.input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(168,85,247,.18), var(--glow-v); }
.input--color { padding: 4px; height: 44px; }
.input--xs { width: 76px; }
textarea.input { resize: vertical; min-height: 46px; }
.field { display: block; margin-bottom: 15px; }
.field__label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; letter-spacing: .4px; text-transform: uppercase; }
.field--check { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.field--check input { width: 17px; height: 17px; accent-color: var(--violet); }
.field__pass { position: relative; display: block; }
.field__eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: 0; cursor: pointer; font-size: 16px; opacity: .7; }

.alert { border-radius: 12px; padding: 12px 15px; margin-bottom: 15px; font-size: 14px; border: 1px solid transparent; }
.alert--ok { background: rgba(45,212,167,.1); color: #6ff0cf; border-color: rgba(45,212,167,.3); }
.alert--err { background: rgba(251,111,126,.1); color: #ffa3ad; border-color: rgba(251,111,126,.3); }
.alert--warn { background: rgba(251,191,36,.1); color: #fcd34d; border-color: rgba(251,191,36,.3); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: lowercase; border: 1px solid transparent; }
.badge--paid { background: rgba(45,212,167,.14); color: #6ff0cf; border-color: rgba(45,212,167,.3); }
.badge--pending { background: rgba(251,191,36,.14); color: #fcd34d; border-color: rgba(251,191,36,.3); }
.badge--failed, .badge--canceled { background: rgba(244,63,94,.14); color: #ff9aa8; border-color: rgba(244,63,94,.3); }

.card { position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(168,85,247,.5), rgba(34,211,238,.18) 45%, rgba(255,255,255,.04)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.centerbox { max-width: 470px; margin: 0 auto; text-align: center; }
.centerbox__actions { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.resultico { width: 70px; height: 70px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-size: 32px; font-weight: 800; }
.resultico--ok { background: rgba(45,212,167,.14); color: #6ff0cf; box-shadow: 0 0 30px rgba(45,212,167,.4); }
.resultico--wait { background: rgba(251,191,36,.14); box-shadow: 0 0 30px rgba(251,191,36,.3); }
.resultico--err { background: rgba(244,63,94,.14); color: #ff9aa8; box-shadow: 0 0 30px rgba(244,63,94,.35); }

.topbar { position: sticky; top: 0; z-index: 40; background: rgba(7,7,15,.78); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
.topbar__inner { max-width: 1200px; margin: 0 auto; padding: 15px 22px; display: flex; align-items: center; justify-content: space-between; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.wallet { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--line); padding: 9px 14px; border-radius: 11px; color: var(--text); font-weight: 700; font-size: 14px; transition: .16s; }
.wallet:hover { border-color: var(--cyan); box-shadow: var(--glow-c); }
.wallet svg { width: 17px; height: 17px; fill: var(--cyan); stroke: none; }

.usermenu { position: relative; }
.usermenu__btn { position: relative; background: none; border: 0; cursor: pointer; padding: 0; }
.usermenu__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: var(--glow-v); }
.usermenu__dot { position: absolute; right: 0; bottom: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--ok); border: 2px solid var(--bg); box-shadow: 0 0 8px var(--ok); }
.usermenu__drop, .mainnav__drop { position: absolute; right: 0; top: calc(100% + 12px); min-width: 210px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 8px; box-shadow: var(--shadow); display: none; z-index: 50; }
.usermenu.is-open .usermenu__drop, .mainnav__group.is-open .mainnav__drop { display: block; }
.usermenu__drop a, .mainnav__drop a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--text); font-size: 14px; }
.usermenu__drop a:hover, .mainnav__drop a:hover { background: var(--surface-3); color: var(--cyan-2); }
.usermenu__name { padding: 7px 12px 11px; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px; }
.usermenu__logout { width: 100%; text-align: left; background: none; border: 0; color: #ff9aa8; padding: 10px 12px; border-radius: 9px; cursor: pointer; font: inherit; }
.usermenu__logout:hover { background: rgba(244,63,94,.1); }

.mainnav { max-width: 1200px; margin: 0 auto; padding: 12px 22px 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.mainnav__group { position: relative; }
.mainnav__link { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid transparent; color: var(--muted); font: inherit; font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 11px; cursor: pointer; letter-spacing: .3px; transition: .15s; }
.mainnav__link:hover { color: var(--text); background: var(--surface-2); border-color: var(--line-soft); }
.mainnav__link.is-active { background: var(--grad); color: #fff; box-shadow: var(--glow-v); }
.mainnav__drop { left: 0; right: auto; }
.chev { width: 15px; height: 15px; }

.sitefooter { text-align: center; color: var(--muted); padding: 26px; font-size: 13px; border-top: 1px solid var(--line-soft); margin-top: 34px; position: relative; z-index: 1; }
.sitefooter__links { display: block; margin-top: 6px; }
.sitefooter--landing { border: 0; background: rgba(0,0,0,.25); }

.promobar { position: relative; display: flex; align-items: center; gap: 16px; background: linear-gradient(110deg, var(--surface), var(--bg-2)); border-radius: var(--radius); padding: 17px 19px; box-shadow: var(--shadow); overflow: hidden; }
.promobar::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.promobar__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(34,211,238,.12); display: grid; place-items: center; box-shadow: var(--glow-c); }
.promobar__icon svg { fill: var(--cyan); stroke: none; width: 22px; height: 22px; }
.promobar__text { flex: 1; }
.promobar__text b { display: block; }
.promobar__text span { color: var(--muted); font-size: 13.5px; }

.grid { display: grid; gap: 18px; }
.grid--dash { grid-template-columns: 1fr 1.6fr; margin-top: 18px; }
.grid--dash .bonus { grid-column: 1 / 2; }
.welcome { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.welcome__title { font-size: 19px; }
.welcome__avatar { width: 88px; height: 88px; border-radius: 18px; background: var(--grad); display: grid; place-items: center; font-size: 36px; font-weight: 800; color: #fff; flex: none; box-shadow: var(--glow-v); }
.stats__head { display: flex; justify-content: space-between; align-items: center; }
.stats__time { color: var(--muted); font-size: 12.5px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 12px; }
.stat { display: flex; align-items: center; gap: 11px; }
.stat__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; }
.stat__ico--a { background: rgba(244,63,126,.14); }
.stat__ico--b { background: rgba(34,211,238,.14); }
.stat__ico--c { background: rgba(168,85,247,.14); }
.stat__ico--d { background: rgba(45,212,167,.14); }
.stat b { display: block; font-size: 19px; }
.stat span { color: var(--muted); font-size: 12.5px; }
.bonus__icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(34,211,238,.12); display: grid; place-items: center; margin-bottom: 11px; box-shadow: var(--glow-c); }
.bonus__icon svg { fill: var(--cyan); stroke: none; width: 22px; height: 22px; }
.bonus p { color: var(--muted); margin: 6px 0 16px; }
.bonus b { color: var(--text); }

.projtabs { display: flex; gap: 9px; margin-bottom: 24px; flex-wrap: wrap; }
.projtabs__tab { padding: 10px 20px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); font-weight: 700; letter-spacing: .4px; transition: .16s; }
.projtabs__tab:hover { color: var(--text); border-color: var(--violet); }
.projtabs__tab.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--glow-v); }

.shopsec { margin-bottom: 38px; }
.shopsec__title { font-size: 15px; color: var(--cyan-2); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; padding-bottom: 11px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.shopsec__title::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--cyan); box-shadow: var(--glow-c); }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pcard { position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s; }
.pcard:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), 0 24px 50px -22px rgba(168,85,247,.6); }
.pcard__banner { position: relative; height: 158px; padding: 16px; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; background-image: linear-gradient(135deg, color-mix(in srgb, var(--accent) 60%, #0a0a14), #0a0a14); }
.pcard__banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 0%, transparent 40%, rgba(7,7,15,.7)); }
.pcard__banner--lg { height: 250px; }
.pcard__tag { position: absolute; top: 11px; left: 11px; z-index: 2; font-size: 11px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.16); padding: 3px 9px; border-radius: 7px; color: #dfe3ff; letter-spacing: .5px; backdrop-filter: blur(4px); }
.pcard__cardtitle { position: relative; z-index: 2; font-size: 18px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.7); }
.pcard__accent { position: absolute; left: 16px; right: 16px; bottom: 18px; height: 3px; border-radius: 3px; z-index: 2; background: var(--accent); box-shadow: 0 0 14px var(--accent), 0 0 28px var(--accent); }
.pcard__body { padding: 17px; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-size: 15px; font-weight: 800; letter-spacing: .3px; }
.pcard__features { list-style: none; margin: 9px 0 15px; padding: 0; flex: 1; }
.pcard__features li { position: relative; padding-left: 16px; color: var(--muted); font-size: 13px; margin: 5px 0; }
.pcard__features li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.pcard__pricerow, .product__pricerow { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.pcard__disc { background: linear-gradient(135deg,#fb923c,#f43f5e); color: #fff; font-weight: 800; font-size: 12px; padding: 3px 8px; border-radius: 7px; box-shadow: 0 0 16px rgba(244,63,94,.4); }
.pcard__old { color: var(--err); text-decoration: line-through; font-size: 13px; }
.pcard__now { font-size: 18px; font-weight: 800; margin-left: auto; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.product__media .pcard__banner { border-radius: var(--radius); border: 1px solid var(--line); }
.product__crumbs { color: var(--cyan-2); font-size: 12.5px; margin-bottom: 7px; letter-spacing: 1px; text-transform: uppercase; }
.product__title { font-size: 26px; font-weight: 800; }
.product__desc { color: var(--muted); }
.product__features { list-style: none; padding: 0; margin: 16px 0; }
.product__features li { position: relative; padding-left: 22px; margin: 8px 0; }
.product__features li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); font-weight: 700; }
.product__price { font-size: 28px; font-weight: 900; margin-left: auto; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product__hint { color: var(--muted); font-size: 13px; margin-top: 13px; }

.purchases { display: grid; gap: 14px; margin-top: 16px; }
.purchase { border: 1px solid var(--line); border-radius: 13px; padding: 17px; background: var(--surface); transition: border-color .16s; }
.purchase:hover { border-color: var(--violet); }
.purchase__head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.purchase__meta { color: var(--muted); font-size: 13px; }
.purchase__content { margin-top: 11px; background: #0a0a16; border: 1px solid var(--line-soft); border-radius: 10px; padding: 13px; color: #cdd3f5; white-space: pre-wrap; word-break: break-word; }

.faqtabs { display: flex; gap: 8px; margin: 18px 0; }
.faqtabs__tab { background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--muted); padding: 9px 8px; font: inherit; font-weight: 700; cursor: pointer; letter-spacing: .4px; }
.faqtabs__tab.is-active { color: var(--text); border-color: var(--cyan); }
.faqsearch { margin-bottom: 16px; }
.faqitem { border: 1px solid var(--line-soft); border-radius: 12px; margin-bottom: 11px; background: var(--surface); overflow: hidden; transition: border-color .16s; }
.faqitem:hover { border-color: var(--line); }
.faqitem[open] { border-color: var(--violet); }
.faqitem summary { padding: 15px 17px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem summary::after { content: "⌄"; color: var(--cyan); transition: transform .2s; }
.faqitem[open] summary::after { transform: rotate(180deg); }
.faqitem__answer { padding: 0 17px 15px; color: var(--muted); }
.faqhelp { text-align: center; margin-top: 24px; color: var(--muted); }
.faqhelp__btns { display: flex; gap: 10px; justify-content: center; margin-top: 11px; }

.finance { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; }
.finance__subtitle { font-size: 16px; margin: 18px 0 12px; }
.paymethods { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; margin-bottom: 10px; }
.paymethod { position: relative; background: var(--surface); border: 1.5px solid var(--line); border-radius: 13px; padding: 24px; cursor: pointer; color: var(--text); font: inherit; font-weight: 800; font-size: 16px; letter-spacing: .4px; transition: .16s; }
.paymethod:hover { border-color: var(--violet); }
.paymethod.is-active { border-color: var(--violet); box-shadow: var(--glow-v); }
.paymethod__badge { position: absolute; top: 9px; right: 9px; font-size: 11px; background: var(--surface-3); padding: 2px 8px; border-radius: 6px; color: var(--muted); }
.sumrow { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.sumrow b { color: var(--text); }
.sumrow--total { font-size: 18px; border-bottom: 0; }
.sumrow--total b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.finance__note { color: var(--muted); font-size: 12.5px; margin-top: 14px; }
.finance__history { margin-top: 18px; }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; color: var(--muted); font-weight: 600; padding: 11px 10px; border-bottom: 1px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: .6px; }
.table td { padding: 12px 10px; border-bottom: 1px solid var(--line-soft); }
.table tbody tr:hover { background: rgba(168,85,247,.05); }
.table--sm td, .table--sm th { padding: 7px 8px; }
.table .pos { color: #6ff0cf; }
.table .neg { color: #ff9aa8; }
.rowactions { display: flex; gap: 6px; align-items: center; }
.rowactions form { display: inline; }

.admin { display: flex; min-height: 100vh; position: relative; z-index: 1; }
.adminbar { width: 240px; flex: none; background: rgba(10,10,22,.7); backdrop-filter: blur(12px); border-right: 1px solid var(--line-soft); padding: 22px 16px; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; }
.adminnav { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.adminnav a { padding: 11px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; letter-spacing: .3px; transition: .15s; }
.adminnav a:hover { background: var(--surface-2); color: var(--cyan-2); }
.adminnav a.is-active { background: var(--grad); color: #fff; box-shadow: var(--glow-v); }
.adminbar__exit { margin-top: auto; color: var(--muted); padding: 11px 14px; }
.admin__main { flex: 1; min-width: 0; padding: 24px 30px 60px; }
.admin__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.admin__title { font-size: 23px; }
.admin__who { color: var(--muted); }
.acards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 15px; margin-bottom: 22px; }
.acard { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: 14px; padding: 18px; }
.acard__label { color: var(--muted); font-size: 13px; }
.acard__value { display: block; font-size: 26px; font-weight: 800; margin-top: 6px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.panel { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; }
.panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
.panel__title { font-size: 17px; }
.panel__sub { font-size: 14px; color: var(--cyan-2); margin: 20px 0 9px; letter-spacing: .4px; }
.acolumns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.aform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
.aform__actions { display: flex; gap: 10px; margin-top: 6px; }
.aform--row { border-top: 1px solid var(--line-soft); padding-top: 16px; margin-top: 16px; }
.inlineform { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.inlineform .input { width: auto; flex: 1; min-width: 120px; }
.inlineform--new { border-top: 1px dashed var(--line); padding-top: 12px; margin-top: 12px; }
.searchform { display: flex; gap: 8px; }
.searchform .input { width: 260px; }
.actionsrow { display: flex; gap: 10px; flex-wrap: wrap; }
.actionsrow form { display: inline; }
.kv { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.kv span { color: var(--muted); }
.imgprev { width: 200px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); margin: 8px 0; }
code { background: #0a0a16; padding: 2px 7px; border-radius: 6px; font-size: 12.5px; color: var(--cyan-2); font-family: var(--mono); }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 100; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); max-width: 330px; }
.toast--ok { border-left: 3px solid var(--ok); }
.toast--err { border-left: 3px solid var(--err); }

.landing { position: relative; overflow: hidden; min-height: 100vh; z-index: 1; }
.landing__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .55; z-index: 0; pointer-events: none; }
.landing__glow--a { width: 540px; height: 540px; background: var(--violet); top: -170px; right: -120px; }
.landing__glow--b { width: 460px; height: 460px; background: var(--cyan); bottom: -180px; left: -120px; opacity: .35; }
.lnav { position: relative; z-index: 5; max-width: 1200px; margin: 0 auto; padding: 24px 22px; display: flex; align-items: center; gap: 24px; }
.lnav__links { display: flex; gap: 6px; margin: 0 auto; background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); padding: 6px; border-radius: 13px; backdrop-filter: blur(8px); }
.lnav__links a { padding: 8px 17px; border-radius: 9px; color: var(--muted); font-weight: 600; font-size: 14px; letter-spacing: .3px; }
.lnav__links a:hover { color: var(--text); }
.lnav__links a.is-active { background: var(--surface-3); color: var(--cyan-2); }
.hero { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 22px 40px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; min-height: 72vh; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.3); color: var(--cyan-2); padding: 8px 15px; border-radius: 999px; font-size: 13px; box-shadow: var(--glow-c); }
.hero__badge svg { width: 15px; height: 15px; }
.hero__title { font-size: clamp(44px, 7vw, 82px); font-weight: 900; letter-spacing: 1px; margin: 20px 0 16px; text-transform: uppercase; background: linear-gradient(120deg, #fff 10%, var(--violet-2) 50%, var(--cyan-2)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 60px rgba(168,85,247,.3); }
.hero__sub { color: var(--muted); font-size: 16px; max-width: 450px; }
.hero__actions { display: flex; gap: 12px; margin-top: 28px; }
.hero__art { position: relative; height: 400px; }
.orb { position: absolute; border-radius: 50%; animation: float 7s ease-in-out infinite; }
.orb--1 { width: 210px; height: 210px; top: 30px; right: 60px; background: radial-gradient(circle at 35% 30%, var(--violet-2), #5b21b6); box-shadow: 0 0 80px -10px var(--violet); }
.orb--2 { width: 74px; height: 74px; bottom: 40px; right: 240px; background: radial-gradient(circle at 35% 30%, var(--cyan-2), #0e7490); box-shadow: 0 0 50px -6px var(--cyan); animation-delay: 1.2s; }
.planet { position: absolute; width: 126px; height: 126px; border-radius: 50%; left: 60px; bottom: 50px; background: radial-gradient(circle at 35% 30%, var(--cyan-2), #155e75); box-shadow: 0 0 60px -10px var(--cyan); animation: float 8s ease-in-out infinite; }
.ring { position: absolute; width: 210px; height: 64px; left: 18px; bottom: 78px; border: 3px solid rgba(34,211,238,.5); border-radius: 50%; transform: rotate(-18deg); box-shadow: 0 0 20px rgba(34,211,238,.3); }
.spark { position: absolute; width: 9px; height: 9px; background: var(--cyan-2); border-radius: 50%; box-shadow: 0 0 14px var(--cyan-2); }
.spark--1 { top: 70px; left: 30px; animation: float 5s ease-in-out infinite; }
.spark--2 { top: 210px; right: 30px; animation: float 6s ease-in-out infinite; background: var(--violet-2); box-shadow: 0 0 14px var(--violet-2); }
.spark--3 { bottom: 10px; left: 200px; animation: float 4.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.lstats { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; padding: 22px; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lstats__item { position: relative; text-align: center; background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: 14px; padding: 20px; transition: .16s; }
.lstats__item:hover { border-color: var(--violet); box-shadow: var(--glow-v); }
.lstats__item b { display: block; font-size: 28px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lstats__item span { color: var(--muted); font-size: 13px; }
.section-title { text-align: center; font-size: 30px; font-weight: 800; margin: 64px 0 28px; text-transform: uppercase; letter-spacing: 1px; }
.about { position: relative; z-index: 2; max-width: 770px; margin: 0 auto; padding: 0 22px; text-align: center; }
.about__text { color: var(--muted); font-size: 16px; }
.features { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.features__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.fcard { background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: 16px; padding: 24px; text-align: center; transition: transform .18s, border-color .18s, box-shadow .18s; }
.fcard:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: var(--glow-v); }
.fcard__ico { font-size: 32px; margin-bottom: 12px; filter: drop-shadow(0 0 12px rgba(168,85,247,.5)); }
.fcard h3 { font-size: 16px; }
.fcard p { color: var(--muted); font-size: 13.5px; margin: 0; }
.cta { position: relative; z-index: 2; max-width: 1120px; margin: 64px auto 40px; padding: 0 22px; }
.cta__box { position: relative; background: linear-gradient(120deg, rgba(168,85,247,.16), rgba(34,211,238,.1)); border: 1px solid var(--line); border-radius: 22px; padding: 50px; text-align: center; overflow: hidden; }
.cta__box h2 { font-size: 28px; text-transform: uppercase; letter-spacing: .5px; }
.cta__box p { color: var(--muted); margin-bottom: 24px; }

.authpage { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; position: relative; z-index: 1; }
.authpage__art { position: relative; background: radial-gradient(800px 600px at 30% 30%, rgba(168,85,247,.3), #0a0a16), radial-gradient(600px 500px at 70% 80%, rgba(34,211,238,.18), transparent); overflow: hidden; border-right: 1px solid var(--line-soft); }
.authpage__brand { position: absolute; top: 30px; left: 30px; z-index: 5; }
.authpage__art .orb--1 { top: 30%; left: 45%; }
.authpage__art .planet { top: 45%; left: 22%; }
.authpage__art .ring { top: 52%; left: 16%; }
.authpage__panel { display: flex; align-items: center; justify-content: center; padding: 30px; }
.authform { width: 100%; max-width: 370px; }
.authform__title { font-size: 27px; }
.authform__sub { color: var(--muted); margin-bottom: 24px; }
.authform__foot { text-align: center; color: var(--muted); margin-top: 16px; font-size: 14px; }

.legal .legaltext { white-space: pre-wrap; color: var(--muted); line-height: 1.7; margin-top: 14px; }

@media (max-width: 960px) {
  .grid--dash, .product, .finance, .acolumns, .authpage { grid-template-columns: 1fr; }
  .grid--dash .bonus { grid-column: auto; }
  .pgrid, .features__grid, .lstats { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero__art { display: none; }
  .lnav__links { display: none; }
  .adminbar { display: none; }
  .aform__grid { grid-template-columns: 1fr; }
  .authpage__art { display: none; }
}
@media (max-width: 560px) {
  .pgrid, .features__grid, .lstats, .stats__grid { grid-template-columns: 1fr; }
  .mainnav { overflow-x: auto; flex-wrap: nowrap; }
}

.themepick { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; margin: 14px 0; }
.themepick__item { display: block; border: 1px solid var(--line); border-radius: 13px; padding: 16px; cursor: pointer; background: var(--surface); transition: .15s; }
.themepick__item:hover { border-color: var(--violet); }
.themepick__item.is-active { border-color: var(--violet); box-shadow: var(--glow-v); }
.themepick__item input { margin-right: 8px; accent-color: var(--violet); }
.themepick__item b { display: inline; }
.themepick__item span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }
.designer { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: start; }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.preset { cursor: pointer; padding: 8px 14px; border-radius: 8px; font-weight: 700; }
.glyphs { display: flex; flex-wrap: wrap; gap: 8px; }
.glyph { width: 44px; height: 44px; display: grid; place-items: center; font-size: 20px; cursor: pointer; border-radius: 8px; }
.prev-brand { display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: 14px; }
.prev-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.designer__preview { position: sticky; top: 90px; }
@media (max-width: 960px) { .designer { grid-template-columns: 1fr; } .designer__preview { position: static; } }
.preset, .glyph { background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.preset:hover, .glyph:hover { border-color: var(--violet); box-shadow: var(--glow-v); }
.glyph.is-active { border-color: var(--violet); box-shadow: var(--glow-v); background: var(--surface-3); }
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(3px); }
.modal__box { position: relative; width: 100%; max-width: 780px; display: grid; grid-template-columns: 240px 1fr; max-height: 88vh; overflow: hidden; }
.modal__rail { display: flex; flex-direction: column; gap: 6px; padding: 22px; }
.railstep { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 10px; cursor: pointer; text-align: left; background: none; border: 0; font: inherit; width: 100%; }
.railstep__ico { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; flex: none; font-size: 17px; }
.railstep b { display: block; font-size: 14px; }
.railstep span { display: block; font-size: 12px; opacity: .7; }
.modal__num { margin-top: auto; text-align: center; font-weight: 800; padding-top: 14px; }
.modal__body { padding: 26px; overflow: auto; }
.modal__title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.modal__actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 20px; }
.modal__pane { display: none; }
.modal__pane.is-active { display: block; }
.promo-row { display: flex; gap: 8px; }
.promo-msg { display: block; font-size: 12.5px; margin-top: 6px; }
.promo-msg.ok { color: var(--ok); }
.promo-msg.err { color: var(--err); }
.modaltext { white-space: pre-wrap; word-break: break-word; line-height: 1.6; }
@media (max-width: 640px) { .modal__box { grid-template-columns: 1fr; } .modal__rail { flex-direction: row; overflow-x: auto; } .modal__num { display: none; } }
.modal__box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.modal__rail { background: var(--bg-2); border-right: 1px solid var(--line-soft); }
.railstep:hover { background: var(--surface-2); }
.railstep.is-active { background: var(--surface-3); }
.railstep__ico { background: var(--surface-2); }
.railstep.is-active .railstep__ico { box-shadow: var(--glow-v); }

.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.styleswitch { padding: 7px 11px 10px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px; }
.styleswitch select { width: 100%; margin-top: 6px; }
.zone-html { line-height: 1.6; }
.zone-html img, .zone-img { max-width: 100%; border-radius: var(--radius-sm); margin: 8px 0; }
.zone-heading { font-weight: 800; margin: 10px 0; }
.zone-card { margin: 10px 0; }
.zone-icon { display: flex; align-items: center; gap: 12px; margin: 10px 0; }
.zone-icon__tile { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 28px; overflow: hidden; flex: none; }
.zone-icon__tile img { width: 100%; height: 100%; object-fit: cover; }
.zone-icon__label { font-weight: 700; }
.zone-icon__tile { background: var(--surface-2); border: 1px solid var(--line); }

.palettebtn { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; color: var(--cyan); transition: .15s; }
.palettebtn:hover { border-color: var(--cyan); box-shadow: var(--glow-c); }
.palettebtn svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.palette__drop { min-width: 250px; }
.stylepick { display: grid; gap: 8px; }
.stylecard { margin: 0; }
.stylecard__btn { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; cursor: pointer; font: inherit; font-weight: 600; color: var(--text); transition: .15s; }
.stylecard__btn:hover { border-color: var(--violet); }
.stylecard.is-active .stylecard__btn { border-color: var(--violet); box-shadow: var(--glow-v); }
.stylecard__swatch { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); flex: none; }
.stylecard__name { flex: 1; }
.stylecard__check { color: var(--cyan); font-weight: 800; }

.zone-divider { border: 0; border-top: 1px solid var(--line, #333); margin: 18px 0; opacity: .8; }
.zone-spacer { width: 100%; }
