/* About page specific styles */
/* Hero base styles now in components.css (shared page-hero pattern) */

        .hero-text {
            text-align: center;
            margin-bottom: var(--space-xl);
            
        }     
        
        .about-section {
        max-width: 100%;
        padding: var(--space-xs);
        background: var(--bg-primary);
        border: var(--border-width-0) solid var(--border-primary);
        color: var(--color-primary);
        margin-bottom: var(--space-xl);
        margin-top: var(--space-xl);

        }

        .about-content {
        display: grid;
        gap: var(--space-xs);
        max-width: 100%;
        margin: 0 auto;
        
        }
        

        
        .about-section__content {
            font-size: var(--text-md);
            line-height: var(--leading-relaxed);
            color: var(--color-primary);
        }
        
        .about-section__content p {
            margin-bottom: var(--space-md);
        }
        
        .about-section__content p:last-child {
            margin-bottom: 0;
        }

        .features-grid {
            list-style-type: none;
            text-align: center;
        }

      /* ===== STATS  SECTION ===== */
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-lg);
            margin: var(--space-xl) 0;
        }
        
        .stat {
            background: var(--bg-secondary);
            border: var(--border-width-1) solid var(--border-secondary);
            padding: var(--space-lg);
            text-align: center;
        }
        
        .stat__number {
            font-family: var(--font-mono);
            font-size: var(--text-3xl);
            font-weight: var(--font-bold);
            color: var(--color-primary);
            margin-bottom: var(--space-sm);
        }
        
        .stat__label {
            font-size: var(--text-xl);
            color: var(--color-secondary);
        }

        /* ===== FOUNDER TEXT SECTION ===== */
        
        .founder-quote {
            background: var(--bg-tertiary);
           
        }
        
        .founder-quote__text {
            font-size: var(--text-lg);
            line-height: var(--leading-relaxed);
            border-left: var(--border-width-4) solid var(--color-primary);
            padding: var(--space-xl);
            margin: var(--space-xl) 0;
            color: var(--color-primary);
            font-style: italic;
        }
        
        .founder-quote__attribution {
            font-family: var(--font-mono);
            font-size: var(--text-md);
            color: var(--color-primary);
        }

        .about-section__title {
            font-family: var(--font-mono);
            font-size: var(--text-2xl);
            color: var(--color-primary);
            padding-bottom: 0.5em;
            text-align: center;
            
        }

        .section-subtitle {
            font-family: var(--font-mono);
            font-size: var(--text-md);
            font-weight: normal;
            font-style: normal;
            text-align: center;
            color: var(--color-primary);
            margin-bottom: 0.5em;
        }

        .step__content {
            margin-bottom: 1em;
       
        
            }
        .step__title {
            font-family: var(--font-mono);
            font-size: var(--text-xl);
            font-weight: bold;
            text-align: center;
            color: var(--color-primary);
            
        }

        .step__description {
            font-family: var(--font-mono);
            font-size: var(--text-sm);
            font-weight: normal;
            text-align: center;
            color: var(--color-primary);
            margin-top: 0.5em;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 2fr));
            gap: var(--space-md);
            margin: var(--space-xl) 0;
        }

        .about-section__subtitle {
             font-family: var(--font-mono);
            font-size: var(--text-xl);
            font-style: italic;
            color: var(--color-primary);
            font-weight: normal;
            text-align: center;
        }

        .cta-section-content {
            text-align: center;
            color: var(--color-primary);
            padding: 2em;
        }

        .cta-description {
            margin-bottom: 1em;
            color: var(--color-primary);
        }

        .cta-note {
            margin:1em;
            color: var(--color-primary);
        }
    
        
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Video Section */
            .video-section {
                padding: 2rem 0;
                text-align: center;
            }

            .video-section video {
                max-width: 100%;
                height: auto;
                width: 1024px;
            }

            @media (max-width: 768px) {
                .video-section video {
                    width: 100%;
                }
            }

            @media (max-width: 480px) {
                .video-section video {
                    width: 100%;
                }
            }

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 320px;
    max-height: 550px;
    overflow: hidden;
    margin: 0;
    /* Break out of container to full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.parallax-divider__image {
    position: absolute;
    /* 140% height gives room for the image to travel vertically */
    left: 0;
    right: 0;
    top: 0;
    height: 160%;
    background-size: cover;
    background-position: center bottom; /* Start showing bottom of image */
    background-repeat: no-repeat;
    will-change: transform;
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 38vh;
        min-height: 240px;
    }
}

/* Reduced motion: static image, no parallax */
@media (prefers-reduced-motion: reduce) {
    .parallax-divider__image {
        transform: none !important;
        top: -30%;
        background-position: center center;
    }
}