:root {
    --primary: #94a3b8;
    --secondary: #475569;
    --accent: #ffd700;
    --bg-dark: #020617;
    --glass: rgba(30, 41, 59, 0.75);
    --glass-border: rgba(212, 175, 55, 0.3);
    --text-silver: #f8fafc;
    --text-muted: #94a3b8;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b4941f 100%);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.landing-header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-silver);
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 25px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    padding: 18px 55px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding: 18px 55px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    backdrop-filter: blur(15px);
    border: 1.5px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px) scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 12px var(--accent));
}

.feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 800;
}

.feature-card p {
    color: var(--text-silver);
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.8;
}

.stats-section {
    padding: 120px 0;
    background: rgba(212, 175, 55, 0.02);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.stat-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.stat-item h4 {
    font-size: 4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    font-weight: 900;
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
    color: var(--accent);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px var(--accent));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.landing-container {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-container.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100vh) scale(0.9);
}