:root {
    /* Premium Crystal Palette */
    --glass-surface: rgba(255, 255, 255, 0.65);
    --glass-highlight: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow-sm: 0 4px 16px rgba(31, 38, 135, 0.05);
    --glass-shadow-lg: 0 12px 48px rgba(31, 38, 135, 0.12);

    --text-main: #1e293b;
    --text-muted: #64748b;
    --primary-accent: #3b82f6;

    /* Functional Colors */
    --color-action: #3b82f6;
    /* Blue: User Action */
    --color-trigger: #f59e0b;
    /* Amber: Condition/Trigger */
    --color-feedback: #10b981;
    /* Green: System Result */
    --color-alert: #ef4444;
    /* Red: Warning/Restriction */

    /* Role Colors (Neon & Vibrant) */
    --role-business: #2563eb;
    --role-manager: #7c3aed;
    --role-finance: #059669;
    --role-consulting: #ea580c;
    --role-consulting-mgr: #db2777;
    --role-process: #4f46e5;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background: #f0f4f8;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 8rem;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   Background Animation
   ========================================= */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 0% 0%, rgba(167, 243, 208, 0.4), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(165, 180, 252, 0.4), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(253, 186, 116, 0.4), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(147, 197, 253, 0.4), transparent 50%);
    filter: blur(80px);
    animation: auroraMove 20s ease-in-out infinite alternate;
}

@keyframes auroraMove {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* =========================================
   Layout & Header
   ========================================= */
.app-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.app-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    animation: fadeInDown 1s ease-out;
    /* Glass Panel (Refined) */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.app-logo {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

.header-text {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.1;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.1));
    margin-bottom: 0.25rem;
}

.app-subtitle {
    color: #64748b;
    margin-top: 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 1;
}

/* =========================================
   Navigation
   ========================================= */
.nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 1rem;
    z-index: 100;
    animation: fadeInDown 1s ease-out 0.2s backwards;
}

.segmented-nav {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 8px;
    border-radius: 24px;
    display: flex;
    gap: 8px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.4);
}

.nav-item.active {
    background: white;
    color: var(--primary-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* Active Color Mapping */
.nav-item[data-role="overview"].active {
    color: var(--text-main);
}

.nav-item[data-role="business"].active {
    color: var(--role-business);
}

.nav-item[data-role="manager"].active {
    color: var(--role-manager);
}

.nav-item[data-role="finance"].active {
    color: var(--role-finance);
}

.nav-item[data-role="consulting"].active {
    color: var(--role-consulting);
}

.nav-item[data-role="consulting-mgr"].active {
    color: var(--role-consulting-mgr);
}

.nav-item[data-role="process"].active {
    color: var(--role-process);
}

/* =========================================
   Grid & Cards
   ========================================= */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.glass-card {
    background: var(--glass-surface);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--glass-shadow-sm);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-lg);
    background: var(--glass-highlight);
    border-color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.card-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* =========================================
   Visual Modules (New)
   ========================================= */

/* 1. Action Cards (Replaces Tables) */
.action-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr auto 0.6fr auto 2fr;
    /* Trigger -> Arrow -> Action -> Arrow -> Feedback */
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-card:hover {
    background: white;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ac-trigger {
    font-size: 0.9rem;
    color: var(--color-trigger);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ac-arrow {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 1.2rem;
}

.ac-btn {
    background: var(--color-action);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ac-feedback {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.ac-feedback:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 2. Feature Grid (Replaces Lists) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.4);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.feature-title {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 3. Process Timeline (Replaces Process Tab Lists) */
.timeline-container {
    position: relative;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-accent), transparent);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.35rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.timeline-title {
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.flow-step {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.flow-arrow {
    color: var(--primary-accent);
    font-weight: bold;
}

/* Utilities */
.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.full-width {
    grid-column: 1 / -1;
}

.role-group {
    display: contents;
}

.role-group.hidden>* {
    display: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card:nth-child(1) {
    animation-delay: 0.1s;
}

.glass-card:nth-child(2) {
    animation-delay: 0.2s;
}

.glass-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Role Header Gradient Styling */
.role-header {
    background: linear-gradient(135deg, var(--glass-surface) 0%, var(--glass-highlight) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: visible;
    padding: 1.5rem 2.5rem;
    /* Compact padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.role-header .card-title {
    margin-bottom: 0.5rem;
}

.role-header .card-desc {
    margin-bottom: 0;
}

.role-header::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, currentColor, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    z-index: -1;
}

.role-header[data-role="business"] {
    color: var(--role-business);
}

.role-header[data-role="business"] .card-title {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-header[data-role="manager"] {
    color: var(--role-manager);
}

.role-header[data-role="manager"] .card-title {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-header[data-role="finance"] {
    color: var(--role-finance);
}

.role-header[data-role="finance"] .card-title {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-header[data-role="consulting"] {
    color: var(--role-consulting);
}

.role-header[data-role="consulting"] .card-title {
    background: linear-gradient(135deg, #ea580c, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-header[data-role="consulting-mgr"] {
    color: var(--role-consulting-mgr);
}

.role-header[data-role="consulting-mgr"] .card-title {
    background: linear-gradient(135deg, #db2777, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-header[data-role="process"] {
    color: var(--role-process);
}

.role-header[data-role="process"] .card-title {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Hover & Pulse Effects */
.glass-card {
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glass-card:hover::after {
    opacity: 1;
}

.role-header:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Pulsing Animation for Interactive Elements */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 currentColor;
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.3);
    }
}

.ac-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Vibrant Feature Items */
.feature-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

/* Action Card Enhancements */
.action-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.95));
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Enhanced Timeline */
.timeline-item {
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.5);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
}

.flow-step {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flow-step:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-3 {
        grid-column: span 2;
    }

    .action-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .ac-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .ac-trigger,
    .ac-feedback {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .glass-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .span-2,
    .span-3,
    .full-width {
        grid-column: span 1;
    }

    .nav-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .segmented-nav {
        width: max-content;
    }

    .app-title {
        font-size: 1rem;
    }
}

/* =========================================
   Process Map (Horizontal)
   ========================================= */
.process-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.process-step {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-lg);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.step-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-trigger {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: var(--role-process);
    font-weight: 600;
}

/* Widget Cards (Side Panels) */
.widget-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
}

.widget-card .card-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.widget-card .feature-item {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-card .feature-icon {
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--glass-shadow-sm);
}

.widget-card .feature-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Role Identity Cards (Premium) */
.role-identity-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.role-identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--card-color, #ccc);
}

.role-identity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.role-icon {
    width: 64px;
    height: 64px;
    background: var(--card-bg, #f0f0f0);
    color: var(--card-color, #666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.role-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.role-action {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Role Specific Colors */
.role-identity-card[data-role="business"] {
    --card-color: var(--role-business);
    --card-bg: rgba(37, 99, 235, 0.1);
}

.role-identity-card[data-role="manager"] {
    --card-color: var(--role-manager);
    --card-bg: rgba(124, 58, 237, 0.1);
}

.role-identity-card[data-role="finance"] {
    --card-color: var(--role-finance);
    --card-bg: rgba(5, 150, 105, 0.1);
}

.role-identity-card[data-role="consulting"] {
    --card-color: var(--role-consulting);
    --card-bg: rgba(234, 88, 12, 0.1);
}

.role-identity-card[data-role="consulting-mgr"] {
    --card-color: var(--role-consulting-mgr);
    --card-bg: rgba(219, 39, 119, 0.1);
}

/* Role Summary Cards (Refined) */
.role-summary {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.role-summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.role-summary .feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.role-summary .feature-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.role-summary[data-role="business"] {
    border-color: var(--role-business);
}

.role-summary[data-role="manager"] {
    border-color: var(--role-manager);
}

.role-summary[data-role="finance"] {
    border-color: var(--role-finance);
}

.role-summary[data-role="consulting"] {
    border-color: var(--role-consulting);
}

.role-summary[data-role="consulting-mgr"] {
    border-color: var(--role-consulting-mgr);
}