/* ============================================
   ArivantaProject Design System
   Corporate Tech — Blue-Gray Palette
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1B365D;
  --primary-light: #2E5090;
  --primary-dark: #0F1F3D;
  --primary-rgb: 27, 54, 93;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-light: #DBEAFE;
  --accent-rgb: 59, 130, 246;
  --gold: #D4A843;
  --gold-light: #F0DCA0;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);

  --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --transition: 250ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 350ms cubic-bezier(0.4,0,0.2,1);

  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 50;

  --container-max: 1280px;
  --header-height: 80px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); font-weight:700; line-height:1.2; color:var(--gray-900); letter-spacing:-0.025em; }
h1 { font-size:var(--text-5xl); }
h2 { font-size:var(--text-4xl); }
h3 { font-size:var(--text-3xl); }
h4 { font-size:var(--text-2xl); }
p { margin-bottom:var(--space-4); color:var(--gray-600); }
a { color:var(--accent); text-decoration:none; transition:color var(--transition-fast); }
a:hover { color:var(--accent-hover); }
strong { font-weight:600; color:var(--gray-900); }
img { max-width:100%; height:auto; display:block; }
ul,ol { list-style:none; }
::selection { background:var(--accent); color:var(--white); }
:focus-visible { outline:2px solid var(--accent); outline-offset:2px; }
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:var(--gray-100); }
::-webkit-scrollbar-thumb { background:var(--gray-400); border-radius:var(--radius-full); }

.section { padding:var(--space-24) 0; }
.section--gray { background:var(--gray-50); }
.section--dark { background:var(--primary-dark); color:var(--white); }
.section--dark h2,.section--dark h3,.section--dark h4 { color:var(--white); }
.section--dark p { color:var(--gray-300); }
.text-center { text-align:center; }
.text-gradient { background:linear-gradient(135deg,var(--accent),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.section-subtitle { display:inline-block; font-size:var(--text-sm); font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:var(--accent); margin-bottom:var(--space-4); }
.section-title { font-size:var(--text-4xl); margin-bottom:var(--space-6); }
.section-desc { font-size:var(--text-lg); max-width:640px; margin:0 auto var(--space-12); color:var(--gray-500); }

@media (max-width:768px) {
  h1 { font-size:var(--text-3xl); }
  h2 { font-size:var(--text-2xl); }
  h3 { font-size:var(--text-xl); }
  .section-title { font-size:var(--text-2xl); }
  .section { padding:var(--space-16) 0; }
}
