/* ============================================================
   AITYKE COMPONENTS — ported from template-20260419.html
   Buttons, forms, badges, cards, KPIs, tables, tabs, header,
   footer, modal, drawer, popover, toast, empty/skeleton.
   These class names are intentionally identical to the SPA
   so any HTML built for the design system "just works" when
   pasted into a WordPress page.
   ============================================================ */

/* ============================================================
   AITYKE CONTAINER & PAGE SHELL
   ============================================================ */
.aityke-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-5); }
.aityke-page-main { display: block; padding: var(--sp-6) 0; min-width: 0; }
.aityke-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--sp-6);
    align-items: start;
}
.aityke-page-grid > .aityke-content { min-width: 0; }
.aityke-page-grid > .aityke-aside { min-width: 0; }
@media (max-width: 1024px) {
    .aityke-page-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.type-display { font-size: var(--type-display); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: var(--color-text); }
.type-h1 { font-size: var(--type-h1); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--color-text); }
.type-h2 { font-size: var(--type-h2); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; color: var(--color-text); }
.type-h3 { font-size: var(--type-h3); font-weight: 700; line-height: 1.35; color: var(--color-text); }
.type-h4 { font-size: var(--type-h4); font-weight: 600; line-height: 1.5; color: var(--color-text-2); }
.type-body-lg { font-size: var(--type-body-lg); font-weight: 400; line-height: 1.7; color: var(--color-text-2); }
.type-body { font-size: var(--type-body); font-weight: 400; line-height: 1.6; color: var(--color-text-2); }
.type-body-sm { font-size: var(--type-body-sm); font-weight: 400; line-height: 1.55; color: var(--color-muted); }
.type-caption { font-size: var(--type-caption); font-weight: 600; line-height: 1.5; color: var(--color-subtle); letter-spacing: 0.025em; }
.type-mono { font-family: var(--font-mono); font-size: 13px; color: var(--color-text-2); }
.type-label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--color-muted); }
.type-overline { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-700); }
.type-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-600); display: inline-flex; align-items: center; gap: 6px; }
.type-eyebrow::before { content: ''; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.accent-text { color: var(--color-primary); }
.accent-gold { color: var(--gold-400); }

/* ============================================================
   BUTTONS — density-aware
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-weight: 600; font-size: 14px; line-height: 1;
    border: none; border-radius: var(--radius-md);
    cursor: pointer; white-space: nowrap; text-decoration: none;
    padding: 0 18px; height: 40px;
    position: relative; overflow: hidden;
    letter-spacing: 0.01em;
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), opacity var(--t-fast);
}
[data-density="compact"] .btn { height: 34px; padding: 0 14px; font-size: 13px; }
.btn:active { transform: translateY(1px) !important; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.btn .material-symbols-outlined { font-size: 18px; }

.btn-xs { height: 26px; padding: 0 10px; font-size: 12px; border-radius: var(--radius-sm); }
.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }
.btn-lg { height: 48px; padding: 0 26px; font-size: 16px; border-radius: var(--radius-lg); font-weight: 700; }
.btn-xl { height: 56px; padding: 0 32px; font-size: 17px; border-radius: var(--radius-lg); font-weight: 700; }
.btn-icon { padding: 0; width: 40px; }
.btn-icon.btn-sm { width: 32px; }
.btn-icon.btn-lg { width: 48px; }
.btn-icon.btn-xs { width: 26px; }

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    box-shadow: 0 2px 6px rgba(212,132,90,0.30);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--orange-600), var(--orange-700)); box-shadow: var(--shadow-orange-lg); transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-dark { background: var(--dark-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--dark-700); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }
.btn-outline { background: transparent; color: var(--color-text-2); border: 1.5px solid var(--color-border); box-shadow: var(--shadow-xs); }
.btn-outline:hover { background: var(--orange-50); border-color: var(--orange-300); color: var(--orange-700); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-text-2); box-shadow: none; }
.btn-ghost:hover { background: var(--orange-50); color: var(--orange-700); text-decoration: none; }
.btn-danger { background: var(--red-600); color: #fff; box-shadow: 0 2px 6px rgba(220,38,38,0.25); }
.btn-danger:hover { background: var(--red-700); box-shadow: 0 4px 14px rgba(220,38,38,0.30); color: #fff; }
.btn-success { background: var(--green-600); color: #fff; box-shadow: 0 2px 6px rgba(22,163,74,0.25); }
.btn-success:hover { background: var(--green-700); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #fff; box-shadow: 0 2px 8px rgba(201,168,124,0.35); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); transform: translateY(-1px); color: #fff; }
.btn-soft-orange { background: var(--orange-100); color: var(--orange-700); border: 1px solid var(--orange-200); }
.btn-soft-orange:hover { background: var(--orange-200); }

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--color-text); }
.form-hint  { font-size: 12px; color: var(--color-subtle); margin-top: 3px; }
.form-error-msg { font-size: 12px; color: var(--red-600); display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-sans);
    background: var(--surface-1);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
[data-density="compact"] .form-input,
[data-density="compact"] .form-textarea,
[data-density="compact"] .form-select { padding: 8px 12px; font-size: 13px; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: var(--ring-primary);
}
.form-input:disabled, .form-textarea:disabled, .form-select:disabled { background: var(--surface-sunken); color: var(--color-subtle); cursor: not-allowed; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-subtle); }
.form-textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%2364748b' d='M6 8L1 3h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}
.checkbox, .radio {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--color-text-2); cursor: pointer;
}
.checkbox input, .radio input {
    width: 16px; height: 16px;
    accent-color: var(--orange-500);
    cursor: pointer;
}

/* ============================================================
   BADGES, TAGS, CHIPS
   ============================================================ */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    letter-spacing: 0.025em;
    background: var(--surface-3); color: var(--color-text-2);
}
.badge-orange   { background: var(--orange-100); color: var(--orange-700); }
.badge-gold     { background: #fef9f0; color: var(--gold-600); }
.badge-success  { background: var(--green-50); color: var(--green-700); }
.badge-warning  { background: var(--amber-50); color: var(--amber-600); }
.badge-danger   { background: var(--red-50); color: var(--red-700); }
.badge-info     { background: var(--blue-50); color: var(--blue-600); }
.badge-dark     { background: var(--dark-600); color: #fff; }
.tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600;
    border: 1px solid var(--color-border);
    background: var(--surface-1);
    color: var(--color-text-2);
}
.tag-orange { border-color: var(--orange-300); background: var(--orange-50); color: var(--orange-700); }
.tag-dark   { background: var(--dark-600); border-color: var(--dark-700); color: #fff; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--surface-1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--elev-2);
    overflow: hidden;
    transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.card:hover { box-shadow: var(--elev-3); }
.card-elevated { box-shadow: var(--elev-3); }
.card-flat { box-shadow: none; }
.card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    gap: 12px;
}
.card-title { font-size: 15px; font-weight: 700; color: var(--color-text); }
.card-body { padding: 20px; }
.card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--surface-2);
    display: flex; gap: 8px; justify-content: flex-end;
}

/* ============================================================
   KPI / STATS
   ============================================================ */
.kpi {
    background: var(--surface-1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex; flex-direction: column; gap: 10px;
    transition: box-shadow var(--t-base), transform var(--t-base);
    position: relative; overflow: hidden;
}
.kpi:hover { box-shadow: var(--elev-3); transform: translateY(-1px); }
.kpi-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.kpi-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-100); color: var(--orange-700);
    flex-shrink: 0;
}
.kpi-icon .material-symbols-outlined { font-size: 22px; }
.kpi-label { font-size: 12px; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.kpi-value { font-size: 28px; font-weight: 800; color: var(--color-text); letter-spacing: -0.02em; line-height: 1.05; font-variant-numeric: tabular-nums; }

/* ============================================================
   TABLES
   ============================================================ */
.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.table thead th {
    text-align: left;
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--color-muted);
    background: var(--surface-sunken);
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
}
.table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    color: var(--color-text);
}
.table tbody tr:hover { background: var(--surface-3); }
.table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-segmented {
    display: inline-flex; padding: 3px;
    background: var(--surface-sunken);
    border-radius: var(--radius-md);
}
.tabs-segmented .tab {
    padding: 6px 14px; font-size: 13px; font-weight: 600;
    background: transparent; border: none; cursor: pointer;
    color: var(--color-text-2);
    border-radius: var(--radius-sm);
    transition: background var(--t-fast), color var(--t-fast);
}
.tabs-segmented .tab.active { background: var(--surface-1); color: var(--color-text); box-shadow: var(--elev-1); }

.tabs-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.tabs-pills .tab {
    padding: 7px 14px; font-size: 13px; font-weight: 600;
    background: var(--surface-1); border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-2); cursor: pointer;
    transition: all var(--t-fast);
}
.tabs-pills .tab.active { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }

/* ============================================================
   AITYKE LOGO (used by footer.php — header.php no longer renders
   its own bar, see b2-overrides.css block (w) for the single
   B2-bar header restyle).
   ============================================================ */
.aityke-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; }
.aityke-logo:hover { color: #fff; text-decoration: none; }
.aityke-logo-mark { display: inline-flex; flex-shrink: 0; }
.aityke-logo-img { height: 36px; width: auto; display: block; }
.aityke-logo-text { font-size: 16px; letter-spacing: 0.04em; }

/* Defensive: if any plugin or future template re-introduces
   <header class="aityke-header">, keep it AITYKE-styled but
   collapse to zero footprint when empty so it can never push
   B2's bar down. */
.aityke-header:not(:empty) {
    background: var(--header-bg);
    color: var(--header-fg);
    padding: 12px 0;
    position: sticky; top: 0;
    z-index: var(--z-header);
    padding-top: calc(12px + env(safe-area-inset-top));
}
.aityke-header:empty { display: none; }
.aityke-header-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.aityke-nav { display: inline-flex; align-items: center; gap: 12px; }
.aityke-nav .username {
    color: rgba(255,255,255,0.85);
    font-weight: 600; font-size: 14px;
    max-width: 220px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.aityke-nav a, .aityke-nav .btn { color: #fff; }
.aityke-nav .btn-ghost { color: rgba(255,255,255,0.92); background: transparent; }
.aityke-nav .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.aityke-nav .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.aityke-nav .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

@media (max-width: 768px) {
    .aityke-container { padding: 0 12px; }
    .aityke-header:not(:empty) { padding: 10px 0; padding-top: calc(10px + env(safe-area-inset-top)); }
    .aityke-header-content { flex-wrap: nowrap; gap: 8px; }
    .aityke-logo-img { height: 28px; }
    .aityke-nav { gap: 8px; }
    .aityke-nav .username { max-width: 40vw; font-size: 13px; }
}
@media (max-width: 380px) {
    .aityke-nav .username { display: none; }
}

/* ============================================================
   AITYKE FOOTER
   ============================================================ */
.aityke-footer {
    background: var(--surface-2);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-10) 0 var(--sp-6);
    margin-top: var(--sp-12);
    color: var(--color-text-2);
}
.aityke-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-8);
}
@media (max-width: 768px) {
    .aityke-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
.aityke-footer-brand { display: flex; flex-direction: column; gap: 8px; }
.aityke-footer-brand .aityke-logo { color: var(--color-text); }
.aityke-footer-brand .tagline { font-size: 13px; color: var(--color-muted); line-height: 1.55; max-width: 320px; }
.aityke-footer-col h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--color-subtle);
    margin-bottom: 12px;
}
.aityke-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.aityke-footer-col a { color: var(--color-text-2); font-size: 13px; text-decoration: none; }
.aityke-footer-col a:hover { color: var(--orange-700); }
.aityke-footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: var(--sp-5);
    border-top: 1px solid var(--color-border);
    font-size: 12px; color: var(--color-muted);
    flex-wrap: wrap; gap: 8px;
}
.aityke-footer-bottom a { color: var(--color-muted); text-decoration: none; }
.aityke-footer-bottom a:hover { color: var(--orange-700); }

/* ============================================================
   MODALS, DRAWERS, OVERLAYS, POPOVERS
   ============================================================ */
.modal-backdrop {
    position: fixed; inset: 0;
    background: var(--surface-overlay);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: var(--z-overlay);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fade-in var(--t-base);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
    background: var(--surface-raised);
    border-radius: var(--radius-xl);
    box-shadow: var(--elev-5);
    width: 100%; max-width: 520px;
    max-height: 90vh;
    display: flex; flex-direction: column;
    animation: modal-in 0.28s var(--ease-emphasized);
    overflow: hidden;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
}
.modal-title { font-size: 17px; font-weight: 700; color: var(--color-text); }
.modal-close {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    border-radius: var(--radius-md);
    cursor: pointer; color: var(--color-muted);
    font-size: 22px; line-height: 1;
}
.modal-body { padding: 24px; overflow-y: auto; }
.modal-footer {
    display: flex; gap: 8px; justify-content: flex-end;
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    background: var(--surface-2);
}
@media (max-width: 640px) {
    .modal-backdrop { padding: 0; align-items: flex-end; }
    .modal {
        max-width: 100%;
        max-height: 92vh;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-stack {
    position: fixed; right: 16px; bottom: 16px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: var(--z-toast);
    max-width: calc(100vw - 32px);
    width: 360px;
}
.toast {
    background: var(--surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--elev-4);
    padding: 12px 14px;
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--color-text);
    border-left: 4px solid var(--color-primary);
}
.toast-success { border-left-color: var(--green-500); }
.toast-warning { border-left-color: var(--amber-500); }
.toast-danger  { border-left-color: var(--red-500); }
.toast-info    { border-left-color: var(--blue-500); }
.toast-body { flex: 1; min-width: 0; }
.toast-title { font-weight: 700; margin-bottom: 2px; }
.toast-msg { color: var(--color-muted); font-size: 12px; }
.toast-close { background: transparent; border: none; cursor: pointer; color: var(--color-subtle); font-size: 18px; padding: 0; }

/* ============================================================
   EMPTY STATE & SKELETON
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 48px 20px;
}
.empty-state-icon {
    width: 72px; height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--orange-100); color: var(--orange-700);
    display: flex; align-items: center; justify-content: center;
}
.empty-state-icon .material-symbols-outlined { font-size: 36px; }
.empty-state-title { font-size: 18px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.empty-state-desc { font-size: 13px; color: var(--color-muted); max-width: 360px; margin: 0 auto 20px; line-height: 1.55; }
.empty-state-actions { display: inline-flex; gap: 8px; }

.skeleton {
    background: linear-gradient(90deg, var(--surface-sunken) 0%, var(--surface-3) 50%, var(--surface-sunken) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s linear infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-text { height: 12px; margin-bottom: 8px; }

/* ============================================================
   AITYKE BOTTOM NAV (mobile FAB shell)
   ============================================================ */
.aityke-bottom-nav {
    background: var(--surface-1);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--elev-3);
    padding-bottom: env(safe-area-inset-bottom);
}
.aityke-bottom-nav .bn-item {
    color: var(--color-text-2);
    transition: color var(--t-fast), background var(--t-fast);
}
.aityke-bottom-nav .bn-item.active,
.aityke-bottom-nav .bn-item:hover { color: var(--orange-700); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-orange { color: var(--color-primary); }
.text-muted { color: var(--color-muted); }
.text-success { color: var(--green-600); }
.text-danger { color: var(--red-600); }
.bg-surface { background: var(--surface-1); }
.bg-warm { background: var(--orange-50); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }
.border { border: 1px solid var(--color-border); }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; } .fw-800 { font-weight: 800; }
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; } .p-4 { padding: 16px; } .p-6 { padding: 24px; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Focus ring system-wide */
:focus-visible { outline: var(--focus-outline); outline-offset: var(--focus-offset); border-radius: 4px; }
button:focus-visible, [role="button"]:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: var(--ring-primary);
}
