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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0d243c;
    background: #7eae67;
    min-height: 100vh;
}

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

.header {
    padding: 2rem 0;
    text-align: center;
}

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

.logo-img {
    height: 100px;
    width: auto;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(13, 36, 60, 0.3);
    margin: 0;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 70px rgba(13, 36, 60, 0.15);
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0d243c;
    background: #0051bf;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0051bf;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #7eae67;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.waitlist-section {
    background: linear-gradient(135deg, rgba(255, 128, 28, 0.05), rgba(0, 81, 191, 0.05));
    border: 2px solid rgba(255, 128, 28, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.waitlist-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0d243c;
    margin-bottom: 0.5rem;
}

.waitlist-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid rgba(174, 217, 79, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #0d243c;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: #ff801c;
    box-shadow: 0 0 0 3px rgba(255, 128, 28, 0.1);
    background: rgba(255, 255, 255, 1);
}

.email-input::placeholder {
    color: #7eae67;
    opacity: 0.7;
}

.submit-button {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #ff801c, #ffae6d);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ffae6d, #ff801c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 128, 28, 0.3);
}

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

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    animation: spin 1s linear infinite;
    font-size: 1.2em;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
    min-height: 20px;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(174, 217, 79, 0.2);
    color: #7eae67;
    border: 1px solid rgba(174, 217, 79, 0.4);
}

.form-message.error {
    background: rgba(255, 128, 28, 0.1);
    color: #ff801c;
    border: 1px solid rgba(255, 128, 28, 0.3);
}

.disclaimer {
    font-size: 0.85rem;
    color: #7eae67;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
}

.contact-section {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(126, 174, 103, 0.2);
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0d243c;
    margin-bottom: 0.5rem;
}

.contact-description {
    font-size: 1rem;
    color: #7eae67;
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ff801c;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid rgba(255, 128, 28, 0.3);
    border-radius: 12px;
    background: rgba(255, 128, 28, 0.05);
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ff801c, #ffae6d);
    border-color: #ff801c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 128, 28, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(174, 217, 79, 0.1), rgba(255, 174, 109, 0.1));
    border: 2px solid rgba(255, 128, 28, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 128, 28, 0.2);
    border-color: rgba(255, 128, 28, 0.3);
}

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

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d243c;
    margin-bottom: 0.8rem;
}

.feature p {
    color: #7eae67;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(13, 36, 60, 0.3);
}

/* Accent elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff801c, #ffae6d, #aed94f, #7eae67, #0051bf);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.1;
}

.hero-section {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

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

    .feature {
        padding: 1.5rem 1rem;
    }

    .waitlist-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .email-input {
        min-width: auto;
        width: 100%;
    }

    .submit-button {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .logo-img {
        height: 40px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .waitlist-title {
        font-size: 1.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    .contact-title {
        font-size: 1.2rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-section {
    animation: fadeInUp 0.8s ease-out;
}

.feature {
    animation: fadeInUp 0.8s ease-out;
}

.feature:nth-child(1) {
    animation-delay: 0.1s;
}

.feature:nth-child(2) {
    animation-delay: 0.3s;
}

.feature:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature:nth-child(2) .feature-icon {
    animation-delay: 1s;
}

.feature:nth-child(3) .feature-icon {
    animation-delay: 2s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 36, 60, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff801c, #ffae6d);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffae6d, #ff801c);
}
