:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --dark: #020617;
    --card: rgba(30, 41, 59, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body { 
    background-color: var(--dark); 
    color: var(--text); 
    overflow-x: hidden; 
    padding-top: 80px; 
}

/* --- BACKGROUND --- */
.bg-fx {
    position: fixed; top: -20%; left: -20%; width: 140%; height: 80%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1; pointer-events: none; opacity: 0.6;
}

/* --- FLOATING HEADER --- */
.floating-header {
    position: fixed; top: 20px; left: 5%; width: 90%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

.menu-trigger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; align-items: flex-end;
}
.bar { width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }
.bar.short { width: 16px; }
.menu-trigger:hover .bar.short { width: 24px; }

/* --- DRAWER --- */
.drawer {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
    background: #0f172a; z-index: 2000; padding: 30px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border);
}
.drawer.active { right: 0; }

.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-title { font-weight: 700; font-size: 1.2rem; color: white; }
.close-btn { background: none; border: none; color: #94a3b8; font-size: 2rem; line-height: 0.5; cursor: pointer; }

.drawer-items a {
    display: block; text-decoration: none; color: #cbd5e1;
    font-size: 1.1rem; margin-bottom: 20px; font-weight: 500;
    transition: 0.2s;
}
.drawer-items a:hover, .drawer-items a.active { color: var(--primary); padding-left: 10px; }
.admin-link-menu { margin-top: 40px; color: var(--primary) !important; font-size: 0.9rem !important; }

.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 1500;
    opacity: 0; pointer-events: none; transition: 0.3s;
    backdrop-filter: blur(2px);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* --- HERO --- */
.hero-section {
    text-align: center; padding: 30px 20px 60px;
    max-width: 600px; margin: 0 auto;
}

.trust-badge {
    display: inline-block; background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); padding: 6px 16px;
    border-radius: 20px; font-size: 0.8rem; margin-bottom: 20px;
    color: var(--primary); font-weight: 600;
}

h1 {
    font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px;
}
.gradient-text {
    background: linear-gradient(to right, #fff, #818cf8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 35px; }

/* --- BUTTON STACK --- */
.btn-stack { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 380px; margin: 0 auto; }

.btn {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    padding: 16px; border-radius: 14px; text-decoration: none;
    font-weight: 700; font-size: 1rem; transition: 0.2s;
}

.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(99,102,241,0.25); }
.btn-primary:active { transform: scale(0.98); }

.btn-glass { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: white; }
.btn-glass:hover { background: rgba(255,255,255,0.1); }

.trust-checks { margin-top: 25px; font-size: 0.8rem; color: #64748b; display: flex; gap: 15px; justify-content: center; }

/* --- VERTICAL CONTENT --- */
.vertical-content, .features-list {
    padding: 0 20px 60px; max-width: 500px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 20px;
}

.info-card {
    background: var(--card); border: 1px solid var(--border);
    padding: 30px; border-radius: 24px; text-align: center;
}
.info-card h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.info-card p { color: var(--text-muted); }

/* --- FEATURES --- */
.features-list { text-align: center; }
.section-tag { color: var(--primary); font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; }
.features-list h2 { font-size: 2rem; margin-bottom: 30px; }

.feature-item {
    background: var(--card); border: 1px solid var(--border);
    padding: 25px; border-radius: 20px; display: flex; align-items: center; gap: 20px; text-align: left;
}

.icon-box {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}

.feat-text h3 { font-size: 1.1rem; margin-bottom: 5px; }
.feat-text p { font-size: 0.9rem; color: var(--text-muted); }

footer { text-align: center; padding: 40px; color: #475569; font-size: 0.9rem; border-top: 1px solid var(--border); }
