:root {
    --gradient-start: #f7f9ff;
    --gradient-end: #ffffff;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --muted: #6b7280;
}

.front-body {
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.front-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.front-main {
    flex: 1;
    padding-bottom: 8px;
}

.front-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
}

.front-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.2), transparent);
}

.section-card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.badge-soft {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.console-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.console-chip {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
}
