/* About Page Specific Styles */

.about-hero {
    padding: 140px;
    background: var(--surface);
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.about-header {
    position: relative;
    z-index: 1;
}

.about-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.about-header p {
    font-size: 22px;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-story {
    padding: 100px 0;
    background: var(--background);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text);
    animation: fadeInLeft 1s ease-out;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-light);
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.personal-note,
.vision {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin: 40px 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.personal-note:hover,
.vision:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.personal-note h3,
.vision h3 {
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.personal-note p,
.vision p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

.about-stats {
    background: var(--surface);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
    animation: fadeInRight 1s ease-out 0.4s both;
    position: sticky;
    top: 120px;
}

.stat-item {
    transition: var(--transition-smooth);
    padding: 20px;
    border-radius: var(--radius);
    background: var(--background);
    border: 1px solid var(--border);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.development-journey {
    padding: 100px 0;
    background: var(--surface);
}

.development-journey h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.journey-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: start;
    gap: 24px;
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    animation: scaleIn 0.8s ease-out;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-icon {
    font-size: 32px;
    background: var(--surface);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.philosophy {
    padding: 100px 0;
    background: var(--background);
}

.philosophy-content h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.philosophy-card {
    background: var(--surface);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-elastic);
    box-shadow: var(--shadow-light);
    animation: scaleIn 0.8s ease-out;
}

.philosophy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.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; }
.philosophy-card:nth-child(4) { animation-delay: 0.4s; }
.philosophy-card:nth-child(5) { animation-delay: 0.5s; }

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 24px;
    animation: float 5s ease-in-out infinite;
}

.philosophy-card:nth-child(even) .philosophy-icon {
    animation-delay: -2.5s;
}

.philosophy-card h3 {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.personal-touch {
    padding: 100px 0;
    background: var(--surface);
}

.personal-content h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
}

.note-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-note {
    background: var(--surface-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 40px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.contact-note:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-note p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 16px;
}

.contact-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.contact-note a:hover {
    color: var(--primary-dark);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.future-vision {
    padding: 100px 0;
    background: var(--background);
}

.future-content h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.future-content > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.future-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.future-item {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    animation: scaleIn 0.8s ease-out;
    text-align: center;
}

.future-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.future-item:nth-child(1) { animation-delay: 0.1s; }
.future-item:nth-child(2) { animation-delay: 0.2s; }
.future-item:nth-child(3) { animation-delay: 0.3s; }
.future-item:nth-child(4) { animation-delay: 0.4s; }

.future-item h4 {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.future-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta .btn-primary:hover {
    background: var(--surface);
    transform: translateY(-6px) scale(1.05);
}

.cta-note {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-stats {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-stats {
        padding: 32px 24px;
        gap: 24px;
    }
    
    .timeline-item {
        padding: 32px 24px;
        gap: 16px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .note-content {
        padding: 32px 24px;
    }
    
    .future-features {
        grid-template-columns: 1fr;
    }
}
