/* Premium Hero Redesign */
.hero-section {
    padding: 3rem 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(8, 145, 178, 0.03) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

/* Status Pill Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Content Column */
.hero-text-content h1 {
    font-size: 4.25rem;
    line-height: 1.05;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--text-primary);
    font-weight: 800;
}

.hero-text-content h1 .accent {
    color: var(--accent-primary);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-container {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    min-height: 2.5rem;
}

.supporting-para {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 1.25rem;
}

/* Location Pill */
.info-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.feat-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feat-icon {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* Profile Card Column */
.profile-card-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-premium-card {
    background: var(--bg-card);
    border-radius: 22px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-identity h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.card-identity p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 4px 0 0;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.skill-pill {
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.1);
    color: var(--accent-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.stat-box {
    background: var(--bg-main);
    padding: 1rem;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.stat-box .val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-box .lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-action-btn {
    width: 100%;
    padding: 1rem;
    background: var(--bg-main);
    border: 1px dashed var(--accent-primary);
    border-radius: 12px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: default;
    transition: all 0.2s ease;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-text-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        text-align: center;
    }

    .status-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .typing-container {
        font-size: 1.5rem;
    }

    .supporting-para {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text-content {
        margin-bottom: 2rem;
    }

    .info-pill-row,
    .feat-bullets {
        justify-content: center;
        align-items: center;
    }

    .location-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .profile-card-wrapper {
        justify-content: center;
    }

    .profile-premium-card {
        padding: 1.5rem;
    }

    .card-top {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .premium-avatar {
        width: 110px;
        height: 110px;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        justify-content: center !important;
        flex-direction: column;
        gap: 1rem !important;
    }
}