/*
 * PlacePal shared design tokens (dark-only)
 * Single source of truth for the waitlist's CSS custom properties.
 * Consumed by: legal.css (@import) and index.html (<link>).
 * Values mirror the prior live site, EXCEPT --card-bg (converged to the Swift
 * canonical 2026-06-18). Change only after a visual review — these drive every
 * page's color/surface/text.
 */
:root {
  /* Surfaces */
  --bg: #1C1C1E;
  --card-bg: #151517;  /* Swift BackgroundSecondary; converged from #1D1D1F 2026-06-18 (visual review: imperceptible) */
  --manifesto-bg: #1A1A1C;

  /* Text */
  --text: rgba(255, 255, 255, 0.9);
  --text-soft: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);

  /* Accent */
  --accent: #EA6E50;
  --accent-hover: #F28068;

  /* Borders + table */
  --border: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --table-head-bg: rgba(255, 255, 255, 0.05);
  --zebra-bg: rgba(255, 255, 255, 0.03);
}
