/*
Theme Name: IndiaOutsource
Theme URI: https://indiaoutsource.us
Author: IndiaOutsource
Description: Enterprise Cybersecurity & Compliance — pure custom WordPress theme
Version: 2.0.0
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: indiaoutsource
License: Proprietary
*/

/* CSS Custom Properties */
:root {
  /* Dark mode (default) */
  --bg: #050505;
  --surface: #0B0B0B;
  --border: #171717;
  --elevated: #111111;
  --text: #F5F5F5;
  --muted: #8A8A8A;
  --subtle: #555555;
  --signal: #e63100;
  --red: #D11F1F;

  /* Typography */
  --f-sans: 'Space Grotesk', 'Sora', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 9999px;

  /* Easing */
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in: ease-in;

  /* Durations */
  --dur-fast: 150ms;
  --dur-normal: 300ms;
  --dur-slow: 600ms;
}

[data-theme="light"] {
  --bg: #F7F6F2;
  --surface: #FFFFFF;
  --border: #E2E0DA;
  --elevated: #EDEDEA;
  --text: #0D0D0D;
  --muted: #6B6B6B;
  --subtle: #ADADAD;
  --signal: #e63100;
  --red: #C41A1A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--dur-slow) ease, color var(--dur-slow) ease;
}
