/* Hero and related animations */
.hero {
    padding-top: 5px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #0a1f0a 100%);
    position: relative;
    overflow: hidden
}

.hero+section {
    padding-top: calc(var(--space) * 12)
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(3, 250, 110, 0.1), transparent 70%)
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1rem
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.hero h1 {
    margin-bottom: 1.5rem
}

.accent-text {
    color: var(--text-accent)
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(30px);
}


@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(12px);
        opacity: .6
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}