/* Novademi — Giriş Merkezi (premium portal picker) */

.login-hub-page {
    background: #eef2f7;
}

/* ── Hero ── */
.login-hub-hero {
    position: relative;
    overflow: hidden;
    padding: 2.75rem 0 6.5rem;
    background:
        linear-gradient(145deg, #0b1120 0%, #111827 42%, #0f172a 100%);
    color: #fff;
}

.login-hub-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
    pointer-events: none;
}

.login-hub-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.login-hub-hero__glow--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(79, 70, 229, 0.35);
}

.login-hub-hero__glow--2 {
    width: 360px;
    height: 360px;
    bottom: -140px;
    left: -60px;
    background: rgba(20, 184, 166, 0.28);
}

.login-hub-hero .container {
    position: relative;
    z-index: 1;
}

.login-hub-hero__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
    font-size: 0.8125rem;
}

.login-hub-hero__crumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.15s ease;
}

.login-hub-hero__crumb a:hover {
    color: #fff;
}

.login-hub-hero__crumb > span[aria-hidden] {
    color: rgba(255, 255, 255, 0.35);
}

.login-hub-hero__crumb > span[aria-current] {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.login-hub-hero__body {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 2rem;
    align-items: end;
}

.login-hub-hero__label {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.28);
    background: rgba(20, 184, 166, 0.12);
    color: #5eead4;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-hub-hero__copy h1 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #fff;
}

.login-hub-hero__lead {
    margin: 0;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.login-hub-hero__lead a {
    color: #5eead4;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-hub-hero__lead a:hover {
    color: #99f6e4;
}

.login-hub-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

.login-hub-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.login-hub-hero__trust i {
    color: #818cf8;
    font-size: 0.95rem;
}

.login-hub-hero__aside {
    padding: 1.15rem 1.2rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.login-hub-hero__aside-title {
    margin: 0 0 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.login-hub-hero__aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.login-hub-hero__aside-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.login-hub-hero__aside-list strong {
    color: #fff;
    font-weight: 700;
}

.login-hub-hero__aside-list .dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot--indigo { background: #818cf8; box-shadow: 0 0 8px rgba(129, 140, 248, 0.6); }
.dot--amber { background: #fb923c; box-shadow: 0 0 8px rgba(251, 146, 60, 0.55); }
.dot--rose { background: #f472b6; box-shadow: 0 0 8px rgba(244, 114, 182, 0.55); }
.dot--teal { background: #2dd4bf; box-shadow: 0 0 8px rgba(45, 212, 191, 0.55); }

/* ── Main shell ── */
.login-hub-main {
    margin-top: -4.25rem;
    padding-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

.login-hub-shell {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: #fff;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 64px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.login-hub-shell__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.login-hub-shell__head h2 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.login-hub-shell__head p {
    margin: 0;
    font-size: 0.86rem;
    color: #64748b;
}

.login-hub-shell__count {
    flex-shrink: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.login-hub-shell__apply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.login-hub-shell__apply-link:hover {
    background: #e0e7ff;
    border-color: #a5b4fc;
    color: #3730a3;
}

.login-hub-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0 1.5rem 1.15rem;
    padding: 0.95rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid #dbeafe;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    color: #334155;
    font-size: 0.84rem;
    line-height: 1.55;
}

.login-hub-callout i {
    color: #2563eb;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.login-hub-callout a {
    color: #4338ca;
    font-weight: 700;
    text-decoration: none;
}

.login-hub-callout a:hover {
    text-decoration: underline;
}

.login-hub-coaching-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0 1.5rem 1.15rem;
    padding: 0.95rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid #ccfbf1;
    background: #f0fdfa;
    color: #134e4a;
    font-size: 0.82rem;
    line-height: 1.55;
}

.login-hub-coaching-note__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #99f6e4;
    color: #0d9488;
    flex-shrink: 0;
}

.login-hub-scenario__example {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #64748b;
    font-style: italic;
}

.login-hub-scenario__example i {
    margin-right: 0.25rem;
    opacity: 0.75;
}

.login-hub-scenario__example--on-dark {
    color: rgba(255, 255, 255, 0.78);
}

.login-hub-tile__features--light li {
    color: #475569;
}

.login-hub-tile__features--light i {
    color: #ea580c;
}

/* ── Bento grid ── */
.login-hub-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1.25rem 1.5rem 1.5rem;
}

.login-hub-bento--scenarios {
    padding-top: 0;
}

.login-hub-bento--scenarios .login-hub-tile--featured {
    grid-column: span 4;
    min-height: 320px;
}

.login-hub-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 1.15rem;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.login-hub-tile:hover {
    transform: translateY(-3px);
}

/* Featured tiles */
.login-hub-tile--featured {
    grid-column: span 6;
    min-height: 280px;
    padding: 1.35rem;
    border: 1px solid transparent;
    color: #fff;
}

.login-hub-tile--featured.login-hub-tile--student {
    background: linear-gradient(145deg, #312e81 0%, #4338ca 48%, #6366f1 100%);
    box-shadow: 0 16px 40px rgba(67, 56, 202, 0.35);
}

.login-hub-tile--featured.login-hub-tile--parent {
    background: linear-gradient(145deg, #0f4c47 0%, #0d9488 48%, #14b8a6 100%);
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.32);
}

.login-hub-tile--featured.login-hub-tile--client {
    background: linear-gradient(145deg, #831843 0%, #be185d 48%, #ec4899 100%);
    box-shadow: 0 16px 40px rgba(190, 24, 93, 0.32);
}

.login-hub-tile--client .login-hub-tile__action {
    color: #831843;
}

.login-hub-tile--featured:hover {
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.login-hub-tile__shine {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 68%);
    pointer-events: none;
}

.login-hub-tile__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.login-hub-tile__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(8px);
}

.login-hub-tile__icon i {
    font-size: 1.45rem;
}

.login-hub-tile__badge {
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.login-hub-tile__body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.login-hub-tile__body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
}

.login-hub-tile__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 28rem;
}

.login-hub-tile__features {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.login-hub-tile__features li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.login-hub-tile__features i {
    font-size: 0.85rem;
    opacity: 0.85;
}

.login-hub-tile__action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.15rem;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    color: #1e1b4b;
    font-size: 0.82rem;
    font-weight: 800;
    width: fit-content;
    position: relative;
    z-index: 1;
    transition: background 0.15s ease, transform 0.15s ease;
}

.login-hub-tile--parent .login-hub-tile__action {
    color: #0f4c47;
}

.login-hub-tile--featured:hover .login-hub-tile__action {
    background: #fff;
}

.login-hub-tile__action i {
    transition: transform 0.2s ease;
}

.login-hub-tile--featured:hover .login-hub-tile__action i {
    transform: translateX(3px);
}

/* Compact tiles */
.login-hub-tile--compact {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border: 1px solid #e8edf3;
    background: #fafbfc;
    min-height: 96px;
}

.login-hub-tile--compact:hover {
    border-color: #cbd5e1;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.login-hub-tile__icon--sm {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #4338ca;
    flex-shrink: 0;
}

.login-hub-tile__icon--sm i {
    font-size: 1.15rem;
}

.login-hub-tile--member .login-hub-tile__icon--sm { color: #c2410c; }
.login-hub-tile--client .login-hub-tile__icon--sm,
.login-hub-tile--consultant .login-hub-tile__icon--sm { color: #be185d; }
.login-hub-tile--coach .login-hub-tile__icon--sm { color: #0f766e; }

.login-hub-tile__compact-body {
    flex: 1;
    min-width: 0;
}

.login-hub-tile__compact-body h3 {
    margin: 0 0 0.2rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.015em;
}

.login-hub-tile__compact-body p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.login-hub-tile__go {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.login-hub-tile--compact:hover .login-hub-tile__go {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

/* Shell footer */
.login-hub-shell__foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #eef2f7;
    background: #f8fafc;
}

.login-hub-shell__foot-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.5rem;
    font-size: 0.82rem;
    color: #64748b;
}

.login-hub-shell__foot-item + .login-hub-shell__foot-item {
    border-left: 1px solid #eef2f7;
}

.login-hub-shell__foot-item i {
    color: #4338ca;
    font-size: 1rem;
    flex-shrink: 0;
}

.login-hub-shell__foot-item a {
    color: #4338ca;
    font-weight: 700;
    text-decoration: none;
}

.login-hub-shell__foot-item a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .login-hub-hero__body {
        grid-template-columns: 1fr;
    }

    .login-hub-hero__aside {
        max-width: 28rem;
    }

    .login-hub-bento--scenarios .login-hub-tile--featured,
    .login-hub-tile--featured {
        grid-column: span 12;
    }

    .login-hub-tile--compact {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .login-hub-hero {
        padding: 2rem 0 5.5rem;
    }

    .login-hub-main {
        margin-top: -3.25rem;
    }

    .login-hub-shell__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-hub-shell__apply-link {
        width: 100%;
        justify-content: center;
    }

    .login-hub-callout,
    .login-hub-coaching-note,
    .login-hub-account-spotlight {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .login-hub-bento {
        padding: 1rem;
    }

    .login-hub-tile--compact {
        grid-column: span 12;
    }

    .login-hub-shell__foot {
        grid-template-columns: 1fr;
    }

    .login-hub-shell__foot-item + .login-hub-shell__foot-item {
        border-left: none;
        border-top: 1px solid #eef2f7;
    }
}

@media (max-width: 575px) {
    .login-hub-hero__trust {
        flex-direction: column;
        gap: 0.45rem;
    }

    .login-hub-tile--featured {
        min-height: auto;
        padding: 1.15rem;
    }
}

.login-hub-account-spotlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0 1.5rem 1.15rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(234, 88, 12, 0.22);
    background: linear-gradient(135deg, #fff7ed 0%, #fff 55%);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-hub-account-spotlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(234, 88, 12, 0.12);
    color: inherit;
}

.login-hub-account-spotlight__eyebrow {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ea580c;
}

.login-hub-account-spotlight__copy h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.login-hub-account-spotlight__copy p {
    margin: 0 0 0.75rem;
    color: #475569;
}

.login-hub-account-spotlight__action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: #ea580c;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .login-hub-account-spotlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-hub-account-spotlight__action {
        width: 100%;
        justify-content: center;
    }
}
