* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ddfff7 0%, #ddfff7 30%, #93e1d8 50%, #ffa69e 70%, #aa4465 85%, #462255 100%);
    font-family: 'Roboto Condensed', sans-serif;
}

.logo-header {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    transition: all 0.3s ease;
    background-color: #462255;
    border-radius: 16px;
    padding: 1.75rem 2.5rem;
}



.content {
    min-height: 100vh;
}
.bottombar {
    width: 100%;
    height: 25px;
    background-color: #462255;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottombar .info {
    color: #93e1d8;
}
.bottombar .info a {
    color: #93e1d8;
}
h1 {
    font-size: 4.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #ddfff7, #93e1d8, #ffa69e, #aa4465);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
}
.state {
    font-weight: 700;
}
.divider {
    width: 340px;
    border: none;
    border-top: 2px solid #93e1d8;
    margin: 0.75rem 0;
    transition: all 0.3s ease;
}
.payoff {
    color: #93e1d8;
    font-size: 2rem;
    transition: all 0.3s ease;
}
.info {
    color: #ddfff7;
    font-size: 0.8rem;
    line-height: 1;
}
.info a {
    color: #ddfff7;
    text-decoration: none;
}
.info a:hover {
    text-decoration: underline;
}

.services {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
    z-index: 99;
}
.service-card {
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    max-width: 300px;
    flex: 1;
    backdrop-filter: blur(4px);
}
.service-card h2 {
    color: #462255;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #462255;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cloud {
    position: fixed;
    top: 30%;
    transform: translateY(-50%);
    width: 400px;
    opacity: 1;
    z-index: 101;
    pointer-events: none;
    animation: float-across 30s linear infinite;
}

@keyframes float-across {
    0% { left: -220px; }
    100% { left: 100vw; }
}

/* Mobile overrides */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .divider {
        width: 250px;
    }

    .payoff {
        font-size: 1.5rem;
    }

    .logo-header {
        max-width: 90vw;
    }

    .cloud {
        width: 200px;
    }

    .services {
        position: relative;
        bottom: auto;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        margin-top: 60vh;
    }

    .service-card {
        max-width: 400px;
    }
}

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

    .divider {
        width: 180px;
    }

    .payoff {
        font-size: 1.2rem;
    }
}
