/* speedzone.oduvis.com - one stylesheet, system fonts, light and dark. */
:root {
    --bg: #f6f7f9;
    --surface: #ffffff;
    --text: #1b2230;
    --muted: #5a6474;
    --line: #dde2e8;
    --accent: #0b6e99;
    --note: #fff4e0;
    --note-text: #6b4600;
    --max: 60rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #11161c;
        --surface: #1a2129;
        --text: #e6eaef;
        --muted: #9aa5b3;
        --line: #2e3844;
        --accent: #4fb3e0;
        --note: #35280f;
        --note-text: #ffd08a;
    }
}

* { box-sizing: border-box; }

html, body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

header.top { border-bottom: 1px solid var(--line); background: var(--surface); }
header.top .wrap { display: flex; align-items: center; gap: 1rem; min-height: 3.75rem; }
.brand { font-weight: 800; font-size: 1.2rem; letter-spacing: 0.02em; color: var(--text); text-decoration: none; }
.spacer { flex: 1; }

.hero { padding: 4.5rem 0 3rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin: 0 0 1rem; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 40rem; margin: 0; }

h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; }
.card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.card p { margin: 0 0 0.8rem; color: var(--muted); }

footer { margin-top: 4rem; border-top: 1px solid var(--line); padding: 1.5rem 0 2.5rem; color: var(--muted); font-size: 0.9rem; }
footer p { margin: 0.2rem 0; }

.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand img { width: 28px; height: 28px; }

.status { display: inline-block; margin-top: 1.5rem; padding: 0.45rem 0.9rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 600; }

.note { background: var(--note); color: var(--note-text); border-radius: 10px; padding: 1rem 1.2rem; margin: 2rem 0; }

.countries { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; }
.countries li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.85rem; }

/* Long texts (privacy policy). */
.prose { max-width: 46rem; padding-top: 2.5rem; }
.prose h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 0.5rem; }
.prose h2 { margin-top: 2.2rem; }
.prose table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 0.5rem 0.6rem; text-align: left; vertical-align: top; }
.prose th { background: var(--surface); }
.meta { color: var(--muted); }
