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

:root {
    /* Color Palette from Brand Guide */
    --primary: #00A8A8;
    --primary-dark: #008F8F;
    --primary-light: #9CE6F6;
    --dark-navy: #0A1A2F;
    --soft-grey: #F2F4F7;
    --white: #FFFFFF;
    --border-grey: #DDE2E5;
    --text-primary: #0A1A2F;
    --text-secondary: #4A4F55;
    --text-muted: #8A8F95;
    
    /* Utility Colors */
    --success: #00C49A;
    --warning: #FFC857;
    --error: #E34F4F;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 26, 47, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 26, 47, 0.1);
    --shadow-lg: 0 8px 30px rgba(10, 26, 47, 0.12);
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-grey);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--dark-navy);
}

.logo-it {
    color: var(--primary);
    font-weight: 800;
}

/* Main Content Styles */
.main-content {
    padding: var(--space-xxl) 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.text-section {
    padding-right: var(--space-lg);
}

.tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.main-heading {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.main-heading .line {
    display: block;
    color: var(--text-primary);
}

.main-heading .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.main-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    opacity: 0.3;
    z-index: -1;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 90%;
}

/* Countdown Styles */
.countdown-container {
    margin-top: var(--space-xl);
}

.countdown-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    background-color: var(--soft-grey);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    min-width: 80px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Form Section Styles */
.form-section {
    display: flex;
    justify-content: center;
}

.form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-grey);
    width: 100%;
    max-width: 420px;
}

.form-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-xs);
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

#notify-form {
    margin-bottom: var(--space-lg);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-md);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--white);
    border: 1.5px solid var(--border-grey);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-border {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.privacy-note i {
    color: var(--primary);
}

/* Footer Styles */
.footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-grey);
    margin-top: var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link i {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--soft-grey);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bg-element-1 {
    width: 600px;
    height: 600px;
    background-color: var(--primary);
    top: -300px;
    right: -200px;
}

.bg-element-2 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-light);
    bottom: -150px;
    left: -100px;
}

.bg-element-3 {
    width: 200px;
    height: 200px;
    background-color: var(--dark-navy);
    top: 50%;
    left: 10%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: var(--space-xl);
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .text-section {
        padding-right: 0;
        text-align: center;
    }
    
    .description {
        max-width: 100%;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .contact-info {
        align-items: center;
    }
    
    .bg-element-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -150px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .countdown {
        gap: var(--space-xs);
    }
    
    .countdown-number {
        font-size: 1.8rem;
        min-width: 60px;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .form-card {
        padding: var(--space-lg);
    }
    
    .bg-element-2 {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -80px;
    }
}