/* Unified 2026 interface layer. Loaded last to normalize every app. */
:root {
    color-scheme: light;
    --ink-950: #132238;
    --ink-800: #273a53;
    --ink-600: #58708d;
    --ink-400: #91a1b4;
    --canvas: #f5f7fb;
    --surface: rgba(255, 255, 255, .94);
    --surface-solid: #fff;
    --line: #dfe6ef;
    --line-strong: #cbd6e3;
    --brand: #2659d9;
    --brand-dark: #1745bc;
    --brand-soft: #e9efff;
    --aqua: #0ca79d;
    --aqua-soft: #ddf7f3;
    --coral: #f26b4f;
    --sun: #ffbd3e;
    --shadow-sm: 0 8px 24px rgba(28, 49, 77, .07);
    --shadow-md: 0 18px 50px rgba(28, 49, 77, .11);
    --shadow-lg: 0 32px 80px rgba(28, 49, 77, .16);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --ink-950: #f2f6fc;
    --ink-800: #d8e1ed;
    --ink-600: #a6b5c8;
    --ink-400: #8192a8;
    --canvas: #0a111b;
    --surface: rgba(17, 27, 41, .94);
    --surface-solid: #111b29;
    --line: #29384b;
    --line-strong: #3b4c62;
    --brand: #82a5ff;
    --brand-dark: #aac0ff;
    --brand-soft: #1b2d50;
    --aqua: #51d3c9;
    --aqua-soft: #143c3b;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .22);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, .3);
    --shadow-lg: 0 32px 80px rgba(0, 0, 0, .42);
}

html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink-950);
    background: var(--canvas);
    font-family: Inter, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
    letter-spacing: -.01em;
}
body::selection { color: #fff; background: var(--brand); }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }
.site-backdrop { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.site-backdrop::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(38, 89, 217, .08) 1px, transparent 1px);
    background-size: 28px 28px; mask-image: linear-gradient(to bottom, #000, transparent 65%);
}
.backdrop-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .6; }
.backdrop-orb-one { width: 520px; height: 520px; right: -220px; top: 70px; background: radial-gradient(circle, #dce7ff, transparent 70%); }
.backdrop-orb-two { width: 420px; height: 420px; left: -180px; top: 500px; background: radial-gradient(circle, #d9f5f1, transparent 70%); }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 9999; padding: .75rem 1rem; background: #fff; border-radius: 10px; box-shadow: var(--shadow-md); }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 1040; padding: 12px 16px 0; }
.site-header .navbar {
    max-width: 1380px; margin: auto; padding: 0;
    background: rgba(255, 255, 255, .88); border: 1px solid rgba(203, 214, 227, .8);
    border-radius: 18px; box-shadow: 0 10px 35px rgba(27, 48, 77, .09);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.navbar-container { max-width: none; min-height: 66px; padding: 0 12px 0 18px; }
.navbar-brand { color: var(--ink-950) !important; padding: 0; gap: 10px; }
.brand-mark {
    width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto; color: #fff; border-radius: 13px;
    background: linear-gradient(145deg, var(--brand), #547df0); box-shadow: 0 8px 18px rgba(38, 89, 217, .24);
}
.brand-mark i { margin: 0; padding: 0; background: none; font-size: 1.05rem; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--ink-600); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; }
.navbar-collapse { background: transparent; box-shadow: none; }
.site-header .nav-link {
    width: auto; margin: 0 2px; padding: 9px 12px !important; gap: 8px;
    color: var(--ink-600) !important; border-radius: 11px; font-size: .9rem; font-weight: 650;
}
.site-header .nav-link:hover, .site-header .nav-link:focus { color: var(--ink-950) !important; background: #f0f3f8; }
.site-header .nav-link-accent { color: #087c75 !important; background: var(--aqua-soft); }
.site-header .nav-link-accent:hover { color: #05635e !important; background: #ccefeb; }
.navbar-account { align-items: center; gap: 4px; }
.account-link { display: flex !important; align-items: center; }
.account-avatar {
    width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff; background: var(--ink-950); border-radius: 10px; font-size: .8rem;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-copy { display: grid; line-height: 1.1; }
.account-copy small { color: var(--ink-400); font-size: .65rem; }
.account-copy strong { max-width: 130px; overflow: hidden; text-overflow: ellipsis; font-size: .8rem; white-space: nowrap; }
.logout-form { margin: 0; }
.nav-icon-button {
    width: 38px; height: 38px; display: inline-grid; place-items: center; color: var(--ink-600);
    background: transparent; border: 0; border-radius: 10px;
}
.nav-icon-button:hover { color: #b53428; background: #fff0ed; }
.header-login { padding: .65rem 1.05rem; }
.navbar-toggler { background: var(--brand-soft); }
.navbar-toggler-icon { filter: invert(28%) sepia(20%) saturate(2120%) hue-rotate(177deg); }

.site-main { flex: 1; padding: clamp(1.5rem, 3vw, 3rem) 0 4rem; }
.site-main > .container, .global-messages { max-width: 1280px; }
.global-messages:empty { display: none; }
.global-messages .alert { margin-bottom: 1rem; }

h1, h2, h3, h4, h5, h6 { color: var(--ink-950); font-weight: 760; letter-spacing: -.035em; }
.text-muted { color: var(--ink-600) !important; }
.card {
    border: 1px solid rgba(203, 214, 227, .76); border-radius: var(--radius-lg);
    background: var(--surface); box-shadow: var(--shadow-sm); overflow: hidden;
}
.card-header {
    color: var(--ink-950); padding: 1.25rem 1.5rem;
    background: rgba(247, 249, 252, .9); border-bottom: 1px solid var(--line);
}
.card-header .text-muted, .card-header .small { color: var(--ink-600) !important; }
.card-body { padding: clamp(1.25rem, 2.5vw, 2rem); }
.btn {
    min-height: 42px; padding: .65rem 1.15rem; border-radius: 11px;
    font-weight: 700; letter-spacing: -.01em; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #fff; border: 1px solid var(--brand); background: var(--brand);
    box-shadow: 0 8px 18px rgba(38, 89, 217, .18);
}
.btn-primary:hover, .btn-primary:focus { color: #fff; border-color: var(--brand-dark); background: var(--brand-dark); }
.btn-outline-primary { color: var(--brand); border: 1px solid #aabef3; background: #fff; }
.btn-outline-secondary { color: var(--ink-600); border: 1px solid var(--line-strong); background: #fff; }
.btn-success { border-color: #087e76; background: #087e76; }
.btn-danger { border-color: #c44a3a; background: #c44a3a; }
.form-control, .form-select {
    min-height: 46px; padding: .7rem .85rem; color: var(--ink-950);
    border: 1px solid var(--line-strong); border-radius: 11px; background-color: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: #7e9bea; box-shadow: 0 0 0 4px rgba(38, 89, 217, .11);
}
.form-label { color: var(--ink-800); font-size: .86rem; font-weight: 700; }
.input-group-text { color: var(--ink-600); border-color: var(--line-strong); background: #f6f8fb; }
.table { --bs-table-bg: transparent; color: var(--ink-800); }
.table thead th {
    padding: .85rem 1rem; color: var(--ink-600); background: #f5f7fa;
    border-bottom: 1px solid var(--line); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
}
.table tbody td { padding: 1rem; border-bottom-color: #e9edf3; }
.table-hover > tbody > tr:hover > * { --bs-table-accent-bg: #f5f8ff; }
.alert { border: 1px solid transparent; border-radius: 13px; box-shadow: none; }
.alert-success { color: #156158; background: #e7f8f4; border-color: #bfe8df; }
.alert-info { color: #245f83; background: #eaf5fb; border-color: #c8e5f3; }
.alert-warning { color: #765514; background: #fff7dc; border-color: #f2dfa0; }
.alert-danger { color: #8a382d; background: #fff0ed; border-color: #f4c9c1; }
.breadcrumb { padding: .65rem .85rem; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 11px; }
.modal-content { border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); }
.modal-header { color: var(--ink-950); background: #f7f9fc; border-bottom: 1px solid var(--line); }
.modal-header .btn-close { filter: none; }

.site-footer { margin-top: auto; color: var(--ink-600); background: #edf1f6; border-top: 1px solid var(--line); }
.site-footer .container { max-width: 1280px; padding-top: 2.25rem; padding-bottom: 1.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 2rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.brand-mark-small { width: 36px; height: 36px; border-radius: 11px; }
.footer-brand strong { color: var(--ink-950); }
.footer-brand p { margin: .25rem 0 0; font-size: .82rem; }
.footer-links { display: flex; justify-content: center; gap: 1.25rem; }
.site-footer .footer-links a, .site-footer .footer-contact { color: var(--ink-600); text-decoration: none; font-size: .84rem; font-weight: 650; }
.site-footer .footer-links a:hover, .site-footer .footer-contact:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #d7dfe8; font-size: .74rem; }

.page-kicker { color: var(--brand); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.page-title { max-width: 800px; margin: .5rem 0 1rem; font-size: clamp(2rem, 5vw, 4.4rem); line-height: .98; }
.page-lead { max-width: 680px; color: var(--ink-600); font-size: clamp(1rem, 2vw, 1.2rem); }

/* Authentication */
.auth-layout {
    min-height: 650px; display: grid; grid-template-columns: 1fr minmax(380px, 500px);
    gap: clamp(3rem, 9vw, 9rem); align-items: center; padding: 3rem 0 5rem;
}
.auth-context h1 { max-width: 620px; margin: .8rem 0 1rem; font-size: clamp(2.8rem, 6vw, 5rem); line-height: .96; }
.auth-context > p { max-width: 580px; color: var(--ink-600); font-size: 1.08rem; }
.auth-back { display: inline-flex; gap: .5rem; align-items: center; margin-bottom: 4rem; color: var(--ink-600); text-decoration: none; font-size: .82rem; font-weight: 700; }
.auth-feature-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.auth-feature-list span { padding: .55rem .75rem; color: var(--ink-600); border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.7); font-size: .76rem; font-weight: 650; }
.auth-feature-list i { margin-right: .3rem; color: var(--aqua); }
.auth-panel { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-lg); }
.auth-panel-heading { display: flex; gap: 1rem; align-items: center; margin-bottom: 2rem; }
.auth-panel-heading h2 { margin: 0; font-size: 1.75rem; }
.auth-panel-heading p { margin: .25rem 0 0; color: var(--ink-600); font-size: .82rem; }
.auth-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #fff; border-radius: 15px; background: var(--brand); }
.auth-form { display: grid; gap: 1.25rem; }
.auth-input { position: relative; }
.auth-input > i { position: absolute; z-index: 2; left: .9rem; top: 50%; color: var(--ink-400); transform: translateY(-50%); }
.auth-input .form-control { padding-left: 2.65rem; }
.auth-help { margin: 0; color: var(--ink-600); text-align: center; font-size: .76rem; }

/* Legacy app normalization */
.profile-card, .profile-settings-card, .feedback-card, .create-document-card {
    border: 1px solid var(--line) !important; border-radius: var(--radius-lg) !important; box-shadow: var(--shadow-sm) !important;
}
.profile-card .avatar-circle { border: 5px solid #fff; background: var(--brand-soft); box-shadow: 0 10px 26px rgba(38,89,217,.16); }
.profile-card .online-dot { background: var(--aqua); }
.profile-card .info-card, .email-row { border: 1px solid var(--line); background: #f7f9fc !important; }
.profile-settings-card .card-header, .feedback-card .card-header {
    color: var(--ink-950) !important; background: #f7f9fc !important; border-bottom: 1px solid var(--line) !important;
}
.profile-settings-card .card-header .text-white, .profile-settings-card .card-header .text-white-50,
.feedback-card .card-header.text-white, .feedback-card .card-header h2, .feedback-card .card-header p {
    color: var(--ink-950) !important; opacity: 1 !important;
}
.feedback-card { max-width: 900px; margin: auto; }
.feedback-card .security-card, .feedback-card .consent-card { border: 1px solid var(--line) !important; background: #f8fafc; }
.document-template-btn { border: 1px solid var(--line) !important; border-radius: 18px !important; background: #fff !important; box-shadow: none !important; }
.document-template-btn:hover { border-color: #9bb0e9 !important; background: #f6f8ff !important; transform: translateY(-2px); }

/* File manager */
.fm-container {
    --fm-primary: var(--brand); --fm-primary-dark: var(--brand-dark); --fm-primary-light: var(--brand-soft);
    --fm-secondary: var(--aqua); --fm-bg: #edf1f6; --fm-surface: #fff; --fm-border: var(--line-strong);
    --fm-border-light: var(--line); --fm-text: var(--ink-950); --fm-text-muted: var(--ink-600);
    --fm-hover: #f0f3f8; --fm-selected: #e6edff; --fm-selected-border: #9db2ea;
    border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md);
}
.fm-toolbar { padding: 8px 10px; }
.fm-btn, .fm-address-bar, .fm-search-box { border-radius: 9px; }
.fm-sidebar { background: #f7f9fc; }
.fm-file-area { background: #fff; }
.fm-modal-dialog, .fm-context-menu { border-color: var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); }

/* AI chat */
.ai-chat-page { max-width: 1180px; }
.ai-chat-card { height: min(75vh, 820px); border-color: var(--line); border-radius: 26px; box-shadow: var(--shadow-md); }
.ai-chat-header { padding: 1.15rem 1.4rem; border-color: var(--line); background: rgba(255,255,255,.96); }
.ai-chat-header h1 { font-size: 1.25rem; }
.ai-status { color: var(--ink-600); }
.ai-status.online { color: #087e76; }
.ai-status.error { color: #b54134; }
.ai-messages { padding: 1.5rem; background-color: #f4f7fb; background-image: radial-gradient(#d9e1eb 1px, transparent 1px); background-size: 24px 24px; }
.ai-message { margin-bottom: 1.1rem; }
.ai-bubble { padding: .85rem 1rem; border-radius: 17px; box-shadow: 0 5px 16px rgba(28,49,77,.06); }
.ai-message.user .ai-bubble { background: var(--brand); }
.ai-message.assistant .ai-bubble { border-color: var(--line); }
.ai-composer { padding: 1rem 1.2rem; border-color: var(--line); background: #fff; }
.ai-composer textarea { border-color: var(--line-strong); border-radius: 13px; }

/* Disk */
.disk-shell { padding: 1rem 0 3rem; }
.disk-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.disk-heading h1 { margin: .4rem 0 0; font-size: clamp(2rem, 4vw, 3rem); }
.disk-table-card { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.file-icon { width: 44px; text-align: center; font-size: 1.15rem; }
.icon-folder { color: #e9a61f; }
.icon-file-pdf { color: #d75b4b; }
.icon-file-word { color: var(--brand); }
.icon-file-excel { color: #168875; }
.icon-image { color: #8d63be; }
.icon-film { color: #e8773d; }
.icon-music { color: var(--aqua); }
.icon-archive, .icon-file { color: var(--ink-600); }
.icon-code { color: #168cb0; }
#previewModal .modal-body { max-height: 70vh; overflow: auto; }
#previewModal pre { white-space: pre-wrap; word-break: break-word; font-size: .85rem; text-align: left; }
#previewModal img { max-width: 100%; height: auto; }
#previewModal video { max-width: 100%; max-height: 60vh; }

@media (max-width: 1199.98px) {
    .site-header .navbar-container { width: 100%; flex-wrap: wrap; }
    .site-header .navbar-toggler { display: block; flex: 0 0 auto; margin-left: auto; }
    .site-header .navbar-collapse { margin-top: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); }
    .site-header .nav-link { width: 100%; margin: 2px 0; }
    .navbar-account { align-items: stretch; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 8px; }
    .nav-icon-button { width: 100%; justify-content: start; padding-left: 13px; }
}

html[data-theme="dark"] .site-backdrop::after { background-image: radial-gradient(rgba(130,165,255,.09) 1px, transparent 1px); }
html[data-theme="dark"] .backdrop-orb-one { background: radial-gradient(circle, #172a52, transparent 70%); }
html[data-theme="dark"] .backdrop-orb-two { background: radial-gradient(circle, #123c3b, transparent 70%); }
html[data-theme="dark"] .site-header .navbar { background: rgba(17,27,41,.9); border-color: rgba(59,76,98,.8); box-shadow: 0 10px 35px rgba(0,0,0,.28); }
html[data-theme="dark"] .site-header .nav-link:hover,
html[data-theme="dark"] .site-header .nav-link:focus { background: #1b2737; }
html[data-theme="dark"] .site-header .nav-link-accent { color: #70ddd3 !important; background: #143c3b; }
html[data-theme="dark"] .site-header .nav-link-accent:hover { color: #a0eee8 !important; background: #1a4947; }
html[data-theme="dark"] .account-avatar { color: #111b29; background: #dce7f8; }
html[data-theme="dark"] .nav-icon-button:hover { color: #ffab9f; background: #40231f; }
html[data-theme="dark"] .navbar-toggler-icon { filter: invert(1); }
html[data-theme="dark"] .skip-link,
html[data-theme="dark"] .site-header .navbar-collapse { color: var(--ink-950); background: var(--surface-solid); }
html[data-theme="dark"] .card,
html[data-theme="dark"] .modal-content { background: var(--surface-solid); }
html[data-theme="dark"] .card-header,
html[data-theme="dark"] .modal-header { background: #162131; }
html[data-theme="dark"] .btn-outline-primary { color: var(--brand); border-color: #5875b5; background: #141f30; }
html[data-theme="dark"] .btn-outline-secondary { color: var(--ink-800); background: #141f30; }
html[data-theme="dark"] .btn-link { color: var(--brand); }
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select { color: var(--ink-950); border-color: var(--line-strong); background-color: #0e1724; }
html[data-theme="dark"] .form-control::placeholder { color: #788aa1; opacity: 1; }
html[data-theme="dark"] .form-control:focus,
html[data-theme="dark"] .form-select:focus { border-color: #82a5ff; background-color: #111c2b; box-shadow: 0 0 0 4px rgba(130,165,255,.16); }
html[data-theme="dark"] .input-group-text,
html[data-theme="dark"] .table thead th { color: var(--ink-600); border-color: var(--line-strong); background: #172231; }
html[data-theme="dark"] .table { --bs-table-color: var(--ink-800); --bs-table-bg: transparent; --bs-table-border-color: var(--line); }
html[data-theme="dark"] .table-hover > tbody > tr:hover > * { --bs-table-accent-bg: #172438; --bs-table-hover-color: var(--ink-950); }
html[data-theme="dark"] .breadcrumb { background: rgba(17,27,41,.82); }
html[data-theme="dark"] .site-footer { background: #0d1622; }
html[data-theme="dark"] .footer-bottom { border-color: var(--line); }
html[data-theme="dark"] .auth-feature-list span,
html[data-theme="dark"] .auth-panel { background: rgba(17,27,41,.92); }
html[data-theme="dark"] .profile-card .avatar-circle { border-color: var(--surface-solid); }
html[data-theme="dark"] .profile-card .info-card,
html[data-theme="dark"] .email-row { background: #162131 !important; }
html[data-theme="dark"] .profile-settings-card .card-header,
html[data-theme="dark"] .feedback-card .card-header { background: #162131 !important; }
html[data-theme="dark"] .feedback-card .security-card,
html[data-theme="dark"] .feedback-card .consent-card { background: #121e2d; }
html[data-theme="dark"] .document-template-btn { color: var(--ink-950) !important; background: #121e2d !important; }
html[data-theme="dark"] .document-template-btn:hover { background: #192941 !important; }
html[data-theme="dark"] .fm-container {
    --fm-bg: #0d1622; --fm-surface: #111b29; --fm-hover: #1b293b; --fm-selected: #1d3155;
    --fm-selected-border: #5875b5;
}
html[data-theme="dark"] .fm-sidebar { background: #101a28; }
html[data-theme="dark"] .fm-file-area { background: #111b29; }
html[data-theme="dark"] .ai-chat-header,
html[data-theme="dark"] .ai-composer { background: #111b29; }
html[data-theme="dark"] .ai-messages { background-color: #0e1724; background-image: radial-gradient(#28384d 1px, transparent 1px); }
html[data-theme="dark"] .ai-message.assistant .ai-bubble { color: var(--ink-950); background: #172334; }
html[data-theme="dark"] .disk-table-card { background: var(--surface-solid); }
html[data-theme="dark"] .alert-success { color: #91ded0; background: #14352f; border-color: #285e54; }
html[data-theme="dark"] .alert-info { color: #9ed7f2; background: #153246; border-color: #285673; }
html[data-theme="dark"] .alert-warning { color: #f1d27f; background: #3b3118; border-color: #685627; }
html[data-theme="dark"] .alert-danger { color: #f3aaa0; background: #3d2422; border-color: #6a3934; }

.theme-toggle { position: relative; }
.theme-toggle[aria-pressed="true"] { color: #c58000; background: #fff3cd; }
html[data-theme="dark"] .theme-toggle[aria-pressed="true"] { color: #ffd369; background: #3b3118; }

@media (forced-colors: active) {
    .service-tile, .profile-tab, .nav-icon-button, .btn { border: 1px solid ButtonText; }
}
@media (max-width: 767.98px) {
    .site-header { padding: 7px 7px 0; }
    .navbar-container { min-height: 58px; padding: 0 10px; }
    .brand-mark { width: 37px; height: 37px; }
    .site-main { padding-top: 1.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-links { justify-content: start; flex-wrap: wrap; }
    .footer-bottom { align-items: start; flex-direction: column; gap: .35rem; }
    .card { border-radius: 18px; }
    .auth-layout { min-height: 0; grid-template-columns: 1fr; gap: 2rem; padding: 1rem 0 3rem; }
    .auth-back { margin-bottom: 2rem; }
    .auth-panel { padding: 1.35rem; border-radius: 20px; }
    .disk-heading { align-items: start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
