/* ==========================================================================
   YOUR LABOR - Worker App Core Design System & Tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Worker App Brand Colors (Industrial / Safety / Strength) */
  --worker-primary: #ea580c;        /* Safety Orange */
  --worker-primary-dark: #c2410c;
  --worker-primary-light: #fb923c;
  --worker-gradient: linear-gradient(135deg, #ea580c 0%, #f97316 100%);

  --worker-navy: #0f172a;           /* Heavy Navy Slate */
  --worker-steel: #334155;

  --worker-yellow: #eab308;         /* Construction Helmet Yellow */
  --worker-yellow-bg: #fefce8;

  /* Status Colors */
  --online-green: #10b981;          /* Duty Online Emerald */
  --online-green-dark: #059669;
  --online-green-glow: rgba(16, 185, 129, 0.4);
  --offline-gray: #64748b;
  --danger-red: #ef4444;

  /* Surfaces */
  --bg-app: #f8fafc;
  --bg-card: #ffffff;
  --bg-elevated: #f1f5f9;
  --border-light: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #64748b;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  --shadow-green-pulse: 0 0 35px rgba(16, 185, 129, 0.5);
  --shadow-orange-glow: 0 8px 25px rgba(234, 88, 12, 0.35);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: #0b0f19;
  background-image: 
    radial-gradient(at 0% 0%, rgba(234, 88, 12, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.12) 0px, transparent 50%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 16px 40px;
  line-height: 1.45;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select {
  font-family: inherit;
  outline: none;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.badge-green {
  background: #ecfdf5;
  color: #047857;
}

.badge-orange {
  background: #fff7ed;
  color: #c2410c;
}

.badge-yellow {
  background: #fefce8;
  color: #a16207;
  border: 1px solid #fef08a;
}
