/* Kinnect Digital Expression — Worksheet subset
   Source: kinnect-ops-console + Loom partners page
   Upstream: /client/src/styles/kinnect-digital-expression.css
   Purpose: Map the missing next step worksheet
*/

:root {
  /* Brand */
  --kp-brand-500: #ff4800;
  --kp-brand-gradient-start: #ff6326;
  --kp-brand-gradient-end: #ff4800;
  --kp-brand-gradient: linear-gradient(135deg, var(--kp-brand-gradient-start), var(--kp-brand-gradient-end));

  /* Neutral scale */
  --kp-neutral-00: #ffffff;
  --kp-neutral-50: #f9f8f7;
  --kp-neutral-100: #f3f1ef;
  --kp-neutral-200: #e7e3df;
  --kp-neutral-300: #d5d0cb;
  --kp-neutral-400: #b2aba4;
  --kp-neutral-500: #8f8680;
  --kp-neutral-600: #756c63;
  --kp-neutral-700: #5a524a;
  --kp-neutral-800: #423b34;
  --kp-neutral-900: #2a2622;

  /* Semantic roles */
  --kp-brand-connection: #00676d;  /* teal — way back */
  --kp-brand-warmth: #745400;      /* gold — contribute */
  --kp-brand-insight: #00367f;     /* blue — way in */

  /* Focus */
  --kp-focus: #0055ff;
  --kp-focus-ring: 0 0 0 3px rgba(0, 85, 255, 0.2);

  /* Typography */
  --kp-font-productive: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  --kp-font-expressive: "Fraunces", "Georgia", serif;
  --kp-font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;

  /* Scale */
  --kp-text-body: 1rem;
  --kp-text-body-line: 1.58;
  --kp-text-small: 0.875rem;
  --kp-text-xs: 0.75rem;
  --kp-text-kicker: 0.78rem;

  /* Spacing (4px base) */
  --kp-space-1: 0.25rem;
  --kp-space-2: 0.5rem;
  --kp-space-3: 0.75rem;
  --kp-space-4: 1rem;
  --kp-space-6: 1.5rem;
  --kp-space-8: 2rem;
  --kp-space-12: 3rem;
  --kp-space-16: 4rem;

  /* Radius */
  --kp-radius-s: 0.375rem;
  --kp-radius-m: 0.5rem;
  --kp-radius-l: 0.75rem;
  --kp-radius-full: 9999px;

  /* Shadows */
  --kp-shadow-raised: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);

  /* Motion */
  --kp-ease-out: cubic-bezier(0.2, 0, 0, 1);
  --kp-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --kp-reading-max: 38rem;
  --kp-content-padding: var(--kp-space-4);
}

@media (min-width: 768px) {
  :root {
    --kp-content-padding: var(--kp-space-8);
  }
}