/* --- Core Variables & Background --- */
:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --text-dim: rgba(255, 255, 255, 0.7);
    --success: #10b981;
    --error: #ff4757;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #020617;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.blob-c {
    position: fixed; inset: 0; z-index: -1;
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
}

.shape-blob {
    position: absolute; width: 500px; height: 500px; filter: blur(100px);
    border-radius: 50%; opacity: 0.3; animation: move 20s infinite alternate ease-in-out;
}
.one { top: -10%; right: -5%; background: var(--accent); }
.two { bottom: -10%; left: -5%; background: #a855f7; }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

.premium-brand-header {
    width: 100%;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-text {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent);
}

.swasthi-unit-tag {
    font-size: 0.6rem;
    font-weight: 600;
    color: #94a3b8;
    border: 1px solid #94a3b8;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}