.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    padding: 6rem 0;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3)
    );
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 100%;
    gap: 1px;
}

.grid__item {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.grid__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.5s ease forwards;
}

.badge__icon {
    color: var(--accent-color);
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.2s; }
.hero__title-line:nth-child(2) { animation-delay: 0.4s; }
.hero__title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.8s forwards;
    max-width: 600px;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 0.5s ease 1s forwards;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s ease 1.2s forwards;
}

.stat__item {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.shape--1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -150px;
    right: -150px;
    animation: float 8s infinite;
}

.shape--2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color-2);
    bottom: -100px;
    left: -100px;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
