.about-hero {
    padding: 160px 0 60px;
    position: relative;
}

.about-hero-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(200, 24, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

    .about-hero-content .about-badge-hero,
    .about-hero-content .about-hero-title,
    .about-hero-content .about-hero-subtitle {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        animation: heroCopyFadeUp 0.8s var(--ease-smooth) forwards;
        will-change: opacity, transform;
    }

    .about-hero-content .about-badge-hero {
        animation-delay: 0.12s;
    }

    .about-hero-content .about-hero-title {
        animation-delay: 0.24s;
    }

    .about-hero-content .about-hero-subtitle {
        animation-delay: 0.38s;
    }

.about-badge-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 40px -24px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: visible;
    animation: none;
    will-change: auto;
    font-family: var(--font-primary);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

    .about-badge-hero::before,
    .about-badge-hero::after {
        content: none;
    }

.about-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.about-hero-subtitle {
    margin-bottom: 0;
}

.about-text-highlight {
    color: var(--color-accent-bright);
}

.about-algorithms {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .about-algorithms {
        padding-top: 40px;
    }

    .lux-hero-split {
        padding-top: 0;
    }
}

.about-algorithms-split {
    align-items: center;
}

.about-algorithms-copy {
    --stagger-step: 150ms;
}

.about-reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.985);
    filter: blur(10px);
    animation: aboutRevealUp 0.9s var(--ease-smooth) forwards;
    will-change: opacity, transform, filter;
}

.about-reveal-right {
    animation-delay: 180ms;
}

@keyframes aboutRevealUp {
    from {
        opacity: 0;
        transform: translate3d(0, 32px, 0) scale(0.985);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

.about-algorithms-title {
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.about-algorithms-text-1 {
    margin-bottom: 24px;
    color: var(--color-text-secondary);
}

.about-algorithms-text-2 {
    color: var(--color-text-secondary);
}

.about-manifest-wrapper {
    position: relative;
}

.about-manifest-bg {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(200,24,128,0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.about-manifest-box {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    border-color: rgba(200, 24, 128, 0.4);
    background: linear-gradient(180deg, rgba(200,24,128,0.08) 0%, #0a0b0f 100%);
    box-shadow: 0 20px 60px -15px rgba(200, 24, 128, 0.2);
}

.about-manifest-icon {
    margin-bottom: 30px;
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 10px 20px -5px rgba(200, 24, 128, 0.4);
}

.about-manifest-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.about-manifest-divider {
    height: 1px;
    width: 40px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 24px auto;
}

.about-manifest-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin: 0;
}

.about-manifest-highlight {
    font-weight: 800;
    color: var(--color-accent-bright);
}

.about-why {
    padding: 80px 0;
}

.about-why-title {
    margin-bottom: 60px;
}

.about-mission {
    padding: 60px 0;
}

.about-mission-card {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
}

.about-mission-badge {
    --badge-base-transform: translateX(-50%);
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.about-mission-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    text-align: center;
}

.about-mission-text {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 0;
}

.about-join {
    padding-top: 60px;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-content .about-badge-hero,
    .about-hero-content .about-hero-title,
    .about-hero-content .about-hero-subtitle {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .about-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
        transition: none;
    }
}
