:root {
    /* Color Palette */
    --primary-purple: #7C3AED;
    --accent-orange: #FF6B35;
    --text-gray: #CBD5E1;
    /* Lighter/Clearer for readability */
    --success-green: #10B981;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.15);
    --bg-dark: #000000;
    /* Pure black for contrast with blobs */
    --text-white: #FFFFFF;

    /* Spacing */
    --spacing-xs: 0.8rem;
    --spacing-sm: 2rem;
    --spacing-md: 6rem;
    /* Huge jump */
    --spacing-lg: 10rem;
    --spacing-xl: 16rem;
    /* Very large spacing for sections */

    /* Mobile Spacing Overrides */
    @media (max-width: 768px) {
        --spacing-md: 3rem;
        --spacing-lg: 5rem;
        --spacing-xl: 8rem;
    }

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 48px;
    /* Apple-style roundness */

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    background-color: var(--bg-dark);
    line-height: 1.7;
    /* Better readability */
    font-size: 18px;
    /* Larger base font size */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
    /* Disable touch gestures */
}

canvas#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(60px);
    /* Blob effect */
    opacity: 0.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    letter-spacing: -1px;
}

h3 {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        /* 20px on mobile */
    }
}

.pricing-section .container {
    max-width: 1600px;
    width: 95%;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #A78BFA, var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none !important;
    /* Force hide on desktop to prevent artifacts */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), #9F7AEA);
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Header */
.glass-header {
    background: rgba(0, 0, 0, 0.8);
    /* Darker, no border */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    /* Shadow instead of border */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Increased height for better spacing */
}

.main-nav {
    display: flex;
    align-items: center;
    /* Vertically center links and button */
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
}

.main-nav a {
    margin-left: 40px;
    font-weight: 600;
    opacity: 0.8;
    font-size: 1.1rem;
}

.main-nav a.active,
.main-nav a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

/* Single Pill Language Selector */
.single-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 7px 14px;
    margin-left: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 20px !important;
}

.single-lang-btn:hover {
    background: rgba(35, 35, 35, 0.98);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.04);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .single-lang-btn {
        margin: 12px auto !important;
        padding: 9px 20px;
    }

    .lang-label {
        font-size: 1rem;
    }
}

/* Hero */
.hero-section {
    padding: 180px 0 120px;
    /* Adjusted padding */
    min-height: 90vh;
    /* Keep full height feel */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns: Text | Visual */
    gap: var(--spacing-md);
    align-items: center;
    /* Vertically center content */
}

.hero-text {
    max-width: 600px;
    /* Limit text width for readability */
    text-align: left;
    /* Ensure left alignment */
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    opacity: 0.95;
    line-height: 1.6;
}

/* Apple-Style Glass Block */
.apple-glass-block {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .apple-glass-block {
        padding: 40px 20px;
        margin-bottom: 3rem;
        border-radius: 24px;
    }

    .icon-large {
        font-size: 3rem !important;
    }
}

/* Feature Cards (Home) */
.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    transition: var(--transition-smooth);
    text-align: center;
    /* Center content in cards */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* Space between icon and title */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        /* Force single column */
        gap: 1.5rem;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 2.5rem !important;
    }
}

.feature-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Audience Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    /* Reduced gap */
    margin-top: var(--spacing-md);
    /* Reduced margin */
}

.audience-card {
    min-height: 350px;
    /* Reduced from 500px */
    padding: var(--spacing-md);
    /* Reduced from lg */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center align items */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.audience-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.audience-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: block;
}

/* Pricing Teaser */
.pricing-card {
    max-width: 500px;
    margin: 40px auto;
    padding: var(--spacing-lg);
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary-purple);
}

/* Legal Pages Styling */
.page-header {
    padding-top: 180px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 120px;
        padding-bottom: 30px;
    }
}

.legal-content {
    padding-top: 0;
    /* Remove huge top padding */
    padding-bottom: 100px;
}

.legal-content .legal-card {
    max-width: 900px;
    margin: 0 auto;
    /* Removed top margin */
    padding: var(--spacing-lg);
    text-align: left;
}

.legal-card h2 {
    margin-top: 40px;
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.legal-card ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
    color: var(--text-white);
}

.legal-card li {
    margin-bottom: 10px;
}

/* Cookie Banner - Modern Glass Floating */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    /* Start hidden below view */
    width: calc(100% - 48px);
    max-width: 900px;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.75);
    /* Darker glass */
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 16px 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    /* Apple-like spring */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin: 0;
    max-width: none;
    padding: 0;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--text-white);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    color: var(--accent-orange);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-primary-small {
    background: var(--text-white);
    color: black;
    /* High contrast */
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-small:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-text {
    background: transparent;
    color: var(--text-gray);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: var(--text-white);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        /* Rounded top only */
        transform: translateY(100%);
        flex-direction: column;
        padding: 24px;
        background: rgba(15, 23, 42, 0.9);
        border-right: none;
        border-left: none;
        border-bottom: none;
    }

    .cookie-banner.show {
        transform: translateY(0);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-actions {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        /* Stack buttons, Primary on top visually effectively in column-reverse? No, usually primary top. Let's start with row or column. */
        /* Better mobile UX: Full width buttons, stacked. */
        gap: 12px;
    }

    .btn-primary-small {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        /* Larger touch target */
        font-size: 1.05rem;
        border-radius: 14px;
        order: 1;
        /* Show first */
    }

    .btn-text {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 0.95rem;
        border-radius: 12px;
        background: transparent;
        color: var(--text-gray);
        order: 2;
        /* Show second */
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* Add subtle border for visibility */
    }
}

/* About Page Refinements */
.about-section .content-card {
    padding: var(--spacing-lg);
    margin-top: 40px;
}

.large-text {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

/* Pricing Grid 5-Column */
.pricing-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .pricing-grid-5 {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2.5rem for compactness */
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.25rem; /* Slightly more compact padding */
        min-height: auto;
    }

    .price {
        font-size: 2.5rem; /* Restore a slightly larger font on mobile where there is more width available than in the 5-col desktop view */
    }

    .benefit-list li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .pricing-section .container {
        padding: 0 1rem; /* More space for the cards */
        width: 100%;
    }
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.check {
    color: #10b981; /* Emerald/Green */
    font-weight: bold;
}

.cross {
    color: #ef4444; /* Rose/Red */
    font-weight: bold;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.pricing-card.highlight {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
    border-color: var(--primary-purple);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
    animation: pulse-purple 3s infinite ease-in-out;
    /* Add animation */
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        border-color: rgba(124, 58, 237, 0.5);
    }

    50% {
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
        border-color: rgba(124, 58, 237, 1);
    }

    100% {
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        border-color: rgba(124, 58, 237, 0.5);
    }
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Improved Footer with Fluid Animation */
/* Elegant Footer - Static Glass */
/* Improved Footer with Fluid Animation */
/* Elegant Footer - Static Glass */
.glass-footer {
    background: rgba(5, 5, 5, 0.6);
    /* Semi-transparent dark background */
    backdrop-filter: blur(20px);
    /* Heavy blur for glass effect */
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    padding: 6rem 0 3rem;
    margin-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Removed fluid-bg keyframes */

/* Remove static glow */
.glass-footer::before {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-gray);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 300px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: rgba(124, 58, 237, 0.1);
    color: white;
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Columns */
.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.5;
}

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

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

.footer-links a {
    color: var(--text-gray);
    font-size: 1rem;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    opacity: 0.8;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
    /* Slide effect */
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0.6;
}

/* Mobile Elements Default State (Hidden on Desktop) */
.mobile-nav-overlay,
.mobile-menu-close-btn,
.mobile-nav-links,
.mobile-menu-btn {
    display: none !important;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
        /* Keep left aligned for cleaner look */
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 2001;
        position: fixed;
        right: 20px;
        top: 25px;
        /* relative positioning context for spans */
        position: fixed;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-white);
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        transform-origin: center center;
    }

    .mobile-menu-btn span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-btn span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-btn span:nth-child(3) {
        bottom: 0;
    }

    /* Mobile Menu Active State - Turn to X */
    .mobile-menu-btn.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Full Screen Mobile Navigation Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.96);
        /* Premium Pure Black */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1900;
        /* Below cookie banner (2000), above header (1000) */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s;
    }

    /* Close button inside overlay: hidden — the fixed burger button (z-index 2001)
       transforms to X and sits on top of the overlay, acting as close button */
    .mobile-menu-close-btn {
        display: none !important;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }

    .mobile-nav-overlay.active .mobile-nav-links {
        transform: translateY(0);
    }

    .mobile-nav-links a {
        font-size: 2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a.active {
        color: var(--accent-orange);
        opacity: 1;
        transform: scale(1.1);
    }

    .mobile-nav-links .btn {
        margin-top: 1rem;
        font-size: 1.2rem;
        padding: 12px 40px;
        width: auto;
    }

    /* Hide standard nav on mobile */
    .main-nav {
        display: none;
    }

    /* (span styles managed above) */

    /* Typography Adjustments */
    body {
        font-size: 16px;
        /* Slightly smaller base on mobile */
    }

    h1 {
        font-size: 2.5rem !important;
        /* Force smaller size */
        line-height: 1.1;
        overflow-wrap: break-word;
        /* Prevent overflow */
    }

    /* Hero Section */
    .hero-content {
        display: flex;
        /* Override grid */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .hero-text {
        margin: 0 auto;
        /* Center the text block */
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
        /* Remove min-height constraint */
    }

    /* Split Layout */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Legal Page Mobile Overrides */
    .page-header {
        padding-top: 120px;
        /* Less padding on mobile */
        padding-bottom: 40px;
    }

    .legal-content .legal-card {
        padding: 24px;
        /* Less padding inside card */
    }

    /* Cookie Banner Mobile adjustments are now handled in the main component style above */

    /* Footer Overrides */
    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-bottom {
        margin-top: 3rem;
    }

    /* Features & About Page Overrides */
    .feature-detail-grid,
    .team-grid,
    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    /* Reverse Layout: Ensure Text is always on top on mobile */
    .feature-detail-section.reverse-layout .feature-detail-grid {
        flex-direction: column-reverse;
    }

    .feature-text,
    .feature-visual {
        width: 100%;
        text-align: center;
    }

    /* Keep lists readable */
    .feature-list {
        text-align: left;
        display: inline-block;
        max-width: 100%;
    }

    /* Pricing Card Mobile */
    .pricing-card {
        height: auto;
        min-height: 0;
        padding: 2rem;
    }

    .pricing-card .btn {
        width: 100%;
        margin-top: 1rem;
    }

    /* Global Button Center on Mobile */
    .btn {
        max-width: 100%;
    }

    /* Force Footer Alignment */
    .footer-col,
    .footer-grid,
    .footer-bottom-content {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-links li {
        text-align: center;
    }
}

/* =============================================================
   PAGE TITLE (shared)
   ============================================================= */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.75;
    max-width: 640px;
    margin: 0 auto;
}

.section-desc {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 680px;
    margin: 1rem auto 0;
}

/* =============================================================
   BADGE (section labels)
   ============================================================= */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 1.2rem;
}

.section-header {
    margin-bottom: var(--spacing-md);
}

/* =============================================================
   SHARED FEATURE LIST
   ============================================================= */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

/* =============================================================
   HOVER LIFT
   ============================================================= */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* =============================================================
   LINK ARROW
   ============================================================= */
.link-arrow {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1.5rem;
    transition: transform 0.2s ease;
}

.link-arrow:hover {
    transform: translateX(6px);
}

/* DELAY UTILITIES */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* =============================================================
   SECTION BASE
   ============================================================= */
.section {
    padding: var(--spacing-lg) 0;
}

/* =============================================================
   ICON LARGE
   ============================================================= */
.icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* =============================================================
   DOWNLOAD PAGE
   ============================================================= */
.download-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.download-card {
    margin-bottom: 0 !important;
    text-align: left;
}

.download-card .icon-large {
    text-align: left;
}

.download-badges {
    margin-top: 2rem;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.2s;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

.app-store-badge svg {
    width: 160px;
    height: 53px;
}

.download-note {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-top: 1rem;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    text-align: center;
}

.platform-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-top: 1rem;
}

.platform-status.available {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.platform-status.coming-soon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Waitlist / Newsletter Form */
.waitlist-form {
    max-width: 560px;
    margin: 2.5rem auto 0;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.form-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.08);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.45;
    margin-top: 1rem;
    text-align: center;
}

.waitlist-confirmation {
    color: var(--success-green);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* ============================================================= 
   CHANGELOG PAGE
   ============================================================= */
.changelog-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.changelog-entry {
    position: relative;
}

.version-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-gray);
}

.version-badge.latest {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--primary-purple);
    color: #A78BFA;
}

.version-badge.roadmap {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--accent-orange);
}

.changelog-card {
    margin-bottom: 0 !important;
    text-align: left;
}

.changelog-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.changelog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.changelog-version {
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.9rem;
}

.changelog-date {
    font-size: 0.85rem;
    opacity: 0.5;
}

.release-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.type-major {
    background: rgba(124, 58, 237, 0.2);
    color: #A78BFA;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.type-feature {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.type-launch {
    background: rgba(255, 107, 53, 0.12);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.type-roadmap {
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent-orange);
    border: 1px dashed rgba(255, 107, 53, 0.4);
}

.changelog-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.changelog-section h4 {
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.roadmap-card {
    border-color: rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.04), rgba(255, 255, 255, 0.02));
}

/* =============================================================
   BLOG PAGE
   ============================================================= */
.blog-featured {
    margin-bottom: 0;
}

.featured-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.blog-featured-text {
    text-align: left;
}

.blog-featured-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin: 1rem 0;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.15);
    color: #A78BFA;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 1rem 0 1.5rem;
    flex-wrap: wrap;
}

.blog-author {
    color: var(--accent-orange);
    opacity: 1;
    font-weight: 600;
}

/* Featured Visual */
.blog-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-visual {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.rpe-visual {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(255, 107, 53, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rpe-gauge {
    width: 100%;
}

.rpe-scale {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1rem;
}

.rpe-bar {
    flex: 1;
    max-width: 18px;
    background: linear-gradient(to top, var(--primary-purple), var(--accent-orange));
    border-radius: 4px 4px 0 0;
    animation: rpeGrow 1.2s ease-out both;
}

@keyframes rpeGrow {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

.rpe-label {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.7;
    font-weight: 600;
    color: var(--text-white);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    text-align: left;
    justify-content: space-between;
    min-height: 280px;
}

.blog-card-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.blog-card p {
    font-size: 0.95rem;
    opacity: 0.7;
}

.blog-link {
    margin-top: 1.5rem;
    display: inline-block;
}

/* =============================================================
   CAREERS PAGE
   ============================================================= */
.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    min-height: 220px;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.job-entry {
    margin-bottom: 0 !important;
    text-align: left;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.job-icon {
    font-size: 2.5rem;
}

.job-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-gray);
}

.job-type {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.job-requirements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.job-requirements h4 {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.open-application {
    margin-top: 2rem;
    margin-bottom: 0 !important;
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-option {
    margin-bottom: 0 !important;
    text-align: left;
    padding: 2rem !important;
}

.contact-option h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-option p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.contact-link {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.contact-link:hover {
    opacity: 0.75;
}

.response-time {
    display: block;
    font-size: 0.78rem;
    opacity: 0.4;
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    margin-bottom: 0 !important;
    text-align: left;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
    opacity: 0.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #1a1a2e;
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-purple);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-label-inline {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
    cursor: pointer;
}

.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    gap: 1rem;
}

.form-success-message .success-icon {
    font-size: 3rem;
}

.form-success-message h3 {
    color: var(--success-green);
    margin-bottom: 0;
}

.form-success-message p {
    opacity: 0.7;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 0 !important;
    text-align: left;
    padding: 2.5rem !important;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* =============================================================
   RESPONSIVE — All New Pages
   ============================================================= */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .download-hero-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
    }

    .changelog-sections {
        grid-template-columns: 1fr;
    }

    .blog-featured-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-visual {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .careers-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-info {
        flex-direction: row;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-option {
        padding: 1.5rem !important;
    }

    .contact-form-wrapper {
        padding: 2rem !important;
    }

    .apple-glass-block {
        padding: 2.5rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .careers-values-grid {
        grid-template-columns: 1fr;
    }

    .job-info {
        flex-direction: column;
        align-items: flex-start;
    }
}