/* ===================================================================
   Augure Engineering — Design Tokens
   =================================================================== */

:root {
  /* Core palette */
  --color-bg: #0c0d0d;
  --color-bg-raised: #131415;
  --color-bg-sunken: #08090a;
  --color-fg: #f4f4f3;
  --color-fg-muted: #9a9a97;
  --color-fg-dim: #6b6b69;
  --color-accent: #ff4d2e;
  --color-accent-soft: rgba(255, 77, 46, 0.14);

  /*--color-control: #5f8d8b;
  --color-control-soft: rgba(95, 141, 139, 0.16);*/
  --color-control: cyan;
  --color-control-soft: hsla(180, 100%, 50%, 0.21);


  --color-line: rgba(244, 244, 243, 0.08);
  --color-line-strong: rgba(244, 244, 243, 0.18);

  /* Inverted sections */
  --color-bg-invert: #f4f4f3;
  --color-fg-invert: #0c0d0d;
  --color-fg-invert-muted: #5a5a57;
  --color-line-invert: rgba(12, 13, 13, 0.12);
  --color-accent-invert: #ff4d2e;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Fluid scale (clamp) */
  --step-2xs: clamp(0.75rem, 0.70rem + 0.18vw, 0.86rem);
  --step-xs: clamp(0.86rem, 0.80rem + 0.28vw, 1rem);
  --step-sm: clamp(0.95rem, 0.87rem + 0.42vw, 1.18rem);
  --step-md: clamp(1.10rem, 0.98rem + 0.62vw, 1.44rem);
  --step-lg: clamp(1.30rem, 1.08rem + 1.10vw, 2.04rem);
  --step-xl: clamp(1.62rem, 1.22rem + 2.00vw, 2.88rem);
  --step-2xl: clamp(2.00rem, 1.40rem + 3.00vw, 4.00rem);
  --step-3xl: clamp(2.48rem, 1.55rem + 4.80vw, 5.50rem);
  --step-display: clamp(3.5rem, 1.6rem + 4.2vw, 5.5rem);

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
  --space-4xl: 14rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 880px;
  --container-wide: 1600px;
  --gutter: clamp(1.25rem, 0.8rem + 2.4vw, 3rem);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.18s;
  --dur: 0.36s;
  --dur-slow: 0.7s;
  --dur-xslow: 1.2s;

  /* Z */
  --z-bg: 0;
  --z-content: 10;
  --z-nav: 100;
  --z-cursor: 999;

  /* cards */
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);
  
}