/* styles.css — small custom tweaks on top of Tailwind CDN */
:root {
  --brand: #0f172a;
  --muted: #64748b;
  --glass: rgba(15,23,42,0.03);
}

html,body,#__next {
  height: 100%;
}

/* subtle card shadow */
.card-shadow {
  box-shadow: 0 6px 20px rgba(2,6,23,0.06);
}

/* small responsive fixes */
@media (max-width: 640px) {
  .hide-sm { display: none; }
}
