.about-hero-v3 {
    padding: 160px 0px;
    background: var(--bg-color);
    background-image: radial-gradient(circle at 10% 40%, rgba(0, 163, 255, 0.15), transparent 10%), radial-gradient(circle at 90% 60%, rgba(196, 24, 226, 0.1), transparent 10%);
}

.about-hero-content {
}

.about-hero-content .section-title {
    text-align: center;
    font-size: clamp(3.5rem, 7vw, 5rem);
}

.about-hero-content .section-tagline {
    text-align: center;
    margin-left: 0px;
    font-size: 1.5rem;
    color: var(--text-color-muted);
    max-width: 100%;
}

#manifesto-v3 {
    background: var(--bg-card);
}

.manifesto-grid-v3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.manifesto-text-v3 .section-subtitle {
    text-align: left;
}

.manifesto-quote {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
}

.manifesto-strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.manifesto-visual-v3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-visual-v3 img {
    max-width: 300px;
    /* opacity: 0.1; */
    animation: 10s linear 0s infinite normal none running slow-rotate;
}

@keyframes slow-rotate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.history-section-v3 {
    background: var(--bg-color);
}

.history-section-v3 .section-title {
    margin-bottom: 4rem;
}

.history-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.history-card-v3 {
    border-top: 2px solid var(--accent-color);
    padding-top: 1.5rem;
}

.history-card-v3 h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--text-color-muted);
    margin-bottom: 1rem;
}

.history-card-v3 h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.team-section-v3 {
    background: var(--bg-card);
}

.team-section-v3 .section-title, .team-section-v3 .section-tagline {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section-v3 .section-tagline {
    margin-bottom: 5rem;
}

.team-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member-showcase.founder {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 4rem;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 1.5rem;
}

.team-member-photo-v3 {
    border-radius: 1rem;
    overflow: hidden;
}

.team-member-photo-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-details-v3 h3 {
    font-size: 2rem;
}

.team-member-details-v3 span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0.5rem 0px 1.5rem;
}

.team-member-details-v3 p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member-card-v3 {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
}

.team-member-photo-v3.small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0px auto 1.5rem;
}

.team-member-card-v3 h4 {
    font-size: 1.25rem;
    color: var(--text-color);
}

.team-member-card-v3 span {
    color: var(--text-color-muted);
    font-size: 0.9rem;
}

.join-us-card a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 2px dashed var(--border-color);
    border-radius: 1rem;
    color: var(--text-color-muted);
    transition: 0.3s;
    padding: 1rem;
}

.join-us-card a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 163, 255, 0.05);
}

.join-us-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.join-us-card h4 {
    color: var(--text-color);
}

@media (max-width: 992px) {
    .manifesto-grid-v3 {
        grid-template-columns: 1fr;
    }

    .manifesto-visual-v3 {
        display: none;
    }

    .team-member-showcase.founder {
        grid-template-columns: 1fr;
    }
}
