:root {
    --deep-purple: #5b2ec7;
    --soft-lavender: #f4f1fa;
    --text-dark: #2b2b2b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--soft-lavender);
    color: var(--text-dark);
}

main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* System Home */
.system-home h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.system-home p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4453;
}

.primary-link {
    display: inline-block;
    margin-top: 1.5rem;
    text-decoration: none;
    color: white;
    background: var(--deep-purple);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
}

/* Footer (your provided style) */
.article-footer {
    text-align: center;
    margin: .5rem 0 2rem;
    font-size: 0.9rem;
    color: #7a6a8a;
}

.article-footer a {
    color: var(--deep-purple);
    text-decoration: none;
}

.article-footer a:hover {
    color: rgb(72, 16, 176);
}