/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #06080D;
    --text-color: #ffffff;
    --accent-color: #00f2ff;
    /* Cyan/Teal start */
    --accent-secondary: #0078ff;
    /* Blue/Purple mid */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --pill-bg: #f0f0f0;
    --pill-text: #06080D;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUND GLOWS */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, rgba(6, 8, 13, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: pulseGlow 10s infinite alternate;
}

.background-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.06) 0%, rgba(6, 8, 13, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* LOGO */
.logo-container {
    margin-bottom: 3.5rem;
    /* Increased spacing */
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    /* Pure white as requested */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    /* Soft white glow */
}

.logo-mun {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.logo-llc {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.8em;
    letter-spacing: 2px;
}

/* GLASS CARD */
.button-container,
.content-card {
    /* Shared logic if needed, but keeping separate */
}

.content-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 1rem;
    line-height: 1;
}

.announcement-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* LEGAL NOTE */
.legal-note {
    font-size: 0.9rem;
    /* Slightly clearer */
    color: #ff9d00;
    /* Orange tone as requested */
    max-width: 80%;
    margin-top: -1rem;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(255, 157, 0, 0.3);
    /* Subtle orange glow */
}

/* CONTACT */
.contact-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-pill {
    background: var(--pill-bg);
    color: var(--pill-text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* FOOTER */
.footer {
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.sub-footer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .container {
        padding: 4rem 1rem;
        gap: 2rem;
    }

    .logo-container {
        font-size: 2.8rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .announcement-text {
        font-size: 1rem;
    }
}