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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.logo {
    width: 60px;
    height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

main {
    flex: 1;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sub-headline {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.body-text {
    font-size: 14px;
    color: #ccc;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-it-works {
    margin-bottom: 40px;
}

.how-it-works h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    color: #999;
    font-size: 14px;
}

.waitlist-form {
    text-align: center;
    margin-bottom: 40px;
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

#email {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #333;
    background-color: transparent;
    color: #fff;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

#email:focus {
    outline: none;
    border-color: #fff;
}

#email::placeholder {
    color: #666;
}

button[type="submit"] {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

button[type="submit"]:active {
    transform: translateY(0);
}

.social-proof {
    color: #999;
    font-size: 13px;
    max-width: 400px;
    margin: 0 auto;
}

.trust-elements {
    margin: 30px 0;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    color: #fff;
    font-weight: 600;
}

.testimonial-role {
    color: #666;
    font-size: 14px;
}

footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        margin-bottom: 20px;
    }
    
    .logo {
        width: 50px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .sub-headline {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .body-text {
        font-size: 13px;
    }
    
    .hero {
        margin-bottom: 30px;
    }
    
    .how-it-works {
        margin-bottom: 30px;
    }
    
    .how-it-works h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .steps::-webkit-scrollbar {
        height: 4px;
    }
    
    .steps::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .steps::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .step {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 15px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .step h3 {
        font-size: 14px;
    }
    
    .step p {
        font-size: 12px;
    }
    
    #waitlist-form {
        width: 100%;
    }
    
    #email {
        width: 100%;
        padding: 10px 16px;
    }
    
    button[type="submit"] {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .social-proof {
        font-size: 12px;
    }
    
    .trust-elements {
        margin: 40px 0;
    }
    
    .trust-badges {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .trust-badge {
        font-size: 12px;
    }
    
    .trust-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial p {
        font-size: 14px;
    }
    
    .testimonial-role {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}