/* ==========================================================================
   ClearPath Landing Page — About Page Styles
   Extracted from inline <style> — uses CSS variables from design-tokens.css
   ========================================================================== */

/* Custom Fonts */
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Brand Colors */

            /* Legacy aliases */
            --purple: var(--bg-primary);
            --cyan: var(--accent-cyan);
            --green: var(--accent-green);
            --grey: var(--bg-primary);

            /* Dark mode variables (v2.0) */
            --bg-gradient-start: var(--bg-primary);
            --bg-gradient-mid: var(--bg-primary);
            --bg-gradient-end: var(--bg-primary);
            --text-tertiary: var(--text-tertiary);
            --card-bg: var(--bg-surface);
            --card-border: var(--border-default);
            --input-bg: var(--bg-surface);
            --input-border: var(--border-default);
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, .btn {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        h2, h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        h2 {
            font-size: 1.8rem;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Navigation */

        /* Active nav link */

        /* Hide waitlist elements after user joins */
        .waitlist-hidden {
            display: none !important;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 6rem 0 4rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Hero About - Side by side layout */
        .hero-about {
            text-align: left;
            padding: 6rem 0 3rem;
        }

        .hero-about-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-about-text h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .hero-about-text .subtitle {
            margin: 0;
            max-width: none;
            white-space: nowrap;
        }

        .hero-about-video {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(var(--bg-primary-rgb), 0.1);
            border: 1px solid rgba(var(--bg-primary-rgb), 0.1);
        }

        .hero-about-video video {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 768px) {
            .hero-about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-about-text h1 {
                font-size: 2rem;
            }

            .hero-about-text .subtitle {
                margin: 0 auto;
                max-width: 600px;
                white-space: normal;
            }
        }

        /* Content */
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 3rem 0;
            border-bottom: 1px solid var(--card-border);
        }

        .section:last-of-type {
            border-bottom: none;
        }

        .section h2 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--cyan);
        }

        .section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .section p:last-child {
            margin-bottom: 0;
        }

        /* Founders */
        .founders {
            margin-top: 2rem;
        }

        .founder {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            align-items: flex-start;
        }

        .founder-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .founder-headshot {
            object-fit: cover;
            border: 3px solid var(--border-default);
            box-shadow: 0 4px 15px rgba(15, 0, 54, 0.15);
        }

        .founder-info h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .founder-info .role {
            font-size: 0.9rem;
            color: var(--cyber-cyan);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .founder-info p {
            font-size: 1rem;
            margin-bottom: 0;
        }

        .founder-info a {
            color: var(--cyber-cyan);
            text-decoration: none;
        }

        .founder-info a:hover {
            color: var(--cyber-cyan);
        }

        /* Values */
        .values-intro {
            max-width: 800px;
            margin: 0 auto 2.5rem;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(var(--bg-primary-rgb), 0.7);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .value-card {
            padding: 2rem;
            background: var(--bg-surface);
            border-radius: 4px;
            border: 1px solid rgba(var(--bg-primary-rgb), 0.08);
            box-shadow: 0 2px 8px rgba(var(--bg-primary-rgb), 0.04);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            box-shadow: 0 4px 16px rgba(var(--bg-primary-rgb), 0.08);
            border-color: rgba(var(--accent-green-rgb), 0.3);
            transform: translateY(-2px);
        }

        .value-card h3 {
            color: var(--accent-green);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .value-card p {
            color: rgba(var(--bg-primary-rgb), 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }

        /* Legacy values-list (keeping for compatibility) */
        .values-list {
            margin-top: 1.5rem;
        }

        .value-item {
            padding: 1.25rem;
            background: rgba(var(--text-primary-rgb), 0.8);
            border-radius: 4px;
            margin-bottom: 1rem;
            border: 1px solid rgba(var(--bg-primary-rgb), 0.1);
            border-left: 4px solid var(--cyber-cyan);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: rgba(var(--text-primary-rgb), 0.95);
            border-color: rgba(var(--accent-cyan-rgb), 0.3);
        }

        .value-item strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-elevated) 100%);
            border: 2px solid var(--cyber-cyan);
            border-radius: 4px;
            padding: 3rem 2rem;
            text-align: center;
            margin: 3rem auto;
            max-width: 800px;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--cyber-cyan);
            color: var(--bg-primary);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px rgba(var(--accent-cyan-rgb), 0.25);
        }

        .btn:hover {
            background: var(--accent-cyan);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(var(--accent-cyan-rgb), 0.4), 0 0 20px rgba(var(--accent-cyan-rgb), 0.3);
        }

        .btn:active {
            transform: translateY(-1px) scale(0.99);
            box-shadow: 0 4px 12px rgba(var(--accent-cyan-rgb), 0.3);
        }

        /* Footer */
        footer {
            background: var(--bg-elevated);
            color: var(--text-primary);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(var(--bg-primary-rgb), 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h3 {
            color: var(--text-primary);
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-family: 'Space Grotesk', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .tagline {
            font-size: 0.95rem;
            color: rgba(var(--bg-primary-rgb), 0.6);
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(var(--bg-primary-rgb), 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: var(--cyber-cyan);
            padding-left: 5px;
        }

        .footer-link-note {
            display: block;
            font-size: 0.75rem;
            color: rgba(var(--bg-primary-rgb), 0.5);
            margin-top: 0.25rem;
            font-style: italic;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(var(--bg-primary-rgb), 0.1);
        }

        .contact {
            font-size: 0.875rem;
            color: rgba(var(--bg-primary-rgb), 0.6);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact a:hover {
            color: var(--text-primary);
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-legal a:not(.social-icon) {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .footer-legal a:not(.social-icon):hover {
            color: var(--text-primary);
        }

        .copyright {
            font-size: 0.9rem;
            color: rgba(var(--bg-primary-rgb), 0.5);
        }

        .footer-legal .social-icon {
            width: 36px;
            height: 36px;
            margin: 0;
        }

        .footer-legal .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .trademark-notice {
            font-size: 0.75rem;
            color: rgba(var(--bg-primary-rgb), 0.4);
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(var(--bg-primary-rgb), 0.1);
        }

        /* Social Icons */
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(var(--bg-primary-rgb), 0.05);
            border: 1px solid rgba(var(--bg-primary-rgb), 0.1);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(var(--accent-cyan-rgb), 0.15);
            border-color: var(--cyber-cyan);
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--text-primary);
            transition: fill 0.3s ease;
        }

        .social-icon:hover svg {
            fill: var(--cyber-cyan);
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: none;
                text-align: center;
                margin-bottom: 1rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

            .hero {
                padding: 3rem 1.5rem 2.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section {
                padding: 2.5rem 0;
            }

            .section h2 {
                font-size: 1.5rem;
            }

            .founder {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

            .founder-avatar {
                margin-bottom: 0.5rem;
            }

            .content {
                padding: 0 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-section {
                margin: 2rem 1rem;
                padding: 3rem 1.5rem;
            }
        }
