/* forStory — Spacing, radius, shadow, layout tokens.
   The brand is clean and generous with whitespace; corners are mostly sharp
   (the logo dot is the only strong circle). Shadows are minimal. */

:root {
  /* Spacing scale (4px base) */
  --space-0: 0;
  --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;

  /* Radius — brand skews sharp/architectural. Small radii for controls only. */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px;
  --rule-width: 4px;        /* the vertical mint section line */

  /* Shadows — restrained */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px rgba(33, 33, 37, 0.06);
  --shadow-md: 0 4px 16px rgba(33, 33, 37, 0.08);
  --shadow-lg: 0 18px 48px rgba(33, 33, 37, 0.14);

  /* Layout */
  --container-max: 1200px;
  --gutter: 24px;
  --slide-w: 1280px;
  --slide-h: 720px;

  /* Motion — calm, filmic fades; 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-base: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */

  /* Signature divider */
  --divider-slashes: "/////////////////////////////////////////////////"; /* @kind other */
}
