body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: var(--black);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -2;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 800px;
    padding: clamp(5rem, 14vh, 8rem) 24px clamp(3.5rem, 10vh, 6rem) 24px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
    border: 1.5px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.4), rgba(139, 92, 246, 0.6), rgba(124, 58, 237, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.01); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.badge-glow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    z-index: 2;
}

.badge-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--purple-light), var(--purple));
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 12px var(--purple-light), 0 0 24px var(--purple);
}

.badge-glow::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.4), transparent);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.badge-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--purple-light), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s ease-in-out infinite;
    z-index: 1;
}

.badge-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.badge-particle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.badge-particle:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-12px) translateX(8px);
        opacity: 0.8;
    }
}

.badge-text {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    z-index: 2;
    text-shadow: 0 0 20px rgba(196, 181, 253, 0.3);
}

.hero-container h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 16px;
    max-width: 700px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
}

.hero-container p {
    color: rgba(255, 255, 255, 0.45);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 500px;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .button {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.button-primary {
    background: linear-gradient(135deg, var(--purple) 0%, #7c3aed 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.button-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
}

.button-primary:hover::before {
    opacity: 1;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.button span {
    position: relative;
    z-index: 1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    max-width: 800px;
    width: 100%;
    margin: 3.5rem auto;
    padding: 0 24px;
}

.feature-box {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: left;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #c4b5fd;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.feature-box h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.02em;
    padding-right: 60px;
}

.feature-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    letter-spacing: -0.01em;
    padding-right: 60px;
}

.socials-slider,
.profiles-slider {
    display: flex;
    margin: 3.5rem auto;
    width: min(800px, 100%);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.socials-container,
.profiles-container {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.socials-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 10px;
    margin: 0 8px;
    color: var(--white);
    min-width: 260px;
    transition: all 0.2s ease;
}

.socials-box:hover {
    border-color: rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.socials-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-right: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.socials-section {
    width: 100%;
    padding: 3.5rem 0;
}

.socials-content h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.socials-content p {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: -0.01em;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-container {
        padding: 4rem 20px 2.5rem 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 20px;
    }

    .socials-slider,
    .profiles-slider {
        display: none;
    }
}
