.u360 {
    --ink: #0b1930;
    --muted: #6d788a;
    --line: #e5eaf0;
    --soft: #f5f7fa;
    --blue: #285bc5;
    --red: #d43b3b;
    --orange: #dc7a18;
    --green: #17815b;

    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
    color: var(--ink);
}

.u360 *,
.u360 *::before,
.u360 *::after {
    box-sizing: border-box;
}

.u360 a {
    color: inherit;
    text-decoration: none;
}

.u360-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 255px;
    gap: 30px;
    min-height: 300px;
    padding: 38px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(102, 157, 255, .34),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #071426,
            #0c203c 58%,
            #173a63
        );
    box-shadow: 0 28px 70px rgba(11, 28, 54, .2);
    color: #fff;
}

.u360-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: #9fb0c8;
    font-size: 10px;
}

.u360-breadcrumb strong {
    color: #fff;
}

.u360-eyebrow {
    margin-bottom: 7px;
    color: #8490a1;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.u360-hero .u360-eyebrow {
    color: #a7bcdb;
}

.u360-hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 790;
    letter-spacing: -.055em;
    line-height: 1;
}

.u360-subtitle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 0;
    color: #c5d1e2;
    font-size: 13px;
}

.u360-status {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
}

.u360-status > span {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.u360-status .is-occupied {
    background: rgba(44, 201, 139, .15);
    color: #a9f3d5;
}

.u360-status .is-vacant {
    background: rgba(255, 178, 84, .15);
    color: #ffd4a0;
}

.u360-status strong {
    font-size: 11px;
}

.u360-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.u360-button {
    display: inline-flex;
    align-items: center;
    min-height: 41px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 780;
    transition: transform .16s ease;
}

.u360-button:hover {
    transform: translateY(-2px);
}

.u360-button-primary {
    background: #fff;
    color: #0b1830 !important;
}

.u360-button-soft {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .09);
}

.u360-button-ghost {
    color: #c1cee0 !important;
}

.u360-completion {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.u360-ring {
    --score: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 166px;
    margin-bottom: 16px;
    border-radius: 50%;
    background:
        radial-gradient(
            closest-side,
            #102746 72%,
            transparent 73% 99%
        ),
        conic-gradient(
            #8eb2ff calc(var(--score) * 1%),
            rgba(255, 255, 255, .11) 0
        );
}

.u360-ring strong {
    font-size: 34px;
    letter-spacing: -.05em;
}

.u360-ring span {
    margin-top: 4px;
    color: #a8b9d2;
    font-size: 9px;
}

.u360-completion > small {
    color: #92a5c2;
    font-size: 8px;
}

.u360-completion > strong {
    margin-top: 5px;
    font-size: 12px;
}

.u360-anchorbar {
    position: sticky;
    top: 8px;
    z-index: 30;
    display: flex;
    gap: 3px;
    overflow-x: auto;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 25px rgba(14, 32, 61, .06);
    backdrop-filter: blur(12px);
}

.u360-anchorbar a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 9px;
    color: #627086;
    font-size: 9px;
    font-weight: 780;
}

.u360-anchorbar a:hover {
    background: #eef3fa;
    color: #203a60;
}

.u360-metrics {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.u360-metric {
    display: flex;
    flex-direction: column;
    min-height: 115px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(15, 32, 60, .045);
    transition:
        transform .16s ease,
        box-shadow .16s ease;
}

.u360-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15, 32, 60, .09);
}

.u360-metric > span {
    color: #657287;
    font-size: 9px;
    font-weight: 760;
}

.u360-metric > strong {
    margin-top: 12px;
    overflow: hidden;
    font-size: 27px;
    letter-spacing: -.045em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.u360-metric > small {
    margin-top: auto;
    padding-top: 11px;
    overflow: hidden;
    color: #98a2b0;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.u360-metric.is-alert {
    border-color: #f0d0bc;
    background: #fffaf6;
}

.u360-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(290px, .62fr);
    gap: 18px;
    align-items: start;
}

.u360-main,
.u360-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.u360-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(15, 32, 60, .05);
    scroll-margin-top: 85px;
}

.u360-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 22px 17px;
    border-bottom: 1px solid #edf0f4;
}

.u360-panel-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 790;
    letter-spacing: -.035em;
}

.u360-panel-header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 9px;
}

.u360-panel-link {
    color: var(--blue) !important;
    font-size: 9px;
    font-weight: 790;
    white-space: nowrap;
}

.u360-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 31px;
    height: 31px;
    padding: 0 8px;
    border-radius: 9px;
    background: var(--soft);
    color: #59677d;
    font-size: 9px;
    font-weight: 850;
}

.u360-decisions {
    padding: 7px;
}

.u360-decision {
    display: grid;
    grid-template-columns:
        29px
        9px
        minmax(0, 1fr)
        auto;
    gap: 13px;
    align-items: center;
    min-height: 79px;
    padding: 13px;
    border-bottom: 1px solid #eef1f4;
    border-radius: 12px;
    transition:
        background .16s ease,
        transform .16s ease;
}

.u360-decision:last-child {
    border-bottom: 0;
}

.u360-decision:hover {
    transform: translateX(2px);
    background: #f8fafc;
}

.u360-rank {
    color: #adb6c3;
    font-size: 8px;
    font-weight: 850;
}

.u360-decision > i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, .11);
}

.u360-decision.is-critical > i {
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(212, 59, 59, .11);
}

.u360-decision.is-warning > i {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(220, 122, 24, .11);
}

.u360-decision.is-information > i {
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(40, 91, 197, .11);
}

.u360-decision-body small,
.u360-decision-body strong,
.u360-decision-body > span {
    display: block;
}

.u360-decision-body small {
    color: #8a94a4;
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.u360-decision-body strong {
    margin-top: 4px;
    font-size: 11px;
}

.u360-decision-body > span {
    margin-top: 4px;
    color: #697588;
    font-size: 9px;
    line-height: 1.45;
}

.u360-decision > b {
    color: #35435a;
    font-size: 9px;
    white-space: nowrap;
}

.u360-occupation-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 25px 22px;
}

.u360-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #102a50, #315d96);
    color: #fff;
    font-size: 18px;
    font-weight: 850;
}

.u360-occupation-main small,
.u360-occupation-main strong {
    display: block;
}

.u360-occupation-main small {
    color: #8e98a7;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.u360-occupation-main strong {
    margin-top: 5px;
    font-size: 17px;
}

.u360-occupation-main > div {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 8px;
    color: #6d788a;
    font-size: 8px;
}

.u360-live {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eaf9f2;
    color: var(--green);
    font-size: 8px;
    font-weight: 850;
}

.u360-history-list {
    padding: 0 22px 18px;
}

.u360-history-list > div {
    padding: 12px 0;
    border-top: 1px solid #eef1f4;
}

.u360-history-list strong,
.u360-history-list small {
    display: block;
}

.u360-history-list strong {
    font-size: 9px;
}

.u360-history-list small {
    margin-top: 4px;
    color: #8f99a7;
    font-size: 7px;
}

.u360-activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #e9edf2;
}

.u360-activity-grid article {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 17px;
    background: #fff;
}

.u360-activity-grid header {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.u360-activity-grid header > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 11px;
    background: #102540;
    color: #fff;
    font-size: 9px;
    font-weight: 850;
}

.u360-activity-grid header small,
.u360-activity-grid header strong {
    display: block;
}

.u360-activity-grid header small {
    color: #939cab;
    font-size: 7px;
    text-transform: uppercase;
}

.u360-activity-grid header strong {
    margin-top: 2px;
    font-size: 10px;
}

.u360-activity-grid header b {
    font-size: 19px;
}

.u360-activity-grid article > p {
    color: #8b95a4;
    font-size: 8px;
    line-height: 1.55;
}

.u360-activity-item {
    margin-top: 11px;
    padding: 10px;
    border-radius: 10px;
    background: #f5f7fa;
}

.u360-activity-item strong,
.u360-activity-item span {
    display: block;
}

.u360-activity-item strong {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.u360-activity-item span {
    margin-top: 4px;
    color: #8290a3;
    font-size: 7px;
}

.u360-activity-grid article > a {
    margin-top: auto;
    padding-top: 15px;
    color: var(--blue);
    font-size: 8px;
    font-weight: 790;
}

.u360-timeline {
    padding: 10px 17px 16px;
}

.u360-event {
    display: grid;
    grid-template-columns:
        72px
        16px
        minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    min-height: 64px;
}

.u360-event time {
    align-self: center;
    color: #939dab;
    font-size: 8px;
    text-align: right;
}

.u360-event-line {
    position: relative;
    display: flex;
    justify-content: center;
}

.u360-event-line::before {
    content: "";
    position: absolute;
    inset: 0 auto;
    width: 1px;
    background: #e1e6ec;
}

.u360-event-line i {
    position: relative;
    z-index: 1;
    align-self: center;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #708198;
    box-shadow: 0 0 0 2px #dfe5ec;
}

.u360-event.is-intervention .u360-event-line i {
    background: var(--blue);
}

.u360-event.is-claim .u360-event-line i {
    background: var(--red);
}

.u360-event.is-occupation .u360-event-line i {
    background: var(--green);
}

.u360-event.is-document .u360-event-line i {
    background: var(--orange);
}

.u360-event-body {
    align-self: center;
    min-width: 0;
}

.u360-event-body small,
.u360-event-body strong,
.u360-event-body > span {
    display: block;
}

.u360-event-body small {
    color: #8e98a7;
    font-size: 7px;
    font-weight: 820;
    text-transform: uppercase;
}

.u360-event-body strong {
    margin-top: 4px;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.u360-event-body > span {
    margin-top: 4px;
    color: #808b9b;
    font-size: 7px;
}

.u360-info {
    margin: 0;
    padding: 6px 18px 15px;
}

.u360-info > div {
    padding: 12px 0;
    border-bottom: 1px solid #eef1f4;
}

.u360-info > div:last-child {
    border-bottom: 0;
}

.u360-info dt {
    color: #8f99a8;
    font-size: 7px;
    font-weight: 850;
    text-transform: uppercase;
}

.u360-info dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    color: #24334b;
    font-size: 9px;
    font-weight: 700;
}

.u360-info dd a {
    color: var(--blue);
}

.u360-owner-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 20px;
}

.u360-owner-card > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #edf3fa;
    color: #31517e;
    font-size: 16px;
    font-weight: 850;
}

.u360-owner-card strong,
.u360-owner-card small {
    display: block;
}

.u360-owner-card strong {
    margin-bottom: 6px;
    font-size: 11px;
}

.u360-owner-card small {
    margin-top: 3px;
    overflow-wrap: anywhere;
    color: #7e8999;
    font-size: 7px;
}

.u360-resources {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #edf0f4;
}

.u360-resources a {
    display: flex;
    flex-direction: column;
    min-height: 82px;
    padding: 14px;
    background: #fff;
}

.u360-resources a:hover {
    background: #f8fafc;
}

.u360-resources span {
    color: #788497;
    font-size: 8px;
}

.u360-resources strong {
    margin-top: auto;
    font-size: 21px;
    letter-spacing: -.04em;
}

.u360-checks {
    padding: 12px 17px 17px;
}

.u360-checks > div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 35px;
}

.u360-checks span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 850;
}

.u360-checks strong {
    font-size: 8px;
}

.u360-checks .is-valid span {
    background: #eaf9f2;
    color: var(--green);
}

.u360-checks .is-missing span {
    background: #fff2f2;
    color: var(--red);
}

.u360-checks .is-missing strong {
    color: #9a6370;
}

.u360-unit-note {
    margin: 0;
    padding: 18px 20px 22px;
    color: #5f6d81;
    font-size: 9px;
    line-height: 1.65;
}

.u360-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 145px;
    padding: 25px;
    text-align: center;
}

.u360-empty-large {
    min-height: 245px;
}

.u360-empty > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    margin-bottom: 11px;
    border-radius: 13px;
    background: #eef3fa;
    color: #31517e;
    font-size: 14px;
    font-weight: 850;
}

.u360-empty strong {
    font-size: 11px;
}

.u360-empty small {
    max-width: 430px;
    margin-top: 6px;
    color: #8994a4;
    font-size: 8px;
    line-height: 1.5;
}

.u360-empty a {
    margin-top: 14px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 790;
}

@media (max-width: 1260px) {
    .u360-metrics {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .u360-layout {
        grid-template-columns: 1fr;
    }

    .u360-side {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .u360-hero {
        grid-template-columns: 1fr;
        padding: 27px 21px;
        border-radius: 22px;
    }

    .u360-completion {
        display: none;
    }

    .u360-hero h1 {
        font-size: 39px;
    }

    .u360-metrics,
    .u360-activity-grid,
    .u360-side {
        grid-template-columns: 1fr;
    }

    .u360-decision {
        grid-template-columns:
            24px
            8px
            minmax(0, 1fr);
    }

    .u360-decision > b {
        display: none;
    }

    .u360-occupation-card {
        grid-template-columns:
            48px
            minmax(0, 1fr);
    }

    .u360-live {
        display: none;
    }
}
