/*
 * Hatchery console design tokens.
 *
 * The palette is carried over from the Hatch Tracker Pro mobile app so tenants meet the same
 * product on desktop: warm orange as the brand, a deep green for positive states, and a paper
 * background rather than a cold grey. Everything is prefixed --hx- and every class is prefixed
 * .hx-, which keeps this file completely independent of admin.css and landing.css.
 */
:root {
  /* Brand */
  --hx-primary: #e86f2e;
  --hx-primary-dark: #a9461d;
  --hx-primary-soft: #fde8da;
  --hx-primary-ring: rgba(232, 111, 46, 0.28);
  --hx-secondary: #25735d;
  --hx-secondary-soft: #dff3ea;

  /* Surfaces */
  --hx-paper: #fff8ea;
  --hx-surface: #ffffff;
  --hx-surface-warm: #fff0cf;
  --hx-sunken: #faf3e4;

  /* The sidebar is a warm brown rather than the admin console's green-black: it sits under
     orange without the two fighting each other. */
  --hx-sidebar: #2a1b10;
  --hx-sidebar-hover: #3a2717;
  --hx-sidebar-active: #46301c;
  --hx-sidebar-text: #e7d8c6;
  --hx-sidebar-muted: #a8917c;
  --hx-sidebar-line: rgba(231, 216, 198, 0.12);

  /* Text */
  --hx-text: #2b2118;
  --hx-muted: #7b6b5c;
  --hx-faint: #a2917f;
  --hx-on-primary: #ffffff;

  /* Lines */
  --hx-border: #e8d9c5;
  --hx-border-strong: #d8c4a9;

  /* Semantic */
  --hx-success: #25735d;
  --hx-success-soft: #dff3ea;
  --hx-warning: #f5a524;
  --hx-warning-soft: #fff1c7;
  --hx-danger: #d14343;
  --hx-danger-soft: #ffe4e4;
  --hx-info: #3a6ea5;
  --hx-info-soft: #e5f0ff;

  /* Radii */
  --hx-r-xs: 6px;
  --hx-r-sm: 10px;
  --hx-r-md: 16px;
  --hx-r-lg: 24px;
  --hx-r-xl: 32px;
  --hx-r-pill: 999px;

  /* Spacing */
  --hx-s1: 4px;
  --hx-s2: 8px;
  --hx-s3: 12px;
  --hx-s4: 16px;
  --hx-s5: 20px;
  --hx-s6: 24px;
  --hx-s7: 32px;
  --hx-s8: 48px;

  /* Type */
  --hx-font: "Aptos", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --hx-fs-xs: 12px;
  --hx-fs-sm: 13px;
  --hx-fs-base: 14px;
  --hx-fs-md: 16px;
  --hx-fs-lg: 20px;
  --hx-fs-xl: 25px;
  --hx-fs-2xl: 32px;

  /* Depth. Shadows are warm-tinted so they read as shadow on paper, not grey haze. */
  --hx-shadow-sm: 0 1px 2px rgba(92, 52, 24, 0.06), 0 1px 3px rgba(92, 52, 24, 0.08);
  --hx-shadow-md: 0 4px 10px rgba(92, 52, 24, 0.07), 0 2px 4px rgba(92, 52, 24, 0.05);
  --hx-shadow-lg: 0 18px 40px rgba(92, 52, 24, 0.12);
  --hx-shadow-xl: 0 28px 60px rgba(92, 52, 24, 0.18);

  /* Layout */
  --hx-sidebar-w: 260px;
  --hx-sidebar-w-collapsed: 76px;
  --hx-topbar-h: 64px;
  --hx-content-max: 1440px;

  /* Layers */
  --hx-z-sidebar: 20;
  --hx-z-topbar: 30;
  --hx-z-scrim: 40;
  --hx-z-modal: 50;
  --hx-z-toast: 60;

  --hx-transition: 160ms cubic-bezier(0.4, 0, 0.2, 1);
}
