/* Systems page refinement: status language before cards, compact 2x2 product grid. */
.page-systems .systems-status-language {
    margin-top: clamp(54px, 6vw, 82px);
}

.page-systems .systems-landscape {
    margin-top: clamp(62px, 7vw, 96px);
}

.page-systems .systems-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.page-systems .system-card-modern {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(15, 37, 68, 0.11);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.66)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(15, 37, 68, 0.055);
}

.page-systems .system-card-modern::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--systems);
}

.page-systems .system-card-modern::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -92px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(15, 37, 68, 0.08);
    border-radius: 999px;
    background: rgba(15, 37, 68, 0.018);
    pointer-events: none;
}

.page-systems .system-card-modern--research {
    background:
        radial-gradient(circle at 92% 10%, rgba(184, 0, 42, 0.075), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 250, 251, 0.68));
}

.page-systems .system-card-modern--research::before {
    background: var(--research);
}

.page-systems .system-card-modern--understanding {
    background:
        radial-gradient(circle at 92% 10%, rgba(0, 140, 150, 0.09), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(247, 253, 253, 0.70));
}

.page-systems .system-card-modern--understanding::before {
    background: var(--understanding);
}

.page-systems .system-card-modern--systems {
    background:
        radial-gradient(circle at 92% 10%, rgba(15, 37, 68, 0.075), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(247, 249, 252, 0.72));
}

.page-systems .system-card-modern__body,
.page-systems .system-card-modern__actions {
    position: relative;
    z-index: 1;
}

.page-systems .system-card-modern__type {
    margin: 0 0 16px;
    color: rgba(15, 37, 68, 0.58);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.page-systems .system-card-modern h2 {
    margin: 0;
    color: var(--systems);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 730;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.page-systems .system-card-modern__subtitle {
    max-width: 520px;
    margin: 12px 0 0;
    color: var(--systems);
    font-size: 1rem;
    font-weight: 690;
    line-height: 1.35;
}

.page-systems .system-card-modern__purpose {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.62;
}

.page-systems .system-card-modern__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.page-systems .system-card-modern__actions .button {
    min-height: 38px;
    align-items: center;
}

@media (min-width: 961px) {
    .page-systems .systems-card-grid > .system-card-modern:nth-child(even) {
        margin-top: 22px;
    }
}

@media (max-width: 960px) {
    .page-systems .systems-card-grid {
        grid-template-columns: 1fr;
    }

    .page-systems .system-card-modern {
        min-height: 0;
        padding: 26px;
    }
}

@media (max-width: 680px) {
    .page-systems .system-card-modern {
        padding: 24px 22px;
        border-radius: 16px;
    }

    .page-systems .system-card-modern h2 {
        font-size: clamp(1.85rem, 10vw, 2.7rem);
    }

    .page-systems .system-card-modern__actions {
        display: grid;
    }

    .page-systems .system-card-modern__actions .button {
        justify-content: center;
        width: 100%;
    }
}
