/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;

  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 15px;
  --font-size-3xl: 48px;
  --line-height: 1.6;
  --line-height-tight: 1.3;
  --font-weight-bold: 600;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #111111;
    --color-text: #e0e0e0;
    --color-text-muted: #888888;
  }
}

/* ─── Base ───────────────────────────────────────────────────────── */
html {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

/* ─── Chat Page ──────────────────────────────────────────────────── */
.chat {
  text-align: center;
}

.chat__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 16px;
}

.chat__text {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}
