.o360 {
    --ink:#0a1930;
    --muted:#718095;
    --line:#e4eaf1;
    --soft:#f5f8fb;
    --blue:#2e64cc;
    --green:#16825c;
    --orange:#dc7c1c;
    --red:#cf3e49;
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:18px;
    color:var(--ink);
}

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

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

.o360-hero {
    display:grid;
    grid-template-columns:minmax(0,1fr) 310px;
    gap:35px;
    min-height:315px;
    padding:40px;
    overflow:hidden;
    border-radius:30px;
    background:
        radial-gradient(
            circle at 83% 0,
            rgba(103,164,255,.32),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #071426,
            #0c213e 58%,
            #173d68
        );
    box-shadow:0 30px 75px rgba(8,27,53,.22);
    color:#fff;
}

.o360-breadcrumb {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:30px;
    color:#9eafc7;
    font-size:10px;
}

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

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

.o360-hero .o360-eyebrow {
    color:#a9bedc;
}

.o360-hero h1 {
    max-width:800px;
    margin:0;
    font-size:clamp(39px,5vw,64px);
    font-weight:790;
    letter-spacing:-.055em;
    line-height:1;
}

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

.o360-stage {
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-top:23px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.09);
    color:#dce8f8;
    font-size:9px;
    font-weight:800;
}

.o360-stage i {
    width:8px;
    height:8px;
    border-radius:50%;
    background:#91a5c2;
}

.o360-stage.is-occupied i {
    background:#4ad39b;
}

.o360-stage.is-vacant i {
    background:#ffb760;
}

.o360-stage.is-candidate i,
.o360-stage.is-incoming i {
    background:#76a7ff;
}

.o360-stage.is-notice i,
.o360-stage.is-ended i {
    background:#ff7d87;
}

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

.o360-button {
    display:inline-flex;
    align-items:center;
    min-height:41px;
    padding:0 15px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:11px;
    background:rgba(255,255,255,.08);
    font-size:10px;
    font-weight:790;
    transition:transform .16s ease;
}

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

.o360-button.is-primary {
    border-color:#fff;
    background:#fff;
    color:#0c1d36;
}

.o360-hero-card {
    align-self:center;
    padding:24px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    background:rgba(255,255,255,.075);
    backdrop-filter:blur(10px);
}

.o360-hero-card > small,
.o360-hero-card > strong {
    display:block;
}

.o360-hero-card > small {
    color:#9fb2ce;
    font-size:8px;
    font-weight:800;
    text-transform:uppercase;
}

.o360-hero-card > strong {
    margin-top:8px;
    font-size:21px;
    letter-spacing:-.035em;
}

.o360-hero-card > p {
    margin:8px 0 20px;
    color:#bac8dc;
    font-size:9px;
    line-height:1.5;
}

.o360-hero-card dl {
    margin:0;
}

.o360-hero-card dl > div {
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:10px 0;
    border-top:1px solid rgba(255,255,255,.09);
}

.o360-hero-card dt {
    color:#9dafca;
    font-size:8px;
}

.o360-hero-card dd {
    margin:0;
    font-size:9px;
    font-weight:750;
}

.o360-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);
}

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

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

.o360-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;
}

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

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

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

.o360-panel-header > a {
    color:var(--blue);
    font-size:9px;
    font-weight:790;
}

.o360-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;
}

.o360-cycle {
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
    padding:28px 22px 30px;
}

.o360-cycle-step {
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:9px;
    text-align:center;
}

.o360-cycle-step::after {
    content:"";
    position:absolute;
    top:16px;
    left:calc(50% + 18px);
    right:calc(-50% + 18px);
    height:2px;
    background:#e5eaf0;
}

.o360-cycle-step:last-child::after {
    display:none;
}

.o360-cycle-step > span {
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    width:33px;
    height:33px;
    border:2px solid #e1e7ee;
    border-radius:50%;
    background:#fff;
    color:#8793a4;
    font-size:9px;
    font-weight:850;
}

.o360-cycle-step > strong {
    color:#7b8798;
    font-size:8px;
}

.o360-cycle-step.is-past > span {
    border-color:#bfe8d7;
    background:#eaf9f2;
    color:var(--green);
}

.o360-cycle-step.is-past::after {
    background:#bfe8d7;
}

.o360-cycle-step.is-current > span {
    border-color:#2e64cc;
    background:#2e64cc;
    box-shadow:0 0 0 6px rgba(46,100,204,.1);
    color:#fff;
}

.o360-cycle-step.is-current > strong {
    color:#1f4f9f;
    font-weight:850;
}

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

.o360-metrics article {
    display:flex;
    flex-direction:column;
    min-height:112px;
    padding:16px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 25px rgba(15,32,60,.045);
}

.o360-metrics article.is-alert {
    border-color:#f0cfd2;
    background:#fff8f8;
}

.o360-metrics small {
    color:#657287;
    font-size:9px;
    font-weight:760;
}

.o360-metrics strong {
    margin-top:12px;
    font-size:28px;
    letter-spacing:-.045em;
    line-height:1;
}

.o360-metrics span {
    margin-top:auto;
    padding-top:11px;
    color:#98a2b0;
    font-size:8px;
}

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

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

.o360-decisions {
    padding:7px;
}

.o360-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;
}

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

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

.o360-index {
    color:#adb6c3;
    font-size:8px;
    font-weight:850;
}

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

.o360-decision.is-critical > i {
    background:var(--red);
    box-shadow:0 0 0 4px rgba(207,62,73,.11);
}

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

.o360-decision.is-information > i {
    background:var(--blue);
    box-shadow:0 0 0 4px rgba(46,100,204,.11);
}

.o360-decision > span:nth-of-type(2) strong,
.o360-decision > span:nth-of-type(2) small {
    display:block;
}

.o360-decision > span:nth-of-type(2) strong {
    font-size:11px;
}

.o360-decision > span:nth-of-type(2) small {
    margin-top:5px;
    color:#697588;
    font-size:9px;
    line-height:1.45;
}

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

.o360-vacancy {
    display:grid;
    grid-template-columns:58px minmax(0,1fr) auto;
    gap:17px;
    align-items:center;
    padding:26px 22px;
}

.o360-vacancy > span {
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border-radius:18px;
    background:#fff1de;
    color:#b86718;
    font-size:18px;
    font-weight:850;
}

.o360-vacancy small,
.o360-vacancy strong {
    display:block;
}

.o360-vacancy small {
    color:#8c97a6;
    font-size:8px;
    text-transform:uppercase;
}

.o360-vacancy strong {
    margin-top:5px;
    font-size:18px;
}

.o360-vacancy p {
    margin:6px 0 0;
    color:#758195;
    font-size:9px;
}

.o360-vacancy > a {
    padding:10px 13px;
    border-radius:10px;
    background:#10294a;
    color:#fff;
    font-size:9px;
    font-weight:790;
}

.o360-occupation {
    display:grid;
    grid-template-columns:58px minmax(180px,1fr) minmax(260px,1.25fr);
    gap:17px;
    align-items:center;
    padding:25px 22px;
}

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

.o360-occupant small,
.o360-occupant strong,
.o360-occupant span {
    display:block;
}

.o360-occupant small {
    color:#8c97a6;
    font-size:8px;
    text-transform:uppercase;
}

.o360-occupant strong {
    margin-top:5px;
    font-size:17px;
}

.o360-occupant span {
    margin-top:5px;
    color:var(--green);
    font-size:8px;
    font-weight:750;
}

.o360-occupation dl {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1px;
    margin:0;
    overflow:hidden;
    border:1px solid #e8edf2;
    border-radius:13px;
    background:#e8edf2;
}

.o360-occupation dl > div {
    padding:13px;
    background:#f8fafc;
}

.o360-occupation dt {
    color:#8a95a5;
    font-size:7px;
    text-transform:uppercase;
}

.o360-occupation dd {
    margin:5px 0 0;
    font-size:9px;
    font-weight:750;
}

.o360-ecosystem {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1px;
    background:#e8edf2;
}

.o360-ecosystem > a {
    display:grid;
    grid-template-columns:42px minmax(0,1fr) auto;
    gap:12px;
    align-items:center;
    min-height:112px;
    padding:18px;
    background:#fff;
}

.o360-ecosystem > a:hover {
    background:#f8fafc;
}

.o360-ecosystem > a > span {
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:13px;
    background:#102744;
    color:#fff;
    font-size:10px;
    font-weight:850;
}

.o360-ecosystem small,
.o360-ecosystem strong {
    display:block;
}

.o360-ecosystem small {
    color:#8e98a7;
    font-size:7px;
    text-transform:uppercase;
}

.o360-ecosystem strong {
    margin-top:4px;
    font-size:11px;
}

.o360-ecosystem p {
    margin:5px 0 0;
    color:#748095;
    font-size:8px;
}

.o360-ecosystem b {
    color:#78869a;
    font-size:11px;
}

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

.o360-timeline article {
    display:grid;
    grid-template-columns:72px 16px minmax(0,1fr);
    gap:10px;
    min-height:70px;
}

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

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

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

.o360-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;
}

.o360-timeline article.is-entry .o360-event-line i {
    background:var(--green);
}

.o360-timeline article.is-exit .o360-event-line i,
.o360-timeline article.is-claim .o360-event-line i {
    background:var(--red);
}

.o360-timeline article.is-application .o360-event-line i {
    background:var(--blue);
}

.o360-timeline article.is-intervention .o360-event-line i {
    background:#7d65c8;
}

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

.o360-timeline article > div {
    align-self:center;
    min-width:0;
}

.o360-timeline small,
.o360-timeline strong {
    display:block;
}

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

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

.o360-timeline p {
    margin:4px 0 0;
    color:#808b9b;
    font-size:7px;
}

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

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

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

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

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

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

.o360-occupations-list {
    padding:9px 17px 17px;
}

.o360-occupations-list article {
    display:grid;
    grid-template-columns:36px minmax(0,1fr);
    gap:10px;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #edf0f4;
}

.o360-occupations-list article:last-child {
    border-bottom:0;
}

.o360-occupations-list article > span {
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:11px;
    background:#edf3fa;
    color:#31517e;
    font-size:11px;
    font-weight:850;
}

.o360-occupations-list strong,
.o360-occupations-list small {
    display:block;
}

.o360-occupations-list strong {
    font-size:9px;
}

.o360-occupations-list small {
    margin-top:4px;
    color:#8792a2;
    font-size:7px;
}

.o360-shortcuts {
    padding:8px 17px 17px;
}

.o360-shortcuts a {
    display:flex;
    align-items:center;
    min-height:39px;
    padding:0 11px;
    border-bottom:1px solid #edf0f4;
    color:#33435b;
    font-size:8px;
    font-weight:720;
}

.o360-shortcuts a:hover {
    color:var(--blue);
}

.o360-empty {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:155px;
    padding:24px;
    text-align:center;
}

.o360-empty.is-small {
    min-height:125px;
}

.o360-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;
}

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

.o360-empty small {
    margin-top:6px;
    color:#8994a4;
    font-size:8px;
}

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

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

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

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

    .o360-hero-card {
        display:none;
    }

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

    .o360-cycle {
        grid-template-columns:1fr;
        gap:8px;
    }

    .o360-cycle-step {
        flex-direction:row;
        justify-content:flex-start;
        text-align:left;
    }

    .o360-cycle-step::after {
        display:none;
    }

    .o360-metrics,
    .o360-ecosystem,
    .o360-side {
        grid-template-columns:1fr;
    }

    .o360-occupation {
        grid-template-columns:54px minmax(0,1fr);
    }

    .o360-occupation dl {
        grid-column:1 / -1;
    }

    .o360-vacancy {
        grid-template-columns:54px minmax(0,1fr);
    }

    .o360-vacancy > a {
        grid-column:1 / -1;
        justify-self:start;
    }

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

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