/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-primary);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-effects::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 24rem;
    height: 24rem;
    background: var(--color-brand);
    top: 5rem;
    left: -12rem;
}

.shape-2 {
    width: 16rem;
    height: 16rem;
    background: var(--color-brand-dark);
    bottom: 5rem;
    right: -8rem;
    animation-delay: 2s;
}

/* Hero Content */
.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-brand);
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        justify-content: flex-start;
    }
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem;
    }
}

.hero-description .highlight {
    color: var(--color-brand);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-rings {
    position: absolute;
}

.ring {
    position: absolute;
    border-radius: 50%;
}

.ring-outer {
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: spin 20s linear infinite;
}

.ring-inner {
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(0, 255, 196, 0.2);
    animation: spin 20s linear infinite reverse;
}

@media (min-width: 768px) {
    .ring-outer {
        width: 24rem;
        height: 24rem;
    }
    .ring-inner {
        width: 20rem;
        height: 20rem;
    }
}

.profile-container {
    position: relative;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 255, 196, 0.3);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
    .profile-container {
        width: 18rem;
        height: 18rem;
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-2xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: -1rem;
    right: -1rem;
}

.badge-bottom-left {
    bottom: -1rem;
    left: -1rem;
    animation-delay: 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: var(--text-sm);
    color: var(--color-text-dim);
}