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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
        color: #333;
        background: #0f0f0f;
        overflow-x: hidden;
    }

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

    /* Add to styles.css */
    .static-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem; /* top padding clears fixed nav */
    color: #b0b0b0;
    line-height: 1.6;
    }

    .static-page h1 {
    color: #c3fb74;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    }

    .static-page h2 {
    color: #a8e6cf;
    font-size: 1.5rem;
    margin: 2rem 0 0.5rem;
    }

    .static-page p, 
    .static-page li {
    margin-bottom: 1rem;
    }


    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #c3fb74;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .logo:hover {
        opacity: 0.8;
    }

    .nav-cta {
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        color: #0f0f0f;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="c" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23c3fb74" stop-opacity="0.1"/><stop offset="100%" stop-color="%23c3fb74" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23c)" /></svg>') center/cover;
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.6; }
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-text .highlight {
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-text p {
        font-size: 1.25rem;
        color: #b0b0b0;
        margin-bottom: 2rem;
        max-width: 500px;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        color: #0f0f0f;
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(195, 251, 116, 0.3);
    }

    .btn-secondary {
        background: transparent;
        color: #ffffff;
        padding: 1rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        border-color: #c3fb74;
        color: #c3fb74;
        transform: translateY(-3px);
    }

    .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-phone {
        width: 300px;
        animation: floatPhone 5s ease-in-out infinite;
    }

    /* Float + tilt animation */
    @keyframes floatPhone {
        0%, 100% {
            transform: translateY(0) rotate(-1deg);
        }
        50% {
            transform: translateY(-15px) rotate(1deg);
        }
    }


    .phone-mockup {
        width: 300px;
        height: 600px;
        background: #000;
        border-radius: 30px;
        padding: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        position: relative;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #0f0f0f;
        font-weight: bold;
        position: relative;
        overflow: hidden;
    }

    .app-demo {
        text-align: center;
        padding: 2rem;
    }

    .platform-icons {
        display: flex;
        justify-content: space-around;
        margin: 2rem 0;
        width: 100%;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        animation: bounce 2s ease-in-out infinite;
    }

    .platform-icon:nth-child(1) { background: #1DB954; animation-delay: 0s; }
    .platform-icon:nth-child(2) { background: #FF0000; animation-delay: 0.2s; }
    .platform-icon:nth-child(3) { background: #000; animation-delay: 0.4s; }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }

    /* Features Section */
    .features {
        padding: 6rem 0;
        background: #1a1a1a;
    }

    .section-title {
        text-align: center;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #b0b0b0;
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #c3fb74;
        box-shadow: 0 20px 40px rgba(195, 251, 116, 0.1);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: #b0b0b0;
        line-height: 1.6;
    }

    /* How It Works */
    .how-it-works {
        padding: 6rem 0;
        background: #0f0f0f;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }

    .step {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        color: #0f0f0f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 1.5rem;
    }

    .step h3 {
        font-size: 1.3rem;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .step p {
        color: #b0b0b0;
    }

    /* Social Proof */
    .social-proof {
        padding: 6rem 0;
        background: #1a1a1a;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .stat h3 {
        font-size: 3rem;
        font-weight: bold;
        color: #c3fb74;
        margin-bottom: 0.5rem;
    }

    .stat p {
        color: #b0b0b0;
        font-size: 1.1rem;
    }

    /* CTA Section */
    .final-cta {
        padding: 6rem 0;
        background: linear-gradient(135deg, #c3fb74 0%, #a8e6cf 100%);
        color: #0f0f0f;
        text-align: center;
    }

    .final-cta h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .final-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.8;
    }

    .app-badges {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .app-badge {
        height: 60px;
        transition: transform 0.3s ease;
    }

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

    /* Support form styling */
    form {
    margin-top: 2rem;
    }

    form p {
    margin-bottom: 1rem;
    }

    input[type="text"],
    input[type="email"],
    textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    }

    textarea {
    resize: vertical;
    }

    input:focus,
    textarea:focus {
    outline: none;
    border-color: #c3fb74;
    }

    button[type="submit"] {
    margin-top: 0.5rem;
    cursor: pointer;
    }

    .hidden {
        display: none !important;
    }


    form [name="bot-field"] {
        display: none !important;
        visibility: hidden;
        height: 0;
        width: 0;
        position: absolute;
        left: -9999px;
    }



    /* Footer */
    footer {
        padding: 3rem 0;
        background: #0f0f0f;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section h4 {
        color: #ffffff;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .footer-section a {
        color: #b0b0b0;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #c3fb74;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #b0b0b0;
    }

    /* ============================= */
    /* Large Tablets / Small Laptops */
    /* Width ≤ 992px                  */
    /* ============================= */
    @media (max-width: 992px) {
        .hero {
            padding-top: 6rem; /* offset fixed nav */
            min-height: auto;
        }
        
        .hero-content {
            grid-template-columns: 1fr 1fr; /* Keep 2-column but reduce spacing */
            gap: 2rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            max-width: 90%;
        }

        .phone-mockup {
            width: 260px;
            height: 520px;
        }
    }

    /* ============================= */
    /* Tablets / Landscape Phones    */
    /* Width ≤ 768px                  */
    /* ============================= */
    @media (max-width: 768px) {
        .hero-content {
            grid-template-columns: 1fr; /* Stack */
            text-align: center;
            gap: 2rem;
        }

        .hero-text h1 {
            font-size: 2.2rem;
            line-height: 1.25;
        }

        .hero-text p {
            font-size: 1rem;
            max-width: 95%;
            margin: 0 auto 1.5rem;
        }

        .phone-mockup {
            width: 220px;
            height: 440px;
            margin: 0 auto;
        }

        .cta-buttons {
            justify-content: center;
            flex-wrap: wrap;
        }
        .static-page {
            padding: 6rem 1.5rem 3rem;
        }
        .static-page h1 {
            font-size: 1.6rem;
        }
        .static-page h2 {
            font-size: 1.2rem;
        }
    }

    /* ============================= */
    /* Large Mobile / Small Phones   */
    /* Width ≤ 576px                  */
    /* ============================= */
    @media (max-width: 576px) {
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* top align content */
            padding-top: 6rem;  /* clear fixed navbar */
            padding-bottom: 3rem; /* extra space to prevent clipping */
            min-height: auto; /* let it grow naturally */
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            word-wrap: break-word; /* prevent overflow on tiny screens */
        }

        .hero-text p {
            font-size: 0.95rem;
            max-width: 90%;
            margin: 0 auto 1.5rem;
        }

        .phone-mockup {
            width: 200px;
            height: 400px;
            margin: 0 auto;
        }
    }


    /* ============================= */
    /* Extra Small Phones / XS       */
    /* Width ≤ 400px                  */
    /* ============================= */
    @media (max-width: 400px) {
        .hero-text h1 {
            font-size: 1.6rem;
        }

        .phone-mockup {
            width: 180px;
            height: 360px;
        }
        .static-page {
            padding: 5rem 1rem 2.5rem;
        }
        .static-page h1 {
            font-size: 1.4rem;
        }
    }
