/* ─────────────────────────────────────────────────────────────────────────
   VINAR Life OS — Typography System
   ───────────────────────────────────────────────────────────────────────── */

/* ── Base ────────────────────────────────────────────────────────────────── */
body {
  font-family: 'Mitr', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scale ───────────────────────────────────────────────────────────────── */
.text-xs   { font-size: 11px; line-height: 1.5; }
.text-sm   { font-size: 12px; line-height: 1.55; }
.text-base { font-size: 14px; line-height: 1.6; }
.text-md   { font-size: 15px; line-height: 1.55; }
.text-lg   { font-size: 18px; line-height: 1.4; }
.text-xl   { font-size: 24px; line-height: 1.3; }
.text-2xl  { font-size: 32px; line-height: 1.2; }
.text-hero { font-size: 48px; line-height: 1; font-weight: 700; }

/* ── Weight ──────────────────────────────────────────────────────────────── */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ── Color ───────────────────────────────────────────────────────────────── */
.text-primary   { color: var(--text-1); }
.text-secondary { color: var(--text-2); }
.text-muted     { color: var(--text-3); }
.text-teal      { color: var(--teal); }
.text-violet    { color: var(--violet); }
.text-amber     { color: var(--amber); }
.text-red       { color: var(--red); }

/* ── SMALL CAPS pattern (date labels, section headers) ──────────────────── */
.label-caps {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.label-caps-teal {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Section header ──────────────────────────────────────────────────────── */
.section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-3);
}

/* ── Greeting ────────────────────────────────────────────────────────────── */
.greeting {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}

/* ── Page title ──────────────────────────────────────────────────────────── */
.page-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
}

/* ── Truncation ──────────────────────────────────────────────────────────── */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
