/* os-i.uk homepage. Same palette and type as the chat app. */
:root {
    --page: #16161a; --panel: #1d1d21; --tint: #232329;
    --border: #33333a; --hairline: #2d2d34;
    --text: #edecea; --text2: #a9a8a3; --muted: #7c7b77;
    --accent: #5ea3e8; --accent2: #7ab4ee;
}


html { height: 100%; }
body {
    margin: 0; height: 100dvh; overflow: hidden;
    display: flex; flex-direction: column;
    background: var(--page); color: var(--text);
    font-family: system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }

.top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; background: var(--tint); border-bottom: 1px solid var(--border);
}
.brand { font-size: 16px; font-weight: 500; letter-spacing: 0.01em; }
.login {
    font-size: 13px; font-weight: 500; color: #fff; background: var(--accent);
    padding: 7px 16px; border-radius: 8px;
}
.login:hover { background: var(--accent2); }

.hero { flex: 1; min-height: 0; overflow: hidden; display: block; }
.art { width: 100%; height: 100%; object-fit: cover; display: block; }
.top, .foot { flex: none; }

.foot {
    padding: 14px 20px; font-size: 11px; color: var(--muted);
    text-align: center; background: var(--tint); border-top: 1px solid var(--hairline);
}
