/* ══════════════════════════════════════════════════════════════
   ORBYTS · DESIGN TOKENS
   Taken from the Orbyts design system (project 4bbc4269) so this site
   and the product read as one brand. Only the tokens this site uses
   are carried over; the values are verbatim.

   Pulse pink (#FF0090) is the ONLY chromatic accent — everything else
   is a neutral.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand · Pulse pink family ── */
  --color-primary: #FF0090;         /* Pulse — primary brand / the Y */
  --color-primary-dark: #CC006E;    /* Blaze — hover / pressed */
  --color-accent: #FF29A3;          /* Glow — highlight, orbit core */
  --color-primary-ink: #B8005F;     /* Ink — pink on white at small sizes */

  /* ── Surfaces ── */
  --color-paper: #FBFAFB;
  --color-surface: #ffffff;
  --color-void: #000000;

  /* ── Text ── */
  --color-fg: #0E0D10;
  --color-fg-secondary: #56545E;
  --color-muted: #92909B;

  /* ── Lines ── */
  --color-border: rgba(14, 13, 16, 0.07);
  --color-border-2: rgba(14, 13, 16, 0.11);

  /* ── Type ── */
  --font-wordmark: 'Manrope', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-ui: 'Geist', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --track-heading: -0.02em;
  --track-mono-caps: 0.3em;
  --track-wordmark: 0.42em;

  /* ── Elevation & motion ── */
  --sh-sm: 0 1px 2px rgba(14, 13, 16, 0.04);
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: light;
}
