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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    margin-bottom: 40px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.social-proof {
    display: inline-block;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-top: 20px;
}

.stars {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.members {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.phone-mockup {
    flex: 1;
    max-width: 400px;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.cta-section {
    flex: 1;
    max-width: 500px;
}

h2 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: Georgia, serif;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-apple {
    background: #ffffff;
    color: #000000;
    border: none;
}

.btn-apple:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-email {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-email:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.terms {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.terms a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.terms a:hover {
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 968px) {
    main {
        flex-direction: column;
        gap: 40px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 42px;
        text-align: center;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .cta-section {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 36px;
    }

    .social-proof {
        padding: 15px 30px;
    }

    .stars {
        font-size: 20px;
    }

    .members {
        font-size: 12px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}
