/* ===============================================
   assets/css/app.css — Project base styles
   =============================================== */
:root{
  --font-ui: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font-ui);
}
html,body{
  font-family: var(--font-ui);
  color: rgb(15 23 42 / 1);
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}
.display{ font-family: var(--font-head); letter-spacing: -0.02em; }
.card{ border-radius: 1rem; border: 1px solid rgba(2,6,23,.08); background:#fff; }
.btn{ border-radius: .75rem; padding: .75rem 1rem; }
.hero-glow{ box-shadow: 0 30px 60px -20px rgba(15,23,42,.25); }
a, button { transition: all .2s ease; }
