/* --- PREMIUM CSS RESET & VARIABLES --- */
:root {
    --bg-base: #09090b;
    --bg-surface: #121214;
    --bg-surface-hover: #18181b;
    
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
    
    --primary: #3AB0C4;
    --primary-dark: #2a8a9a;
    --accent: #3DDC84;
    
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(24, 24, 27, 0.7);
    
    --blue: #3b82f6;
    --amber: #f59e0b;
    --emerald: #10b981;
    --purple: #8b5cf6;
    --orange: #f97316;
    --navbar-bg: rgba(9, 9, 11, 0.85);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f1f5f9;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    
    --border: rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.85);
    --navbar-bg: rgba(255, 255, 255, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background-color: var(--bg-base); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

.bg-mesh { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; background: radial-gradient(circle at 15% 30%, rgba(58, 176, 196, 0.1), transparent 30%), radial-gradient(circle at 85% 70%, rgba(61, 220, 132, 0.08), transparent 30%); }
.bg-pattern { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; opacity: 0.03; background-image: radial-gradient(var(--text-main) 1px, transparent 1px); background-size: 40px 40px; }

/* --- LAYOUT UTILS --- */
.container { max-width: 1600px; margin: 0 auto; padding: 0 3%; }
.section { padding: 80px 0; } /* REDUCED PADDING to make it feel fuller */
.mt-4 { margin-top: 2rem; }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-surface { background: var(--bg-surface); }
.bg-surface-hover { background: var(--bg-surface-hover); }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 2rem; }

/* --- TYPOGRAPHY & COLORS --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
.text-gradient { background: linear-gradient(to right, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-muted { color: var(--text-muted); }
.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.lucide { stroke-width: 2.5; }
.bg-blue { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
.bg-amber { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.bg-emerald { background: rgba(16, 185, 129, 0.1); color: var(--emerald); }
.bg-purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.bg-orange { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.bg-primary { background: rgba(58, 176, 196, 0.1); color: var(--primary); }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; font-family: inherit; cursor: pointer; text-decoration: none; transition: var(--transition); border: none; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--text-main); color: var(--bg-base); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }
.btn-accent { background: var(--accent); color: var(--bg-base); }
.btn-accent:hover { background: #34C171; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(61, 220, 132, 0.2); }
.btn-ghost { background: transparent; color: var(--text-main); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-glass { background: var(--glass); border: 1px solid var(--border); color: var(--text-main); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-main); }
.btn-outline:hover { background: var(--bg-surface-hover); }

/* --- THEME TOGGLE --- */
.theme-toggle { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--text-main); cursor: pointer; transition: var(--transition); margin-left: 0.5rem; }
.theme-toggle:hover { background: var(--bg-surface-hover); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.theme-toggle i { width: 20px; height: 20px; transition: var(--transition); }

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; width: 100%; padding: 1.25rem 0; z-index: 1000; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { background: var(--navbar-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--text-main); letter-spacing: -0.5px; }
.logo-icon { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text-main); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-main); cursor: pointer; }

/* --- HERO SECTION --- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 100px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; background: var(--glass); border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 2rem; backdrop-filter: blur(10px); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }
.hero-title { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -1px; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.coming-soon-msg { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(58, 176, 196, 0.1); border: 1px solid rgba(58, 176, 196, 0.2); border-radius: 8px; color: var(--primary); font-size: 0.85rem; font-weight: 500; margin-bottom: 2.5rem; margin-top: -1.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-users { display: flex; align-items: center; gap: 1rem; }
.user-avatars { display: flex; align-items: center; }
.user-avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-base); margin-left: -15px; }
.user-avatars img:first-child { margin-left: 0; }
.avatar-more { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-base); margin-left: -15px; background: var(--bg-surface-hover); display: flex; justify-content: center; align-items: center; font-size: 0.7rem; font-weight: bold; }
.hero-users p { font-size: 0.9rem; color: var(--text-muted); }

/* Hero Visual Split */
.hero-visual { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.visual-glass-panel { position: relative; width: 100%; max-width: 500px; aspect-ratio: 4/5; background: var(--glass); border: 1px solid var(--border); border-radius: 32px; padding: 1rem; backdrop-filter: blur(20px); transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.5s; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.visual-glass-panel:hover { transform: rotateY(0) rotateX(0); }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

.float-card { position: absolute; padding: 0.75rem 1.25rem; background: var(--glass); border: 1px solid var(--border); border-radius: 16px; backdrop-filter: blur(10px); display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 600; box-shadow: 0 20px 40px rgba(0,0,0,0.4); animation: float-random 6s ease-in-out infinite; }
.float-card i { width: 18px; height: 18px; color: var(--primary); }
.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { bottom: 15%; right: -10%; animation-delay: -3s; }

/* --- STATS STRIP --- */
.stats-strip { padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.25rem; font-weight: 800; }
.stat-item p { color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }

/* --- SECTION HEADERS --- */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.section-header.center { justify-content: center; align-items: center; flex-direction: column; text-align: center; gap: 0.5rem; }
.section-title { display: flex; align-items: center; gap: 1rem; }
.title-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.25rem; }

/* --- PILLARS --- */
.pillar-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 24px; transition: var(--transition); display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit; cursor: pointer; }
.pillar-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.pillar-img { width: 100%; height: 160px; object-fit: cover; border-bottom: 1px solid var(--border); }
.pillar-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pillar-card .icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; justify-content: center; align-items: center; margin-top: -40px; margin-bottom: 1rem; border: 4px solid var(--bg-surface); position: relative; z-index: 2; transition: transform 0.3s; }
.pillar-card:hover .icon-box { transform: scale(1.1); }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* --- OPPORTUNITIES --- */
.opp-card { background: var(--bg-surface); border: 1px solid var(--border); padding: 1.5rem; border-radius: 24px; transition: var(--transition); display: flex; flex-direction: column; }
.opp-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.opp-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.opp-header .icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; justify-content: center; align-items: center; }
.tag { font-size: 0.7rem; font-weight: 800; padding: 0.3rem 0.6rem; background: rgba(255,255,255,0.05); border-radius: 6px; letter-spacing: 1px; color: var(--text-muted); }
.opp-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; line-height: 1.4; }
.opp-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.opp-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); padding-top: 1rem; border-top: 1px solid var(--border); font-weight: 500; }
.opp-footer span { display: flex; align-items: center; gap: 0.4rem; }
.opp-footer i { width: 14px; height: 14px; }

/* --- NEWS --- */
.news-card { display: flex; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 24px; transition: var(--transition); overflow: hidden; }
.news-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.news-image { width: 40%; object-fit: cover; border-right: 1px solid var(--border); }
.news-content { padding: 2rem; display: flex; flex-direction: column; flex: 1; justify-content: center; }
.news-date { color: var(--primary); font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 0.5rem; }
.news-content h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.news-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.read-more { color: var(--text-main); text-decoration: none; font-size: 0.9rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.read-more i { width: 16px; height: 16px; transition: transform 0.2s; }
.read-more:hover { color: var(--primary); }
.read-more:hover i { transform: translateX(3px) translateY(-3px); }

/* --- CTA SECTION --- */
.cta-box { background: linear-gradient(135deg, rgba(58, 176, 196, 0.1), rgba(61, 220, 132, 0.1)); border: 1px solid var(--border); border-radius: 32px; padding: 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; backdrop-filter: blur(10px); }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cta-content p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; }

/* --- FOOTER --- */
.footer { border-top: 1px solid var(--border); padding: 5rem 0 2rem; background: var(--bg-base); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); max-width: 300px; margin-top: 1rem; font-size: 0.95rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-surface); border: 1px solid var(--border); display: flex; justify-content: center; align-items: center; color: var(--text-main); transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: var(--bg-base); border-color: var(--primary); transform: translateY(-3px); }
.social-links i { width: 18px; height: 18px; }
.footer-links-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--text-main); }
.footer-links-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.75rem; font-size: 0.95rem; transition: var(--transition); }
.footer-links-col a:hover { color: var(--primary); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* --- ANIMATIONS & UTILS --- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(58, 176, 196, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(58, 176, 196, 0); } 100% { box-shadow: 0 0 0 0 rgba(58, 176, 196, 0); } }
@keyframes float-random { 0% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(10px, -15px) rotate(2deg); } 66% { transform: translate(-10px, 10px) rotate(-2deg); } 100% { transform: translate(0, 0) rotate(0deg); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; text-align: center; }
    .hero-buttons, .hero-users { justify-content: center; }
    .section-header { text-align: center; flex-direction: column; align-items: center; }
    .news-card { flex-direction: column; }
    .news-image { width: 100%; height: 250px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
    .social-links { justify-content: center; }
}

/* --- AUTH PAGES (Login / Register) --- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; overflow-x: hidden; overflow-y: auto; }
.auth-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 32px; padding: 3rem; width: 100%; max-width: 450px; position: relative; z-index: 10; box-shadow: 0 25px 50px rgba(0,0,0,0.4); transition: max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease; margin: auto; }
.auth-card.expanded { max-width: 850px; padding: 2.5rem 3rem; }
.auth-card.expanded .form-group { margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); column-gap: 2rem; }
.form-grid .full-width { grid-column: 1 / -1; }
.back-btn { position: absolute; top: 1.5rem; left: 1.5rem; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); font-size: 0.9rem; font-weight: 600; }
.back-btn i { width: 18px; height: 18px; }
.back-btn:hover { color: var(--text-main); transform: translateX(-3px); }
.auth-theme-btn { position: absolute; top: 1.25rem; right: 1.5rem; margin: 0; }
.auth-header { text-align: center; margin-bottom: 2.5rem; margin-top: 1rem; }
.auth-header h1 { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.5rem; }
.auth-header p { color: var(--text-muted); font-size: 0.95rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.input-icon { position: absolute; left: 1rem; color: var(--text-muted); width: 18px; height: 18px; }
.form-input { width: 100%; padding: 0.85rem 1rem 0.85rem 2.8rem; background: var(--bg-base); border: 1px solid var(--border); border-radius: 12px; color: var(--text-main); font-family: inherit; font-size: 1rem; transition: var(--transition); }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(58, 176, 196, 0.2); }
.form-input::placeholder { color: #52525b; }
.auth-btn { width: 100%; margin-top: 1rem; padding: 0.9rem; font-size: 1rem; border-radius: 12px; }
.auth-footer { margin-top: 2rem; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 600; text-decoration: none; transition: var(--transition); }
.auth-footer a:hover { color: var(--primary-dark); }

/* --- ROLE SELECTOR (Register Page) --- */
.role-selector { display: flex; flex-direction: column; gap: 0.75rem; }
.role-option { cursor: pointer; }
.role-option input[type="radio"], .role-option input[type="checkbox"] { display: none; }
.role-content { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-base); border: 1px solid var(--border); border-radius: 12px; transition: var(--transition); color: var(--text-muted); font-weight: 500; font-size: 1.05rem; }
.role-content i { width: 22px; height: 22px; }
.role-option input[type="radio"]:checked + .role-content, .role-option input[type="checkbox"]:checked + .role-content { background: rgba(58, 176, 196, 0.1); border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 15px rgba(58, 176, 196, 0.15); }
.role-option:hover .role-content { border-color: rgba(255,255,255,0.2); color: var(--text-main); }
.role-option input[type="radio"]:checked:hover + .role-content, .role-option input[type="checkbox"]:checked:hover + .role-content { color: var(--primary); border-color: var(--primary); }

/* --- FORM ELEMENTS EXTENSIONS (Register) --- */
.checkbox-group { margin-top: 1.5rem; margin-bottom: 2rem; }
.custom-checkbox { display: flex; align-items: flex-start; gap: 1rem; cursor: pointer; position: relative; }
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { width: 22px; height: 22px; background: var(--bg-base); border: 1px solid var(--border); border-radius: 6px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; transition: var(--transition); margin-top: 2px; }
.custom-checkbox input:checked ~ .checkmark { background: var(--primary); border-color: var(--primary); }
.custom-checkbox input:checked ~ .checkmark:after { content: ''; display: block; width: 5px; height: 10px; border: solid var(--bg-base); border-width: 0 2px 2px 0; transform: rotate(45deg); margin-top: -2px; }
.checkbox-text { display: flex; flex-direction: column; }
.checkbox-text strong { font-size: 0.95rem; color: var(--text-main); }
.checkbox-text span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin-top: 0.25rem; }

select.form-input { appearance: none; cursor: pointer; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23a1a1aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>'); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
select.form-input option { background: var(--bg-surface); color: var(--text-main); }
select.form-input:invalid { color: var(--text-muted); }

.role-badge-header { background: rgba(58, 176, 196, 0.1); border: 1px solid var(--primary); padding: 1rem 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: center; animation: fadeIn 0.4s ease-out; }
.role-badge-info span { font-size: 0.85rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.role-badge-info strong { color: var(--primary); font-size: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.role-badge-info strong i { width: 18px; height: 18px; }
