.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 60px;
    position: relative;
}

.hero-text h1 {
    text-align: center;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-text {
    text-align: center;
    margin-bottom: 1rem;
}

#text-change {
    position: relative;
    color: var(--accent-primary);

}

#text-change::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: s2blink 0.7s steps(1) infinite;
    color: var(--accent-primary);
}

@keyframes s2blink {
    50% {
        opacity: 0;
    }

}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    color: var(--accent-primary);
    padding: 0.35rem 0.9rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1E90FF;
    border-radius: 50%;
    animation: float 10s infinite linear;
    opacity: 0.5;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
    }

    to {
        transform: translateY(-20px) rotate(360deg);
    }
}

.features {
    width: 100%;
    position: relative;
    padding: 5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.features-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-img-wrapper {
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    height: 300px;
    border-radius: 16px;
    border: 2px dashed var(--border-color);
    background-color: var(--bg-secondary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img-wrapper::after {
    content: 'Insert cool product image here';
    position: absolute;
    font-size: 12.5px;
    text-align: center;
    color: var(--text-secondary);
}

.features-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
}
.features-header {
    margin-bottom: 2rem;
}
.features-header, .features-list {
    width: 100%;
}
.features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.feature {
    width: 100%;
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    font-size: 22px;
}

.feature-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-header-img-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 2px solid var(--accent-primary);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    gap: 1rem;
}

.feature-link-wrapper {
    margin-top: .5rem;
}

.feature-link {
    text-decoration: none;
    color: var(--accent-primary);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-link::after {
    content: '';
    position: absolute;
    transition: width .4s ease;
    bottom: 0;
    width: 1%;
    height: 1px;
    background-color: var(--accent-primary);
    left: 0;
}

.feature-link:hover::after {
    width: 100%;
}

@media (max-width: 920px) {
    .feature {
        flex-direction: column;
        gap: 2rem;
    }
    .feature-content {
        order: 2;
    }
    .feature-img-wrapper {
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 370px) {
    .hero {
        padding: 120px .5rem 60px;
    }
}