/* =============================================
   PRIVY — Page-Specific Styles
   ============================================= */

/* ===== HOME PAGE ===== */
.hero-wrap {
    position: relative;
    overflow: hidden;
    padding: 44px 20px 36px;
    text-align: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: .28;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 13, .1) 0%, rgba(5, 5, 13, .45) 45%, rgba(5, 5, 13, 1) 100%),
        radial-gradient(ellipse at 50% 30%, transparent 22%, rgba(5, 5, 13, .65) 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hero-wrap {
        padding: 30px 16px 24px;
    }
}

/* ===== MODEL PAGE ===== */
.model-profile {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 16px 0;
}

@media (min-width: 900px) {
    .model-profile {
        flex-direction: row;
        align-items: flex-start;
    }

    .model-profile .profile-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Profile Card */
.profile-card {
    background: var(--surface);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, .4),
        0 2px 8px rgba(0, 0, 0, .2),
        inset 0 1px 0 rgba(255, 255, 255, .05),
        inset 0 0 30px rgba(168, 85, 247, .02);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, transparent 100%);
    pointer-events: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(168, 85, 247, .25);
    box-shadow: 0 0 14px rgba(168, 85, 247, .15);
    margin: 0 auto 12px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.stat-item {
    text-align: center;
}

.stat-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
}

.stat-lbl {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-top: 1px;
}

.profile-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

.profile-tag {
    padding: 6px 12px;
    background: rgba(34, 197, 94, .05);
    border: 1px solid rgba(34, 197, 94, .1);
    border-radius: 50px;
    font-size: 10px;
    color: var(--green);
    font-weight: 600;
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--grad);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(168, 85, 247, .2);
}

/* Bio Box */
.bio-box {
    background: rgba(255, 255, 255, .03);
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 18px 0;
    text-align: left;
}

.bio-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
    font-style: italic;
}

.bio-text em {
    color: var(--pink);
}

.bio-text strong {
    color: var(--gold);
}

.bio-author {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 8px;
    text-align: right;
}

/* Mobile */
@media (max-width: 767px) {
    .profile-card {
        padding: 18px 14px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }
}