/* Tailwind build estatico para producao: base + componentes usados pelo app. */
:root {
    --background: 248 250 252;
    --foreground: 15 23 42;
    --card: 255 255 255;
    --card-foreground: 15 23 42;
    --muted: 241 245 249;
    --muted-foreground: 100 116 139;
    --border: 226 232 240;
    --input: 226 232 240;
    --primary: 37 99 235;
    --primary-foreground: 255 255 255;
    --accent: 14 165 233;
    --success: 22 163 74;
    --ring: 59 130 246;
}

.dark {
    --background: 2 6 23;
    --foreground: 226 232 240;
    --card: 15 23 42;
    --card-foreground: 226 232 240;
    --muted: 30 41 59;
    --muted-foreground: 148 163 184;
    --border: 51 65 85;
    --input: 51 65 85;
    --primary: 96 165 250;
    --primary-foreground: 8 13 24;
    --accent: 56 189 248;
    --success: 74 222 128;
    --ring: 147 197 253;
}

* {
    box-sizing: border-box;
    border-color: rgb(var(--border));
}

html {
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgb(var(--accent) / 0.12), transparent 28rem),
        linear-gradient(135deg, rgb(var(--background)), rgb(var(--muted) / 0.42));
    color: rgb(var(--foreground));
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.h-full {
    height: 100%;
}

.min-h-full {
    min-height: 100%;
}

.bg-background {
    background-color: rgb(var(--background));
}

.text-foreground {
    color: rgb(var(--foreground));
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-right {
    text-align: right;
}

.app-shell {
    display: flex;
    min-height: 100vh;
}

.main-shell {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.content-shell {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 1rem;
}

.content-shell > * + * {
    margin-top: 1.5rem;
}

.page-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
}

.page-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2rem);
}

.page-heading p {
    margin: 0.25rem 0 0;
    color: rgb(var(--muted-foreground));
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 40;
    display: flex;
    width: 18rem;
    transform: translateX(-100%);
    flex-direction: column;
    border-right: 1px solid rgb(var(--border));
    background: rgb(var(--card) / 0.92);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.sidebar-open .sidebar {
    transform: translateX(0);
    box-shadow: 0 24px 80px -32px rgb(15 23 42 / 0.55);
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    background: rgb(2 6 23 / 0.42);
}

.sidebar-open .sidebar-backdrop {
    display: block;
}

.sidebar-header,
.sidebar-footer {
    padding: 1rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 14px 32px -18px rgb(15 23 42 / 0.55);
    overflow: hidden;
}

.brand-icon img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

.brand-mark strong,
.status-card strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.15;
}

.brand-mark small,
.status-card small,
.card-header p,
.eyebrow {
    color: rgb(var(--muted-foreground));
}

.sidebar-nav {
    display: grid;
    gap: 0.35rem;
    padding: 0 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.75rem;
    border-radius: 0.9rem;
    padding: 0 0.85rem;
    color: rgb(var(--muted-foreground));
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-item:hover,
.nav-item.is-active {
    background: rgb(var(--primary) / 0.11);
    color: rgb(var(--foreground));
}

.nav-item:hover {
    transform: translateX(2px);
}

.sidebar-footer {
    margin-top: auto;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgb(var(--muted) / 0.74), rgb(var(--card)));
}

.status-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: rgb(var(--success));
    box-shadow: 0 0 0 6px rgb(var(--success) / 0.12);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgb(var(--border));
    background: rgb(var(--background) / 0.82);
    padding: 0.85rem 1rem;
    backdrop-filter: blur(18px);
}

.topbar-left,
.topbar-actions,
.hero-actions,
.metric-card-header,
.card-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-left h1 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.topbar-actions {
    margin-left: auto;
}

.search-box {
    display: none;
    align-items: center;
    gap: 0.6rem;
    min-width: min(20rem, 34vw);
    min-height: 2.5rem;
    border: 1px solid rgb(var(--border));
    border-radius: 999px;
    background: rgb(var(--card) / 0.78);
    padding: 0 0.85rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within,
.input:focus {
    border-color: rgb(var(--ring));
    box-shadow: 0 0 0 4px rgb(var(--ring) / 0.16);
    outline: none;
}

.search-box input {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgb(var(--foreground));
    outline: none;
}

.icon-button,
.avatar-button {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--border));
    border-radius: 999px;
    background: rgb(var(--card) / 0.86);
    color: rgb(var(--foreground));
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover,
.avatar-button:hover,
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -20px rgb(15 23 42 / 0.55);
}

.avatar-button {
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--accent)));
    color: white;
    font-weight: 800;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.user-chip .avatar-button {
    flex: 0 0 auto;
}

.user-chip-text {
    display: none;
    min-width: 0;
    line-height: 1.15;
}

.user-chip-text strong,
.user-chip-text small {
    display: block;
    max-width: 13rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-chip-text strong {
    font-size: 0.9rem;
}

.user-chip-text small {
    margin-top: 0.2rem;
    color: rgb(var(--muted-foreground));
    font-size: 0.75rem;
}

.theme-moon,
.dark .theme-sun {
    display: none;
}

.dark .theme-moon {
    display: inline-block;
}

.hero-panel {
    display: grid;
    gap: 1.25rem;
    overflow: hidden;
    border: 1px solid rgb(var(--border));
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgb(var(--primary) / 0.14), rgb(var(--accent) / 0.08)),
        rgb(var(--card) / 0.86);
    padding: 1.25rem;
    box-shadow: 0 18px 50px -36px rgb(15 23 42 / 0.55);
}

.hero-panel h2 {
    max-width: 48rem;
    margin: 0;
    font-size: clamp(2rem, 6vw, 3.8rem);
    line-height: 1.02;
}

.hero-panel p:not(.eyebrow) {
    max-width: 44rem;
    margin: 0.9rem 0 0;
    color: rgb(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 0.9rem;
    padding: 0 1rem;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn-sm {
    min-height: 2rem;
    border-radius: 0.7rem;
    padding: 0 0.7rem;
    font-size: 0.82rem;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(var(--primary)), rgb(var(--accent)));
    color: rgb(var(--primary-foreground));
}

.btn-secondary {
    border-color: rgb(var(--border));
    background: rgb(var(--card));
    color: rgb(var(--foreground));
}

.btn-ghost {
    border-color: rgb(var(--border));
    background: transparent;
    color: rgb(var(--muted-foreground));
}

.stats-grid,
.dashboard-grid,
.summary-grid {
    display: grid;
    gap: 1rem;
    margin-top: 0;
}

.stats-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
}

.summary-grid {
    grid-template-columns: minmax(0, 1fr);
}

.content-shell > .dashboard-section {
    margin-top: 1.25rem;
}

.content-shell > .dashboard-section-tight {
    margin-top: 1rem;
}

.content-shell > .dashboard-chart-card {
    margin-top: 1.75rem;
}

.metric-card,
.card,
.empty-state {
    border: 1px solid rgb(var(--border));
    border-radius: 1.25rem;
    background: rgb(var(--card) / 0.9);
    box-shadow: 0 14px 40px -30px rgb(15 23 42 / 0.55);
}

.metric-card {
    min-height: 6.5rem;
    padding: 1.15rem 1.25rem;
}

.metric-card > span {
    color: rgb(var(--muted-foreground));
    font-size: 0.86rem;
}

.metric-card-header {
    justify-content: space-between;
    color: rgb(var(--muted-foreground));
    font-size: 0.86rem;
}

.metric-card strong {
    display: block;
    margin-top: 0.75rem;
    font-size: 1.85rem;
    line-height: 1;
}

.metric-delta {
    border-radius: 999px;
    background: rgb(var(--success) / 0.12);
    color: rgb(var(--success));
    padding: 0.25rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.metric-bar {
    height: 0.45rem;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgb(var(--muted));
}

.metric-bar span {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgb(var(--primary)), rgb(var(--accent)));
}

.card {
    overflow: hidden;
    padding: 1rem;
}

.card-header {
    margin-bottom: 1rem;
}

.card-header-row {
    justify-content: space-between;
    align-items: flex-start;
}

.card-header h2 {
    margin: 0;
    font-size: 1rem;
}

.card-header p {
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid rgb(var(--border));
    padding: 0.85rem 0.65rem;
    white-space: nowrap;
}

.data-table th {
    color: rgb(var(--muted-foreground));
    font-size: 0.78rem;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

.data-table th.text-right,
.data-table td.text-right {
    text-align: right;
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    background: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    padding: 0.28rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.badge-green,
.badge-pago,
.badge-receita {
    background: rgb(22 163 74 / 0.12);
    color: rgb(22 163 74);
}

.badge-blue,
.badge-transferencia {
    background: rgb(37 99 235 / 0.12);
    color: rgb(37 99 235);
}

.badge-pendente {
    background: rgb(234 179 8 / 0.16);
    color: rgb(161 98 7);
}

.badge-red,
.badge-vencido,
.badge-despesa {
    background: rgb(239 68 68 / 0.12);
    color: rgb(220 38 38);
}

.badge-muted,
.badge-cancelado {
    background: rgb(var(--muted));
    color: rgb(var(--muted-foreground));
}

.accent-card {
    border: 1px solid rgb(var(--border));
    border-left-width: 4px;
    border-radius: 1.25rem;
    background: rgb(var(--card) / 0.9);
    padding: 1rem;
    box-shadow: 0 14px 40px -30px rgb(15 23 42 / 0.55);
}

.accent-card span {
    display: block;
    color: rgb(var(--muted-foreground));
    font-size: 0.82rem;
}

.accent-card strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.35rem;
}

.accent-green {
    border-left-color: rgb(22 163 74);
}

.accent-red {
    border-left-color: rgb(239 68 68);
}

.accent-yellow {
    border-left-color: rgb(234 179 8);
}

.accent-blue {
    border-left-color: rgb(37 99 235);
}

.toolbar,
.action-row,
.row-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.row-actions {
    justify-content: flex-end;
    gap: 0.4rem;
}

.payment-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.payment-actions .btn {
    min-width: 10.5rem;
}

.payment-filter {
    align-items: center;
}

.toolbar {
    border-bottom: 1px solid rgb(var(--border));
    margin: -1rem -1rem 1rem;
    padding: 1rem;
}

.search-inline {
    display: flex;
    min-width: min(100%, 24rem);
}

.input.compact {
    width: auto;
    min-width: 9rem;
}

.compact-year {
    min-width: 6.25rem;
}

.btn-success {
    background: rgb(22 163 74);
    color: white;
}

.btn-danger {
    background: rgb(220 38 38);
    color: white;
}

.btn-dark {
    background: rgb(51 65 85);
    color: #ffffff;
}

.muted-cell {
    color: rgb(var(--muted-foreground));
    padding: 2rem 1rem;
}

.icon-button.small {
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
}

.bar-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    min-height: 17rem;
    padding: 1rem 0 0;
}

.bar-group {
    display: grid;
    flex: 1;
    gap: 0.6rem;
    min-width: 3rem;
    text-align: center;
}

.bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.35rem;
    height: 13rem;
    border-bottom: 1px solid rgb(var(--border));
}

.bar {
    width: 0.9rem;
    min-height: 0.4rem;
    border-radius: 999px 999px 0 0;
    transition: height 220ms ease;
}

.bar.income {
    background: rgb(22 163 74);
}

.bar.expense {
    background: rgb(249 115 22);
}

.status-list {
    display: grid;
    gap: 0.75rem;
}

.status-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(var(--border));
    padding-bottom: 0.75rem;
}

.auth-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1rem;
}

.login-card {
    width: min(100%, 26rem);
    border: 1px solid rgb(var(--border));
    border-radius: 1.5rem;
    background: rgb(var(--card) / 0.94);
    padding: 2rem;
    box-shadow: 0 24px 80px -42px rgb(15 23 42 / 0.6);
}

.login-card h1 {
    margin: 1.5rem 0;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    overflow-y: auto;
    background: rgb(2 6 23 / 0.58);
    padding: 1rem;
}

.modal-backdrop[hidden] {
    display: none;
}

.modal-card {
    width: min(100%, 48rem);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border: 1px solid rgb(var(--border));
    border-radius: 1.25rem;
    background: rgb(var(--card));
    padding: 1rem;
    box-shadow: 0 24px 80px -28px rgb(0 0 0 / 0.45);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    margin: 0;
}

.form-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: minmax(0, 1fr);
}

.form-wide,
.modal-actions {
    grid-column: 1 / -1;
}

.check-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(var(--muted-foreground));
    font-size: 0.9rem;
    font-weight: 700;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-stack {
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.45rem;
    color: rgb(var(--muted-foreground));
    font-size: 0.9rem;
    font-weight: 700;
}

.form-error {
    margin: 0;
    color: rgb(220 38 38);
    font-size: 0.9rem;
}

.input {
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid rgb(var(--input));
    border-radius: 0.9rem;
    background: rgb(var(--background) / 0.6);
    color: rgb(var(--foreground));
    padding: 0 0.9rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.empty-state {
    display: grid;
    justify-items: start;
    gap: 0.85rem;
    padding: 2rem;
}

.empty-state h2 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 4rem);
}

.empty-state p {
    margin: 0;
    color: rgb(var(--muted-foreground));
}

.debug-box {
    width: 100%;
    overflow: auto;
    border-radius: 1rem;
    background: rgb(var(--muted));
    padding: 1rem;
}

.icon {
    position: relative;
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.icon::before,
.icon::after {
    position: absolute;
    content: "";
}

.icon-menu::before {
    inset: 0.2rem 0;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.icon-menu::after {
    inset: 0.5rem 0 0 auto;
    width: 100%;
    border-top: 2px solid currentColor;
}

.icon-search::before {
    width: 0.65rem;
    height: 0.65rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-search::after {
    right: 0.05rem;
    bottom: 0.05rem;
    width: 0.45rem;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}

.icon-sun::before {
    inset: 0.2rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-moon::before {
    inset: 0.1rem;
    border-radius: 999px;
    box-shadow: -0.25rem 0 0 0 currentColor;
    transform: translateX(0.35rem);
}

.icon-layout-dashboard::before {
    inset: 0.08rem;
    border: 2px solid currentColor;
    border-radius: 0.25rem;
}

.icon-target::before {
    inset: 0.08rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-target::after {
    inset: 0.42rem;
    border-radius: 999px;
    background: currentColor;
}

.icon-users::before {
    left: 0.15rem;
    top: 0.1rem;
    width: 0.35rem;
    height: 0.35rem;
    border: 2px solid currentColor;
    border-radius: 999px;
    box-shadow: 0.45rem 0.15rem 0 -1px currentColor;
}

.icon-users::after {
    left: 0.05rem;
    bottom: 0.15rem;
    width: 0.85rem;
    height: 0.38rem;
    border: 2px solid currentColor;
    border-radius: 999px 999px 0.2rem 0.2rem;
}

.icon-wallet::before {
    inset: 0.2rem 0.05rem;
    border: 2px solid currentColor;
    border-radius: 0.3rem;
}

.icon-wallet::after {
    right: 0.1rem;
    top: 0.45rem;
    width: 0.35rem;
    border-top: 2px solid currentColor;
}

.icon-bar-chart::before {
    left: 0.15rem;
    bottom: 0.1rem;
    width: 0.18rem;
    height: 0.45rem;
    background: currentColor;
    box-shadow: 0.35rem -0.25rem 0 currentColor, 0.7rem -0.05rem 0 currentColor;
}

.icon-settings::before {
    inset: 0.22rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-settings::after {
    inset: 0.02rem 0.48rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.icon-globe::before {
    inset: 0.08rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.icon-globe::after {
    inset: 0.5rem 0.12rem auto;
    border-top: 2px solid currentColor;
}

.icon-file::before {
    inset: 0.05rem 0.18rem;
    border: 2px solid currentColor;
    border-radius: 0.2rem;
}

.icon-trend::before {
    left: 0.1rem;
    right: 0.1rem;
    bottom: 0.2rem;
    height: 0.65rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: skewY(-25deg);
}

.icon-blue::before,
.icon-sky::before,
.icon-green::before,
.icon-orange::before {
    inset: 0.22rem;
    border-radius: 999px;
    background: currentColor;
}

.icon-blue { color: rgb(37 99 235); }
.icon-sky { color: rgb(14 165 233); }
.icon-green { color: rgb(22 163 74); }
.icon-orange { color: rgb(249 115 22); }

@media (min-width: 640px) {
    .content-shell,
    .topbar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-panel,
    .card,
    .metric-card {
        padding: 1.25rem;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .search-box {
        display: flex;
    }

    .user-chip-text {
        display: block;
    }

    .dashboard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1024px) {
    .sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        transform: none;
    }

    .sidebar-backdrop,
    .sidebar-open .sidebar-backdrop {
        display: none;
    }

    .lg-hidden {
        display: none;
    }

    .content-shell {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-panel {
        grid-template-columns: 1fr auto;
        align-items: end;
    }
}
