/* Fischost minimal theme */
:root{
  --fh-primary: #3b82f6; /* blue-500 */
  --fh-accent: #22c55e;  /* green-500 */
  --fh-dark: #0f172a;    /* slate-900 */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.navbar-brand strong { letter-spacing: .5px; }

.hero {
  background: radial-gradient(1200px 600px at 85% -20%, rgba(59,130,246,.20), transparent 60%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.hero .btn-primary{
  background: var(--fh-primary);
  border-color: var(--fh-primary);
}
.badge-pill{
  border-radius: 50rem;
  padding: .4rem .7rem;
  font-weight: 600;
}

.card.fh-hover {
  transition: transform .15s ease, box-shadow .15s ease;
}
.card.fh-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

.footer {
  border-top: 1px solid rgba(15,23,42,.06);
  color: #475569;
}
.link-muted { color:#475569; text-decoration:none; }
.link-muted:hover { color:#0f172a; text-decoration:underline; }
