/*
Theme Name: SHRMpro Premium Theme
Theme URI: https://shrmpro.com
Author: Antigravity Team
Author URI: https://shrmpro.com
Description: High-Performance, Dynamic & Secure WordPress Theme for SHRMpro - AI-Powered HRMS Software. Optimized for PageSpeed > 90 on Mobile and Web.
Version: 1.0.0
Text Domain: shrmpro-theme
*/

:root {
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --g1: #00C851;
  --g2: #00A3E0;
  --g3: #1a237e;
  --grad: linear-gradient(135deg, #00C851, #00A3E0, #1a237e);
  --grad2: linear-gradient(135deg, #1a237e, #00A3E0, #00C851);
  --navy: #060d24;
  --navy2: #0a1535;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.55);
  --text-dark: #1e293b;
  --gray-light: #f4f6f9;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Base Utility & Glassmorphism */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.liquid-glass > * {
  position: relative;
  z-index: 2;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 81, 0.08), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}
