/* ============================================================
   Keyrocks Cleaners — Design Tokens
   Carried over from the Service Pro Studio design language
   (sps-design-language.md). Do not rename these variables —
   components throughout styles.css depend on them.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
  /* -- Fonts ------------------------------------------------ */
  --font-sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);

  /* -- Surfaces ----------------------------------------------*/
  --canvas: #ffffff;
  --canvas-soft: #f8f9fb;
  --canvas-muted: #f3f4f6;

  /* -- Ink (typography) --------------------------------------*/
  --ink: #171717;
  --ink-soft: #3f3f46;
  --ink-light: #6b7280;

  /* -- Hairlines / borders -------------------------------------*/
  --hairline: #e5e7eb;
  --hairline-strong: #d1d5db;

  /* -- Brand (Keyrocks blue) -----------------------------------*/
  --primary: #30aee4;
  --primary-hover: #2652a1;
  --primary-active: #30aee4;
  --primary-soft: #eaf2fe;
  --secondary: #0f172a;

  --focus-ring: #30aee4;

  /* -- Fluid type scale ----------------------------------------*/
  --fs-display-xl: clamp(3.5rem, 6vw, 5rem);
  --fs-display-lg: clamp(3rem, 5vw, 4rem);
  --fs-display-md: clamp(2.25rem, 4vw, 3rem);
  --fs-heading-lg: clamp(2rem, 3vw, 3.5rem);
  --fs-heading-md: clamp(1.6rem, 2vw, 2rem);
  --fs-heading-sm: 1.4rem;
  --fs-body-lg: 1.25rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.9375rem;
  --fs-caption: 0.8125rem;
  --fs-eyebrow: 0.875rem;

  --lh-display-xl: 1.05;
  --lh-display-lg: 1.1;
  --lh-display-md: 1.15;
  --lh-heading-lg: 1.2;
  --lh-heading-md: 1.25;
  --lh-heading-sm: 1.3;
  --lh-body: 1.8;
  --lh-body-sm: 1.7;
  --lh-tight: 1.4;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --tracking-eyebrow: 0.15em;

  /* -- Spacing scale ---------------------------------------- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(5rem, 10vw, 8rem);

  /* -- Radius --------------------------------------------------*/
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* -- Elevation ------------------------------------------------*/
  --shadow-low: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-high: 0 20px 48px rgba(0, 0, 0, 0.12);

  /* -- Containers ------------------------------------------------*/
  --container-large: 1240px;
  --container-reading: 720px;

  /* -- Motion ------------------------------------------------*/
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-base: 200ms;
}
