:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #1a1c1e;
  --muted: #5c6166;
  --accent: #1f6feb;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0f1216; --fg: #e6e8ea; --muted: #9aa4ad; --accent: #4c8dff; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  line-height: 1.5;
}
.wrap { max-width: 32rem; text-align: center; }
.brand { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 0.5rem; }
.tagline { font-size: 1.15rem; margin: 0 0 1.5rem; }
.soon { font-weight: 600; margin: 0 0 2rem; }
.contact { color: var(--muted); margin: 0 0 2.5rem; }
.contact a { color: var(--accent); text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.en { color: var(--muted); font-size: 0.9rem; border-top: 1px solid color-mix(in srgb, var(--muted) 25%, transparent); padding-top: 1.25rem; }
