:root {
  /* ── Brand ─────────────────────────────────────────────── */
  --brand-cyan:       #00AEEF;
  --brand-blue:       #0077E6;
  --brand-blue-deep:  #0066CC;
  --brand-navy:       #0D1B2A;

  /* ── Neutrals ──────────────────────────────────────────── */
  --white:            #FFFFFF;
  --off-white:        #F7F9FC;
  --border:           #E2EAF4;
  --text-dark:        #1A2332;
  --text-mid:         #3D5166;
  --text-muted:       #6B859E;

  /* ── Semantic ──────────────────────────────────────────── */
  --success:          #00C896;
  --warning:          #F5A623;
  --error:            #E94B4B;
  --whatsapp-green:   #25D366;
  --whatsapp-hover:   #1FB958;

  /* ── Gradient ──────────────────────────────────────────── */
  --gradient-brand:   linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
  --gradient-hero:    linear-gradient(135deg, #0D1B2A 0%, #0F2540 50%, #0066CC 100%);

  /* ── Typography ────────────────────────────────────────── */
  --font-display: 'Exo 2', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* ── Spacing (8px base) ────────────────────────────────── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* ── Containers ────────────────────────────────────────── */
  --container-sm: 768px;
  --container-md: 1024px;
  --container-lg: 1280px;
  --container-xl: 1440px;

  /* ── Radius ────────────────────────────────────────────── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 999px;

  /* ── Shadows ───────────────────────────────────────────── */
  --shadow-sm:  0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md:  0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg:  0 12px 48px rgba(0, 119, 230, 0.12);
  --shadow-cta: 0 8px 24px rgba(0, 119, 230, 0.30);

  /* ── Layout heights ────────────────────────────────────── */
  --header-h:        72px;
  --header-h-mobile: 64px;

  /* ── Motion ────────────────────────────────────────────── */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 200ms var(--ease);
}
