CSS
/* ==========================================================================
   Lian Web Services - Custom Application Refinements
   ========================================================================== */

/* 1. Global Document Configurations & Smoothing */
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  text-rendering: optimizeLegibility;
}

/* 2. Custom Layout & Backdrop Blur Layer Fixes */
header {
  will-change: transform;
}

/* 3. Browser Input Forms Cleanup & Autofill Overrides */
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: #0f172a !important; /* Matches slate-900 */
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); /* Indigo focus glow ring */
}

/* 4. Scrollbar Aesthetics for Webkit Browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9; /* slate-100 */
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1; /* slate-300 */
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; /* slate-400 */
}

/* 5. Custom Utility Component Selection Highlights */
::selection {
  background-color: rgba(99, 102, 241, 0.2); /* Indigo highlight tint */
  color: #4f46e5;
}