/**
 * MatchOne System UI (TASK-087) — Core-owned System presentation built on the
 * shared Tabler framework. Fully independent of landing themes and of the
 * legacy `landing` chrome. Logical properties are used so RTL works without a
 * second stylesheet.
 */
.mo-system {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mo-system-header {
    border-block-end: 1px solid var(--tblr-border-color);
    background: #fff;
}

.mo-system-main {
    flex: 1 0 auto;
}

.mo-system-section {
    padding-block: 3rem 4rem;
}

.mo-system-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 1rem;
}

.mo-system-lead {
    color: var(--tblr-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.mo-system-prose {
    max-width: 46rem;
}

.mo-system-h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.75rem 0 .6rem;
}

.mo-system-p {
    color: var(--tblr-body-color);
    line-height: 1.7;
    margin: 0 0 .75rem;
}

.mo-system-list {
    padding-inline-start: 1.5rem;
    margin: 0 0 .75rem;
}

.mo-system-list li {
    line-height: 1.7;
    padding-block: .15rem;
}

.mo-system-prose a {
    color: var(--tblr-primary);
}

.mo-system-center {
    max-width: 40rem;
    margin-inline: auto;
}

.mo-system-card {
    background: #fff;
    border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px -18px rgba(17, 24, 39, .25);
}

.mo-system-footer {
    border-block-start: 1px solid var(--tblr-border-color);
    background: #fff;
}

.mo-system-footer a {
    color: var(--tblr-secondary);
    text-decoration: none;
}

.mo-system-footer a:hover {
    color: var(--tblr-body-color);
}

.mo-system-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}