:root {
    --primary-color: #1b3786;
    --primary-dark: #0f2557;
    --primary-light: #2d4a9e;
    --accent-color: #8ebe7e;
    --accent-dark: #6da55f;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --background-light: #f3f4f7;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(142, 190, 126, 0.12) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.waitlist-header {
    padding: 24px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #27357e;
    /* Brand blue */
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: baseline;
}

.logo-dot {
    font-size: 32px;
    /* Larger for prominence */
    color: #97bc84;
    /* Brand accent green */
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.waitlist-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px 80px;
}

.waitlist-container {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

/* 
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(27, 55, 134, 0.1), rgba(142, 190, 126, 0.2));
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(27, 55, 134, 0.2);
} */

.waitlist-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
}

.waitlist-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;

}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    margin-bottom: 24px;
}

.learn-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.learn-more-btn i {
    font-size: 16px;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Groups */
.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 55, 134, 0.1);
}

.form-input::placeholder {
    color: var(--text-lighter);
}

/* Consent Group */
.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 4px;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.consent-label {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

/* Waitlist Button */
.waitlist-button {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-family: 'Montserrat', sans-serif;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(27, 55, 134, 0.3);
}

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

/* Incentive Badge */
.incentive-badge {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    /* background: linear-gradient(135deg, rgba(142, 190, 126, 0.15), rgba(142, 190, 126, 0.25)); */
    color: var(--primary-dark);
    /* padding: 16px 24px; */
    border-radius: 12px;
    font-size: 14px;
    /* border: 1px solid rgba(142, 190, 126, 0.3); */
}

.coin-emoji {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--text-dark);
    color: white;
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 18px;
}

.modal-header {
    padding: 48px 48px 32px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-right: 40px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.modal-body {
    padding: 32px 48px 48px;
}

.feature-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.feature-section:last-of-type {
    border-bottom: none;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feature-icon-modal {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-section ul {
    list-style: none;
    padding-left: 0;
}

.feature-section li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.modal-disclaimer {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.modal-disclaimer i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.modal-disclaimer span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.modal-cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(27, 55, 134, 0.3);
}

/* Confirmation Message */
.confirmation-message {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(229, 231, 235, 0.5);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.confirmation-icon i {
    font-size: 40px;
    color: white;
}

.confirmation-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.confirmation-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.confirmation-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--background-light);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.confirmation-email i {
    color: var(--text-light);
}

.confirmation-email span {
    font-weight: 600;
    color: var(--text-dark);
}

.confirmation-footer {
    font-size: 14px;
    color: var(--text-lighter);
    line-height: 1.8;
}

/* Footer */
.waitlist-footer {
    padding: 32px;
    text-align: center;
    color: var(--text-lighter);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .waitlist-title {
        font-size: 40px;
    }

    .waitlist-description {
        font-size: 18px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .confirmation-message {
        padding: 48px 32px;
    }

    .confirmation-title {
        font-size: 26px;
    }

    .modal-header {
        padding: 36px 32px 24px;
    }

    .modal-body {
        padding: 24px 32px 36px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .waitlist-header {
        padding: 20px 20px;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    .waitlist-hero {
        padding: 24px 20px 60px;
    }

    .waitlist-title {
        font-size: 32px;
    }

    .waitlist-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .form-container {
        padding: 24px 20px;
    }

    .confirmation-message {
        padding: 40px 24px;
    }

    .confirmation-icon {
        width: 64px;
        height: 64px;
    }

    .confirmation-icon i {
        font-size: 32px;
    }

    .confirmation-title {
        font-size: 24px;
    }

    .confirmation-text {
        font-size: 16px;
    }

    .modal-header {
        padding: 32px 24px 20px;
    }

    .modal-body {
        padding: 20px 24px 32px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-subtitle {
        font-size: 15px;
    }

    .feature-section h3 {
        font-size: 18px;
    }

    .feature-section h4 {
        font-size: 15px;
    }

    .feature-icon-modal {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}