/*
 * tokens.css — Design Token System
 * Digital Apache v3
 *
 * PURPOSE: CSS custom properties only.
 * No styles. No classes. No exceptions.
 * Every value used in any CSS file
 * must be defined as a token here first.
 *
 * LOAD ORDER: Always first — before all other CSS.
 * All other CSS files depend on this file.
 */

:root {

   /* ============================================
     COLORS — BRAND
  ============================================ */

   --color-primary: #d7600d;
   /* Orange — hero CTA, buttons on dark/blue sections */
   --color-secondary: #2e86c1;
   /* Blue — most buttons, labels, active states */
   --color-dark: #282C3F;
   /* Dark navy — top bar, headings, dark sections */
   --color-accent: #4499c5;
   /* Light blue — eyebrow labels, FAQ active, hover states */
   --color-white: #ffffff;
   --color-black: #000000;
   --color-whatsapp: #25d366;
   /* WhatsApp official green */

   /* ============================================
     COLORS — BACKGROUNDS
  ============================================ */

   --color-bg-light: #f9fafb;
   /* Light sections */
   --color-bg-footer: #f1f3f4;
   /* Footer background */
   --color-bg-dark: #282C3F;
   /* Dark section background */

   /* Section dark gradient (blue sections) */
   --color-bg-gradient-start: #2e86c1;
   --color-bg-gradient-end: #1a6fa8;

   /* Card tint backgrounds */
   --color-bg-card-warm: #fefce8;
   /* Starter plan — warm cream */
   --color-bg-card-teal: #ecfdf5;
   /* Growth plan — light teal */
   --color-bg-card-peach: #fff7ed;
   /* Authority plan — light peach */
   --color-bg-card-pink: #fdf2f8;
   /* Problem card — light pink */
   --color-bg-card-blue: #eff6ff;
   /* Solution card — light blue */

   /* ============================================
     COLORS — TEXT
  ============================================ */

   --color-text-dark: #282C3F;
   /* Headings, nav links */
   --color-text-body: #4b5563;
   /* Body copy */
   --color-text-muted: #6b7280;
   /* Subtitles, secondary text */
   --color-text-light: #ffffff;
   /* Text on dark/colored backgrounds */
   --color-text-label: #2e86c1;
   /* Eyebrow section labels */

   /* ============================================
     COLORS — BORDERS
  ============================================ */

   --color-border: #e5e7eb;
   /* Card borders, dividers */
   --color-border-dark: #d1d5db;
   /* Stronger borders */

   /* ============================================
     TYPOGRAPHY — FONTS
  ============================================ */

   --font-heading: 'Kite', -apple-system, BlinkMacSystemFont, sans-serif;
   --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

   /* ============================================
     TYPOGRAPHY — SIZES
  ============================================ */

   --text-xs: 0.75rem;
   /*  12px */
   --text-sm: 0.8125rem;
   /*  13px — top bar, labels */
   --text-base: 1rem;
   /*  16px — body copy */
   --text-lg: 1.125rem;
   /*  18px */
   --text-xl: 1.25rem;
   /*  20px */
   --text-2xl: 1.5rem;
   /*  24px */
   --text-3xl: 1.875rem;
   /*  30px */
   --text-4xl: 2.25rem;
   /*  36px — section headings */
   --text-5xl: 2.75rem;
   /*  44px */
   --text-6xl: 3.5rem;
   /*  56px — hero heading */

   /* ============================================
     TYPOGRAPHY — WEIGHTS
  ============================================ */

   --weight-normal: 400;
   --weight-medium: 500;
   --weight-semibold: 600;
   --weight-bold: 700;
   --weight-extrabold: 800;

   /* ============================================
     TYPOGRAPHY — LINE HEIGHTS
  ============================================ */

   --leading-tight: 1.2;
   /* Headings */
   --leading-snug: 1.4;
   /* Subheadings */
   --leading-normal: 1.6;
   /* UI elements */
   --leading-relaxed: 1.75;
   /* Body copy */

   /* ============================================
     TYPOGRAPHY — LETTER SPACING
  ============================================ */

   --tracking-tight: -0.02em;
   /* Large headings */
   --tracking-normal: 0;
   --tracking-wide: 0.05em;
   /* Eyebrow labels */
   --tracking-wider: 0.1em;
   /* Footer nav links, uppercase items */

   /* ============================================
     SPACING
  ============================================ */

   --space-1: 0.25rem;
   /*  4px */
   --space-2: 0.5rem;
   /*  8px */
   --space-3: 0.75rem;
   /* 12px */
   --space-4: 1rem;
   /* 16px */
   --space-5: 1.25rem;
   /* 20px */
   --space-6: 1.5rem;
   /* 24px */
   --space-8: 2rem;
   /* 32px */
   --space-10: 2.5rem;
   /* 40px */
   --space-12: 3rem;
   /* 48px */
   --space-16: 4rem;
   /* 64px */
   --space-20: 5rem;
   /* 80px */
   --space-24: 6rem;
   /* 96px */

   /* ============================================
     SECTION SPACING
  ============================================ */

   --section-padding-y: var(--space-20);
   /* 80px — desktop */
   --section-padding-y-mobile: var(--space-12);
   /* 48px — mobile */

   /* ============================================
     LAYOUT
  ============================================ */

   --container-max: 1200px;
   --container-padding: var(--space-6);
   /* 24px sides */

   /* ============================================
     BORDER RADIUS
  ============================================ */

   --radius-sm: 6px;
   /* Small elements */
   --radius-md: 12px;
   /* Cards */
   --radius-lg: 16px;
   /* Large cards */
   --radius-xl: 24px;
   /* Feature sections */
   --radius-pill: 50px;
   /* Buttons — pill shape */
   --radius-full: 9999px;
   /* Circular elements */

   /* ============================================
     SHADOWS
  ============================================ */

   --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
   --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
   --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
   --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);

   /* ============================================
     TRANSITIONS
  ============================================ */

   --duration-fast: 150ms;
   --duration-normal: 250ms;
   --duration-slow: 400ms;
   --ease-default: ease;
   --ease-in-out: ease-in-out;
   --duration-pulse: 2000ms;
   /* WhatsApp floating button pulse loop */
   --transition-base: background-color var(--duration-normal) var(--ease-default),
      border-color var(--duration-normal) var(--ease-default),
      color var(--duration-normal) var(--ease-default),
      opacity var(--duration-normal) var(--ease-default),
      box-shadow var(--duration-normal) var(--ease-default),
      transform var(--duration-normal) var(--ease-default);

   /* ============================================
     Z-INDEX SCALE
  ============================================ */

   --z-below: -1;
   --z-base: 0;
   --z-raised: 10;
   /* Cards on hover */
   --z-dropdown: 100;
   /* Nav dropdowns */
   --z-sticky: 200;
   /* Sticky header */
   --z-overlay: 300;
   /* Mobile nav overlay */
   --z-modal: 400;
   /* Modals */
   --z-toast: 500;
   /* Notifications */

   /* ============================================
     NAVIGATION
  ============================================ */

   --nav-height-topbar: 40px;
   --nav-height-main: 70px;
   --nav-height-total: 110px;
   /* topbar + main combined */

}

/* End of tokens.css */