/* Reset and base styles */
* {
    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: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://res.cloudinary.com/dlw9peu4t/image/upload/f_auto,q_auto,w_auto,dpr_auto,c_fill,g_auto/v1754388933/u8786887351_Vector-style_abstract_landscape_illustration_with_87c91165-3e3b-4140-9981-37dcf8ce854b_1-for-svg_2x_upscale_qgddv0.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundZoom 30s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* Overlay for better text readability */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
}

/* Animated Clouds */
.cloud {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* Container */
.container {
    max-width: 800px;
    margin: 5% auto 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-section {
    text-align: center;
    width: 100%;
}

/* Logo Styling */
.logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Hero Description */
.hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1e293b;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
    text-align: center;
}

/* Hidden text for SEO */
.hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Title and Subtitle (hidden for SEO) */
.title {
    font-size: 4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #006ba6, #006ba6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.launch-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nowrap {
    white-space: nowrap;
}

/* Three Waves Section */
.three-waves {
    max-width: 800px;
    margin: 2rem auto 3rem auto;
    width: 100%;
    position: relative;
}

.waves-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Timeline container for each wave */
.wave-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

/* Vertical timeline line */
.wave-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 43px;
    bottom: -3rem;
    width: 3px;
    background: linear-gradient(to bottom, #cbd5e1, #e2e8f0);
}

/* Remove line after last item */
.wave-item:last-child::before {
    display: none;
}

/* Timeline marker dot */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 3px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-marker::after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
}

/* Past marker (completed) */
.timeline-marker.past {
    background: #94a3b8;
    border: 3px solid white;
}

.timeline-marker.past::after {
    background: #94a3b8;
}

/* Current marker (active) */
.timeline-marker.current {
    background: #00bf63;
    border: 3px solid white;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-marker.current::after {
    background: #00bf63;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 191, 99, 0.4);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(0, 191, 99, 0);
    }
}

/* Future marker */
.timeline-marker.future {
    background: #e2e8f0;
    border: 3px solid white;
}

.timeline-marker.future::after {
    background: #cbd5e1;
}

/* Wave Title Row */
.wave-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.wave-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.wave-title {
    background: #006ba6;
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    padding: 0 2rem;
    display: inline-block;
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
}

.wave-title.current {
    background: #00bf63;
}

.wave-title.future {
    background: #006ba6;
    opacity: 0.85;
}

.wave-subtitle-dash {
    font-weight: 400;
    font-size: 1.125rem;
    color: white;
    opacity: 0.95;
}

.wave-subtitle-inline {
    font-weight: 400;
    font-size: 1.125rem;
    color: white;
    opacity: 0.95;
    white-space: nowrap;
    display: inline-block;
}

.wave-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.wave-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.wave-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.wave-status {
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    background: rgba(148, 163, 184, 0.6);
    color: #334155;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.wave-status.currently {
    background: rgba(0, 191, 99, 0.6);
    color: #006633;
    border: 1px solid rgba(0, 191, 99, 0.7);
}

.wave-status.coming-soon {
    background: rgba(0, 107, 166, 0.6);
    color: #003d5c;
    border: 1px solid rgba(0, 107, 166, 0.7);
}

.contractor-logos {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.contractor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
}

.contractor-logo.bruggeman-wide {
    grid-column: span 3;
}

.contractor-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

.wave-button {
    display: block;
    background: #00bf63;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem auto 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 107, 166, 0.2);
    width: fit-content;
}

.wave-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 107, 166, 0.3);
}

.wave-form {
    margin-top: 1.25rem;
}

.wave-form-group {
    display: flex;
    gap: 0.75rem;
}

.wave-form-group input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
    transition: all 0.3s ease;
}

.wave-form-group input:focus {
    outline: none;
    border-color: #006ba6;
    box-shadow: 0 0 0 3px rgba(0, 107, 166, 0.1);
}

.wave-form-group input::placeholder {
    color: #94a3b8;
}

.wave-button-submit {
    padding: 0.875rem 2rem;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wave-button-submit:hover {
    background: #334155;
    transform: translateY(-1px);
}

/* Form Styles */
.early-access-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input {
    flex: 2;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: #006ba6;
    box-shadow: 0 0 0 3px rgba(0, 107, 166, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.form-group input::placeholder {
    color: #6b7280;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #006ba6, #006ba6);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 107, 166, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 107, 166, 0.3);
    background: linear-gradient(135deg, #006ba6, #006ba6);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(0, 191, 99, 0.1);
    color: #00bf63;
    border: 1px solid rgba(0, 191, 99, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

.form-note {
    font-size: 0.675rem;
    color: #6b7280;
    margin-top: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Footer */
.home-footer {
    text-align: center;
    padding: 20px;
    margin-top: 2rem;
}

.footer-link {
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-link:hover {
    color: #006ba6;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 107, 166, 0.15);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 500px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .launch-text {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .waves-title {
        font-size: 2rem;
    }
    
    .wave-item {
        padding-left: 50px;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker {
        width: 32px;
        height: 32px;
    }
    
    .timeline-marker::after {
        width: 12px;
        height: 12px;
    }
    
    .wave-item::before {
        left: 15px;
    }
    
    .wave-title {
        font-size: 1.5rem;
        padding: 0.4rem 0.875rem;
    }
    
    .wave-subtitle-dash {
        font-size: 1rem;
    }
    
    .wave-subtitle-inline {
        font-size: 1rem;
        white-space: normal;
    }
    
    .wave-title-row {
        gap: 0.75rem;
    }
    
    .wave-card {
        padding: 1.5rem;
    }
    
    .wave-description {
        font-size: 0.9375rem;
    }
    
    .contractor-logos {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .contractor-logo {
        grid-column: span 2;
    }
    
    .contractor-logo img {
        max-height: 60px;
    }
    
    .contractor-logo.bruggeman-wide {
        grid-column: span 3;
    }
    
    .wave-form-group {
        flex-direction: column;
    }
    
    .wave-button-submit {
        width: 100%;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 400px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .launch-text {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .waves-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .wave-item {
        padding-left: 45px;
        margin-bottom: 2rem;
    }
    
    .timeline-marker {
        width: 28px;
        height: 28px;
    }
    
    .timeline-marker::after {
        width: 10px;
        height: 10px;
    }
    
    .wave-item::before {
        left: 13px;
        bottom: -2rem;
    }
    
    .wave-title-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .wave-title-wrapper {
        flex: 1;
    }
    
    .wave-title {
        font-size: 1.125rem;
        padding: 0.4rem 0.75rem;
        display: block;
    }
    
    .wave-subtitle-dash {
        display: none;
    }
    
    .wave-subtitle-inline {
        font-size: 0.875rem;
        display: block;
        margin-top: 0.25rem;
        white-space: normal;
    }
    
    .wave-card {
        padding: 1.25rem;
    }
    
    .wave-description {
        font-size: 0.875rem;
    }
    
    .wave-status {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .contractor-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .contractor-logo {
        grid-column: span 2;
    }
    
    .contractor-logo.bruggeman-wide {
        grid-column: span 2;
    }
    
    .contractor-logo img {
        max-height: 50px;
    }
    
    .wave-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .wave-button-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .home-footer {
        padding: 16px;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
} 