:root {

  --color-black: #000000;
  --color-dark: #0e0e0e;
  --color-card: rgba(27, 27, 27, 0.65);

  --color-white: #ffffff;
  --color-text: #e2e2e2;
  --color-text-muted: #b0b0b0;
  --color-text-light: rgba(255,255,255,0.75);

  --color-red: #c1272d;
  --color-green: #14684e;
  --color-blue: #2d6dff;

  --color-border: rgba(255,255,255,0.08);

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Space Grotesk", sans-serif;

  --WEB-HEADER-h1-font-family: var(--font-heading);
  --WEB-HEADER-h1-font-weight: 800;
  --WEB-HEADER-h1-font-size: clamp(56px, 8vw, 110px);
  --WEB-HEADER-h1-line-height: 1.05;
  --WEB-HEADER-h1-letter-spacing: 0px;

  --WEB-header2-h2-font-family: var(--font-heading);
  --WEB-header2-h2-font-weight: 800;
  --WEB-header2-h2-font-size: clamp(38px, 5vw, 72px);
  --WEB-header2-h2-line-height: 1.1;
  --WEB-header2-h2-letter-spacing: 0px;

  --WEB-header3-h3-font-family: var(--font-heading);
  --WEB-header3-h3-font-weight: 700;
  --WEB-header3-h3-font-size: 32px;
  --WEB-header3-h3-line-height: 1.2;
  --WEB-header3-h3-letter-spacing: 0px;


  --WEB-BODY-b1-font-family: var(--font-body);
  --WEB-BODY-b1-font-weight: 400;
  --WEB-BODY-b1-font-size: 32px;
  --WEB-BODY-b1-line-height: 1.5;

  --WEB-BODY-b2-font-family: var(--font-body);
  --WEB-BODY-b2-font-weight: 400;
  --WEB-BODY-b2-font-size: 24px;
  --WEB-BODY-b2-line-height: 1.7;

  --WEB-BODY-b3-font-family: var(--font-body);
  --WEB-BODY-b3-font-weight: 400;
  --WEB-BODY-b3-font-size: 20px;
  --WEB-BODY-b3-line-height: 1.7;

  --WEB-BODY-b4-font-family: var(--font-body);
  --WEB-BODY-b4-font-weight: 400;
  --WEB-BODY-b4-font-size: 16px;
  --WEB-BODY-b4-line-height: 1.7;


  --WEB-BUTTON-cta1-font-family: var(--font-heading);
  --WEB-BUTTON-cta1-font-weight: 700;
  --WEB-BUTTON-cta1-font-size: 14px;
  --WEB-BUTTON-cta1-line-height: 1.2;
  --WEB-BUTTON-cta1-letter-spacing: 1px;


  --section-padding-desktop: 120px;
  --section-padding-mobile: 80px;

  --container-width: 1440px;
  --content-width: 1280px;


  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
  --radius-pill: 999px;


  --shadow-red: 0px 0px 30px rgba(193, 39, 45, 0.2);
  --shadow-green: 0px 0px 30px rgba(20, 104, 78, 0.2);
  --shadow-blue: 0px 0px 30px rgba(45, 109, 255, 0.2);


  --transition-fast: 0.25s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;


  --glass-background: rgba(27, 27, 27, 0.6);
  --glass-border: rgba(255,255,255,0.08);
  --glass-blur: blur(12px);

}


@media screen and (max-width: 768px) {

  :root {

    --WEB-HEADER-h1-font-size: 52px;

    --WEB-header2-h2-font-size: 40px;

    --WEB-header3-h3-font-size: 28px;

    --WEB-BODY-b1-font-size: 24px;

    --WEB-BODY-b2-font-size: 20px;

    --WEB-BODY-b3-font-size: 18px;

    --WEB-BODY-b4-font-size: 15px;

  }

}