:root {
    --primary: #006466;
    --primary-dark: #004B4C;
    --primary-light: #00797b;
    --primary-lighter: #00ACAD;
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-lighter: rgba(255, 255, 255, 0.6);
    --accent: #FFD166;
    --accent-light: #FFE4A3;
    --form-bg: #FFFFFF;
    --form-text: #111827;
    --form-text-light: #4B5563;
    --border-light: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text-white);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1375px;
    margin: 0 auto;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Background Elements */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 150, 153, 0.5), transparent 70%);
    z-index: 0;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 12px;
    width: 36px;
    height: 36px;
    background-color: var(--text-white);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 132px;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
}

.coming-soon-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 125px;
}

.headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 209, 102, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.countdown-container {
    /*margin: 0 auto 40px;*/
    padding: 40px;
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 100, 102, 0.3));*/
    /*border-radius: 16px;*/
    /*backdrop-filter: blur(5px);*/
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    text-align: center;
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);*/
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.countdown-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-box {
    flex: 1;
    min-width: 120px;
    width: 100%;
    max-width: 250px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 24px 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border-radius: 12px;
    pointer-events: none;
}

.countdown-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-date {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 20px;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-message {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--accent-light);
}

.description {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 60px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.2s;
    font-size: 18px;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Form */
.waitlist-form {
    background-color: var(--form-bg);
    color: var(--form-text);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--form-text);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--form-text);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 100, 102, 0.15);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 100, 102, 0.15);
}

.form-button {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 16px;
    font-size: 14px;
    color: var(--form-text-light);
    text-align: center;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 40px;
    color: var(--text-lighter);
    font-size: 14px;
}

/* Decorative Elements */
.shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -100px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .header {
        margin-bottom: 30px;
    }

    .headline {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .waitlist-form {
        padding: 30px 20px;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-box {
        padding: 20px 10px;
        min-width: calc(50% - 8px);
    }

    .countdown-number {
        font-size: 42px;
    }

    .countdown-label {
        font-size: 12px;
    }
}

/* Success State (Initially Hidden) */
.success-state {
    display: none;
    text-align: center;
    background-color: var(--form-bg);
    color: var(--form-text);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.success-message {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--form-text-light);
}

.success-icon {
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    background-color: var(--primary-lighter);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

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

.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-text {
    margin-right: 8px;
}

@media (max-width: 480px) {
    .shape-1 {
        display: none;
    }
}
