/* Laitent — Spacing, radii, borders, elevation, motion
   Spacing steps and radii are the values observed in the figma auto-layout
   frames (gaps of 8/10/20/32/40/48/80/100; radii of 8/10/12/16). */

:root {
  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 10px;
  --space-4: 20px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 48px;
  --space-8: 80px;
  --space-9: 100px;

  /* Layout */
  --content-max: 1196px;   /* website content column */
  --page-gutter: 40px;

  /* Radii */
  --radius-sm:  4px;   /* buttons, inputs */
  --radius-md:  8px;
  --radius-lg:  12px;  /* cards, images */
  --radius-xl:  16px;
  --radius-pill: 999px;

  /* Borders — the brand uses hairlines, typically 0.5–1px */
  --border-hair: 0.5px;
  --border-thin: 1px;

  /* Elevation — restrained. Soft, cool-tinted shadows. */
  --shadow-sm: 0 1px 2px rgba(13,15,18,0.06);
  --shadow-md: 0 8px 24px rgba(13,15,18,0.08);
  --shadow-lg: 0 24px 64px rgba(13,15,18,0.12);
  --glow-ice:  0 0 40px rgba(151,221,255,0.45);

  /* Blur — used behind glass/grain overlays */
  --blur-sm: 12px;
  --blur-lg: 244px;   /* the hero grain-glass value from the site */

  /* Motion — subtle, no bounce. */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-normal: 240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */
}
