:root {
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --bg: #fafaf7;
  --ink: #0e0f12;
  --ink-muted: #5f636b;
  --accent: #1f44e0;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--pad-x);
}

.logo {
  height: clamp(52px, 7.8vw, 94px);
  width: auto;
}

.footer {
  padding: 1.75rem var(--pad-x);
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.footer a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer a:hover { color: var(--accent); }

.sep {
  margin: 0 0.65rem;
  opacity: 0.5;
}
