:root {
    --primary-color: #4a5d4e; /* Sage green */
    --primary-dark: #364539;
    --accent: #b5c2a1;
    --text-main: #2c3e35;
    --text-light: #5e7264;
    --bg-color: #f4f6f3;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #e8ede7 0%, #f4f6f3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    overflow: hidden;
    position: relative;
}

/* Subtle background elements for a premium feel */
body::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle, rgba(181,194,161,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -50%;
    left: -25%;
    z-index: 0;
    animation: drift 20s linear infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(5%, 5%); }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(74, 93, 78, 0.15);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

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

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
    border: 1px solid rgba(181,194,161,0.3);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #8da47e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(141, 164, 126, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(141, 164, 126, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(141, 164, 126, 0); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 93, 78, 0.15);
}

.contact-link svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.contact-link:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 480px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 1rem;
        padding: 14px;
    }
}
