/* ========================================
   TGP Landing Page Styles
   Brand Colors:
   - Primary: Navy Blue #0D47A1
   - Secondary: Safety Green #4CAF50
   - Accent: Vivid Orange #FF9800
   ======================================== */

:root {
    /* Brand Colors */
    --primary: #0D47A1;
    --primary-light: #1565C0;
    --primary-dark: #0A3577;
    --secondary: #4CAF50;
    --secondary-light: #66BB6A;
    --accent: #FF9800;
    --accent-light: #FFB74D;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --charcoal: #333333;

    /* Dark Theme */
    --bg-dark: #0a0f1a;
    --bg-card: rgba(13, 71, 161, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(13, 71, 161, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ========================================
   Reset & Base
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Container
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-slow);
}

.nav.scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-weight: 500;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    opacity: 1 !important;
    transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.4);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--white);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(13, 71, 161, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 60%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.device-mockup {
    width: 400px;
    max-width: 100%;
    min-height: 200px;
    aspect-ratio: 4 / 3;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.mockup-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-glass);
}

.mockup-logo {
    width: 24px;
    height: 24px;
}

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
}

.mockup-content {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mockup-card {
    flex: 1;
    min-height: 30px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.mockup-card.pulse {
    animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ========================================
   Philosophy Section
   ======================================== */

.philosophy {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 71, 161, 0.05) 50%, transparent 100%);
}

.philosophy-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.philosophy h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.philosophy-statement {
    font-size: 1.25rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-3xl);
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.value-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-md);
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   Coming Soon Section
   ======================================== */

.coming-soon-header {
    margin-top: var(--space-3xl);
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: var(--space-2xl);
}

.coming-soon-header h3 {
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.network-protection-card {
    margin-top: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    justify-content: space-between;
}

.network-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
    min-width: 300px;
}

.network-icon {
    width: 80px;
    height: 80px;
    background: var(--surface-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.1);
}

.network-info h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.network-info p {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}



/* Shared Device Styles */
.target-device {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.target-device:hover {
    border-color: var(--secondary);
    background: rgba(76, 175, 80, 0.05);
    transform: translateY(-2px);
}

.target-icon {
    color: var(--gray-300);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-device span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-300);
}

.badge-dev {
    background: rgba(255, 152, 0, 0.15);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 152, 0, 0.3);
    display: inline-block;
}

/* Hub and Spoke Layout Updates */
.network-targets.vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Aligns with the 60px SVG vertical spacing (approx) */
    justify-content: center;
}

.network-connections {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.network-connections svg.desktop-connections {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
}

.network-connections svg.mobile-connections {
    display: none;
}

.network-icon.tgp-logo-icon {
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .network-protection-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .network-targets.vertical-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md);
        margin-bottom: var(--space-md);
    }

    .network-connections {
        flex: 0 0 auto;
        width: 100%;
        margin: -20px 0;
        /* Pull them closer */
    }

    .network-connections svg.desktop-connections {
        display: none;
    }

    .network-connections svg.mobile-connections {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .network-status {
        position: static;
        margin-top: var(--space-md);
    }

    .supported-devices {
        justify-content: center;
    }
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: var(--space-4xl) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* ========================================
   Platforms Section
   ======================================== */

.platforms {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 71, 161, 0.05) 50%, transparent 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.platform-icon {
    color: var(--primary-light);
    transition: color var(--transition-base);
}

.platform-card:hover .platform-icon {
    color: var(--secondary);
}

.platform-card span {
    font-weight: 500;
    font-size: 0.9rem;
}



/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: var(--space-4xl) 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    text-align: center;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.15) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
}

.cta-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-card>p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    max-width: 480px;
    margin: 0 auto var(--space-lg);
}

.form-group {
    display: flex;
    gap: var(--space-sm);
    /* flex-wrap removed to prevent unwanted stacking on desktop */
}

.form-group input {
    flex: 1;
    /* Removed min-width that was forcing wrap */
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-base);
    appearance: none;
    /* Normalize browser defaults */
    -webkit-appearance: none;
}

.form-group button {
    white-space: nowrap;
    /* Prevent button text wrapping */
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.form-group input:focus {
    border-color: var(--primary-light);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Mobile responsive form */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .form-group button {
        width: 100%;
        min-width: 0;
    }
}

/* Waitlist Form Enhancements */
.form-consent {
    margin-top: var(--space-md);
    text-align: left;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-light);
}

.consent-label a {
    color: var(--primary-light);
    text-decoration: underline;
}

.consent-label a:hover {
    color: var(--secondary);
}

/* Turnstile widget styling */
.cf-turnstile {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
}

/* Waitlist message display */
.waitlist-message {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-md);
    text-align: center;
    font-weight: 500;
}

.waitlist-message.success {
    background: rgba(76, 175, 80, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.waitlist-message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Disabled button state */
#waitlist-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--white);
}

/* COPPA-compliant prominent privacy link */
.privacy-link {
    color: var(--accent) !important;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--accent-light) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-glass);
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.privacy-link-prominent {
    background: rgba(255, 152, 0, 0.15);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--accent) !important;
    font-weight: 600;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.privacy-link-prominent:hover {
    background: rgba(255, 152, 0, 0.25);
}

/* ========================================
   Legal Pages
   ======================================== */

.legal-page {
    padding: 120px 0 var(--space-4xl);
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.legal-page .last-updated {
    color: var(--gray-500);
    margin-bottom: var(--space-3xl);
}

.legal-page section {
    margin-bottom: var(--space-xl);
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--primary-light);
}

.legal-page h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: var(--space-md) 0 var(--space-sm);
}

.legal-page p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-page ul {
    color: var(--gray-400);
    line-height: 1.8;
    margin-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-page li {
    margin-bottom: var(--space-sm);
}

.legal-page a {
    color: var(--secondary);
}

.legal-page a:hover {
    color: var(--secondary-light);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: var(--space-3xl);
    }

    .device-mockup {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .device-mockup {
        width: 85%;
        max-width: 350px;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .step-connector {
        display: none;
    }

    .steps-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .device-mockup {
        width: 80%;
        max-width: 300px;
    }
}