.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 0 0rem;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.about-hero-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-desc {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.8;
    white-space: nowrap;
}

.about-content {
    padding: 0rem 0 6rem;
}

.about-narrative {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.about-narrative.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.narrative-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.narrative-title::before,
.narrative-title::after {
    content: '';
    flex: 0 0 auto;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(1, 192, 249, 0.6), rgba(0, 65, 194, 0.8), rgba(83, 46, 206, 0.6), transparent);
}

.narrative-title::after {
    background: linear-gradient(90deg, transparent, rgba(83, 46, 206, 0.6), rgba(0, 65, 194, 0.8), rgba(1, 192, 249, 0.6), transparent);
}

.narrative-title span {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.narrative-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(1, 192, 249, 0.4) 0%, rgba(0, 65, 194, 0.2) 40%, rgba(83, 46, 206, 0.1) 70%, transparent 100%);
    filter: blur(15px);
    z-index: -1;
}

.narrative-section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.narrative-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.narrative-section:last-child {
    margin-bottom: 0;
}

.narrative-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.2rem;
}

.narrative-section p:last-child {
    margin-bottom: 0;
}

.narrative-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

.narrative-section .highlight-text {
    color: var(--primary-light);
    font-weight: 600;
}

.about-cta {
    padding: 10rem 0;
    background:
        radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.cta-content.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: 0 0 15px rgba(1, 192, 249, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-outline-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(1, 192, 249, 0.15) 40%,
        rgba(1, 192, 249, 0.25) 50%,
        rgba(1, 192, 249, 0.15) 60%,
        transparent 100%
    );
    transition: left 0.8s ease;
}

.btn-outline-white:hover::before {
    left: 100%;
}

.btn-outline-white:hover {
    border-color: rgba(1, 192, 249, 0.5);
    background: rgba(1, 192, 249, 0.08);
    transform: translateY(-3px);
    box-shadow: 
        0 0 20px rgba(1, 192, 249, 0.3),
        0 0 35px rgba(0, 65, 194, 0.2);
}

@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .narrative-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 7rem 0 3rem;
        min-height: 46vh;
    }

    .about-hero .container {
        display: flex;
        justify-content: center;
    }

    .about-hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.98rem;
        line-height: 1.75;
        white-space: normal;
    }

    .about-content {
        padding: 0rem 0 4rem;
    }

    .about-narrative {
        text-align: center;
    }

    .narrative-title {
        font-size: 1.45rem;
        gap: 0.8rem;
        margin-bottom: 1.8rem;
        text-align: center;
    }

    .narrative-title::before,
    .narrative-title::after {
        width: 42px;
    }

    .narrative-section {
        padding: 1.5rem 1.2rem;
        margin-bottom: 2rem;
        border-radius: 16px;
        text-align: left;
    }

    .narrative-section p {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .about-cta {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.9rem;
        max-width: 360px;
        margin: 0 auto;
    }

    .cta-actions .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 6.5rem 0 2.5rem;
        min-height: 42vh;
    }

    .about-hero-content h1 {
        font-size: 1.75rem;
    }

    .narrative-title {
        font-size: 1.3rem;
    }

    .narrative-title::before,
    .narrative-title::after {
        width: 24px;
    }

    .narrative-section {
        padding: 1.25rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}
