/* voxwinai brand v20260430 */
:root {
  --vw-navy:        #0a1628;
  --vw-navy-deep:   #060d1a;
  --vw-red:         #C8102E;
  --vw-red-bright:  #E63946;
  --vw-blue:        #1D7AC9;
  --vw-blue-deep:   #002868;
  --vw-silver:      #C9D1D9;
  --vw-white:       #FFFFFF;
  --vw-gray-50:     #F7F8FA;
  --vw-gray-100:    #E8EBF0;
  --vw-gray-200:    #D1D6DE;
  --vw-gray-700:    #4A5568;
  --vw-gray-900:    #1A202C;
  --vw-shadow:      0 4px 14px rgba(10, 22, 40, 0.12);
  --vw-shadow-lg:   0 10px 30px rgba(10, 22, 40, 0.18);
  --vw-radius:      6px;
  --vw-radius-lg:   10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vw-gray-900);
  background: var(--vw-white);
}
h1, h2, h3, h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; }
a { color: var(--vw-red); text-decoration: none; }
a:hover { color: var(--vw-red-bright); text-decoration: underline; }
