:root {
    --bg-color: #fffcf9;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --accent: #f97316;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: var(--font-main);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: transparent;
    /* Ensure background is visible */
}

/* Hero Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #1a1a1a;
    /* Fallback dark color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('assets/nature_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(85%) brightness(0.7);
}

/* Layout */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.logo span {
    color: var(--accent);
}

main {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 5%;
}

.hero {
    max-width: 650px;
    width: 100%;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.vision {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-late {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.coming-soon {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Loader */
.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loader-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}