/* MagneDS — Spacing, radii, glow & lines
   Generous whitespace is part of the brand: one punch, lots of room. */

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

  /* ---- Radii (restrained; the brand is geometric, not rounded) ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Divider line (the signature separator — a thin gold line) ---- */
  --line-thin: 1px;
  --line-gold: linear-gradient(90deg,
      rgba(201,168,76,0) 0%,
      rgba(201,168,76,0.85) 50%,
      rgba(201,168,76,0) 100%); /* @kind other */

  /* ---- Soft gold glow — always from the same direction (top-right) ---- */  --glow-gold: radial-gradient(120% 90% at 88% 8%,
      rgba(201,168,76,0.42) 0%,
      rgba(201,168,76,0.12) 32%,
      rgba(10,10,10,0) 64%); /* @kind other */
  --glow-gold-soft: radial-gradient(100% 80% at 85% 10%,
      rgba(201,168,76,0.22) 0%,
      rgba(10,10,10,0) 60%); /* @kind other */

  /* ---- Shadows (deep, on near-black; gold halo for emphasis) ---- */
  --shadow-card: 0 24px 60px -28px rgba(0,0,0,0.85);
  --shadow-gold: 0 0 0 1px rgba(201,168,76,0.18), 0 18px 50px -20px rgba(201,168,76,0.28);
  --shadow-logo: 0 0 28px -4px rgba(201,168,76,0.45);

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
  --dur-slow: 480ms; /* @kind other */
}
