/* ─── ABOUT PAGE SPECIFIC STYLES ─── */

/* ABOUT HERO */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-orb-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(80px);
}

.about-orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(80px);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.03em;
}

.about-hero-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-family: var(--font-thin);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.about-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.about-meta-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ABOUT HERO VISUAL */
.about-hero-visual .glass-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(139, 92, 246, 0.08));
    pointer-events: none;
}

.about-img-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

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

.about-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.about-img-headline {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.about-img-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-metrics {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* VM SECTION */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vm-card {
    padding: 2.5rem;
    text-align: center;
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.vm-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-card p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* FOUNDER */
.founder-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.founder-card {
    padding: 2.5rem;
    text-align: center;
}

.founder-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(var(--neon-blue), var(--neon-purple), var(--neon-blue));
    animation: spinSlow 3s linear infinite;
}

.avatar-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    border: 3px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-blue);
    z-index: 1;
    text-shadow: 0 0 20px var(--neon-blue);
}

.founder-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.founder-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-blue);
}

.founder-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.skill-tag {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.founder-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    margin: 1.2rem auto;
}

.founder-quote {
    font-family: var(--font-thin);
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-left: 2px solid rgba(0, 212, 255, 0.4);
    padding-left: 1rem;
    text-align: left;
}

.founder-content .section-label {
    margin-bottom: 0.5rem;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-family: var(--font-thin);
}

.highlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* TIMELINE */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.timeline-item {
    display: flex;
    width: 50%;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.left {
    left: 0;
    padding-right: 3rem;
    justify-content: flex-end;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3rem;
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    top: 1.5rem;
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-dot.purple {
    background: var(--neon-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.timeline-dot.future {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    width: 20px;
    height: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(139, 92, 246, 0.4);
}

.timeline-item.left .timeline-dot.future {
    right: -10px;
}

.timeline-item.right .timeline-dot.future {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem 1.8rem;
    max-width: 380px;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--neon-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.future-card {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.future-year {
    color: var(--neon-purple);
}

.future-badge {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

/* CTA & FOOTER (reuse from home) */
.cta-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent);
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-inner {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-family: var(--font-thin);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-content p {
        max-width: 100%;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .founder-inner {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 0 0 3rem !important;
        justify-content: flex-start !important;
    }

    .timeline-line {
        left: 0;
    }

    .timeline-item .timeline-dot {
        left: -8px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .about-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .about-meta-divider {
        display: none;
    }

    .cta-inner {
        padding: 3rem 1.5rem;
    }
}