/* ============================================
   OROSTRENGTH — DESIGN TOKENS
   Dark athletic · Electric orange/red accents
   ============================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3.5rem,   1rem    + 7vw,    8rem);

  /* Spacing */
  --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;

  /* Radius */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow:  680px;
  --content-default: 960px;
  --content-wide:    1240px;

  /* Fonts */
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', sans-serif;
}

/* ---- DARK (always dark for fitness) ---- */
:root {
  --color-bg:              #0a0a0a;
  --color-surface:         #111111;
  --color-surface-2:       #161616;
  --color-surface-offset:  #1a1a1a;
  --color-surface-dynamic: #222222;
  --color-divider:         #252525;
  --color-border:          #2e2e2e;

  --color-text:         #f0f0f0;
  --color-text-muted:   #9a9a9a;
  --color-text-faint:   #555555;
  --color-text-inverse: #0a0a0a;

  /* Electric Orange primary */
  --color-primary:           #ff5500;
  --color-primary-hover:     #ff6a1a;
  --color-primary-active:    #e04400;
  --color-primary-highlight: #1a0d00;
  --color-primary-glow:      rgba(255, 85, 0, 0.4);

  /* Red secondary */
  --color-secondary:       #cc1a1a;
  --color-secondary-hover: #e02020;
  --color-secondary-glow:  rgba(204, 26, 26, 0.35);

  /* Gradients */
  --gradient-accent:  linear-gradient(135deg, #ff5500 0%, #cc1a1a 100%);
  --gradient-hero:    linear-gradient(160deg, #0a0a0a 0%, #120800 50%, #0a0a0a 100%);
  --gradient-card:    linear-gradient(145deg, #141414 0%, #111111 100%);
  --gradient-text:    linear-gradient(90deg, #ff5500 0%, #ff8800 100%);

  --color-success: #22c55e;
  --color-error:   #ef4444;
  --color-gold:    #fbbf24;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 30px var(--color-primary-glow);
  --shadow-glow-red: 0 0 30px var(--color-secondary-glow);
}
