html { font-family: var(--font-sans); }

body{
  background: var(--color-white);
  color: var(--color-gray-900);
  font-size: clamp(15px, 1.15vw, 16px);
  line-height: var(--line-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3{ line-height: 1.25; letter-spacing: -0.2px; }
h1{ font-size: clamp(24px, 3.4vw, 34px); }
h2{ font-size: clamp(18px, 2.6vw, 24px); }
h3{ font-size: 16px; }

p{ color: var(--color-gray-700); }
strong{ color: var(--color-gray-900); font-weight: 750; }


/* =========================
   MobilePrices Typography Utilities
========================= */
.text-xs{ font-size: var(--font-size-xs); }
.text-sm{ font-size: 13px; } /* MobilePrices tuned */
.text-md{ font-size: 15px; }
.text-lg{ font-size: var(--font-size-lg); }
.text-xl{ font-size: var(--font-size-xl); }
.text-2xl{ font-size: var(--font-size-2xl); }

.fw-300{ font-weight:300; }
.fw-400{ font-weight:400; }
.fw-500{ font-weight:500; }
.fw-600{ font-weight:600; }
.fw-700{ font-weight:700; }
.fw-800{ font-weight:800; }

.muted{ color: var(--muted); }
