/* Design System Variables */
:root {
    --primary: #1b3d2f;         /* Deep Forest Green (Trust, Safety) */
    --secondary: #d97706;       /* Warm Amber (Growth, Future) */
    --bg: #faf9f6;              /* Warm Alabaster White */
    --text-muted: #5f6e63;      /* Soft Sage Gray */
    --white: #ffffff;
    
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    font-family: var(--font-heading);
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Animated Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: floatGlow 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background-color: var(--primary);
    top: -15%;
    right: -10%;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background-color: var(--secondary);
    bottom: -15%;
    left: -10%;
    animation-delay: -8s;
}

.bg-glow-3 {
    width: 300px;
    height: 300px;
    background-color: #a3b899; /* Soft Olive Green */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation-duration: 25s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, -80px) scale(1.15);
    }
}

/* Centered Wrapper */
.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    z-index: 10;
    width: 100%;
}

/* Content Container with Entrance Animation */
.content-container {
    max-w: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: contentEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contentEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elements Styling */
.company-name {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 24px;
    opacity: 0.9;
}

.main-heading {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.tagline {
    font-size: clamp(16px, 3.5vw, 24px);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
    max-w: 640px;
    letter-spacing: -0.2px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .company-name {
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .main-heading {
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }
    .tagline {
        line-height: 1.4;
    }
}
