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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Variables */
:root {
    --accent-color: #FFD700;
    --accent-hover: #FFC700;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #333333;
    --gradient-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo .accent {
    color: var(--accent-color);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
}



/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .accent {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}





/* Signup Section */
.signup-section {
    margin-bottom: 50px;
}

.signup-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.signup-section > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-secondary);
}

.cta-button {
    background: var(--accent-color);
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
    padding: 40px 0;
}

.benefits-section h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-color);
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    line-height: 1.4;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.final-thoughts {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.final-thoughts h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.final-thoughts p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.proof-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Navigation */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0 40px 0;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 16px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.cta-section > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Guarantee Section */
.guarantee-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    padding: 20px 30px;
    border-radius: 12px;
    color: #22c55e;
}

.guarantee-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefits-section h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    .benefits-section h2 {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 