:root {
    --primary-color: #013DA5;
    --primary-dark: #012c7a;
    --primary-light: #e3f2fd;
    --success-color: #10b981;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-gray) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Content */
.content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.headline-sub {
    font-size: 36px;
    color: var(--text-secondary);
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Audience Section */
.audience-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.55s both;
}

.audience-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.audience-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 61, 165, 0.15);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.audience-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Preview */
.features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.feature-pill {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: 16px;
    color: white;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0;
    opacity: 0.95;
    font-size: 15px;
}

.benefits-list strong {
    font-weight: 600;
}

/* Form */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.early-access-form h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 61, 165, 0.3);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.success-message p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.success-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Alternative Contact */
.alternative-contact {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.alternative-contact p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.contact-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Social Proof */
.social-proof {
    text-align: center;
    padding: 40px;
    background: var(--bg-gray);
    border-radius: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.social-proof-text {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-proof-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.founder-name {
    font-weight: 600;
    color: var(--text-secondary);
    font-style: italic;
}

/* Timeline */
.timeline {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.9s both;
}

.timeline h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.timeline-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.timeline-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.timeline-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }
    
    .headline-sub {
        font-size: 24px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
    }
}
