:root {
  /* ---- Colors ---- */
  --color-bg-primary: #210728;
  --color-bg-dark: #17051d;
  --color-accent-light: #ffd329;
  --color-white: #f1f4f4;
  --color-text: #b9a9c4;
  --color-heading: #ffd429;
  --color-btn-dark-text: #102013;
  --color-card: #2b0d36;
  --color-neon-green: #22d943;
  --color-border-secondary: #c18a2e;

  /* Gradients */
  --gradient-cta: linear-gradient(180deg, #8cff4b 0%, #19c93f 100%);

  /* ---- Typography ---- */
  --font-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --fs-body: clamp(0.875rem, 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);
  --fs-small: clamp(0.8rem, 1.2vw, 0.9rem);

  --lh-base: 1.6;
  --lh-heading: 1.25;

  /* ---- 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: 0.875rem;
  --space-card-padding: 1.5rem;

  /* ---- Layout ---- */
  --container-max: 1440px;
  --content-max: 1080px;
  --radius-card: 6px;
  --radius-pill: 999px;

  /* ---- Effects ---- */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.25);
  --transition-base: 0.25s ease;
  --header-height: 72px;
}
