        :root {
            --primary: #A82323;
            --secondary: #FEFFD3;
            --white: #ffffff;
            --dark: #121212;
            --gray: #f4f4f4;
            --transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }

        /* --- RESET & BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--secondary); 
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .niconne { font-family: 'Niconne', cursive; }
        .page { display: none; min-height: 100vh; padding-top: 100px; }
        .page.active { display: block; }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: var(--transition); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%;
            padding: 25px 6%;
            background: var(--secondary);
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            transition: 0.4s ease;
            border-bottom: 1px solid rgba(168, 35, 35, 0.05);
        }
        header.scrolled { padding: 15px 6%; background: rgba(254, 255, 211, 0.95); backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

        .logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); cursor: pointer; letter-spacing: -1px; }
        
        nav ul { display: flex; list-style: none; gap: 40px; }
        nav ul li a { 
            text-decoration: none; color: var(--dark); font-weight: 600; 
            font-size: 0.95rem; position: relative; transition: 0.3s;
        }
        nav ul li a::after {
            content: ''; position: absolute; bottom: -5px; left: 0;
            width: 0; height: 2px; background: var(--primary); transition: 0.3s;
        }
        nav ul li a:hover::after { width: 100%; }

        .auth-cluster { display: flex; gap: 15px; }
        .btn-pill {
            padding: 12px 28px; border-radius: 50px; border: 2px solid var(--primary);
            text-decoration: none; font-weight: 700; font-size: 0.85rem;
            transition: 0.3s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-solid { background: var(--primary); color: var(--secondary); }
        .btn-outline { color: var(--red); background: transparent; border:#eee }
        .btn-solid:hover { background: var(--dark); border-color: var(--dark); }

        /* --- HERO SECTIONS --- */
        .hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; min-height: 85vh; margin: 20px 6%; gap: 30px; }
        .hero-visual { 
            position: relative; border-radius: 40px; overflow: hidden; 
            background: #000; display: flex; align-items: flex-end; padding: 60px;
        }
        .hero-bg { position: absolute; inset: 0; object-fit: cover; opacity: 0.8; width: 100%; height: 100%; transition: 10s ease-out; }
        .hero-visual:hover .hero-bg { transform: scale(1.1); }
        .hero-content { position: relative; z-index: 2; color: var(--secondary); }
        .hero-content h2 { font-size: 4rem; line-height: 1; margin-bottom: 20px; }
        
        .hero-text { 
            display: flex; flex-direction: column; justify-content: center; 
            padding: 40px; background: var(--white); border-radius: 40px;
        }
        .hero-text h1 { font-size: 5rem; color: var(--primary); line-height: 0.9; margin-bottom: 30px; }

        /* --- SECTIONS --- */
        .section-header { text-align: center; margin-bottom: 80px; padding: 0 10%; }
        .section-header h2 { font-size: 4.5rem; color: var(--primary); margin-bottom: 15px; }
        .section-header p { font-size: 1.2rem; opacity: 0.7; max-width: 700px; margin: 0 auto; }

        /* --- CARDS & GRIDS --- */
        .grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; padding: 0 6%; }
        
        /* Influencer Cards */
        .creator-card {
            background: var(--white); border-radius: 30px; overflow: hidden;
            box-shadow: 0 15px 45px rgba(0,0,0,0.03); transition: 0.4s ease;
            position: relative; cursor: pointer;
        }
        .creator-card:hover { transform: translateY(-15px); }
        .card-img-wrap { height: 400px; overflow: hidden; position: relative; }
        .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .creator-card:hover img { transform: scale(1.05); }
        .card-body { padding: 30px; text-align: center; }
        
        .stats-badge {
            position: absolute; top: 20px; right: 20px; background: var(--secondary);
            padding: 8px 15px; border-radius: 20px; font-weight: 800; color: var(--primary);
            font-size: 0.8rem; z-index: 5;
        }

        /* --- SERVICES PAGE --- */
        .service-deep-dive { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding: 100px 6%; align-items: center; }
        .service-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .service-visual-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; }
        .service-visual-grid img:nth-child(2) { transform: translateY(40px); }

        /* --- JOURNAL --- */
        .journal-post { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; margin-bottom: 100px; background: #fff; padding: 40px; border-radius: 40px; }
        .journal-post img { width: 100%; height: 450px; object-fit: cover; border-radius: 20px; }
        .journal-content { display: flex; flex-direction: column; justify-content: center; }

        /* --- FILTERS --- */
        .filter-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; flex-wrap: wrap; }
        .filter-chip { 
            padding: 12px 30px; border-radius: 50px; border: 1px solid var(--primary); 
            cursor: pointer; transition: 0.3s; font-weight: 600; font-size: 0.9rem;
        }
        .filter-chip.active { background: var(--primary); color: var(--secondary); }

        /* --- AUTH BOX --- */
        .auth-wrapper { max-width: 500px; margin: 100px auto; background: white; padding: 60px; border-radius: 40px; box-shadow: 0 40px 100px rgba(168, 35, 35, 0.1); }
        .form-input { width: 100%; padding: 18px; border-radius: 15px; border: 1px solid #eee; margin-bottom: 20px; font-family: inherit; font-size: 1rem; }

        /* --- FOOTER --- */
        footer { background: var(--primary); color: var(--secondary); padding: 120px 6% 60px; margin-top: 150px; }
        .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 100px; }
        .footer-logo { font-size: 3rem; margin-bottom: 30px; }
        .footer-link { color: var(--secondary); text-decoration: none; display: block; margin-bottom: 12px; opacity: 0.7; transition: 0.3s; }
        .footer-link:hover { opacity: 1; padding-left: 10px; }

        /* --- MODAL --- */
        .modal { 
            position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; 
            display: none; align-items: center; justify-content: center; backdrop-filter: blur(15px); padding: 20px;
        }
        .modal-inner { background: var(--secondary); border-radius: 50px; max-width: 1000px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; padding: 60px; }
        .close-btn { position: absolute; top: 40px; right: 40px; border: none; background: none; cursor: pointer; color: var(--primary); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .hero-split, .service-deep-dive, .journal-post { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 3.5rem; }
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        .modal {
    display: none; 
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.7);
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    position: relative;
}
.close {
    position: absolute; top: 20px; right: 30px;
    font-size: 2rem; font-weight: bold;
    cursor: pointer;
}
.category-label {
    text-transform: uppercase; letter-spacing: 3px; font-weight: 800; color: var(--primary); font-size: 0.8rem;
}
.modal {
    display: none;
    position: fixed; z-index: 999;
    padding-top: 80px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0,0,0,0.7);
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%; max-width: 700px;
    position: relative;
}
.close {
    position: absolute; top: 20px; right: 30px;
    font-size: 2rem; font-weight: bold; cursor: pointer;
}
.footer-link, i[data-lucide] {
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0,0,0,0.7);
}
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%; max-width: 500px;
    position: relative;
    text-align:center;
}
.close {
    position: absolute; top: 20px; right: 30px;
    font-size: 2rem; font-weight: bold; cursor: pointer;
}
input[type=email] {
    border: 1px solid #ccc; border-radius:5px;
}
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background-color: #111;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#navbar .logo img {
    display: block;
}
#navbar nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}
#navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.auth-cluster {
    display: flex;
    gap: 15px;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

/* Responsive */
@media screen and (max-width: 900px) {
    #navbar nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #111;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
        border-radius: 10px 0 0 10px;
    }
    #navbar nav ul.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}
