
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --text: #ededed;
  --text-mut: #888888;
  --text-dim: #555555;
  --brand: #ffffff;
  --brand-2: #d4d4d4;
  --brand-soft: rgba(255, 255, 255, 0.08);
  --green: #a3a3a3;
  --card: #111111;
  --brd: rgba(255, 255, 255, 0.08);
  --brd-2: rgba(255, 255, 255, 0.14);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand img { width: 32px; height: 32px; object-fit: contain; }
.brand .hl { color: var(--text-mut); font-weight: 700; }


.ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--brd);
  color: var(--text-mut);
}
.ic svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic svg path,
.ic svg rect,
.ic svg circle,
.ic svg line,
.ic svg polyline {
  stroke: currentColor;
  fill: none;
}
.check {
  color: var(--text-mut);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg path {
  stroke: currentColor;
  fill: none;
}
.sum-feats li { color: var(--text-mut); }
.sum-feats svg path {
  stroke: currentColor;
  fill: none;
}


.icon-mono {
  opacity: 0.7;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
}
.pay-note .icon-mono,
.sum-feats .icon-mono {
  width: 18px;
  height: 22px;
}
.btn-primary .icon-mono { opacity: 1; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: var(--bg);
}
.btn-primary:hover { background: var(--brand-2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--brd-2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { width: 100%; }


.auth-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 20px 50px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 34px 32px;
  background: var(--bg-2);
  border: 1px solid var(--brd);
  border-radius: var(--radius);
}
.auth-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--brd-2);
}
.auth-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--text);
  stroke-width: 1.8;
  fill: none;
}
.auth-brand { text-align: center; font-weight: 800; font-size: 15px; margin: 20px 0 0; }
.auth-brand .hl { color: var(--text-mut); }
.auth-card h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.auth-card .lead {
  text-align: center;
  color: var(--text-mut);
  font-size: 15px;
  margin: 8px 0 0;
  text-wrap: balance;
}
.form { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-mut); }
.input { position: relative; display: flex; align-items: center; }
.input svg.lead-ic {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  stroke: var(--text-dim);
  stroke-width: 1.8;
  fill: none;
  pointer-events: none;
}
.input input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: 8px;
  padding: 13px 15px 13px 42px;
  transition: border-color 0.15s;
}
.input input.no-ic { padding-left: 15px; }
.input input::placeholder { color: var(--text-dim); }
.input input:focus { outline: none; border-color: var(--brd-2); }
.input .eye { position: absolute; right: 12px; background: none; border: none; cursor: pointer; display: flex; padding: 4px; }
.input .eye svg { width: 18px; height: 18px; stroke: var(--text-mut); stroke-width: 1.8; fill: none; }
.auth-foot { text-align: center; color: var(--text-mut); font-size: 14px; margin-top: 20px; }
.auth-foot a { color: var(--text); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.strength { display: flex; gap: 5px; margin-top: 2px; }
.strength i { height: 3px; flex: 1; border-radius: 2px; background: rgba(255, 255, 255, 0.08); transition: background 0.3s; }
.strength i.on { background: var(--text); }
.checkrow { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-mut); cursor: pointer; }
.checkrow input { position: absolute; opacity: 0; }
.checkrow .box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--brd-2);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: 0.15s;
}
.checkrow .box svg { width: 11px; height: 11px; stroke: var(--bg); stroke-width: 2.6; fill: none; opacity: 0; transition: 0.15s; }
.checkrow input:checked + .box { background: var(--text); border-color: var(--text); }
.checkrow input:checked + .box svg { opacity: 1; }
.green-ic { background: var(--card) !important; border: 1px solid var(--brd-2) !important; }


.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--brd);
}
.topbar-inner {
  display: flex;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
}
.topbar-inner .btn { margin-left: auto; }


body > header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1080px;
  padding: 11px 14px 11px 20px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--brd);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}
.nav-links { display: flex; gap: 32px; margin-left: 12px; }
.nav-links a {
  color: var(--text-mut);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-weight: 600; }
.mobile-menu .btn { margin-top: 10px; }

.grad { color: var(--text-mut); }


footer { padding: 48px 0 36px; border-top: 1px solid var(--brd); margin-top: 32px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.foot-brand img { width: 28px; height: 28px; }
.foot-brand .hl { color: var(--text-mut); }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.foot-col a { display: block; color: var(--text-mut); font-size: 14px; margin-bottom: 8px; transition: color 0.15s; }
.foot-col a:hover { color: var(--text); }
.copy { margin-top: 28px; color: var(--text-dim); font-size: 13px; }


.dash-orders-list,
.adm-card--orders .adm-table-wrap {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
}
.dash-orders-list::-webkit-scrollbar,
.adm-card--orders .adm-table-wrap::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.dash-orders-list::-webkit-scrollbar-track,
.adm-card--orders .adm-table-wrap::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}
.dash-orders-list::-webkit-scrollbar-thumb,
.adm-card--orders .adm-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: background 0.2s ease;
}
.dash-orders-list:hover::-webkit-scrollbar-thumb,
.adm-card--orders .adm-table-wrap:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
}
.dash-orders-list::-webkit-scrollbar-thumb:active,
.adm-card--orders .adm-table-wrap::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 880px) {
  .nav-links,
  .nav-right .btn-ghost { display: none; }
  .burger { display: flex; }
}

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