/* Track Phi Track — Spacing, radius, shadow, motion tokens */
:root {
  /* Spacing scale (8px base) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Poster geometry */
  --poster-pad: clamp(28px, 5vw, 64px);
  --poster-top-space: clamp(48px, 9vw, 120px); /* generous negative space before the headline */

  /* Radii — pills are fully round; the poster body itself is square-cornered */
  --radius-pill: 999px;
  --radius-sm: 4px;
  --radius-none: 0px;

  /* The single grid-break rotation used across the system */
  --tilt: -6deg; /* @kind other */
  --tilt-strong: -9deg; /* @kind other */

  /* Glow / vignette for the photo cutout — no hard box */
  --cutout-glow: 0 0 90px 30px rgba(0,0,0,0.55); /* @kind shadow */
  --cutout-vignette: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%); /* @kind other */

  /* Shadows for chips/badges lifted off the surface */
  --shadow-badge: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-chip: 0 3px 10px rgba(0,0,0,0.30);

  /* Faint background motif opacity */
  --texture-opacity: 0.06; /* @kind other */

  /* Motion — snappy, athletic; minimal */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
}
