/* ============================================================
   YESIMFACELESS — main.css
   Global variables, reset, typography, shared utilities
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

:root {
  /* Colors */
  --color-bg:       #0a0a0a;
  --color-text:     #f0f0f0;
  --color-muted:    #555;
  --color-accent:   #fff;

  /* Gradient (iridescent — tweak hues as moodboard develops) */
  --gradient-hero: linear-gradient(135deg, #a78bfa, #38bdf8, #34d399, #fb923c, #f472b6);

  /* Typography */
  --font-main:      'Space Grotesk', sans-serif;
  --font-size-base: clamp(1rem, 1.5vw, 1.125rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Cursor lens */
  --lens-size: 120px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1.6;
  cursor: none; /* replaced by glass lens */
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Grain texture overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Utility ---- */
.hidden { display: none !important; }
