@charset "UTF-8";
/**
 * Auria Design Tokens
 * Compiled from: scss/_variables.scss
 */
/**
 * Auria Design Tokens — SCSS Partial
 * Mirrors tokens.css exactly so CSS custom properties are output.
 * Import this first — every other SCSS file depends on it.
 */
:root {
  /* ================================================================
     BRAND COLOURS
     ================================================================ */
  --color-primary: #121B42;
  --color-secondary: #C9A32E;
  --color-orange: #F79520;
  --color-green: #3BB54A;
  --color-purple: #A382BC;
  --color-yellow: #F7EC32;
  /* ----------------------------------------------------------------
     Semantic / contextual
     ---------------------------------------------------------------- */
  --color-bg-light: #F9F7EF;
  --color-bg-dark: #121B42;
  --color-grey: #D9D9D6;
  --color-headline: #000000;
  --color-copy: #38393B;
  --color-focused: #0271CE;
  --color-error: #DC2022;
  /* ----------------------------------------------------------------
     Greyscale
     ---------------------------------------------------------------- */
  --color-black: #000000;
  --color-grey-500: #3B414B;
  --color-grey-400: #758195;
  --color-grey-300: #BAC0CA;
  --color-grey-200: #DDDFE5;
  --color-grey-100: #F1F1F4;
  --color-grey-50: #F8F8FA;
  --color-white: #FFFFFF;
  /* ----------------------------------------------------------------
     Semantic text colours
     ---------------------------------------------------------------- */
  --color-text-body: #38393B;
  --color-text-muted: #505660;
  --color-text-subtle: #64748b;
  /* ----------------------------------------------------------------
     Primary palette tints
     ---------------------------------------------------------------- */
  --color-primary-light: #1a2556;
  --color-primary-deep: #0a1228;
  --color-secondary-light: #d4b13f;
  --color-secondary-dim: rgba(201, 163, 46, 0.15);
  /* ================================================================
     LABEL COLOURS
     ================================================================ */
  --label-heal-bg: #3BB54A;
  --label-heal-text: #FFFFFF;
  --label-build-bg: #F79520;
  --label-build-text: #FFFFFF;
  --label-renew-bg: #A382BC;
  --label-renew-text: #FFFFFF;
  --label-energize-bg: #F7EC32;
  --label-energize-text: #121B42;
  --label-reset-bg: #121B42;
  --label-reset-text: #FFFFFF;
  --label-recharge-bg: #C9A32E;
  --label-recharge-text: #121B42;
  /* ================================================================
     TAG COLOURS
     ================================================================ */
  --tag-sale-bg: #DC2022;
  --tag-sale-text: #FFFFFF;
  --tag-new-bg: #121B42;
  --tag-new-text: #C9A32E;
  --tag-oos-bg: #758195;
  --tag-oos-text: #FFFFFF;
  /* ================================================================
     TYPOGRAPHY
     ================================================================ */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  /* Line heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  /* Font weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;
  /* ================================================================
     SPACING SCALE
     ================================================================ */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  /* ================================================================
     BORDER RADIUS
     ================================================================ */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  /* ================================================================
     SHADOWS
     ================================================================ */
  --shadow-xs: 0 1px 2px rgb(0 0 0 / 0.04);
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.08), 0 1px 2px rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.06);
  --shadow-gold: 0 4px 20px rgba(201, 163, 46, 0.35);
  /* ================================================================
     TRANSITIONS
     ================================================================ */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  /* ================================================================
     LAYOUT
     ================================================================ */
  --container-max: 1280px;
  --container-narrow: 980px;
  --container-padding: var(--space-6);
  /* Z-index scale */
  --z-below: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-overlay: 100;
  --z-modal: 200;
  --z-toast: 300;
  --z-nav: 400;
  /* ================================================================
     ICON BUTTONS
     ================================================================ */
  --icon-btn-size: 2.75rem;
  --icon-btn-size-lg: 3.25rem;
  --icon-btn-rect-px: 1rem;
}
/*# sourceMappingURL=tokens.css.map */
