/*
 * Page-specific USP eyecatchers.
 * These components deliberately explain a real product or service relationship;
 * they do not add decorative hero cards or alter product screenshot sizing.
 */

/* Home: one technical team across four connected disciplines. */
.usp-home-system {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.5fr);
    gap: 44px;
    align-items: center;
    margin-top: 42px;
    padding: 22px 0;
    border-top: 1px solid rgba(151, 176, 186, 0.18);
    border-bottom: 1px solid rgba(151, 176, 186, 0.12);
}

.usp-home-system__intro {
    display: grid;
    gap: 7px;
}

.usp-home-system__intro > span {
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.usp-home-system__intro > strong {
    max-width: 390px;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.45;
}

.usp-home-system__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(62px, auto));
    gap: 16px 76px;
    align-items: stretch;
    padding: 8px 14px;
    isolation: isolate;
}

.usp-home-system__track::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background:
        linear-gradient(rgba(121, 211, 200, 0.2), rgba(121, 211, 200, 0.2)) center / 1px 100% no-repeat,
        linear-gradient(90deg, rgba(121, 211, 200, 0.18), rgba(199, 161, 98, 0.24)) center / 100% 1px no-repeat;
    transform: translate(-50%, -50%);
}

.usp-home-system__track a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid rgba(151, 176, 186, 0.13);
    border-radius: 6px;
    background: rgba(9, 22, 30, 0.88);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.usp-home-system__track a i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid rgba(121, 211, 200, 0.34);
    border-radius: 50%;
    background: #09161e;
    color: var(--color-primary);
    font-size: 0.78rem;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.usp-home-system__track a:hover,
.usp-home-system__track a:focus-visible {
    border-color: rgba(121, 211, 200, 0.42);
    background: rgba(121, 211, 200, 0.07);
    color: var(--color-text);
}

.usp-home-system__track a:hover i,
.usp-home-system__track a:focus-visible i {
    border-color: var(--color-primary);
    background: rgba(121, 211, 200, 0.12);
    transform: translateY(-2px);
}

.usp-home-system__signal {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #d9f4ef 0 5%, rgba(121, 211, 200, 0.42) 7% 13%, rgba(121, 211, 200, 0.12) 16% 38%, transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Hosting: the direct booking path and optional technical support. */
.usp-hosting-lane {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin: 28px 0 30px;
    padding: 16px 0;
    border-top: 1px solid rgba(199, 161, 98, 0.2);
    border-bottom: 1px solid rgba(151, 176, 186, 0.12);
}

.usp-hosting-lane__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 8px 11px;
    border: 1px solid rgba(199, 161, 98, 0.22);
    border-radius: 999px;
    background: rgba(199, 161, 98, 0.055);
    color: #e9d7b8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.usp-hosting-lane__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 5px rgba(121, 211, 200, 0.08);
}

.usp-hosting-lane__route {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
        "select arrow shop"
        ". . dock"
        ". . support";
    gap: 8px 14px;
    align-items: center;
    isolation: isolate;
}

.usp-hosting-lane__route::before {
    display: none;
}

.usp-hosting-lane__route::after {
    display: none;
}

.usp-hosting-lane__route > span {
    --hosting-step-border: rgba(121, 211, 200, 0.24);
    --hosting-step-accent: rgba(121, 211, 200, 0.72);
    --hosting-step-bg: rgba(121, 211, 200, 0.045);
    --hosting-step-active-bg: rgba(121, 211, 200, 0.1);
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 9px 12px;
    border: 1px solid rgba(151, 176, 186, 0.13);
    border-left: 2px solid var(--hosting-step-border);
    border-radius: 5px;
    background: var(--hosting-step-bg);
    color: var(--color-text-light);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: normal;
}

.usp-hosting-lane__route > span:nth-of-type(1) { grid-area: select; }
.usp-hosting-lane__route > span:nth-of-type(2) { grid-area: shop; }
.usp-hosting-lane__route > span:nth-of-type(3) {
    --hosting-step-border: rgba(199, 161, 98, 0.55);
    --hosting-step-accent: rgba(229, 193, 126, 0.92);
    --hosting-step-bg: rgba(199, 161, 98, 0.055);
    --hosting-step-active-bg: rgba(199, 161, 98, 0.12);
    grid-area: support;
}

.usp-hosting-lane__route > i:nth-of-type(1) { grid-area: arrow; }
.usp-hosting-lane__route > i:nth-of-type(2) {
    grid-area: dock;
    justify-self: center;
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.usp-hosting-lane__route small {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.usp-hosting-lane__route > span:nth-of-type(3) small {
    color: var(--color-secondary);
    font-size: 0.58rem;
}

.usp-hosting-lane__route > i {
    color: rgba(121, 211, 200, 0.55);
    font-size: 0.68rem;
}

/* Managed Services: the customer's environment inside a visible operating cycle. */
.usp-managed-radar {
    position: relative;
    width: min(100%, 340px);
    height: 230px;
    margin: 20px auto 0;
    overflow: hidden;
    border-top: 1px solid rgba(151, 176, 186, 0.12);
    border-bottom: 1px solid rgba(151, 176, 186, 0.08);
    background:
        radial-gradient(circle at 50% 50%, rgba(217, 244, 239, 0.68) 0 2px, transparent 3px),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 32px, rgba(121, 211, 200, 0.1) 33px, transparent 34px 60px);
}

.usp-managed-radar::before,
.usp-managed-radar::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(121, 211, 200, 0.09);
    transform: translate(-50%, -50%);
}

.usp-managed-radar::before {
    width: 78%;
    height: 1px;
}

.usp-managed-radar::after {
    width: 1px;
    height: 72%;
}

.usp-managed-radar__sweep {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 306deg,
        rgba(121, 211, 200, 0.04) 324deg,
        rgba(121, 211, 200, 0.18) 346deg,
        rgba(217, 244, 239, 0.76) 359deg,
        transparent 360deg
    );
    transform: translate(-50%, -50%);
}

.usp-managed-radar__sweep::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 50%;
    background: linear-gradient(180deg, rgba(217, 244, 239, 0.9), rgba(121, 211, 200, 0.08));
    transform: translateX(-50%);
}

.usp-managed-radar__core {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    align-content: center;
    gap: 2px;
    border: 1px solid rgba(121, 211, 200, 0.4);
    border-radius: 50%;
    background: #09171f;
    color: var(--color-primary);
    transform: translate(-50%, -50%);
}

.usp-managed-radar__core i {
    margin-bottom: 2px;
    font-size: 0.72rem;
}

.usp-managed-radar__core strong {
    color: var(--color-text);
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
}

.usp-managed-radar__core small {
    color: var(--color-primary);
    font-size: 0.56rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.usp-managed-radar__node {
    position: absolute;
    z-index: 3;
    display: flex;
    width: min(44%, 126px);
    min-width: 0;
    align-items: center;
    gap: 7px;
    padding: 7px 8px;
    border: 1px solid rgba(151, 176, 186, 0.14);
    border-left: 2px solid rgba(121, 211, 200, 0.38);
    border-radius: 5px;
    background: rgba(9, 23, 31, 0.94);
    color: var(--color-text-light);
    font-weight: 650;
    box-sizing: border-box;
}

.usp-managed-radar__node > i {
    flex: 0 0 22px;
    color: var(--color-primary);
    font-size: 0.66rem;
    text-align: center;
}

.usp-managed-radar__node > span {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.usp-managed-radar__node strong {
    color: var(--color-text);
    font-size: 0.7rem;
    line-height: 1.2;
}

.usp-managed-radar__node small {
    color: var(--color-text-muted);
    font-size: 0.58rem;
    line-height: 1.25;
}

.usp-managed-radar__node--monitoring {
    top: 10px;
    left: 50%;
    width: min(54%, 148px);
    transform: translateX(-50%);
}

.usp-managed-radar__node--maintenance { right: 5px; bottom: 9px; }
.usp-managed-radar__node--backup { bottom: 9px; left: 5px; }

/* Software overview: two products joined by the same development team. */
.usp-software-bridge {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "core core"
        "helpdesk shop";
    gap: 34px 54px;
    align-items: center;
    max-width: 780px;
    margin: 34px 0 22px;
    padding-top: 2px;
    isolation: isolate;
}

.usp-software-bridge::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 35px;
    left: 25%;
    width: 50%;
    height: 56px;
    background:
        linear-gradient(to bottom right, transparent 49.2%, rgba(121, 211, 200, 0.46) 50%, transparent 50.8%) left / 50% 100% no-repeat,
        linear-gradient(to bottom left, transparent 49.2%, rgba(199, 161, 98, 0.46) 50%, transparent 50.8%) right / 50% 100% no-repeat;
    transform-origin: top center;
}

.usp-software-bridge::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 18px;
    left: 50%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 211, 200, 0.2), transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.usp-software-bridge__product {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(151, 176, 186, 0.14);
    border-radius: 6px;
    background: rgba(9, 22, 30, 0.82);
    color: var(--color-text);
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.usp-software-bridge__product--helpdesk { grid-area: helpdesk; }
.usp-software-bridge__product--shop { grid-area: shop; }

.usp-software-bridge__product:last-child {
    justify-content: flex-start;
    text-align: left;
}

.usp-software-bridge__product > i {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(121, 211, 200, 0.32);
    border-radius: 50%;
    background: #09171f;
    color: var(--color-primary);
    transition: border-color 180ms ease;
}

.usp-software-bridge__product--shop > i {
    border-color: rgba(199, 161, 98, 0.38);
    color: var(--color-secondary);
}

.usp-software-bridge__product span {
    display: grid;
    gap: 2px;
}

.usp-software-bridge__product small {
    color: var(--color-text-muted);
    font-size: 0.65rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.usp-software-bridge__product strong {
    font-size: 0.9rem;
}

.usp-software-bridge__product:hover > i,
.usp-software-bridge__product:focus-visible > i {
    border-color: currentColor;
}

.usp-software-bridge__product:hover,
.usp-software-bridge__product:focus-visible {
    border-color: rgba(121, 211, 200, 0.34);
    background: rgba(121, 211, 200, 0.06);
    transform: translateY(-2px);
}

.usp-software-bridge__core {
    grid-area: core;
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(151, 176, 186, 0.2);
    border-radius: 999px;
    background: #0b1820;
    color: var(--color-text-light);
    font-size: 0.69rem;
    font-weight: 650;
    white-space: nowrap;
}

.usp-software-bridge__core i {
    color: var(--color-primary);
}

/* Helpdesk: one connected work context, placed before the real screenshot. */
.usp-helpdesk-flow {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    margin: 34px 0 22px;
    padding: 16px 18px;
    border: 1px solid rgba(121, 211, 200, 0.16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 14% 50%, rgba(121, 211, 200, 0.075), transparent 28%),
        rgba(7, 18, 25, 0.58);
    overflow: hidden;
}

.usp-helpdesk-flow__label {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.085em;
    line-height: 1.4;
    text-transform: uppercase;
}

.usp-helpdesk-flow__label > i {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(121, 211, 200, 0.38);
    border-radius: 50%;
    background: rgba(121, 211, 200, 0.08);
    color: #a4e9df;
    font-size: 0.72rem;
    box-shadow: 0 0 0 5px rgba(121, 211, 200, 0.035);
}

.usp-helpdesk-flow__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    isolation: isolate;
}

.usp-helpdesk-flow__track::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 11%;
    left: 11%;
    height: 1px;
    background: linear-gradient(90deg, rgba(121, 211, 200, 0.1), rgba(121, 211, 200, 0.34), rgba(121, 211, 200, 0.1));
    content: "";
    transform: translateY(-50%);
}

.usp-helpdesk-flow__track::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 11%;
    left: 11%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #79d3c8 12%, #b7efe8 82%, transparent);
    content: "";
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
}

.usp-helpdesk-flow__pulse {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 11%;
    display: block;
    width: 9px;
    height: 9px;
    margin: -4px 0 0 -4px;
    border: 2px solid #dbfaf6;
    border-radius: 50%;
    background: #79d3c8;
    opacity: 0;
    pointer-events: none;
    box-shadow:
        0 0 0 6px rgba(121, 211, 200, 0.1),
        0 0 22px rgba(121, 211, 200, 0.72);
}

.usp-helpdesk-flow__track > span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(151, 176, 186, 0.14);
    border-radius: 5px;
    background: rgba(9, 22, 30, 0.78);
    color: var(--color-text-light);
    font-size: 0.72rem;
    font-weight: 650;
}

.usp-helpdesk-flow__track > span::after {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-radius: 50%;
    background: rgba(151, 176, 186, 0.32);
    box-shadow: 0 0 0 3px rgba(151, 176, 186, 0.04);
}

.usp-helpdesk-flow__track > span > i {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(121, 211, 200, 0.32);
    border-radius: 5px;
    background: #09161e;
    color: var(--color-primary);
    font-size: 0.68rem;
}

/* Contact: a clear first-contact path before the detailed route cards. */
.usp-contact-router {
    position: relative;
    max-width: 920px;
    margin: 42px auto 36px;
    padding: 24px 28px 20px;
    border: 1px solid rgba(151, 176, 186, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(121, 211, 200, 0.055), transparent 38%),
        rgba(7, 18, 26, 0.78);
    box-shadow: 0 22px 55px rgba(1, 8, 12, 0.18);
    isolation: isolate;
    overflow: hidden;
}

.usp-contact-router::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 18%, rgba(121, 211, 200, 0.035) 50%, transparent 82%);
    content: "";
    pointer-events: none;
}

.usp-contact-router__intro,
.usp-contact-router__status {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.usp-contact-router__intro {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(151, 176, 186, 0.14);
}

.usp-contact-router__intro > span {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.usp-contact-router__intro > strong {
    max-width: 580px;
    color: var(--color-text-light);
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: right;
}

.usp-contact-router__track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 28px 0 24px;
}

.usp-contact-router__rail {
    position: absolute;
    z-index: 0;
    top: 51px;
    right: 16.666%;
    left: 16.666%;
    display: block;
    height: 1px;
    background: rgba(151, 176, 186, 0.18);
    pointer-events: none;
}

.usp-contact-router__progress {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(90deg, rgba(121, 211, 200, 0.42), var(--color-primary));
    box-shadow: 0 0 12px rgba(121, 211, 200, 0.24);
    transform-origin: left center;
}

.usp-contact-router__signal {
    position: absolute;
    top: 50%;
    left: 100%;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8fffa;
    box-shadow:
        0 0 0 5px rgba(121, 211, 200, 0.12),
        0 0 18px rgba(121, 211, 200, 0.76);
    transform: translate(-50%, -50%);
}

.usp-contact-router__step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    min-width: 0;
    text-align: center;
}

.usp-contact-router__node {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(121, 211, 200, 0.32);
    border-radius: 50%;
    background: #091821;
    color: var(--color-primary);
    box-shadow: 0 0 0 7px rgba(7, 18, 26, 0.92);
}

.usp-contact-router__node i {
    font-size: 0.76rem;
}

.usp-contact-router__copy {
    display: grid;
    gap: 4px;
    justify-items: center;
    min-width: 0;
    margin-top: 13px;
}

.usp-contact-router__copy em {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-style: normal;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.usp-contact-router__copy strong {
    color: var(--color-text-light);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.usp-contact-router__copy small {
    max-width: 220px;
    color: var(--color-text-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.usp-contact-router__status {
    padding-top: 16px;
    border-top: 1px solid rgba(151, 176, 186, 0.14);
}

.usp-contact-router__status span,
.usp-contact-router__status strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.usp-contact-router__status span {
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.usp-contact-router__status strong {
    color: var(--color-text-muted);
    font-size: 0.76rem;
    font-weight: 600;
}

/* Community: technology and community meet in a human, lightweight visual. */
.usp-community-impact {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    max-width: 760px;
    margin: 36px 0 22px;
    padding: 18px 0;
    isolation: isolate;
}

.usp-community-impact::before {
    display: none;
}

.usp-community-impact > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-bottom: 1px solid rgba(121, 211, 200, 0.2);
    background: rgba(9, 22, 30, 0.82);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 650;
}

.usp-community-impact > span > i {
    color: var(--color-primary);
}

.usp-community-impact__heart {
    position: relative;
    z-index: 1;
    padding: 11px 16px !important;
    border: 1px solid rgba(199, 161, 98, 0.28);
    border-bottom-color: rgba(199, 161, 98, 0.52) !important;
    border-radius: 999px;
    color: var(--color-text) !important;
}

.usp-community-impact__heart::before,
.usp-community-impact__heart::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border: 1px solid rgba(199, 161, 98, 0.28);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
}

.usp-community-impact__heart > i {
    color: var(--color-secondary) !important;
}

/* Brand guide: the actual palette behaves like a compact visual equalizer. */
.usp-brand-spectrum {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    width: min(100%, 420px);
    height: 48px;
    margin-top: 30px;
    padding: 8px 0 0;
    border-top: 1px solid rgba(151, 176, 186, 0.16);
    overflow: hidden;
}

.usp-brand-spectrum > span {
    flex: 1 1 0;
    height: 20px;
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
}

.usp-brand-spectrum > span:nth-child(1) { background: #79d3c8; }
.usp-brand-spectrum > span:nth-child(2) { background: #4d9cff; }
.usp-brand-spectrum > span:nth-child(3) { background: #93f5d1; }
.usp-brand-spectrum > span:nth-child(4) { background: #9b7bff; }
.usp-brand-spectrum > span:nth-child(5) { background: #c7a162; }

/* Shop: four confirmed states without restoring connector lines. */
.page-shop-modern .shop-conversion-path {
    isolation: isolate;
}

.page-shop-modern .shop-conversion-path > span {
    --shop-step-delay: 180ms;
    --shop-step-border: rgba(199, 161, 98, 0.24);
    --shop-step-active-border: rgba(252, 176, 64, 0.62);
    --shop-step-bg: rgba(199, 161, 98, 0.025);
    --shop-step-active-bg: rgba(252, 176, 64, 0.09);
    --shop-step-number: #ffc76c;
    overflow: hidden;
    border-color: var(--shop-step-border);
    background-color: var(--shop-step-bg);
}

.page-shop-modern .shop-conversion-path > span:nth-child(2) { --shop-step-delay: 720ms; }
.page-shop-modern .shop-conversion-path > span:nth-child(3) { --shop-step-delay: 1.26s; }
.page-shop-modern .shop-conversion-path > span:nth-child(4) {
    --shop-step-delay: 1.8s;
    --shop-step-border: rgba(121, 211, 200, 0.32);
    --shop-step-active-border: rgba(121, 211, 200, 0.64);
    --shop-step-bg: rgba(121, 211, 200, 0.04);
    --shop-step-active-bg: rgba(121, 211, 200, 0.1);
    --shop-step-number: var(--color-primary);
}

.page-shop-modern .shop-conversion-path > span::after {
    display: none !important;
}

.page-shop-modern .shop-conversion-path > span::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 16px;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(252, 176, 64, 0.5);
    border-radius: 50%;
    background: rgba(252, 176, 64, 0.12);
    opacity: 0.72;
    transform-origin: center;
}

.page-shop-modern .shop-conversion-path > span:last-child::before {
    top: 14px;
    right: 16px;
    width: 7px;
    height: 12px;
    border: 0;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    border-radius: 0;
    background: transparent;
    opacity: 1;
    transform: rotate(45deg) scale(1);
    transform-origin: center;
}

.page-shop-modern .shop-conversion-path > span small {
    color: var(--shop-step-number);
}

@media (prefers-reduced-motion: no-preference) {
    .usp-home-system__signal {
        animation: uspHomeHubPulse 5.6s ease-in-out infinite;
    }

    .usp-home-system__track a:nth-of-type(1) i { animation: uspHomeServer 8s ease-in-out infinite; }
    .usp-home-system__track a:nth-of-type(2) i { animation: uspHomeCode 8s ease-in-out infinite; }
    .usp-home-system__track a:nth-of-type(3) i { animation: uspHomeOperate 8s ease-in-out infinite; }
    .usp-home-system__track a:nth-of-type(4) i { animation: uspHomeLaunch 8s ease-in-out infinite; }

    .usp-hosting-lane__status i {
        animation: uspHostingReady 640ms ease-out 100ms both;
    }

    .usp-hosting-lane__route > span:nth-of-type(1) { animation: uspHostingStage 620ms ease-out 220ms both; }
    .usp-hosting-lane__route > i:nth-of-type(1) { animation: uspHostingArrow 420ms ease-out 670ms both; }
    .usp-hosting-lane__route > span:nth-of-type(2) { animation: uspHostingStage 620ms ease-out 820ms both; }
    .usp-hosting-lane__route > i:nth-of-type(2) { animation: uspHostingDock 480ms ease-out 1.32s both; }
    .usp-hosting-lane__route > span:nth-of-type(3) { animation: uspHostingStage 720ms ease-out 1.62s both; }

    .usp-managed-radar__sweep {
        animation: uspRadarSweep 6s linear infinite;
    }

    .usp-managed-radar__node {
        animation: uspRadarNode 6s linear infinite both;
    }

    /* The delays place each pulse exactly where the clockwise sweep meets its node. */
    .usp-managed-radar__node--monitoring { animation-delay: -0.24s; }
    .usp-managed-radar__node--maintenance { animation-delay: 1.93s; }
    .usp-managed-radar__node--backup { animation-delay: 3.59s; }
    .usp-managed-radar__core { animation: uspRadarCore 6s linear -0.24s infinite both; }

    .usp-software-bridge::before {
        animation: uspSoftwareBranch 1.25s cubic-bezier(0.2, 0.75, 0.25, 1) 180ms both;
    }

    .usp-software-bridge::after {
        animation: uspSoftwareHalo 1.1s ease-out 180ms both;
    }

    .usp-software-bridge__core {
        animation: uspSoftwareCorePulse 820ms ease-out 320ms both;
    }

    .usp-software-bridge__product > i {
        animation: uspSoftwareProductReveal 720ms cubic-bezier(0.2, 0.75, 0.25, 1) 620ms both;
    }

    .usp-software-bridge__product--shop > i { animation-delay: 820ms; }

    .usp-helpdesk-flow__track > span::after { animation: uspHelpdeskStatus 5.6s ease-out infinite; }
    .usp-helpdesk-flow__track > span { animation: uspHelpdeskPanel 5.6s ease-in-out infinite; }
    .usp-helpdesk-flow__track > span:nth-child(2),
    .usp-helpdesk-flow__track > span:nth-child(2)::after { animation-delay: 960ms; }
    .usp-helpdesk-flow__track > span:nth-child(3),
    .usp-helpdesk-flow__track > span:nth-child(3)::after { animation-delay: 1.44s; }
    .usp-helpdesk-flow__track > span:nth-child(4),
    .usp-helpdesk-flow__track > span:nth-child(4)::after { animation-delay: 480ms; }

    .usp-community-impact__heart > i {
        animation: uspHeartPulse 6.8s ease-in-out infinite;
    }

    .usp-community-impact__heart::before { animation: uspCommunityRipple 6.8s ease-out infinite; }
    .usp-community-impact__heart::after { animation: uspCommunityRipple 6.8s ease-out 360ms infinite; }

    .usp-brand-spectrum > span { animation: uspBrandSpectrum 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) 440ms both; }
    .usp-brand-spectrum > span:nth-child(2),
    .usp-brand-spectrum > span:nth-child(4) { animation-delay: 260ms; }
    .usp-brand-spectrum > span:nth-child(3) { animation-delay: 80ms; }

    .page-shop-modern .shop-conversion-path > span { animation: uspShopStage 660ms ease-out var(--shop-step-delay) both; }
    .page-shop-modern .shop-conversion-path > span small { animation: uspShopIndex 660ms ease-out var(--shop-step-delay) both; }
    .page-shop-modern .shop-conversion-path > span:not(:last-child)::before { animation: uspShopMarker 660ms ease-out var(--shop-step-delay) both; }

    .page-shop-modern .shop-conversion-path > span:last-child::before {
        animation: uspShopConfirm 820ms cubic-bezier(0.2, 0.75, 0.25, 1) 2.08s both;
    }

    .usp-home-system__track a:hover i,
    .usp-home-system__track a:focus-visible i {
        animation: none;
    }
}

@keyframes uspHomeHubPulse {
    0%, 100% { opacity: 0.42; filter: brightness(0.82); transform: translate(-50%, -50%); }
    42% { opacity: 1; filter: brightness(1.28); transform: translate(-50%, -50%); }
}

@keyframes uspHomeServer {
    0%, 18%, 100% { box-shadow: none; background: #09161e; }
    7% { box-shadow: inset 0 -5px 0 rgba(121, 211, 200, 0.2), 0 0 0 5px rgba(121, 211, 200, 0.05); background: #0d2027; }
}

@keyframes uspHomeCode {
    0%, 20%, 42%, 100% { transform: scaleX(1); border-color: rgba(121, 211, 200, 0.34); }
    28% { transform: scaleX(0.84); border-color: rgba(121, 211, 200, 0.76); }
    36% { transform: scaleX(1.08); }
}

@keyframes uspHomeOperate {
    0%, 43%, 64%, 100% { transform: rotate(0deg); background: #09161e; }
    50% { transform: rotate(-10deg); background: rgba(121, 211, 200, 0.12); }
    58% { transform: rotate(10deg); }
}

@keyframes uspHomeLaunch {
    0%, 65%, 86%, 100% { transform: translateY(0); box-shadow: none; }
    73% { transform: translateY(-4px); box-shadow: 0 7px 12px rgba(121, 211, 200, 0.12); }
    81% { transform: translateY(1px); }
}

@keyframes uspHostingReady {
    0% { background: rgba(121, 211, 200, 0.36); box-shadow: 0 0 0 3px rgba(121, 211, 200, 0.08); }
    62% { background: var(--color-primary); box-shadow: 0 0 0 9px rgba(121, 211, 200, 0); }
    100% { background: var(--color-primary); box-shadow: 0 0 0 5px rgba(121, 211, 200, 0.08); }
}

@keyframes uspHostingStage {
    0% {
        border-color: rgba(151, 176, 186, 0.13);
        border-left-color: var(--hosting-step-border);
        background: var(--hosting-step-bg);
        box-shadow: none;
    }
    58% {
        border-color: var(--hosting-step-accent);
        border-left-color: var(--hosting-step-accent);
        background: var(--hosting-step-active-bg);
        box-shadow: inset 3px 0 0 var(--hosting-step-accent);
    }
    100% {
        border-color: var(--hosting-step-border);
        border-left-color: var(--hosting-step-border);
        background: var(--hosting-step-bg);
        box-shadow: none;
    }
}

@keyframes uspHostingArrow {
    0% { opacity: 0.2; color: rgba(151, 176, 186, 0.28); }
    68% { opacity: 1; color: var(--color-primary); }
    100% { opacity: 0.72; color: rgba(121, 211, 200, 0.72); }
}

@keyframes uspHostingDock {
    0% { opacity: 0.18; color: rgba(151, 176, 186, 0.24); }
    68% { opacity: 1; color: var(--color-secondary); }
    100% { opacity: 0.78; color: var(--color-secondary); }
}

@keyframes uspRadarSweep {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes uspRadarNode {
    0%, 10%, 100% {
        border-left-color: rgba(121, 211, 200, 0.38);
        background: rgba(9, 23, 31, 0.94);
        box-shadow: none;
    }
    4% {
        border-left-color: rgba(217, 244, 239, 0.92);
        background: rgba(121, 211, 200, 0.11);
        box-shadow: 0 0 0 4px rgba(121, 211, 200, 0.05);
    }
}

@keyframes uspRadarCore {
    0%, 10%, 34%, 46%, 62%, 74%, 100% {
        border-color: rgba(121, 211, 200, 0.4);
        box-shadow: none;
        transform: translate(-50%, -50%) scale(1);
    }
    4%, 40%, 68% {
        border-color: rgba(217, 244, 239, 0.82);
        box-shadow: 0 0 0 7px rgba(121, 211, 200, 0.08);
        transform: translate(-50%, -50%) scale(1.045);
    }
}

@keyframes uspSoftwareBranch {
    0% { opacity: 0.18; transform: scaleY(0.08); }
    100% { opacity: 1; transform: scaleY(1); }
}

@keyframes uspSoftwareHalo {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.38); }
    100% { opacity: 0.48; transform: translate(-50%, -50%) scale(1); }
}

@keyframes uspSoftwareCorePulse {
    0% {
        border-color: rgba(151, 176, 186, 0.2);
        background: #0b1820;
        box-shadow: none;
    }
    68% {
        border-color: rgba(121, 211, 200, 0.5);
        background: #0d1c24;
        box-shadow: 0 0 0 5px rgba(121, 211, 200, 0.05);
    }
    100% {
        border-color: rgba(121, 211, 200, 0.34);
        background: #0d1c24;
        box-shadow: none;
    }
}

@keyframes uspSoftwareProductReveal {
    0% { opacity: 0.45; transform: scale(0.82); filter: none; }
    68% { opacity: 1; transform: scale(1.08); filter: drop-shadow(0 0 8px currentColor); }
    100% { opacity: 1; transform: scale(1); filter: none; }
}

@keyframes uspHelpdeskPanel {
    0%, 22%, 100% { border-color: rgba(151, 176, 186, 0.14); background: rgba(9, 22, 30, 0.78); }
    8% { border-color: rgba(121, 211, 200, 0.38); background: rgba(121, 211, 200, 0.07); }
}

@keyframes uspHelpdeskStatus {
    0%, 22%, 100% { background: rgba(151, 176, 186, 0.32); box-shadow: 0 0 0 3px rgba(151, 176, 186, 0.04); }
    8% { background: var(--color-primary); box-shadow: 0 0 0 6px rgba(121, 211, 200, 0); }
}

@keyframes uspHeartPulse {
    0%, 11%, 16%, 24%, 100% { transform: scale(1); }
    6% { transform: scale(1.15); }
    20% { transform: scale(1.1); }
}

@keyframes uspCommunityRipple {
    0%, 28%, 100% { opacity: 0; transform: scale(1); }
    5% { opacity: 0.48; }
    20% { opacity: 0; transform: scale(1.34, 1.65); }
}

@keyframes uspBrandSpectrum {
    0% { opacity: 0.28; transform: scaleY(0.18); }
    64% { opacity: 1; transform: scaleY(1.55); }
    100% { opacity: 0.86; transform: scaleY(1); }
}

@keyframes uspShopStage {
    0% {
        border-color: rgba(151, 176, 186, 0.16);
        background-color: transparent;
    }
    58% {
        border-color: var(--shop-step-active-border);
        background-color: var(--shop-step-active-bg);
    }
    100% {
        border-color: var(--shop-step-border);
        background-color: var(--shop-step-bg);
    }
}

@keyframes uspShopIndex {
    0% { color: rgba(159, 178, 191, 0.68); }
    58% { color: #ffffff; }
    100% { color: var(--shop-step-number); }
}

@keyframes uspShopMarker {
    0% { opacity: 0.22; background: transparent; transform: scale(0.62); }
    58% { opacity: 1; background: #ffc76c; transform: scale(1.22); }
    100% { opacity: 0.82; background: rgba(252, 176, 64, 0.5); transform: scale(1); }
}

@keyframes uspShopConfirm {
    0% { opacity: 0.2; transform: rotate(45deg) scale(0.52); }
    68% { opacity: 1; transform: rotate(45deg) scale(1.2); }
    100% { opacity: 1; transform: rotate(45deg) scale(1); }
}

@media (max-width: 980px) {
    .usp-home-system {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .usp-hosting-lane {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .usp-contact-router {
        margin-top: 36px;
    }
}

@media (max-width: 760px) {
    .page-shop-modern .shop-conversion-path {
        gap: 8px;
    }

    .page-shop-modern .shop-conversion-path > span {
        grid-template-columns: 34px minmax(0, 1fr);
        grid-template-areas:
            "index title"
            "index meta";
        gap: 2px 10px;
        min-height: 0;
        padding: 11px 14px;
    }

    .page-shop-modern .shop-conversion-path > span small {
        grid-area: index;
        align-self: center;
    }

    .page-shop-modern .shop-conversion-path > span strong { grid-area: title; }
    .page-shop-modern .shop-conversion-path > span em { grid-area: meta; }

    .page-shop-modern .shop-conversion-path > span::before {
        top: 12px;
        right: 14px;
    }
}

@media (max-width: 720px) {
    .usp-home-system {
        margin-top: 30px;
        padding: 18px 0;
    }

    .usp-home-system__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px 10px;
        padding: 0;
    }

    .usp-home-system__track::before,
    .usp-home-system__signal {
        display: none;
    }

    .usp-hosting-lane__route {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 10px;
    }

    .usp-hosting-lane__route::before,
    .usp-hosting-lane__route::after,
    .usp-hosting-lane__route > i {
        display: none;
    }

    .usp-hosting-lane__route > span {
        grid-area: auto;
        white-space: normal;
    }

    .usp-software-bridge {
        grid-template-columns: 1fr;
        grid-template-areas:
            "core"
            "helpdesk"
            "shop";
        gap: 8px;
    }

    .usp-software-bridge::before {
        display: none;
        animation: none;
    }

    .usp-software-bridge::after {
        display: none;
    }

    .usp-software-bridge__product,
    .usp-software-bridge__product:last-child {
        justify-content: flex-start;
        text-align: left;
    }

    .usp-software-bridge__product--shop > i {
        order: 0;
    }

    .usp-software-bridge__core {
        justify-self: start;
        margin-left: 0;
        white-space: normal;
    }

    .usp-helpdesk-flow {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .usp-helpdesk-flow__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usp-helpdesk-flow__track::before,
    .usp-helpdesk-flow__track::after,
    .usp-helpdesk-flow__pulse {
        display: none;
    }

    .usp-helpdesk-flow__track > span {
        font-size: 0.66rem;
    }

    .usp-contact-router {
        padding: 20px;
    }

    .usp-contact-router__intro,
    .usp-contact-router__status {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .usp-contact-router__intro > strong {
        text-align: left;
    }

    .usp-contact-router__track {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .usp-contact-router__rail {
        top: 46px;
        bottom: 46px;
        left: 22px;
        width: 1px;
        height: auto;
    }

    .usp-contact-router__progress {
        transform-origin: center top;
    }

    .usp-contact-router__signal {
        top: 100%;
        left: 50%;
    }

    .usp-contact-router__step {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        justify-items: stretch;
        text-align: left;
    }

    .usp-contact-router__copy {
        align-content: center;
        justify-items: start;
        margin-top: 0;
    }

    .usp-contact-router__copy small {
        max-width: none;
    }

    .usp-community-impact {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .usp-community-impact::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .usp-helpdesk-flow__track {
        grid-template-columns: 1fr;
        gap: 14px 8px;
    }

    .usp-helpdesk-flow__track::before,
    .usp-helpdesk-flow__track::after {
        display: none;
    }
}

@media (max-width: 460px) {
    .usp-managed-radar {
        display: grid;
        width: 100%;
        height: auto;
        gap: 8px;
        padding-top: 18px;
        overflow: visible;
        background: none;
    }

    .usp-managed-radar::before,
    .usp-managed-radar::after,
    .usp-managed-radar__sweep {
        display: none;
    }

    .usp-managed-radar__core,
    .usp-managed-radar__node,
    .usp-managed-radar__node--monitoring,
    .usp-managed-radar__node--maintenance,
    .usp-managed-radar__node--backup {
        position: relative;
        inset: auto;
        width: 100%;
        animation: none !important;
        transform: none;
    }

    .usp-managed-radar__core {
        width: 84px;
        height: 84px;
        margin: 0 auto 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .usp-home-system__track a:hover i,
    .usp-home-system__track a:focus-visible i,
    .usp-software-bridge__product:hover,
    .usp-software-bridge__product:focus-visible {
        transform: none;
    }
}
