/* ================= RESET ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* ================= TOPBAR ================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
    transition: all .3s ease;
}
.topbar.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* ================= BRAND ================= */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(99, 102, 241, .35);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden;
}
.brand-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s;
}
.brand:hover .brand-logo { transform: scale(1.08) rotate(-5deg); }
.brand:hover .brand-logo::before { transform: translateX(100%); }

.brand-text { line-height: 1.15; }
.brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.3px;
}
.brand-sub {
    font-size: 10px;
    color: #6366f1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ================= NAV ================= */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 12px;
    opacity: 0;
    transition: opacity .25s;
    z-index: -1;
}
.nav-link:hover { color: #6366f1; transform: translateY(-1px); }
.nav-link:hover::before { opacity: 1; }
.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 6px 16px rgba(99, 102, 241, .3);
}
.nav-link.active::before { display: none; }
.nav-link .arrow {
    font-size: 9px;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    opacity: .7;
}
.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }

/* ================= DROPDOWN ================= */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(.96);
    background: #fff;
    min-width: 240px;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .15), 0 4px 12px rgba(15, 23, 42, .08);
    border: 1px solid rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 1001;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, .05);
    border-top: 1px solid rgba(0, 0, 0, .05);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #6366f1;
    transform: scaleY(0);
    transition: transform .25s;
    border-radius: 0 3px 3px 0;
}
.dropdown a:hover {
    background: #f8fafc;
    color: #6366f1;
    padding-left: 18px;
}
.dropdown a:hover::before { transform: scaleY(1); }
.dropdown a .d-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s;
}
.dropdown a:hover .d-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scale(1.08) rotate(-5deg);
}

.dropdown .divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 8px;
}

/* External link arrow */
.dropdown a .ext-icon {
    margin-left: auto;
    font-size: 11px;
    opacity: .5;
}

/* ================= TOPBAR RIGHT ================= */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
}
.icon-btn:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, .15);
}
.icon-btn .badge-dot {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: .7; }
}

/* WALLET PILL */
.wallet-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    font-size: 13px;
    font-weight: 700;
    color: #059669;
    transition: all .25s;
    cursor: pointer;
}
.wallet-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, .2);
}
.wallet-pill .w-icon { font-size: 15px; }

/* USER */
.user-wrap { position: relative; }
.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 30px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
}
.user-btn:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, .15);
}
.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, .3);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.user-btn:hover .user-avatar { transform: scale(1.08) rotate(-5deg); }
.user-info { line-height: 1.2; text-align: left; }
.user-info .name { font-size: 12.5px; font-weight: 700; color: #0f172a; }
.user-info .role {
    font-size: 10.5px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    min-width: 240px;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .15), 0 4px 12px rgba(15, 23, 42, .08);
    border: 1px solid rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.96);
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 1001;
}
.user-wrap:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.user-menu-head {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 6px;
}
.user-menu-head .name { font-size: 14px; font-weight: 700; }
.user-menu-head .email { font-size: 12px; color: #94a3b8; margin-top: 2px; }

.user-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    transition: all .2s;
}
.user-menu a:hover { background: #f8fafc; color: #6366f1; padding-left: 18px; }
.user-menu a.danger { color: #ef4444; }
.user-menu a.danger:hover { background: #fef2f2; }
.user-menu a .m-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s;
}
.user-menu a:hover .m-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scale(1.08);
}
.user-menu a.danger:hover .m-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #0f172a;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #475569;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: .2s;
}
.mobile-nav a:hover { background: #f8fafc; color: #6366f1; }
.mobile-nav .m-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 16px 8px;
}

/* ================= NOTICE BOARD ================= */
.notice-board {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden;
    animation: slideUp .6s cubic-bezier(.34, 1.56, .64, 1);
}
.notice-board::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
    border-radius: 4px 0 0 4px;
}
.notice-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    animation: bell-shake 3s infinite;
}
@keyframes bell-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-12deg); }
    94% { transform: rotate(12deg); }
    96% { transform: rotate(-8deg); }
    98% { transform: rotate(8deg); }
}
.notice-content { flex: 1; }
.notice-title {
    font-size: 14px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.notice-title .live-badge {
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    animation: pulse 1.5s infinite;
}
.notice-text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.6;
}
.notice-text a {
    color: #b45309;
    font-weight: 700;
    text-decoration: underline;
}

/* NOTICE TICKER */
.notice-ticker {
    overflow: hidden;
    position: relative;
    height: 22px;
    margin-top: 6px;
}
.notice-ticker-inner {
    position: absolute;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 13px;
    color: #78350f;
    font-weight: 500;
}
.notice-ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ================= CONTENT ================= */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px;
}

.welcome {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    border-radius: 24px;
    padding: 36px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, .25);
    animation: slideUp .6s cubic-bezier(.34, 1.56, .64, 1);
}
.welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 65%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.welcome::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(-15px); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.welcome-content { position: relative; z-index: 1; }
.welcome h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    animation: slideUp .6s .1s backwards;
}
.welcome p {
    opacity: .95;
    font-size: 14px;
    font-weight: 500;
    animation: slideUp .6s .2s backwards;
}
.welcome .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
    padding: 11px 20px;
    border-radius: 30px;
    margin-top: 18px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    animation: slideUp .6s .3s backwards;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.stat-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    animation: slideUp .6s backwards;
    cursor: pointer;
}
.stat-card:nth-child(1) { animation-delay: .05s; }
.stat-card:nth-child(2) { animation-delay: .1s; }
.stat-card:nth-child(3) { animation-delay: .15s; }
.stat-card:nth-child(4) { animation-delay: .2s; }
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
    border-color: transparent;
}
.stat-card.blue { --c1: #6366f1; --c2: #8b5cf6; }
.stat-card.green { --c1: #10b981; --c2: #34d399; }
.stat-card.orange { --c1: #f59e0b; --c2: #fbbf24; }
.stat-card.pink { --c1: #ec4899; --c2: #f472b6; }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.stat-card:hover .stat-icon { transform: scale(1.1) rotate(-8deg); }
.stat-card.blue .stat-icon { background: linear-gradient(135deg, #eef2ff, #e0e7ff); }
.stat-card.green .stat-icon { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.stat-card.orange .stat-icon { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.stat-card.pink .stat-icon { background: linear-gradient(135deg, #fdf2f8, #fbcfe8); }

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 6px;
    letter-spacing: -.5px;
}
.stat-foot {
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.stat-foot.up { color: #10b981; }
.stat-foot.down { color: #ef4444; }
.stat-foot .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

/* QUICK */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.quick-btn {
    background: #fff;
    padding: 20px 14px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #0f172a;
    border: 1px solid #f1f5f9;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    animation: slideUp .6s backwards;
}
.quick-btn:nth-child(1) { animation-delay: .25s; }
.quick-btn:nth-child(2) { animation-delay: .3s; }
.quick-btn:nth-child(3) { animation-delay: .35s; }
.quick-btn:nth-child(4) { animation-delay: .4s; }
.quick-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, .15);
    border-color: #c7d2fe;
}
.quick-btn .q-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.quick-btn:hover .q-icon { transform: scale(1.15) rotate(-10deg); }
.quick-btn .q-label { font-size: 13px; font-weight: 700; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; }
@media (max-width: 1024px) { .grid-2 { grid-template-columns: 1fr; } }

.panel {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .02);
    animation: slideUp .6s .3s backwards;
}
.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.panel-head h3 { font-size: 15px; font-weight: 800; letter-spacing: -.2px; }
.panel-head a {
    font-size: 12.5px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .2s;
}
.panel-head a:hover { background: #eef2ff; }

/* TABLE */
table { width: 100%; border-collapse: collapse; }
th {
    font-size: 10.5px;
    text-transform: uppercase;
    color: #94a3b8;
    text-align: left;
    padding: 10px 12px;
    font-weight: 800;
    letter-spacing: .8px;
}
td {
    padding: 14px 12px;
    border-top: 1px solid #f8fafc;
    font-size: 13px;
    color: #334155;
}
tr { transition: background .2s; }
tr:hover td { background: #fafbff; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.badge.credit { background: #ecfdf5; color: #059669; }
.badge.debit { background: #fef2f2; color: #dc2626; }

.amt { font-weight: 700; }
.amt.credit { color: #059669; }
.amt.debit { color: #dc2626; }

/* PROFILE */
.profile-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 13px;
}
.profile-row:last-child { border-bottom: none; }
.profile-row .lbl { color: #94a3b8; font-weight: 600; }
.profile-row .val { color: #0f172a; font-weight: 700; text-align: right; }

/* DOC */
.doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
    border: 1px solid #f1f5f9;
    margin-bottom: 8px;
}
.doc-item:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    transform: translateX(4px);
}
.doc-item .d-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.doc-item:hover .d-icon { transform: scale(1.1) rotate(-8deg); }
.doc-item .d-name { font-size: 13px; font-weight: 700; flex: 1; }
.doc-item .d-arrow {
    color: #94a3b8;
    font-size: 14px;
    transition: transform .25s;
}
.doc-item:hover .d-arrow { transform: translateX(4px); color: #6366f1; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-nav { display: block; }
    .wallet-pill { display: none; }
    .user-info { display: none; }
    .topbar-inner { padding: 0 18px; height: 64px; }
    .content { padding: 20px 18px; }
    .welcome { padding: 26px; border-radius: 20px; }
    .welcome h1 { font-size: 22px; }
    .mobile-nav { top: 64px; }
}