/* _space — shape, spacing, elevation — V2-KONCEPT (2026-08-17)
   Pills, cards, hairlines. V2: blødere hjørner på kasser, kort og billeder. */

:root {
  /* Radii — V2: "none" er ikke længere 0; alt kort-agtigt afrundes blødt */
  --radius-none: 12px;        /* DS-komponenter (cards, inputs) — V2: blød */
  --radius-card: 14px;        /* kort, mocks, indrammede billeder */
  --radius-chip: 8px;         /* små chips/badges der ikke er pills */
  --radius-pill: 999px;       /* buttons, trust-strip pills, tags */

  /* Borders */
  --hairline: 1px solid var(--border-hairline);
  --hairline-inverse: 1px solid var(--paper-20);
  --rule-strong: 1px solid var(--border-strong);

  /* Spacing scale */
  --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;

  /* Layout */
  --container-max: 1200px;
  --section-pad-y: var(--space-9);
  --gutter: var(--space-5);

  /* Motion — quiet and quick; fades and small translates only */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --dur-fast: 150ms; /* @kind other */
  --dur-base: 250ms; /* @kind other */

  /* Elevation: none. Cards are flat — hairline border or bg-color shift. */
  --shadow-none: none;
}
