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

        html,
        body {
            overflow-x: hidden;
            overflow-y: auto;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
        }

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

        to {
            transform: rotate(360deg);
        }

        to {
            transform: rotate(360deg);
        }

        to {
            transform: rotate(360deg);
        }

        /* Header */
        header {
            padding: 20px 0;
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid;
            border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) 1;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .nav-menu a:hover {
            opacity: 0.8;
        }

        /* Main Content Updated FIles. */
        main {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 120px 20px 80px;
            /* More top padding, less bottom */
        }

        .hero {
            background: none;
            /* Remove white background */
            padding: 0;
            /* Remove internal padding */
            border-radius: 0;
            /* Remove rounded corners */
            box-shadow: none;
            /* Remove shadow */
            backdrop-filter: none;
            /* Remove blur */
            max-width: 800px;
            /* Wider for better layout */
            width: 100%;
        }

        .logo-icon {
            width: 100px;
            /* Slightly larger */
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            /* Semi-transparent white */
            border-radius: 25px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 38px;
            font-weight: 700;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 44px;
            /* Larger heading */
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
            /* White text instead of gradient */
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            /* Subtle shadow */
        }

        h2 {
            font-size: 28px;
            /* Clearly below h1, above body */
            font-weight: 600;
            /* Slightly lighter than h1 */
            margin-top: 32px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
            letter-spacing: 0.2px;
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 22px;
                margin-top: 24px;
                margin-bottom: 12px;
            }
        }

        .subtitle {
            font-size: 24px;
            /* Larger subtitle */
            color: rgba(255, 255, 255, 0.9);
            /* White with slight transparency */
            margin-bottom: 50px;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        /* Subscribe Form */
        .subscribe-form {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .email-input {
            flex: 1;
            min-width: 250px;
            width: 300px;
            /* Add this - sets consistent width */
            max-width: 400px;
            /* Add this - prevents overflow on mobile */
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .email-input:focus {
            border-color: #667eea;
        }

        .subscribe-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-width: 140px;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .form-note {
            font-size: 14px;
            color: #888;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 15px;
        }


        /*Overrides later.. */
        footer {
            position: fixed;
            /* Change from absolute to fixed */
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            background: rgba(0, 0, 0, 0.1);
            /* Subtle background so it's readable */
            backdrop-filter: blur(10px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .device-grid {
                grid-template-columns: repeat(2, 1fr);
                /* 2 columns on tablet */
                gap: 20px;
                max-width: 400px;
                margin: 30px auto;
            }

            .device-box {
                padding: 20px 15px 15px;
                /* Smaller padding */
            }

            .device-icon {
                width: 32px;
                /* Smaller icons */
                height: 32px;
            }

            .nav-menu {
                gap: 20px;
            }

            .hero {
                margin: 0px;
                padding: 30px 30px;
            }

            h1 {
                font-size: 36px;
            }

            .subtitle {
                font-size: 18px;
            }

            .subscribe-form {
                flex-direction: column;
                align-items: center;
            }

            .email-input {
                width: 100%;
                /* Override to full width on mobile */
                min-width: auto;
            }

            .subscribe-btn {
                padding: 15px 30px;
                background: linear-gradient(135deg, #667eea, #764ba2);
                color: white;
                border: none;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                min-width: 140px;
                max-width: 80%;
                /* Add this - 80% of the flex container */
                width: 240px;
                /* Add this - 80% of your 300px email input */
            }

            /*.clock-floating {
                display: none;
            }*/
        }

        @media (max-width: 480px) {
            .device-grid {
                grid-template-columns: repeat(2, 1fr);
                /* Keep 2 columns on phone */
                gap: 15px;
                margin: 20px auto;
            }

            .device-box {
                padding: 15px 10px 10px;
                /* Even smaller padding */
            }

            .device-icon {
                width: 28px;
                /* Even smaller icons */
                height: 28px;
            }

            .device-label {
                font-size: 12px;
                /* Smaller text */
            }

            .logo {
                font-size: 24px;
            }

            .nav-menu {
                gap: 15px;
            }

            .nav-menu a {
                font-size: 14px;
            }

            h1 {
                font-size: 28px;
            }

            .hero {
                padding: 30px 20px;
            }
        }

        .device-icon {
            width: 40px;
            height: 40px;
            color: rgba(255, 255, 255, 0.9);
            stroke-width: 1.5;
        }


        .device-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 600px;
            margin: 40px auto;
        }

        /*.device-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 30px;
            max-width: 600px;
            margin: 40px auto;
            justify-items: center;
        }*/

        .device-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 30px 20px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex: 0 1 120px;
            /* Don't grow, can shrink, prefer 120px width */
            min-width: 100px;
            /* Minimum width before wrapping */
        }

        .device-icon {
            margin: 0 auto 15px;
            position: relative;
        }

        .device-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 500;
        }

        /* MacBook */
        .laptop-icon {
            width: 50px;
            height: 32px;
        }

        .laptop-screen {
            width: 40px;
            height: 26px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 3px 3px 0 0;
            margin: 0 auto;
            position: relative;
        }

        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 1px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 2px;
            background: #6b7280;
            border-radius: 0 0 1px 1px;
        }

        .laptop-base {
            width: 50px;
            height: 3px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 1px;
            margin-top: 1px;
        }

        /* iPhone */
        .iphone-icon {
            width: 28px;
            height: 48px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            position: relative;
        }

        .iphone-icon::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 3px;
            background: #6b7280;
            border-radius: 2px;
        }

        .iphone-icon::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: #6b7280;
            border-radius: 50%;
        }

        /* iPad */
        .ipad-icon {
            width: 36px;
            height: 48px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 6px;
            position: relative;
        }

        .ipad-icon::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #6b7280;
            border-radius: 50%;
        }

        /* Apple Watch */
        .watch-icon {
            width: 32px;
            height: 38px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            position: relative;
        }

        .watch-icon::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 4px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 2px 2px 0 0;
        }

        .watch-icon::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 4px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 0 0 2px 2px;
        }

        /* Resizable SVG clock */
        .clock {
            --size: clamp(90px, 70vmin, 620px);
            width: var(--size);
            aspect-ratio: 1;
            display: inline-block;
            color: rgba(255, 255, 255, 0.95);
        }

        .clock svg {
            width: 100%;
            height: 100%;
        }

        .clock .face {
            fill: transparent;
            stroke: currentColor;
            stroke-width: .4;
            opacity: .95;
        }

        .clock .tick {
            stroke: currentColor;
            stroke-width: .5;
            opacity: .55;
        }

        .clock .tick.major {
            stroke-width: 1;
            opacity: .95;
        }

        .clock .hand {
            stroke: currentColor;
            stroke-linecap: round;
            transform-origin: 50% 50%;
        }

        .clock .hand.hour {
            stroke-width: 3;
        }

        .clock .hand.minute {
            stroke-width: 2;
            opacity: .9;
        }

        .clock .hand.second {
            stroke: rgba(255, 255, 255, .85);
            stroke-width: 1.5;
        }

        .clock .hub {
            fill: currentColor;
            opacity: .1;
        }

        /* === Clock: size + position (single source of truth) === */

        /* Size (desktop default) */
        .clock {
            --size: clamp(190px, 90vmin, 1300px);
            width: var(--size);
            aspect-ratio: 1;
            display: inline-block;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Position (desktop) */
        .clock-floating {
            position: fixed;
            top: -250px;
            /* your value */
            right: 0;
            /* anchor right */
            transform: translateX(40%);
            /* your value */
            z-index: -999;
            /* your value */
            pointer-events: none;
            opacity: 0.4;
            /* your value */
        }

        /* Mobile overrides */
        @media (max-width: 768px) {
            .clock {
                --size: clamp(190px, 90vmin, 650px);
            }

            .clock-floating {
                top: -100px;
                /* adjusted for smaller clock */
                transform: translateX(30%);
                opacity: 0.4;
            }
        }

        .rotating-title {
            font-size: clamp(28px, 6vw, 44px);
            /* Change from fixed 44px */
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            line-height: 1.2;
            /* Add this */
            min-height: 1.5em;
            /* Add this to prevent jumping */
        }

        .rotating-subtitle {
            font-size: clamp(16px, 3.5vw, 24px);
            /* Add this line */
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            line-height: 1.4;
            /* Add this */
            min-height: 2.8em;
            /* Add this to prevent jumping */
            display: flex;
            /* Add these 3 lines for centering */
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* === New multi-column footer (replaces the old fixed footer) === */

        footer {
            position: relative;
            /* IMPORTANT: no longer fixed */
            bottom: auto;
            left: auto;
            right: auto;
            padding: 48px 0 36px;
            text-align: left;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            background: rgba(0, 0, 0, 0.14);
            backdrop-filter: blur(12px);
            border-top: 1px solid;
            border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent) 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(160px, 1fr));
            gap: 36px;
            align-items: start;
        }

        .footer-col h3 {
            margin: 0 0 14px 0;
            font-size: 18px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
        }

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

        .footer-links li {
            margin: 10px 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s ease;
        }

        .footer-links a:hover {
            opacity: 0.95;
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 34px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            padding-top: 18px;
        }

        .footer-bottom .muted {
            font-size: 12px;
            opacity: 0.7;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .footer-social a:hover {
            opacity: 0.95;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: repeat(2, minmax(160px, 1fr));
            }
        }

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

        /* Footer: iPhone tuning */
        @media (max-width: 520px) {
            footer {
                padding: 34px 0 26px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 26px 22px;
                /* row gap, column gap */
            }

            .footer-col h3 {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .footer-links li {
                margin: 8px 0;
            }

            .footer-links a {
                font-size: 14px;
                line-height: 1.35;
                display: inline-block;
                max-width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .footer-bottom {
                margin-top: 22px;
                padding-top: 14px;
                justify-content: center;
                text-align: center;
            }

            .footer-bottom .muted {
                width: 100%;
            }

            .footer-social {
                margin-top: 10px;
            }
        }

        /* === Privacy Summary Box === */

.privacy-summary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 36px 0 44px;
    color: rgba(255, 255, 255, 0.92);
}

.privacy-summary h2 {
    margin-top: 0;
}

.privacy-summary p {
    margin: 12px 0;
    line-height: 1.55;
}

.privacy-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 32px;
    margin-top: 20px;
}

.privacy-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-summary li {
    margin: 8px 0;
    line-height: 1.4;
}

.privacy-summary strong {
    color: rgba(255, 255, 255, 0.98);
}

/* Footer note */
.privacy-summary-note {
    margin-top: 22px;
    font-size: 14px;
    opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
    .privacy-summary {
        padding: 22px 20px;
    }

    .privacy-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

p,
li {
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media Icons */
.footer-social img {
    filter: brightness(0) invert(1);
    vertical-align: middle;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover img {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* === Error Page Styles === */

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 30px;
    line-height: 1;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 20px 0;
}

.error-message {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.error-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.error-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.error-btn.primary:hover {
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-message {
        font-size: 16px;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-btn {
        width: 80%;
        max-width: 250px;
    }
}