/**
 * @file celthrac-rebrand.css
 *
 * "Deep Signal" Rebranding Overrides for Celthrac.
 * Focus: 1st Class Modern Experience (Dynamic Future).
 */

/* 1. Global Variable Overrides */
:root {
  /* Colors */
  --color-primary: #0f0f0f;
  --color-primary-rgb: 15, 15, 15;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-signal-orange: #E55B13;
  --color-signal-orange-rgb: 229, 91, 19;
  --color-signal-glow: rgba(229, 91, 19, 0.3);
  
  /* Neutral scale */
  --color-1: #c5c5c5; /* neutral-500 */
  --color-2: #f5f5f5; /* neutral-100 */
  --color-3: #191919; /* neutral-900 */
  --color-4: #313131; /* neutral-700 */
  --color-5: #eaeaea; /* neutral-300 */

  /* Typography */
  --ff-heading: 'Inter Tight', 'Instrument Sans', sans-serif;
  --ff-body: 'Inter', 'Instrument Sans', sans-serif;
  --ff-accent: 'JetBrains Mono', monospace;
  
  /* Overwrite Quanto's default font variable if possible */
  --ff-instrument-sans: var(--ff-body);
}

/* 2. Global Typography Refinements */
body {
  font-family: var(--ff-body);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 800 !important; /* Extra Bold for impact */
  letter-spacing: -0.02em;
  line-height: 1.1;
}
