/* tokens.css — the only file that defines raw values.
   Palette transferred from the predecessor site
   (C:\Projects\Radix\radix-company-website, src/app/globals.css):
   pure-black foundation, Command Blue + Emerald accents, off-white/slate text. */
:root {
  /* page — black foundation, off-white text */
  --c-ink:       #f0f0f0;   /* off-white */
  --c-surface:   #000000;   /* void      */
  --c-surface-2: #0a0a0b;   /* surface-1 */
  --c-muted:     #a1a1aa;   /* slate     */
  --c-line:      rgba(255,255,255,.10);   /* border-medium */
  --c-focus:     #4d9eff;   /* command blue */

  /* header + tab band — the surface steps */
  --c-header-bg:      #000000;   /* void      */
  --c-navbar-bg:      #141415;   /* surface-2 */
  --c-header-ink:     #ffffff;
  --c-header-ink-dim: #a1a1aa;   /* slate */
  --c-tab-line:       rgba(255,255,255,.10);   /* border-medium */
  --c-tab-hover:      rgba(255,255,255,.06);   /* border-subtle */
  --c-tab-active:     #4d9eff;   /* command blue */

  /* footer surfaces + dim text */
  --c-slate-dark:    #71717a;
  --c-glass-bg:      rgba(255,255,255,.03);
  --c-border-subtle: rgba(255,255,255,.06);

  /* accents kept available: emerald secondary, blue dark */
  --c-accent-blue:    #4d9eff;
  --c-accent-blue-dk: #3b82f6;
  --c-accent-emerald: #06d6a0;

  /* page gradient — the predecessor's full-bleed accent band:
     blue fading in at the top, emerald at the foot */
  --gradient-page: linear-gradient(
    180deg,
    rgba(77, 158, 255, .04) 0%,
    transparent 30%,
    transparent 70%,
    rgba(6, 214, 160, .03) 100%
  );

  /* hero headline gradient — the predecessor's --gradient-text */
  --gradient-text: linear-gradient(135deg, #4d9eff, #06d6a0);

  /* grid pattern — the predecessor's .bg-grid-pattern, 64px at 2% white */
  --grid-line: rgba(255, 255, 255, .02);
  --grid-size: 64px;

  /* CTA keeps the emblem's own gradient (set deliberately earlier) */
  --c-cta-from:  #237da4;
  --c-cta-to:    #0037c1;
  --c-cta-ink:   #ffffff;

  /* type */
  --f-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-mono: ui-monospace, "Cascadia Mono", "JetBrains Mono", Consolas, monospace;

}
