/* ===== Design tokens — CSS Custom Properties ===== */
:root {
  /* Colours */
  --bg-primary: #210728;
  --bg-dark: #17051d;
  --accent-light: #ffd329;
  --white: #f1f4f4;
  --btn-gradient: linear-gradient(180deg, #8cff4b 0%, #19c93f 100%);
  --btn-secondary-border: #c18a2e;
  --text-body: #b9a9c4;
  --heading-gold: #ffd429;
  --btn-dark-text: #000000;
  --btn-hover-text: #ff7a00;
  --card-bg: #2b0d36;
  --accent-green: #22d943;

  /* Typography */
  --font-main: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --fs-body: clamp(0.9375rem, 1.4vw, 1rem);
  --fs-h1: clamp(2.25rem, 5vw, 3rem);
  --fs-h2: clamp(1.625rem, 3.4vw, 2.125rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.5rem);
  --lh-base: 1.6;

  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --space-section: clamp(2.5rem, 5vw, 3.75rem);
  --space-card-gap: 1.25rem;
  --space-paragraph: 1.25rem;
  --space-h2-text: 1.25rem;
  --space-h3-text: 1rem;
  --space-faq-gap: 0.875rem;
  --space-card-pad: 1.5rem;

  /* Layout */
  --container-max: 1440px;
  --radius-card: 6px;
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.35);
  --transition-base: 0.25s ease;
}
