/* ==========================================
   ACITY CONNECT DESIGN SYSTEM
   Global Styles Only
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    transition:
    background-color .3s,
    color .3s;
}
body,
nav,
div,
section,
article,
aside,
main,
button,
input,
textarea,
.card,
.dashboard-panel,
.profile-card,
.notification-card,
.inbox-card{
    transition:
        background-color .3s,
        color .3s,
        border-color .3s,
        box-shadow .3s;
}
:root{
    --primary:#EF4444;
    --primary-hover:#DC2626;
    --background:var(--surface);
    --surface:#FFFFFF;
    --surface-2:#F4F6F8;
    --text:#0F172A;
    --text-light:#64748B;
    --border:#E5E7EB;
    --success:#22C55E;
    --warning:#F59E0B;
    --danger:#EF4444;
    --shadow:0 12px 35px rgba(15,23,42,.08);
    --transition:.3s ease;
}
body.dark{
    --background:#0F172A;
    --surface:#1E293B;
    --surface-2:#273449;
    --text:#F8FAFC;
    --text-light:#CBD5E1;
    --border:#334155;
    --shadow:0 15px 40px rgba(0,0,0,.45);
}
body{
    font-family:"Inter",sans-serif;
    background:var(--background);
    color:var(--text);
    transition:
        background .3s,
        color .3s;
    line-height:1.6;
}
img{
    max-width:100%;
    display:block;
}
a{
    text-decoration:none;
    color:inherit;
}
ul{
    list-style:none;
}
button{
    font-family:inherit;
    cursor:pointer;
    border:none;
    transition:var(--transition);
}
input,
textarea,
select{
    width:100%;
    padding:14px 18px;
    font-family:inherit;
    font-size:15px;
    border:1px solid var(--border);
    border-radius:14px;
    background:var(--surface);
    transition:var(--transition);
}
input:focus,
textarea:focus,
select:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:
    0 0 0 4px rgba(229,57,53,.12);
}
h1{
    font-size:3rem;
    font-weight:800;
}
h2{
    font-size:2.2rem;
    font-weight:700;
}
h3{
    font-size:1.3rem;
    font-weight:600;
}
.container{
    width:min(1400px,92%);
    margin:auto;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    border-radius:14px;
    font-weight:600;
}
.btn-primary{
    background:var(--primary);
    color:white;
}
.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}
.btn-secondary{
    background:var(--surface);
    color:var(--text);
    border:1px solid var(--border);
}
.btn-secondary:hover{
    background:var(--surface-alt);
}
.btn-danger{
    background:var(--danger);
    color:white;
}
.card{
    background:var(--surface);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}
.text-center{
    text-align:center;
}
.flex{
    display:flex;
}
.grid{
    display:grid;
}
.hidden{
    display:none;
}
::-webkit-scrollbar{
    width:10px;
    height:10px;
}
::-webkit-scrollbar-thumb{
    background:#d1d5db;
    border-radius:999px;
}
::-webkit-scrollbar-track{
    background:transparent;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.fade-up{
    animation:fadeUp .5s ease;
}
@media(max-width:768px){
    h1{
        font-size:2.3rem;
    }
    h2{
        font-size:1.8rem;
    }
}