/* BRAND UPDATE */

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-brand img {
    max-height: 42px;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.app-logo-img {
    max-height: 56px;
    max-width: 210px;
    object-fit: contain;
}

.logo-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff3dc8, #7b2cff);
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
}

.home-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 0%, rgba(255,61,200,.35), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(123,44,255,.35), transparent 28%),
        #05050b;
    color: #fff;
    font-family: 'Gilroy', 'Inter', Arial, sans-serif;
}

.home-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    height: 74px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 22px;
    background: rgba(5,5,11,.72);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}

.home-search {
    flex: 1;
    max-width: 520px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: #090914;
    color: #fff;
    padding: 0 18px;
    outline: none;
}

.top-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-menu a, .dropdown-btn {
    color: #fff;
    text-decoration: none;
    border: 0;
    background: rgba(255,255,255,.09);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: 48px;
    min-width: 210px;
    background: #11111e;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 10px;
    display: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    border-radius: 12px;
    padding: 12px;
    background: transparent;
}

.side-menu {
    position: fixed;
    left: 18px;
    top: 96px;
    bottom: 24px;
    width: 78px;
    z-index: 30;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    backdrop-filter: blur(18px);
}

.side-menu a {
    color: #cfc6d8;
    text-decoration: none;
    font-size: 24px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
}

.side-menu a.active {
    background: linear-gradient(135deg, #ff3dc8, #7b2cff);
    color: #fff;
}

.welcome-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 110px 22px 70px 120px;
}

.welcome-card {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch;
}

.welcome-copy, .signup-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.welcome-copy h1 {
    font-size: clamp(38px, 7vw, 76px);
    line-height: .95;
    margin: 22px 0 18px;
    letter-spacing: -2px;
}

.welcome-copy p {
    color: #ded6e8;
    font-size: 18px;
    line-height: 1.5;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.cta-primary, .cta-secondary {
    border: 0;
    border-radius: 999px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.cta-primary {
    background: linear-gradient(135deg, #ff3dc8, #7b2cff);
}

.cta-secondary {
    background: rgba(255,255,255,.12);
}

.signup-panel h2 {
    margin-top: 0;
}

.signup-panel label {
    display: block;
    margin: 12px 0 6px;
}

.signup-panel input, .signup-panel textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: #090914;
    color: #fff;
    padding: 13px;
}

.signup-panel button {
    width: 100%;
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    padding: 15px;
    background: linear-gradient(135deg, #ff3dc8, #7b2cff);
    color: #fff;
    font-weight: 900;
}

@media (max-width: 900px) {
    .side-menu {
        display: none;
    }

    .welcome-screen {
        padding: 100px 16px 90px;
    }

    .welcome-card {
        grid-template-columns: 1fr;
    }

    .top-menu a {
        display: none;
    }
}
