/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --primary:#1a365d;--primary-light:#2a4a7f;--primary-dark:#0f2341;
  --accent:#EE7203;--accent-light:#ff8a2e;--accent-dark:#cc6000;
  --bg:#f8f9fb;--bg-card:#ffffff;--bg-hover:#f1f3f7;
  --text:#1a202c;--text-secondary:#64748b;--text-light:#94a3b8;
  --border:#e2e8f0;--border-light:#f1f5f9;
  --success:#10b981;--warning:#f59e0b;--danger:#ef4444;--info:#3b82f6;
  --radius:12px;--radius-sm:8px;--radius-lg:16px;--radius-xl:20px;
  --shadow:0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:0 10px 25px rgba(0,0,0,.12);
  --nav-height:72px;--header-height:56px;
  --safe-bottom:env(safe-area-inset-bottom,0px);
}
html{font-size:16px;-webkit-text-size-adjust:100%;height:100%}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);min-height:100%;line-height:1.5;overflow-x:hidden;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:'Bebas Neue','Inter',sans-serif;letter-spacing:.02em;font-weight:400}
input,select,textarea,button{font-family:inherit;font-size:inherit}
button{cursor:pointer;border:none;background:none}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ===== UTILITY ===== */
.hidden{display:none!important}
.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
/* iOS App Store compliance: hide third-party purchase flows, show web-redirect notice */
.ios-only{display:none}
body.is-ios .hide-on-ios{display:none!important}
body.is-ios .ios-only{display:block}
.badge{display:inline-flex;align-items:center;padding:2px 8px;border-radius:20px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.badge-owner{background:#dbeafe;color:#1d4ed8}.badge-admin{background:#dbeafe;color:#1d4ed8}
.badge-manager{background:#fef3c7;color:#92400e}
.badge-employee{background:#e2e8f0;color:#475569}.badge-staff{background:#e2e8f0;color:#475569}
.badge-high{background:#fef2f2;color:#dc2626}.badge-medium{background:#fff7ed;color:#c2410c}
.badge-low{background:#f0fdf4;color:#16a34a}
