/**
 * Obsidian Cyber System Palette (from V7 / V6 concept)
 * Source of truth for CSS custom properties on the Elementor port.
 */
:root {
  --pwc-bg-dark: #010305;
  --pwc-bg-darker: #000000;
  --pwc-bg-card: rgba(5, 9, 14, 0.78);

  --pwc-accent-emerald: #05ff72;
  --pwc-accent-cyan: #00e5ff;
  --pwc-accent-crimson: #ff2d55;
  --pwc-accent-indigo: #607d8b;

  --pwc-text-white: #f5f8f7;
  --pwc-text-silver: #cbdcd3;
  --pwc-text-muted: #7b9487;

  --pwc-border: rgba(5, 255, 114, 0.14);
  --pwc-radius-lg: 18px;
  --pwc-radius-md: 12px;
  --pwc-max-width: 1240px;

  --pwc-font-heading: "Outfit", "Plus Jakarta Sans", sans-serif;
  --pwc-font-body: "Plus Jakarta Sans", sans-serif;
  --pwc-font-mono: "Share Tech Mono", monospace;
}

body {
  background-color: var(--pwc-bg-dark);
  color: var(--pwc-text-silver);
  font-family: var(--pwc-font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pwc-font-heading);
  color: var(--pwc-text-white);
}
