/** Shopify CDN: Minification failed

Line 10:20 Unexpected "*"

**/
/*
 * Piote Labs design tokens
 * Single source of truth for the redesign's color system, type scale,
 * spacing, and radii. Prefixed --pl- to stay independent of Dawn's own
 * --color-*/--font-* variables while both exist side by side during the
 * rebuild. Retire the Dawn tokens once every section has been rebuilt.
 *
 * Palette rationale: near-black base (--pl-bg) so photos of hardware and
 * bright accent colors read as high contrast, one dominant accent (pink)
 * for CTAs and brand marks, one secondary accent (cyan) reserved for
 * links/telemetry text so it never competes with the primary CTA color,
 * amber used only for prices and warm highlights. Grey "chrome" tones
 * exist only for the browser-chrome frame, never for page content.
 *
 * Type rationale: Press Start 2P is the characterful display face, used
 * sparingly (headlines, section titles, buttons, tags) because it is
 * hard to read at length. VT323 is the pixel/mono utility face for nav,
 * specs, prices, and telemetry labels. Inter is the plain body face for
 * every paragraph of real copy, so long-form reading never suffers for
 * the sake of the pixel theme.
 *
 * Radii: every corner in this system is square (0). That squareness is
 * the one deliberate signature of the retro-pixel direction; do not
 * introduce rounded corners into new components without revisiting this
 * file first.
 */

:root {
  /* color: surfaces */
  --pl-bg: #0d0620;
  --pl-surf-1: #170b2e;
  --pl-surf-2: #1f1044;

  /* color: borders / grid lines */
  --pl-line: rgba(157, 110, 255, 0.18);
  --pl-line-strong: rgba(157, 110, 255, 0.38);
  --pl-grid: #5b2a9e;

  /* color: text */
  --pl-text: #f3ecff;
  --pl-dim: #a68fd1;

  /* color: accents */
  --pl-pink: #ff2e88;
  --pl-pink-ink: #2b0016;
  --pl-cyan: #05d7fa;
  --pl-amber: #ffb545;

  /* color: window-chrome only, never page content */
  --pl-chrome: #c8c4b8;
  --pl-chrome-hi: #efece4;
  --pl-chrome-lo: #8a867b;
  --pl-chrome-ink: #2c2a24;

  /* type: font stacks */
  --pl-font-display: 'Press Start 2P', monospace;
  --pl-font-pixel: 'VT323', monospace;
  --pl-font-body: 'Inter', sans-serif;

  /* type: scale */
  --pl-text-display-xl: 1.875rem; /* 30px — hero headline */
  --pl-text-display-lg: 1.0625rem; /* 17px — section headings */
  --pl-text-display-sm: 0.6875rem; /* 11px — eyebrows, tags, buttons */
  --pl-text-pixel-lg: 1.125rem; /* 18px — nav links, telemetry */
  --pl-text-pixel-md: 1rem; /* 16px — specs, prices, footer mono */
  --pl-text-body-lg: 1rem; /* 16px — paragraphs */
  --pl-text-body-sm: 0.84375rem; /* 13.5px — fine print, footer links */

  /* spacing scale, 4px rhythm */
  --pl-space-xs: 0.25rem; /* 4px */
  --pl-space-sm: 0.5rem; /* 8px */
  --pl-space-md: 1rem; /* 16px */
  --pl-space-lg: 1.5rem; /* 24px */
  --pl-space-xl: 2rem; /* 32px */
  --pl-space-2xl: 3rem; /* 48px */
  --pl-space-3xl: 4rem; /* 64px */

  /* radii: deliberately square throughout */
  --pl-radius: 0px;
}
