:root {
    --bg-light: #fdfdfd;
    --bg-secondary: #f8fafc;
    --accent-gold: #c5a880;
    --accent-blue: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.05);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow: hidden; /* No scroll allowed on desktop */
    height: 100vh;
    height: 100dvh;
    width: 100vw;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.glow-sphere {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.06;
    z-index: 0;
    animation: float-sphere 25s infinite alternate ease-in-out;
}

.sphere-1 { background: var(--accent-gold); top: -10vw; left: -10vw; }
.sphere-2 { background: #cbd5e1; bottom: -10vw; right: -10vw; animation-delay: -7s; }

@keyframes float-sphere {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 5vw) scale(1.1); }
}

.page-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    height: 100vh;
    height: 100dvh;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-secondary);
    padding: 0.8rem 1.6rem;
    border-radius: 40px;
    border: 1.5px solid var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.status-dot { 
    width: 12px; 
    height: 12px; 
    background-color: #10b981; 
    border-radius: 50%; 
}

.pulse { 
    animation: pulse-green 2s infinite; 
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 18px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
}

.pre-title {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vh, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.accent-text { color: var(--accent-gold); }

/* Glass Container for Image */
.glass-container {
    width: 100%;
    max-width: 850px;
    max-height: 45vh; /* Scale based on viewport */
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0.8rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    transition: all 0.4s ease;
}

.inner-image-wrapper {
    overflow: hidden;
    border-radius: 16px;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.hero-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.hero-description {
    font-size: clamp(1.1rem, 2vh, 1.4rem);
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
}

/* Footer */
.minimal-footer {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Animations */
.animate-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fade-in-up {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body {
        overflow: auto;
        height: auto;
        min-height: 100dvh;
    }
    .page-wrapper {
        height: auto;
        min-height: 100dvh;
        padding: 1rem;
    }
    .main-heading { 
        font-size: 2.5rem; 
        margin-bottom: 1rem;
    }
    .glass-container { 
        max-height: 35vh; 
        margin-bottom: 1rem;
        padding: 0.5rem;
    }
    .navbar { 
        height: auto; 
        padding: 0.5rem 0; 
    }
    .hero-section {
        padding: 0.5rem 0;
    }
    .hero-description {
        font-size: 1.1rem;
    }
}
