.eco-role-nav {
    margin-bottom: 1.75rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(51, 65, 85, .85);
    background: rgba(15, 23, 42, .65);
}
.eco-role-nav-title {
    margin: 0 0 .85rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.eco-role-nav-grid {
    display: grid;
    gap: .65rem;
}
@media (min-width: 640px) {
    .eco-role-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .eco-role-nav-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.eco-role-card {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .75rem .85rem;
    border-radius: .85rem;
    border: 1px solid #334155;
    background: #0f172a;
    color: #e2e8f0;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease;
    min-width: 0;
}
.eco-role-card:hover {
    border-color: rgba(34, 211, 238, .45);
    background: rgba(34, 211, 238, .06);
    text-decoration: none;
    color: #f8fafc;
}
.eco-role-card.is-here {
    border-color: rgba(34, 211, 238, .55);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, .2);
}
.eco-role-icon {
    width: 2rem;
    height: 2rem;
    border-radius: .65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}
.eco-role-icon--client { background: rgba(34, 211, 238, .15); color: #22d3ee; }
.eco-role-icon--license { background: rgba(129, 140, 248, .15); color: #a5b4fc; }
.eco-role-icon--owner { background: rgba(251, 191, 36, .12); color: #fcd34d; }
.eco-role-icon--cms { background: rgba(16, 185, 129, .12); color: #6ee7b7; }
.eco-role-body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
    flex: 1;
}
.eco-role-body strong {
    font-size: .88rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eco-role-body span {
    font-size: .72rem;
    color: #94a3b8;
    line-height: 1.35;
}
.eco-role-here {
    flex-shrink: 0;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #22d3ee;
    padding: .2rem .45rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, .12);
    border: 1px solid rgba(34, 211, 238, .3);
    align-self: flex-start;
}
.eco-role-nav-note {
    margin: .75rem 0 0;
    font-size: .75rem;
    color: #64748b;
    line-height: 1.45;
}
.eco-zone-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .85rem;
    padding: .35rem .65rem;
    border-radius: 999px;
}
.eco-zone-label--client {
    color: #67e8f9;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .25);
}
.eco-zone-label--owner {
    color: #fcd34d;
    background: rgba(251, 191, 36, .1);
    border: 1px solid rgba(251, 191, 36, .25);
}
.eco-owner-details > summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #fcd34d;
    padding: .65rem 0;
}
.eco-owner-details > summary::-webkit-details-marker { display: none; }
.eco-owner-details[open] > summary { margin-bottom: .5rem; }