.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-lg) 80px;
    z-index: 1;
}

.logo-container {
    width: 140px;
    height: 140px;
    margin-bottom: var(--spacing-xl);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: var(--radius-lg);
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.subtitle {
    font-size: 24px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.2s backwards;
    max-width: 600px;
}

.status {
    font-size: 18px;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 0.4s backwards;
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 0.6s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
}

.research-btn {
    padding: 14px 32px;
    background: var(--color-text-primary);
    color: var(--color-bg-dark);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-normal);
    animation: fadeInUp 1s ease 0.8s backwards;
    cursor: pointer;
    border: none;
}