/*
 * SMS Strategic Media Services - Design Tokens
 * Based on the SMS Brand Style Guide
 */

:root {
  /* Core Brand Colors */
  --sms-red-500: #FF1428;
  --sms-red-700: #B80811;

  --sms-black: #000000;
  --sms-white: #FFFFFF;

  /* Supporting Neutrals */
  --sms-charcoal: #111111;
  --sms-graphite: #1B1B1B;
  --sms-steel: #2A2A2A;
  --sms-mist: #F5F5F5;
  --sms-slate: #2E2E2E;

  /* Typography */
  --font-headline: 'Montserrat', 'Poppins-Bold', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Inter', 'Poppins-Regular', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Type Scale (Desktop) */
  --text-h1: 56px;
  --text-h1-line: 1.05;
  --text-h2: 36px;
  --text-h2-line: 1.15;
  --text-h3: 24px;
  --text-h3-line: 1.25;
  --text-body: 16px;
  --text-body-line: 1.6;
  --text-small: 14px;
  --text-small-line: 1.5;
  --text-label: 12px;
  --text-label-line: 1.2;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;

  /* Spacing System (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Layout */
  --max-width-content: 1200px;
  --max-width-bg: 1440px;
  --gutter: 24px;
  --section-padding-desktop: 96px;
  --section-padding-mobile: 56px;

  /* Motion */
  --transition-fast: 150ms;
  --transition-medium: 220ms;
  --transition-slow: 300ms;
  --transition-reveal: 450ms;
  --easing: ease-out;
}

/* Import Google Fonts for Montserrat and Inter */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600&display=swap');
