/* ─── Reset & Tokens ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0E0F11;
  --ink-2:      #2C2E33;
  --ink-3:      #5C5F6B;
  --ink-4:      #9396A3;
  --rule:       #E4E5EA;
  --surface:    #F7F7F9;
  --white:      #FFFFFF;
  --accent:     #1A3CFF;
  --accent-2:   #0029CC;
  --accent-dim: #EEF1FF;
  --green:      #00875A;
  --green-dim:  #E3F5EF;
  --amber:      #B45309;
  --amber-dim:  #FEF3C7;
  --red:        #C0152A;
  --red-dim:    #FEECEE;

  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg: 12px;
  --nav-w: 224px;
  --ease:  cubic-bezier(.4,0,.2,1);
}

html, body { height: 100%; }
body {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

/* ─── Shell ──────────────────────────────────────────────────────────────── */
#shell { display: flex; height: 100vh; overflow: hidden; }
#main  { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
#page  { flex: 1; padding: 32px 36px; max-width: 1120px; width: 100%; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
#sidebar {
  width: var(--nav-w); min-width: var(--nav-w);
  background: var(--ink);
  display: flex; flex-direction: column;
  overflow: hidden; z-index: 100;
}
.sidebar-logo { padding: 22px 20px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-logo .wordmark {
  font-family: var(--font-head); font-size: 17px; font-weight: 800;
  color: var(--white); letter-spacing: -.3px; display: block;
}
.sidebar-logo .tagline {
  font-size: 10px; color: rgba(255,255,255,.35);
  letter-spacing: .5px; text-transform: uppercase; margin-top: 2px;
}

#company-switcher { margin: 12px 10px; position: relative; }
#company-btn {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  padding: 8px 10px; color: var(--white); font-family: var(--font-mono);
  font-size: 12px; cursor: pointer; display: flex; align-items: center;
  gap: 8px; text-align: left; transition: background .15s;
}
#company-btn:hover { background: rgba(255,255,255,.1); }
.company-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.company-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.company-chevron { font-size: 10px; color: rgba(255,255,255,.4); }
.company-role { font-size: 10px; color: rgba(255,255,255,.3); margin-left: auto; }

#company-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); overflow: hidden; display: none;
  z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
#company-dropdown.open { display: block; }
.company-option {
  padding: 9px 12px; color: rgba(255,255,255,.75); font-family: var(--font-mono);
  font-size: 12px; cursor: pointer; display: flex; align-items: center;
  gap: 8px; transition: background .12s;
}
.company-option:hover { background: rgba(255,255,255,.07); color: var(--white); }
.company-option.active { color: var(--white); }

nav { flex: 1; padding: 8px 10px; overflow-y: auto; }
.nav-section-label {
  font-size: 10px; letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.25); padding: 12px 8px 4px;
}
.nav-link {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px;
  border-radius: var(--r-sm); color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 12.5px; font-family: var(--font-mono); cursor: pointer;
  transition: color .15s, background .15s; margin-bottom: 1px;
}
.nav-link:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link .icon { width: 16px; text-align: center; font-size: 14px; flex-shrink: 0; }

.sidebar-footer { padding: 14px 10px; border-top: 1px solid rgba(255,255,255,.08); }
.user-row { display: flex; align-items: center; gap: 9px; padding: 7px 8px; }
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.user-email { flex: 1; font-size: 11px; color: rgba(255,255,255,.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-signout { background: none; border: none; color: rgba(255,255,255,.3); cursor: pointer; font-size: 14px; transition: color .15s; }
.btn-signout:hover { color: rgba(255,255,255,.7); }

/* ─── Page structure ─────────────────────────────────────────────────────── */
.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.page-header h1 { font-family: var(--font-head); font-size: 24px; font-weight: 700; letter-spacing: -.5px; }
.page-header .sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.page-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-mono); font-size: 12.5px; padding: 8px 16px;
  border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: background .15s, opacity .15s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary   { background: var(--accent); color: var(--white); }
.btn-primary:hover:not(:disabled) { background: var(--accent-2); }
.btn-secondary { background: var(--white); color: var(--ink-2); border-color: var(--rule); }
.btn-secondary:hover:not(:disabled) { background: var(--surface); }
.btn-danger    { background: var(--red-dim); color: var(--red); border-color: #fccaca; }
.btn-danger:hover:not(:disabled) { background: #fccaca; }
.btn-ghost     { background: none; border-color: transparent; color: var(--ink-3); }
.btn-ghost:hover { color: var(--ink); background: var(--surface); }
.btn-issue     { background: var(--ink); color: var(--white); font-family: var(--font-head); font-weight: 600; }
.btn-issue:hover:not(:disabled) { background: var(--ink-2); }
.btn-sm        { padding: 5px 11px; font-size: 11.5px; }
.btn-icon      { background: none; border: none; cursor: pointer; color: var(--ink-3); font-size: 16px; padding: 2px 6px; }
.btn-icon:hover { color: var(--ink); }

/* ─── KPI Grid ───────────────────────────────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.kpi-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 20px 22px; }
.kpi-label { font-size: 11px; letter-spacing: .4px; text-transform: uppercase; color: var(--ink-4); display: block; margin-bottom: 6px; }
.kpi-value { font-family: var(--font-head); font-size: 26px; font-weight: 700; letter-spacing: -.8px; color: var(--ink); display: block; }
.kpi-value.positive { color: var(--green); }
.kpi-value.negative { color: var(--red); }
.kpi-sub { font-size: 11px; color: var(--ink-4); margin-top: 4px; }

/* ─── Section ────────────────────────────────────────────────────────────── */
.section { margin-bottom: 32px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-header h2 { font-family: var(--font-head); font-size: 15px; font-weight: 600; }

/* ─── Table ──────────────────────────────────────────────────────────────── */
.table-wrap { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
thead th {
  font-size: 10.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-4);
  font-weight: 500; padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
thead th.r { text-align: right; }
tbody tr { border-bottom: 1px solid var(--rule); transition: background .1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr.clickable { cursor: pointer; }
tbody tr.clickable:hover { background: var(--surface); }
td { padding: 11px 16px; color: var(--ink-2); font-size: 12.5px; vertical-align: middle; }
td.r { text-align: right; }
td.mono { font-family: var(--font-mono); }
td .muted { color: var(--ink-4); font-style: italic; }
td.td-actions { text-align: right; white-space: nowrap; }

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px;
  border-radius: 99px; font-size: 11px; font-weight: 500; white-space: nowrap;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; display: inline-block; }
.badge-draft         { background: var(--surface); color: var(--ink-3); }
.badge-draft::before { background: var(--ink-4); }
.badge-issued        { background: var(--accent-dim); color: var(--accent-2); }
.badge-issued::before { background: var(--accent); }
.badge-rectified     { background: var(--amber-dim); color: var(--amber); }
.badge-rectified::before { background: var(--amber); }
.badge-validated     { background: var(--green-dim); color: var(--green); }
.badge-validated::before { background: var(--green); }
.badge-pending_review { background: var(--amber-dim); color: var(--amber); }
.badge-pending_review::before { background: var(--amber); }
.badge-pending_ocr   { background: var(--surface); color: var(--ink-3); }
.badge-pending_ocr::before { background: var(--ink-4); }
.badge-rejected      { background: var(--red-dim); color: var(--red); }
.badge-rejected::before { background: var(--red); }

/* ─── Filters ────────────────────────────────────────────────────────────── */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.filters select, .filters input[type="date"], .filters input[type="text"] {
  font-family: var(--font-mono); font-size: 12px; padding: 7px 12px;
  border: 1px solid var(--rule); border-radius: var(--r-md);
  background: var(--white); color: var(--ink); outline: none; transition: border-color .15s;
}
.filters select:focus, .filters input:focus { border-color: var(--accent); }

/* ─── Form cards ─────────────────────────────────────────────────────────── */
.form-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 24px 28px; margin-bottom: 16px;
}
.form-card h3 {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--rule);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.cols-1 { grid-template-columns: 1fr; }
.col-span-2 { grid-column: span 2; }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 10.5px; letter-spacing: .4px; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font-mono); font-size: 13px; padding: 9px 12px;
  border: 1px solid var(--rule); border-radius: var(--r-md);
  background: var(--white); color: var(--ink); outline: none;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,60,255,.08);
}
.field input:disabled, .field select:disabled, .field textarea:disabled {
  background: var(--surface); color: var(--ink-3); cursor: not-allowed;
}
.field textarea { resize: vertical; min-height: 72px; }
.field .hint { font-size: 11px; color: var(--ink-4); }
.field.field-error input, .field.field-error select, .field.field-error textarea { border-color: var(--red); }
.field-err-msg { font-size: 11px; color: var(--red); }
.req { color: var(--red); }

/* ─── Document detail ────────────────────────────────────────────────────── */
.doc-status-bar {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); margin-bottom: 20px;
}
.doc-number-display { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -.4px; }
.doc-number-display.draft { color: var(--ink-4); font-style: italic; font-size: 14px; font-family: var(--font-mono); }
.doc-status-spacer { flex: 1; }
.locked-notice { font-size: 11px; color: var(--ink-4); }

/* ─── Line items ─────────────────────────────────────────────────────────── */
.lines-table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--r-lg); margin-bottom: 12px; }
.lines-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.lines-table thead th {
  background: var(--surface); font-size: 10px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--ink-4); padding: 9px 12px; border-bottom: 1px solid var(--rule);
}
.lines-table td { padding: 5px 8px; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.lines-table tr:last-child td { border-bottom: none; }
.lines-table input, .lines-table select {
  font-family: var(--font-mono); font-size: 12.5px; padding: 6px 9px;
  border: 1px solid transparent; border-radius: var(--r-sm);
  background: transparent; width: 100%; color: var(--ink); outline: none; transition: border-color .15s, background .15s;
}
.lines-table input:focus, .lines-table select:focus { border-color: var(--accent); background: var(--white); }
.lines-table input:disabled, .lines-table select:disabled { color: var(--ink-3); }
.td-num { width: 90px; } .td-vat { width: 75px; } .td-calc { text-align: right; color: var(--ink-3); font-size: 12px; white-space: nowrap; padding-right: 12px; } .td-del { width: 36px; text-align: center; }
.btn-del-line { background: none; border: none; color: var(--ink-4); cursor: pointer; font-size: 13px; padding: 2px 6px; border-radius: var(--r-sm); transition: color .12s, background .12s; }
.btn-del-line:hover { color: var(--red); background: var(--red-dim); }

/* ─── Totals ─────────────────────────────────────────────────────────────── */
.totals-panel { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.totals-inner { min-width: 260px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.totals-row { display: flex; justify-content: space-between; padding: 9px 16px; border-bottom: 1px solid var(--rule); font-size: 12.5px; }
.totals-row:last-child { border-bottom: none; }
.totals-row .t-label { color: var(--ink-3); }
.totals-row .t-value { font-family: var(--font-mono); }
.totals-row.grand { background: var(--ink); padding: 12px 16px; }
.totals-row.grand .t-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .3px; }
.totals-row.grand .t-value { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -.5px; }

/* ─── Snapshot grid ──────────────────────────────────────────────────────── */
.snapshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 20px; }
.snapshot-grid > div { display: flex; flex-direction: column; gap: 3px; }

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 500; animation: fade-in .15s;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white); border-radius: var(--r-lg); padding: 28px 32px;
  max-width: 440px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: modal-in .2s var(--ease); max-height: 90vh; overflow-y: auto;
}
.modal.modal-lg { max-width: 680px; }
@keyframes modal-in { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.modal-body { font-size: 13px; color: var(--ink-3); line-height: 1.6; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.modal-body-content { margin-bottom: 4px; }
.modal-form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; border-top: 1px solid var(--rule); padding-top: 20px; }

/* ─── Upload / Review ────────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--rule); border-radius: var(--r-lg); padding: 48px 24px;
  text-align: center; background: var(--white); cursor: pointer;
  transition: border-color .2s, background .2s; margin-bottom: 20px;
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--accent); background: var(--accent-dim); }
.upload-icon { font-size: 32px; margin-bottom: 10px; }
.upload-text { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--ink); }
.upload-sub  { font-size: 12px; color: var(--ink-4); margin-top: 4px; }
.review-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.review-preview {
  background: var(--ink-2); border-radius: var(--r-lg); overflow: hidden;
  min-height: 360px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 12px;
}
.review-preview img { width: 100%; height: 100%; object-fit: contain; }
.no-preview { text-align: center; padding: 24px; line-height: 2; }

/* ─── Login ──────────────────────────────────────────────────────────────── */
#login-screen {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--ink); position: fixed; inset: 0; z-index: 999;
}
.login-card {
  width: 380px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 40px 36px;
}
.login-wordmark { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -.5px; margin-bottom: 4px; }
.login-sub { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 32px; }
.login-card .field { margin-bottom: 14px; }
.login-card .field label { color: rgba(255,255,255,.45); }
.login-card .field input { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: var(--white); }
.login-card .field input:focus { border-color: var(--accent); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(26,60,255,.2); }
.login-card .field input::placeholder { color: rgba(255,255,255,.2); }
.btn-login {
  width: 100%; padding: 11px; background: var(--accent); border: none;
  border-radius: var(--r-md); color: var(--white); font-family: var(--font-head);
  font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 8px; transition: background .15s;
}
.btn-login:hover { background: var(--accent-2); }
.btn-login:disabled { opacity: .5; cursor: not-allowed; }
.login-error { font-size: 12px; color: #ff6b6b; margin-top: 10px; }

/* ─── Setup / Onboarding ─────────────────────────────────────────────────── */
.setup-wrapper { display: flex; justify-content: center; padding: 48px 16px; }
.setup-card { width: 100%; max-width: 680px; }
.setup-header { margin-bottom: 28px; }
.setup-logo { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--ink-3); margin-bottom: 12px; letter-spacing: -.2px; }
.setup-header h1 { font-family: var(--font-head); font-size: 24px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 6px; }
.setup-header p { font-size: 13px; color: var(--ink-3); }
.setup-step { display: none; }
.setup-step.active { display: block; }
.step-label { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-4); margin-bottom: 20px; font-weight: 500; }
.setup-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; border-top: 1px solid var(--rule); padding-top: 20px; }
.setup-done { text-align: center; padding: 40px 0; }
.done-icon { font-size: 48px; color: var(--green); margin-bottom: 16px; }
.setup-done h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.setup-done p { color: var(--ink-3); }

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert-info {
  background: var(--accent-dim); border: 1px solid #c5d0ff; border-radius: var(--r-md);
  padding: 12px 16px; font-size: 12.5px; color: var(--accent-2); line-height: 1.6;
}

/* ─── Toast ──────────────────────────────────────────────────────────────── */
#toast-host { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 8px; z-index: 9999; }
.toast {
  background: var(--ink); color: var(--white); padding: 11px 16px; border-radius: var(--r-md);
  font-size: 12.5px; font-family: var(--font-mono); display: flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25); animation: toast-in .2s var(--ease); max-width: 360px;
  transition: opacity .3s, transform .3s;
}
.toast-success { background: var(--green); }
.toast-error   { background: var(--red); }
.toast-out     { opacity: 0; transform: translateY(8px); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ─── Settings tabs ──────────────────────────────────────────────────────── */
.settings-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0;
}
.tab-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 9px 18px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--ink-3);
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 500; }

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.empty-state {
  padding: 48px 24px; text-align: center; color: var(--ink-4);
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
}
.empty-icon { font-size: 28px; margin-bottom: 10px; }
.loading-state { padding: 48px; text-align: center; color: var(--ink-4); font-size: 12px; }
.text-muted { color: var(--ink-4); }
.text-error { color: var(--red); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.r { text-align: right; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 99px; }
