/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at top center, var(--accent-bg) 0%, var(--primary-bg) 60%);
    overflow: hidden;
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        var(--primary-orange) 50px,
        var(--primary-orange) 51px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        var(--primary-orange) 50px,
        var(--primary-orange) 51px
    );
    animation: circuitPulse 10s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.page-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.title-word {
    display: inline-block;
    animation: titleSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-word.accent {
    color: var(--primary-orange);
    text-shadow: 0 0 40px var(--orange-glow);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.page-subtitle .subtitle-emphasis {
    color: var(--primary-orange);
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 0 30px var(--orange-glow-intense), 0 0 60px rgba(255, 102, 0, 0.4);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.text-orange {
    color: var(--primary-orange);
    text-shadow: 0 0 20px var(--orange-glow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Glass Card Base */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    text-align: center;
    animation: fadeInScale 0.8s ease-out backwards;
}

.philosophy-card:nth-child(1) { animation-delay: 0.1s; }
.philosophy-card:nth-child(2) { animation-delay: 0.2s; }
.philosophy-card:nth-child(3) { animation-delay: 0.3s; }

.card-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.icon-symbol {
    font-size: 3rem;
    display: block;
    filter: grayscale(0%);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
}

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

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.team-content {
    margin-top: 3rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.text-emphasis {
    color: var(--primary-orange);
    font-style: italic;
    font-weight: 500;
}

/* Technology Stack Section */
.tech-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    animation: slideInFromBottom 0.8s ease-out backwards;
}

.tech-card:nth-child(1) { animation-delay: 0.1s; }
.tech-card:nth-child(2) { animation-delay: 0.2s; }
.tech-card:nth-child(3) { animation-delay: 0.3s; }
.tech-card:nth-child(4) { animation-delay: 0.4s; }

.tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-icon {
    font-size: 2rem;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Journey Timeline */
.journey-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInLeft 0.8s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

.timeline-marker {
    position: absolute;
    left: -44px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange-glow);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.about-cta {
    padding: 6rem 0;
    background: radial-gradient(ellipse at bottom center, var(--accent-bg) 0%, var(--primary-bg) 60%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 50vh;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .philosophy-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* Original responsive styles below */
@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline-marker {
        left: -34px;
    }
}