/* ==========================================================================
   HellSpin — design tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Colors */
  --color-bg-primary: #070b1d;
  --color-bg-dark: #101528;
  --color-accent-light: #ffc21f;
  --color-white: #ffffff;
  --color-btn-accent: linear-gradient(180deg, #ff5a4d 0%, #ef3438 100%);
  --color-btn-secondary-border: #ffc21f;
  --color-text-main: #d4c5b1;
  --color-heading-gold: #ffd32a;
  --color-text-on-light: #1a1420;
  --color-danger: #ef3438;

  /* Typography */
  --font-main: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-body: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --fs-small: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --fs-h1: clamp(2rem, 1.6rem + 2vw, 2.75rem);
  --fs-h2: clamp(1.625rem, 1.4rem + 1vw, 2rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --line-height-base: 1.6;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --space-section: clamp(1.5rem, 1.1rem + 1.4vw, 2.5rem);
  --space-card-gap: 1.25rem;
  --space-paragraph: 1.25rem;
  --space-h2-text: 1.25rem;
  --space-h3-text: 1rem;
  --space-faq-gap: 1rem;
  --space-card-padding: 1.5rem;

  /* Layout */
  --container-max: 1440px;
  --radius-card: 6px;
  --header-height: 76px;

  /* Motion */
  --transition-base: 0.2s ease;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
}
