/* Minimal stylesheet for the landing page
   This file intentionally contains only the rules needed for the landing page
   (scoped under body.landing) and the visually-hidden helper.
*/

body.landing {
    background: #ffffff;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Maven Pro', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-sizing: border-box;
}

body.landing main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

body.landing .logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

body.landing .logo-text {
    margin-top: 2rem;
    text-align: center;
    color: #0A2A6D;
    max-width: 900px;
    line-height: 1.45;
}

body.landing .logo-text a {
    color: #0A2A6D;
    text-decoration: underline;
}

/* Small-screen tweaks */
@media (max-width: 480px) {
    body.landing .logo { max-width: 70%; }
    body.landing .logo-text { padding: 0 0.5rem; margin-top: 1.25rem; }
}

/* Accessibility helper */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}