/* ═══════════════════════════════════════════════════════════
   MigrationProvision — Components
   Buttons, cards, forms, badges, alerts, header, footer.
═══════════════════════════════════════════════════════════ */

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-15);
  padding: 12px 20px;
  border-radius: var(--r-8);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--sh-focus); }
.btn:active { transform: translateY(1px); }

.btn--sm { padding: 8px 14px; font-size: var(--fs-14); }
.btn--lg { padding: 16px 26px; font-size: var(--fs-16); }
.btn--xl { padding: 18px 30px; font-size: var(--fs-17); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.btn--primary:hover { background: var(--c-ink-2); border-color: var(--c-ink-2); }

.btn--authority {
  background: var(--c-authority);
  color: var(--c-ink);
  border-color: var(--c-authority);
}
.btn--authority:hover { background: var(--c-authority-d); color: #fff; border-color: var(--c-authority-d); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--c-paper-2); border-color: var(--c-ink); }

.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost-on-dark:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.btn--link {
  background: transparent;
  color: var(--c-ink);
  padding: 0;
  text-decoration: underline;
  text-decoration-color: var(--c-authority);
  text-underline-offset: 4px;
}
.btn--link:hover { color: var(--c-authority-d); }

.btn--danger { background: var(--c-danger); border-color: var(--c-danger); color: #fff; }
.btn--danger:hover { background: #991717; border-color: #991717; }

.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.btn--sm svg { width: 16px; height: 16px; }

/* ── Cards ────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  padding: var(--space-7);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.card--hoverable:hover {
  box-shadow: var(--sh-3);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card--flat { box-shadow: none; }
.card--ink {
  background: var(--c-ink);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}
.card--ink h3, .card--ink h4 { color: #fff; }
.card--paper { background: var(--c-paper); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-10);
  background: var(--c-paper-2);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.card__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.card__icon--authority { background: rgba(183,138,74,.12); color: var(--c-authority-d); }
.card__icon--ink { background: rgba(14,42,71,.08); }
.card__icon--success { background: var(--c-success-soft); color: var(--c-success); }
.card__icon--warning { background: var(--c-warning-soft); color: var(--c-warning); }
.card__icon--danger { background: var(--c-danger-soft); color: var(--c-danger); }
.card__icon--info { background: var(--c-info-soft); color: var(--c-info); }

.card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-20);
  color: var(--text-strong);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}
.card__body { color: var(--text-body); line-height: var(--lh-relaxed); }
.card__footer {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Document card (signature of this brand) ──────── */
.doc-card {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-8);
  padding: var(--space-9) var(--space-9) var(--space-9) var(--space-9);
  box-shadow: var(--sh-3), 0 0 0 1px rgba(255,255,255,.6) inset;
  font-family: var(--font-serif);
}
.doc-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--c-ink);
  border-radius: var(--r-8) var(--r-8) 0 0;
}
.doc-card__seal {
  position: absolute; top: var(--space-7); right: var(--space-7);
  width: 56px; height: 56px;
  border: 2px solid var(--c-authority);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-authority-d);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  font-family: var(--font-sans);
  text-align: center;
  line-height: 1.05;
  padding: 4px;
}
.doc-card__head {
  font-family: var(--font-sans);
  font-size: var(--fs-12);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-slate-500);
  margin-bottom: var(--space-4);
}
.doc-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-24);
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--space-5);
  line-height: var(--lh-snug);
}
.doc-card__meta {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  color: var(--text-muted);
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-2) var(--space-5);
  margin-bottom: var(--space-6);
}
.doc-card__meta dt { font-weight: 600; color: var(--c-slate-700); }
.doc-card__body {
  font-family: var(--font-serif);
  font-size: var(--fs-16);
  line-height: var(--lh-relaxed);
  color: var(--text-strong);
}
.doc-card__body p + p { margin-top: var(--space-4); }
.doc-card__signature {
  margin-top: var(--space-9);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  color: var(--text-muted);
}

/* ── Forms ────────────────────────────────────────── */
.field { display: block; }
.field + .field { margin-top: var(--space-5); }

.field__label {
  display: block;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: var(--space-2);
}
.field__hint {
  font-size: var(--fs-13);
  color: var(--text-muted);
  margin-top: var(--space-2);
  line-height: var(--lh-snug);
}
.field__error {
  font-size: var(--fs-13);
  color: var(--c-danger);
  margin-top: var(--space-2);
  display: flex; align-items: center; gap: 4px;
}
.field--required .field__label::after {
  content: "*";
  color: var(--c-danger);
  margin-left: 4px;
}

.input, .textarea, .select {
  display: block;
  width: 100%;
  font: inherit;
  font-size: var(--fs-15);
  padding: 11px 14px;
  background: #fff;
  color: var(--text-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-8);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--c-slate-400); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--c-slate-400); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--c-ink);
  box-shadow: var(--sh-focus-info);
}
.input--error, .textarea--error, .select--error { border-color: var(--c-danger); }

.textarea { resize: vertical; min-height: 120px; line-height: var(--lh-relaxed); }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.checkbox, .radio {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--fs-15);
  color: var(--text-strong);
  line-height: var(--lh-snug);
}
.checkbox__box, .radio__box {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border-strong);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  margin-top: 1px;
}
.checkbox__box { border-radius: var(--r-4); }
.radio__box { border-radius: 50%; }
.checkbox input, .radio input {
  position: absolute; width: 0; height: 0; opacity: 0;
}
.checkbox input:checked + .checkbox__box,
.radio input:checked + .radio__box {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.checkbox input:checked + .checkbox__box::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.radio input:checked + .radio__box::after {
  content: ""; width: 8px; height: 8px;
  border-radius: 50%; background: #fff;
}
.checkbox:focus-within .checkbox__box,
.radio:focus-within .radio__box { box-shadow: var(--sh-focus); }

.field-group {
  border: 0; padding: 0; margin: 0;
}
.field-group__legend {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: var(--space-3);
}

.option-card {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-10);
  background: #fff;
  cursor: pointer;
  transition: all var(--t-fast);
}
.option-card:hover { border-color: var(--c-ink); background: var(--c-paper); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card input:checked ~ .option-card__body {
  /* parent will receive .is-selected class via JS; this is fallback only */
}
.option-card.is-selected { border-color: var(--c-ink); background: var(--c-paper); box-shadow: var(--sh-2); }
.option-card__icon {
  width: 36px; height: 36px;
  border-radius: var(--r-8);
  background: var(--c-paper-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.option-card__icon svg { width: 18px; height: 18px; stroke: var(--c-ink); stroke-width: 1.6; fill: none; }
.option-card__title { font-weight: 600; color: var(--text-strong); }
.option-card__desc { font-size: var(--fs-14); color: var(--text-muted); margin-top: 2px; }

/* ── Badges ──────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: var(--fs-12);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--c-slate-100);
  color: var(--c-slate-700);
  letter-spacing: var(--tracking-wide);
}
.badge--success { background: var(--c-success-soft); color: var(--c-success); }
.badge--warning { background: var(--c-warning-soft); color: var(--c-warning); }
.badge--danger  { background: var(--c-danger-soft);  color: var(--c-danger); }
.badge--info    { background: var(--c-info-soft);    color: var(--c-info); }
.badge--ink     { background: rgba(14,42,71,.08);    color: var(--c-ink); }
.badge--authority { background: rgba(183,138,74,.15); color: var(--c-authority-d); }
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* ── Alerts / callouts ───────────────────────────── */
.alert {
  display: flex; gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--r-10);
  border-left: 3px solid var(--c-ink);
  background: var(--c-slate-50);
  color: var(--text-strong);
}
.alert--success { border-left-color: var(--c-success); background: var(--c-success-soft); }
.alert--warning { border-left-color: var(--c-warning); background: var(--c-warning-soft); }
.alert--danger  { border-left-color: var(--c-danger);  background: var(--c-danger-soft); }
.alert--info    { border-left-color: var(--c-info);    background: var(--c-info-soft); }

.alert__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--c-ink);
}
.alert__icon svg { width: 22px; height: 22px; stroke-width: 1.6; fill: none; stroke: currentColor; }
.alert__body { font-size: var(--fs-14); line-height: var(--lh-relaxed); }
.alert__title { font-weight: 600; font-size: var(--fs-15); display: block; margin-bottom: 2px; color: var(--text-strong); }

/* ── Header / topbar ─────────────────────────────── */
.topbar {
  background: var(--c-ink);
  color: var(--text-on-dark-m);
  font-size: var(--fs-12);
  border-bottom: 1px solid var(--border-dark);
}
.topbar .container {
  height: 38px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar a { color: var(--text-on-dark-m); transition: color var(--t-fast); }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar__right {
  display: flex; align-items: center; gap: var(--space-5);
}
.topbar__left .row { gap: 6px; }
.topbar__right a { font-weight: 500; }
.topbar__lang {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 4px 8px; border-radius: var(--r-4);
  border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 720px) {
  .topbar__left .topbar__address-line { display: none; }
}

.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(250, 250, 247, .96);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--space-3);
  color: var(--c-ink);
}
.brand__mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-6);
  position: relative;
  overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-4);
}
.brand__mark span {
  font-family: var(--font-serif);
  font-weight: 600; font-size: var(--fs-17);
  letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-20);
  color: var(--c-ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--c-slate-500);
  margin-top: 3px;
  font-weight: 600;
}
.brand__stack { display: flex; flex-direction: column; }
@media (max-width: 480px) {
  .brand__sub { display: none; }
}

.nav {
  display: flex; align-items: center; gap: var(--space-7);
  margin-left: var(--space-9);
}
.nav__link {
  font-size: var(--fs-15);
  font-weight: 500;
  color: var(--c-slate-700);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.nav__link:hover { color: var(--c-ink); }
.nav__link.is-active { color: var(--c-ink); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--c-authority);
}
@media (max-width: 980px) { .nav { display: none; } }

.header__cta { display: flex; align-items: center; gap: var(--space-2); }
.header__menu-btn {
  display: none;
  align-items: center; gap: 6px;
  font-size: var(--fs-14); font-weight: 600;
  padding: 9px 14px; border: 1px solid var(--border-strong);
  border-radius: var(--r-8);
  color: var(--c-ink);
}
.header__menu-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
@media (max-width: 980px) { .header__menu-btn { display: inline-flex; } }

/* Side drawer (mobile menu + secondary) */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(14, 42, 71, .45);
  z-index: var(--z-drawer);
}
.drawer-overlay.is-open { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--bg-page);
  box-shadow: -8px 0 24px rgba(0,0,0,.18);
  z-index: calc(var(--z-drawer) + 1);
  transform: translateX(100%);
  transition: transform var(--t-base);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-7);
  border-bottom: 1px solid var(--border);
}
.drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-8);
  border: 1px solid var(--border);
}
.drawer__body { padding: var(--space-7); overflow-y: auto; flex: 1; }
.drawer__group + .drawer__group { margin-top: var(--space-7); padding-top: var(--space-7); border-top: 1px solid var(--border); }
.drawer__label {
  font-size: var(--fs-12); text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.drawer__item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--fs-16);
  color: var(--text-strong);
  font-weight: 500;
}
.drawer__item:hover { color: var(--c-authority-d); }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--c-ink);
  color: var(--text-on-dark-m);
  padding: var(--space-12) 0 var(--space-7);
}
.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-5);
}
.footer a {
  display: block;
  color: var(--text-on-dark-m);
  font-size: var(--fs-14);
  line-height: 1.85;
  transition: color var(--t-fast);
}
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-9);
}
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer__grid { grid-template-columns: 1fr; gap: var(--space-7); } }
.footer__brand .brand__mark { background: rgba(255,255,255,.08); }
.footer__brand .brand__mark span { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: var(--text-on-dark-m); }
.footer__about {
  margin-top: var(--space-5);
  font-size: var(--fs-14);
  max-width: 320px;
  color: var(--text-on-dark-m);
}
.footer__address {
  margin-top: var(--space-5);
  font-size: var(--fs-13);
  color: var(--text-on-dark-m);
  font-style: normal;
  line-height: var(--lh-relaxed);
}
.footer__address strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }
.footer__bottom {
  margin-top: var(--space-11);
  padding-top: var(--space-7);
  border-top: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--fs-13);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.footer__legal a { display: inline; }

.footer__disclaimer {
  margin-top: var(--space-7);
  padding: var(--space-5);
  border-radius: var(--r-8);
  background: rgba(255,255,255,.04);
  font-size: var(--fs-12);
  line-height: var(--lh-relaxed);
  color: var(--text-on-dark-m);
  max-width: 720px;
}

/* ── Bottom price/CTA bar (sticky, optional) ────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky);
  background: var(--c-ink);
  color: #fff;
  border-top: 1px solid var(--border-dark);
  padding: 10px var(--space-7);
  display: flex; align-items: center; justify-content: center; gap: var(--space-5);
  font-size: var(--fs-14);
  transform: translateY(100%);
  transition: transform var(--t-slow);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price strong { color: var(--c-authority-l); font-weight: 700; }
@media (max-width: 640px) {
  .sticky-cta { padding: 10px var(--space-4); font-size: var(--fs-13); flex-wrap: wrap; }
  .sticky-cta .btn { padding: 8px 14px; }
}

/* ── Stepper / progress ──────────────────────────── */
.stepper {
  display: flex; align-items: center;
  gap: var(--space-3);
}
.stepper__step {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-13);
  color: var(--text-muted);
}
.stepper__num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-13); font-weight: 600;
  background: #fff;
}
.stepper__step.is-active .stepper__num { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.stepper__step.is-active { color: var(--text-strong); font-weight: 600; }
.stepper__step.is-done .stepper__num { background: var(--c-success); border-color: var(--c-success); color: #fff; }
.stepper__bar { flex: 1; height: 1px; background: var(--border); }

/* ── Tables (registry / dashboard) ───────────────── */
.table {
  width: 100%; border-collapse: collapse;
  font-size: var(--fs-14);
}
.table th, .table td {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
}
.table th {
  font-weight: 600; color: var(--text-strong);
  background: var(--c-slate-50);
  font-size: var(--fs-13);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.table tbody tr:hover { background: var(--c-slate-50); }
.table tbody tr.is-priority { background: rgba(183,55,55,.04); }

/* ── Pricing block ───────────────────────────────── */
.price-block {
  display: flex; align-items: baseline; gap: var(--space-2);
  font-family: var(--font-serif);
}
.price-block__amount {
  font-size: var(--fs-48);
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.price-block__cents {
  font-size: var(--fs-24);
  font-weight: 500;
  color: var(--c-ink);
  vertical-align: top;
}
.price-block__label {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-left: var(--space-3);
}

/* ── Tabs ────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border);
}
.tabs__btn {
  padding: 12px 16px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tabs__btn:hover { color: var(--text-strong); }
.tabs__btn.is-active { color: var(--c-ink); border-bottom-color: var(--c-authority); }

/* ── Avatar ──────────────────────────────────────── */
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-paper-2);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: var(--fs-14);
  border: 1px solid var(--border);
}

/* ── Icons (line-icon helpers) ───────────────────── */
.icon {
  width: 20px; height: 20px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 28px; height: 28px; }
