/* =========================
   AUTH PAGES
========================= */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 500px;
}

.auth-logo {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg,#6C63FF,#4FC3F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

.auth-title {
    text-align: center;
    margin-bottom: 24px;
}

.auth-title h1 {
    font-size: 32px;
    margin: 0 0 8px;
    color: #111827;
}

.auth-title p {
    color: #7B88A8;
    margin: 0;
}

.auth-grid {
    display: grid;
    gap: 16px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-links.center {
    justify-content: center;
}

.auth-links a {
    color: #6C63FF;
    font-weight: 700;
    text-decoration: none;
}

.back-home {
    text-align: center;
    margin-top: 18px;
}

.back-home a {
    color: #64748B;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   INDEX PAGE
========================= */
.hero-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-grid {
    width: 100%;
    max-width: 1150px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.hero-left h1 {
    font-size: 54px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.95);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.role-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.role-card p {
    color: rgba(255,255,255,.92);
    line-height: 1.7;
    margin-bottom: 18px;
}

.role-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 16px;
    background: #fff;
    color: #6C63FF;
    font-weight: 800;
}

@media(max-width:900px){
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 38px;
    }
}