/* Practice Orbit design tokens - the shared colour scheme the website
   and the app agree on (spec D10). The values are the app's own, from
   practice-orbit-app/src/assets/scss/_colors.scss; the design system
   Preston settles lands here, and both surfaces read from it */
:root {
  color-scheme: light;

  /* Brand */
  --po-primary: #3D769A;
  --po-primary-hover: #b5d8ed;
  --po-accent: #8A52A7;
  --po-accent-hover: #e4bff7;
  --po-ink: #12191D;

  /* Neutrals - pulled toward the primary rather than left grey */
  --po-bg: #F1F4F6;
  --po-surface: #FFFFFF;
  --po-text: #414141;
  --po-text-muted: #707070;
  --po-border: #dae1e5;

  /* Semantic */
  --po-success: #55870f;
  --po-warn: #b6001b;
  --po-caution: #ffc107;

  /* Type */
  --po-font: system-ui, -apple-system, "Segoe UI", "Roboto", sans-serif;

  /* Shape */
  --po-radius: 6px;
  --po-shadow: 0 1px 3px rgba(18, 25, 29, 0.18);
}
