/* ============================================================
   الو پرداخت — Professional Design System
   Refined dark fintech aesthetic · teal accent · RTL
   ============================================================ */

/* Font is loaded non-blocking from the page <head> (see layout.ejs) so it
   never blocks first paint. System fonts render instantly as a fallback. */

:root {
  /* Brand */
  --primary: #00d4a6;
  --primary-2: #14b88f;
  --primary-soft: rgba(0, 212, 166, 0.12);
  --primary-glow: rgba(0, 212, 166, 0.35);
  --accent: #5b8def;
  --accent-soft: rgba(91, 141, 239, 0.12);

  /* Surfaces */
  --bg: #070b14;
  --bg-1: #0b1120;
  --bg-2: #111a2e;
  --bg-3: #16223b;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.045);
  --glass: rgba(13, 20, 36, 0.72);

  /* Text */
  --text: #eaf1fb;
  --text-soft: #b9c6da;
  --text-muted: #8294ad;
  --text-dim: #5d6e87;

  /* Lines */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.13);

  /* States */
  --success: #2fd47a;
  --success-soft: rgba(47, 212, 122, 0.13);
  --danger: #ff5d6c;
  --danger-soft: rgba(255, 93, 108, 0.13);
  --warn: #ffb547;

  /* Shape */
  --r-sm: 9px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 8px 30px var(--primary-glow);

  --font: Tahoma, 'Segoe UI', system-ui, -apple-system, 'Iranian Sans', 'B Nazanin', sans-serif;
  --mono: 'JetBrains Mono', 'Cascadia Code', ui-monospace, Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Atmospheric gradient mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(0, 212, 166, 0.10), transparent 60%),
    radial-gradient(900px 600px at 5% 0%, rgba(91, 141, 239, 0.10), transparent 55%),
    radial-gradient(1000px 800px at 50% 110%, rgba(0, 212, 166, 0.06), transparent 60%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

a { color: var(--primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--primary-2); }

h1, h2, h3, h4 { line-height: 1.3; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: 19px; }
h4 { font-size: 15px; }

::selection { background: var(--primary-glow); color: #03110d; }

/* ============ Containers ============ */
.container { max-width: 1180px; margin: 0 auto; padding: 36px 24px; }
.container-sm { max-width: 480px; margin: 0 auto; padding: 48px 24px; }

/* ============ Navbar ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 11px;
  font-weight: 800; font-size: 19px; color: #fff;
}
.nav-brand:hover { color: #fff; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #04130f; font-weight: 900; font-size: 21px;
  box-shadow: var(--shadow-glow);
}
.nav-links { display: flex; gap: 6px; margin-inline-start: 8px; }
.nav-link {
  color: var(--text-soft); font-weight: 600; font-size: 14.5px;
  padding: 8px 14px; border-radius: 10px; transition: all .18s ease;
}
.nav-link:hover { color: #fff; background: var(--surface-2); }
.nav-link.active { color: var(--primary); background: var(--primary-soft); }
.nav-cta { margin-inline-start: auto; display: flex; align-items: center; gap: 10px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 14.5px;
  padding: 11px 20px; border-radius: var(--r-sm); border: 1px solid transparent;
  cursor: pointer; transition: all .2s cubic-bezier(.4,0,.2,1); white-space: nowrap;
  line-height: 1; text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #04130f; box-shadow: 0 6px 18px var(--primary-glow);
}
.btn-primary:hover { color: #04130f; box-shadow: 0 10px 28px var(--primary-glow); transform: translateY(-2px); }
.btn-secondary {
  background: var(--accent-soft); color: var(--accent); border-color: rgba(91,141,239,.3);
}
.btn-secondary:hover { background: rgba(91,141,239,.2); color: #fff; }
.btn-ghost { background: var(--surface); color: var(--text-soft); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); color: #fff; border-color: var(--primary); }
.btn-danger { background: var(--danger-soft); color: var(--danger); border-color: rgba(255,93,108,.3); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-warn { background: rgba(255,181,71,.13); color: var(--warn); border-color: rgba(255,181,71,.3); }
.btn-warn:hover { background: var(--warn); color: #1a1206; }
.btn-sm { padding: 7px 13px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ Hero ============ */
.hero { text-align: center; padding: 70px 0 40px; position: relative; }
.hero h1 {
  background: linear-gradient(120deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.hero .lead, .lead {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-soft);
  max-width: 620px; margin: 0 auto 26px; line-height: 1.8;
}
.hero .btn { margin: 6px; }

/* ============ Cards ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.card-pad-lg { padding: 34px; }
.card-hover { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.card-hover:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 4px; }
.card h4 { color: var(--text); margin: 10px 0 6px; }

/* ============ Product grid ============ */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px; margin-top: 24px;
}
.product-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.product-card:hover::before { opacity: 1; }
.ptitle { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pdesc { color: var(--text-muted); font-size: 14px; min-height: 42px; margin-bottom: 14px; }
.pprice {
  font-size: 26px; font-weight: 900; color: var(--primary);
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px;
}
.pprice .currency, .currency { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.pstock { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }

/* ============ Stat cards ============ */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.stat-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 20px; transition: border-color .2s ease;
}
.stat-card:hover { border-color: var(--border-strong); }
.stat-card .icon { font-size: 22px; margin-bottom: 10px; opacity: .9; }
.stat-card .label { color: var(--text-muted); font-size: 13px; margin-bottom: 6px; }
.stat-card .value { font-size: 25px; font-weight: 900; color: #fff; letter-spacing: -0.02em; }

/* ============ Page head ============ */
.page-head { margin-bottom: 26px; }
.page-head h1 { margin-bottom: 4px; }
.page-head .sub { color: var(--text-muted); font-size: 15px; }

/* ============ Tables ============ */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table thead th {
  background: var(--bg-2); color: var(--text-muted);
  font-weight: 700; font-size: 12.5px; text-align: right;
  padding: 13px 14px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.table tbody td { padding: 13px 14px; border-bottom: 1px solid var(--border); color: var(--text-soft); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background .15s ease; }
.table tbody tr:hover { background: var(--surface); }
.table th { color: var(--text-muted); font-weight: 700; text-align: right; }
.table .mono, .mono { font-family: var(--mono); direction: ltr; font-size: 13px; }
.table .mono { text-align: left; display: inline-block; }
.table .btn { margin-inline-end: 5px; }
.table input.form-input, .table select.form-input { padding: 7px 9px; font-size: 13px; }

/* ============ Badges ============ */
.badge {
  display: inline-flex; align-items: center; padding: 4px 11px;
  border-radius: 999px; font-size: 12px; font-weight: 700; line-height: 1.5;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-warn { background: rgba(255,181,71,.15); color: var(--warn); }
.badge-info { background: var(--accent-soft); color: var(--accent); }
.badge-muted { background: var(--surface-2); color: var(--text-muted); }

/* ============ Forms ============ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text);
  background: var(--bg-1); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); padding: 11px 14px; transition: all .18s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft); background: var(--bg-2);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { cursor: pointer; }
.form-help, .form-help.text-muted { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============ Alerts ============ */
.alert {
  padding: 13px 16px; border-radius: var(--r-sm); border: 1px solid;
  margin-bottom: 18px; font-size: 14px; font-weight: 500;
}
.alert-success { background: var(--success-soft); border-color: rgba(47,212,122,.3); color: var(--success); }
.alert-danger { background: var(--danger-soft); border-color: rgba(255,93,108,.3); color: var(--danger); }
.alert-warn { background: rgba(255,181,71,.1); border-color: rgba(255,181,71,.3); color: var(--warn); }
.alert-info { background: var(--accent-soft); border-color: rgba(91,141,239,.3); color: var(--accent); }

/* ============ Sidebar layout ============ */
.layout-with-sidebar {
  max-width: 1180px; margin: 0 auto; padding: 28px 24px;
  display: grid; grid-template-columns: 248px 1fr; gap: 26px; align-items: start;
}
.sidebar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px; position: sticky; top: 86px;
}
.sidebar-title {
  font-size: 12px; font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .08em; padding: 6px 12px 12px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px; border-radius: 10px; color: var(--text-soft);
  font-weight: 600; font-size: 14.5px; margin-bottom: 3px; transition: all .16s ease;
}
.sidebar-link .icon { font-size: 17px; width: 20px; text-align: center; }
.sidebar-link:hover { background: var(--surface-2); color: #fff; }
.sidebar-link.active {
  background: var(--primary-soft); color: var(--primary);
  box-shadow: inset 3px 0 0 var(--primary);
}

/* ============ Divider ============ */
.divider { height: 1px; background: var(--border); margin: 16px 0; border: none; }

/* ============ License code box ============ */
.license-code {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-1); border: 1px dashed var(--border-strong);
  border-radius: 8px; padding: 5px 5px 5px 11px;
}
.license-code .mono { font-family: var(--mono); direction: ltr; font-size: 13px; color: var(--primary); letter-spacing: .5px; }
.copy-btn {
  font-family: inherit; font-size: 12px; font-weight: 700; cursor: pointer;
  background: var(--primary-soft); color: var(--primary);
  border: none; border-radius: 6px; padding: 5px 10px; transition: all .15s ease;
}
.copy-btn:hover { background: var(--primary); color: #04130f; }

/* ============ Pagination ============ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 38px; height: 38px; display: grid; place-items: center; padding: 0 10px;
  border-radius: 9px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-soft); font-weight: 700; font-size: 14px;
  transition: all .16s ease;
}
.pagination a:hover { background: var(--primary-soft); color: var(--primary); border-color: var(--primary); }
.pagination a.active, .pagination .current {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #04130f; border-color: transparent;
}

/* ============ Modal ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3, 7, 15, 0.72); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.show { display: flex; animation: fade .2s ease; }
.modal {
  background: var(--bg-1); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); padding: 28px; max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg); animation: pop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(10px); } }

/* ============ OTP input ============ */
.otp-input { letter-spacing: 14px; text-align: center; font-size: 24px; font-weight: 800; direction: ltr; font-family: var(--mono); }

/* ============ Spinner ============ */
.spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.25);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Code inline ============ */
code, code.mono {
  font-family: var(--mono); background: var(--bg-2); color: var(--primary);
  padding: 2px 7px; border-radius: 5px; font-size: 13px; direction: ltr; display: inline-block;
}

/* ============ Footer ============ */
.footer {
  margin-top: 70px; padding: 30px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim); text-align: center; font-size: 13.5px;
}

/* ============ Grids & layout helpers ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============ Utilities ============ */
.flex { display: flex; align-items: center; }
.flex-gap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.text-center { text-align: center; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.mono { font-family: var(--mono); direction: ltr; }
.ltr { direction: ltr; }
.ir { direction: rtl; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* ============ Base responsive helpers (all devices) ============ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, svg, video { max-width: 100%; height: auto; }
.table-wrap { -webkit-overflow-scrolling: touch; }
.sidebar { position: -webkit-sticky; position: sticky; }

/* hamburger (hidden on desktop) */
.nav-toggle {
  display: none; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; width: 42px; height: 40px; padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Responsive ============ */

/* large tablets / small laptops */
@media (max-width: 1024px) {
  .container, .layout-with-sidebar { padding-left: 20px; padding-right: 20px; }
  .layout-with-sidebar { grid-template-columns: 218px 1fr; gap: 20px; }
}

/* tablets & below: sidebar becomes a horizontal scrollable bar */
@media (max-width: 900px) {
  .layout-with-sidebar { grid-template-columns: 1fr; gap: 16px; }
  .sidebar {
    position: static; display: flex; align-items: center; gap: 6px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 10px; scrollbar-width: thin;
  }
  .sidebar-title { display: none; }
  .sidebar-link {
    flex: 0 0 auto; white-space: nowrap; margin-bottom: 0;
    padding: 9px 13px; font-size: 13.5px;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 46px 0 26px; }
}

/* phones */
@media (max-width: 640px) {
  .container { padding: 22px 14px; }
  .container-sm { padding: 28px 14px; }
  .layout-with-sidebar { padding: 14px 12px; }
  .card { padding: 18px 14px; }
  .card-pad-lg { padding: 24px 18px; }
  h1 { font-size: 24px; }
  h2 { font-size: 19px; }
  .hero h1 { font-size: 26px; line-height: 1.45; }

  /* navbar: hamburger + dropdown menu */
  .nav-wrap { position: relative; padding: 10px 14px; gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 8px);
    right: 10px; left: 10px; z-index: 60;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
    flex-direction: column; gap: 2px; margin: 0;
  }
  .navbar.nav-open .nav-links { display: flex; }
  .nav-links .nav-link { display: block; padding: 11px 12px; border-radius: 10px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { padding: 8px 11px; font-size: 12.5px; }

  /* forms & touch targets */
  .form-row { grid-template-columns: 1fr; }
  .form-input, select.form-input, textarea.form-input { font-size: 16px; } /* no iOS auto-zoom */
  .btn { min-height: 42px; }
  .btn-sm { min-height: 34px; }
  .otp-input { font-size: 22px; letter-spacing: 8px; }

  /* tables: scroll horizontally instead of crushing */
  .table { min-width: 560px; }
  .table-kv { min-width: 0; }
  .table thead th, .table tbody td { padding: 10px 10px; font-size: 13px; }
  .table-kv td, .table-kv th { padding: 10px 8px; }

  /* misc */
  .flex-between { flex-wrap: wrap; gap: 8px; }
  .footer { padding: 22px 14px; font-size: 13px; }
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-head h1 { font-size: 22px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px 14px; }
  .stat-card .value { font-size: 21px; }
}

/* small/old phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
  .nav-brand span:last-child { font-size: 15px; }
  .nav-cta .btn { padding: 7px 9px; font-size: 12px; }
  .card { padding: 15px 12px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card .value { font-size: 22px; }
}

/* very old browsers without flex gap support */
@supports not (gap: 1px) {
  .nav-cta > * { margin-inline-start: 6px; }
  .nav-wrap > * { margin-inline-start: 8px; }
  .sidebar .sidebar-link { margin-inline-end: 6px; }
}

/* sidebar notification badge */
.sidebar-link { position: relative; }
.nav-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px; margin-right: 6px;
  background: #ef4444; color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 10px; line-height: 1;
}

/* muted alert (e.g. closed ticket notice) */
.alert-muted { background: var(--bg-2); border: 1px solid var(--border); color: var(--text-muted); }

