/* Maru elevation — hairline borders do most of the work; shadows are faint. */
:root{
  --border-hairline:1px solid var(--color-border);
  --border-ink:1.5px solid var(--color-border-ink);

  --shadow-none:none;
  --shadow-sm:0 1px 2px rgba(20,20,20,0.05);
  --shadow-md:0 4px 16px rgba(20,20,20,0.07);
  --shadow-lg:0 14px 44px rgba(20,20,20,0.11);

  /* Motion */
  --ease-standard:cubic-bezier(0.4,0,0.2,1); /* @kind other */
  --ease-out:cubic-bezier(0.16,1,0.3,1); /* @kind other */
  --duration-fast:120ms; /* @kind other */
  --duration-base:200ms; /* @kind other */
  --duration-slow:360ms; /* @kind other */
}
