/* brand.css — shared brand utilities for the tenfold coming-soon app.
   Linked by every page so utilities stay consistent and tunable in one place.
   Palette tokens (--paper, --ink, ...) come from each page's stylesheet :root. */

/* Subtle paper texture (page backgrounds) */
/* 45° hairlines — same texture family, dialed way down. */
/* Tune: 13px/14px stops = line spacing/weight; .035 alpha = faintness (lower = quieter). */
.paper-hairlines {
  background-color: var(--paper);
  background-image: repeating-linear-gradient(-45deg, transparent 0 13px, rgba(18, 18, 18, 0.035) 13px 14px);
}
