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

/* Custom Fonts */
        

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

        :root {
            --bg-secondary: var(--bg-primary);
            --card-bg: var(--bg-surface);
            --card-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;
            transition: background 0.3s ease, color 0.3s ease;
        }

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

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

        /* Header Navigation */

        /* Active nav link */

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

        /* Hero */
        .hero {
            padding: 6.4rem 1.6rem 2.4rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .hero .updated {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

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

        .content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cyber-cyan);
            margin: 2rem 0 0.8rem;
        }

        .content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 1.2rem 0 0.6rem;
        }

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

        .content ul {
            margin: 1rem 0 1rem 1.5rem;
        }

        .content li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

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

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

        .content strong {
            color: var(--text-primary);
        }

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

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

        .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-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 */
        @media (max-width: 768px) {

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

            .content {
                padding: 1.6rem 1.2rem 3.2rem;
            }

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