:root {
    --primary-blue: #0077be;
    --sea-blue: #009dc4;
    --sand-gold: #f4d03f;
    --sunset-orange: #ff6b6b;
    --text-dark: #333333;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--sea-blue), var(--sand-gold));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}





.site-header {
    text-align: center;
    padding: 2rem 1rem 0;
    /* No solid background to avoid the "white area" issue */
}

.brand-name {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.3;
    padding-top: 0.2em;
    /* Extra space for accents */

    /* Vibrant Sunset Gradient */
    background: linear-gradient(to bottom right, var(--sunset-orange), var(--sand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Drop shadow for "pop" without solid text shadow issues on transparent text */
    filter: drop-shadow(0 4px 10px rgba(255, 107, 107, 0.4));

    /* Subtle animation */
    animation: fadeInDown 0.8s ease-out;
}

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

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

.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
    gap: 3rem;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.status-pill {
    display: inline-block;
    background: var(--sunset-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-blue), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.visuals {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: auto;
    aspect-ratio: 4/3;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    color: white;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #666;
    background: white;
}

@media (min-width: 768px) {
    body {
        padding: 2rem;
    }

    .visuals {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 5rem;
    }

    .visuals {
        grid-template-columns: 1fr;
    }

    .card:first-child {
        transform: rotate(-3deg);
        z-index: 1;
    }

    .visuals:hover .card:first-child {
        transform: rotate(-5deg) translateY(-10px);
    }
}