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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #002E6D 0%, #0066B3 50%, #4A90C8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Headlines */
.headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge span {
    font-weight: 600;
    font-size: 1rem;
}

/* Email Form */
.email-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 4rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    transition: all 0.3s ease;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.email-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: #ffffff;
    color: #002E6D;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.email-form button:active {
    transform: translateY(0);
}

.email-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Success Message */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    margin-bottom: 4rem;
}

.success-message svg {
    color: #4ade80;
    animation: checkmark 0.5s ease-in-out;
}

.success-message p {
    font-size: 1.125rem;
    font-weight: 500;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Social Proof */
.social-proof {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-text {
    font-size: 0.875rem;
    opacity: 0.7;
    font-style: italic;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.footer a:hover {
    border-bottom-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .email-form button {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .headline {
        font-size: 1.5rem;
    }

    .subheadline {
        font-size: 0.9rem;
    }
}
