
:root {
    --bg: #030014;
    --primary: #7c3aed;
    --secondary: #06b6d4;
    --accent: #10b981;
    --text: #f8fafc;
    --card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(124, 58, 237, 0.1);
}

body {
    margin: 0; background: var(--bg); color: var(--text);
    font-family: 'Outfit', sans-serif; line-height: 1.6;
    background-image: radial-gradient(circle at 50% -20%, #1e1b4b, transparent);
    background-attachment: fixed;
}

.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

.glass-nav {
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    background: rgba(3, 0, 20, 0.7);
}

.nav-content {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; max-width: 1100px; margin: 0 auto;
}

.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: white; }
.logo span { color: var(--primary); text-shadow: 0 0 15px var(--primary); }

.nav-cta {
    background: var(--primary); padding: 10px 20px; border-radius: 30px;
    text-decoration: none; color: white; font-weight: 600; font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.hero { text-align: center; margin-bottom: 80px; }
.badge {
    display: inline-block; padding: 6px 15px; background: var(--glass);
    border: 1px solid var(--primary); border-radius: 50px; color: var(--primary);
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px;
}
h1 { font-size: 4rem; font-weight: 800; margin: 10px 0; background: linear-gradient(to right, #fff, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: 1.25rem; color: #94a3b8; max-width: 700px; margin: 0 auto; }

.tool-section { margin-bottom: 100px; display: flex; justify-content: center; }
.tool-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 30px;
    padding: 50px; width: 100%; max-width: 600px; text-align: center;
    backdrop-filter: blur(10px); position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.q-group { text-align: left; margin-bottom: 25px; }
label { display: block; margin-bottom: 10px; font-weight: 600; color: #cbd5e1; }
select {
    width: 100%; padding: 15px; background: #0f172a; border: 1px solid var(--border);
    border-radius: 12px; color: white; font-size: 1rem; cursor: pointer;
}

.btn-main {
    background: linear-gradient(135deg, var(--primary), #4c1d95);
    color: white; border: none; padding: 18px 40px; border-radius: 15px;
    font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: 0.3s;
    width: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4); }

.score-ring {
    width: 120px; height: 120px; border-radius: 50%; border: 4px solid var(--primary);
    margin: 0 auto 20px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; background: var(--glass);
}
#score { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.danger { color: #f43f5e; }

.btn-cta {
    display: inline-block; background: var(--accent); color: white;
    padding: 20px 40px; border-radius: 15px; text-decoration: none;
    font-weight: 800; margin-top: 25px; font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); transition: 0.3s;
}
.btn-cta:hover { transform: scale(1.05); }

.glass-box { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; margin-bottom: 60px; }
.benefit-list { list-style: none; padding: 0; margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-list li { padding-left: 30px; position: relative; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

.rec-card {
    display: flex; background: #0f172a; border-radius: 30px; overflow: hidden;
    border: 1px solid var(--border); margin-bottom: 80px; align-items: center;
}
.rec-card img { width: 40%; height: 350px; object-fit: cover; }
.rec-info { padding: 40px; }

.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.link-grid a { 
    padding: 20px; background: var(--card); border: 1px solid var(--border);
    border-radius: 15px; text-decoration: none; color: #94a3b8; font-weight: 600;
    transition: 0.3s;
}
.link-grid a:hover { border-color: var(--primary); color: white; background: var(--glass); }

.glass-footer { padding: 80px 20px; border-top: 1px solid var(--border); margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; max-width: 1100px; margin: 0 auto; }
.disclosure { text-align: center; margin-top: 60px; font-size: 0.8rem; color: #475569; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.1); } 70% { box-shadow: 0 0 0 20px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }
.animate-pulse { animation: pulse 3s infinite; }
.fade-in { animation: fadeIn 0.8s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .rec-card { flex-direction: column; }
    .rec-card img { width: 100%; height: 200px; }
    .benefit-list { grid-template-columns: 1fr; }
}
