/* Careno spacing, radius, shadow, motion tokens */
:root {
  /* Spacing — generous, editorial */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Corners — square, architectural. No rounding anywhere. */
  --radius-none: 0px;

  /* Borders */
  --border-hairline: 1px solid var(--border-subtle);

  /* Shadows — barely there; the brand prefers flat planes */
  --shadow-card: 0 1px 2px rgba(29, 42, 56, 0.06), 0 8px 24px rgba(29, 42, 56, 0.07);
  --shadow-none: none;

  /* Motion — calm, no bounce */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-slow: 400ms; /* @kind other */

  /* Layout */
  --content-max: 1200px;
  --gutter: 24px;
}
