:root {
  --c-bg: #F6F4F0;
  --c-text-primary: #111111;
  --c-text-secondary: #4A4A48;
  --c-text-muted: #8A8680;
  --c-accent: #FF5A1F;
}
body {
  background-color: var(--c-bg);
  color: var(--c-text-primary);
  font-family: 'Inter Tight', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
::selection {
  background: var(--c-accent);
  color: #FFFFFF;
}
.font-display {
  font-family: 'Cormorant Garamond', serif;
}
.font-mono {
  font-family: 'JetBrains Mono', monospace;
}
#grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.blueprint-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17,17,17,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,17,0.018) 1px, transparent 1px);
  background-size: 5rem 5rem;
}
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}
#custom-cursor.hovered {
  width: 2.25rem;
  height: 2.25rem;
}
.cursor-line-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
}
.cursor-line-v {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
}
.cursor-dot {
  width: 3px;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
  z-index: 1;
}
#custom-cursor.hovered .cursor-dot {
  background: var(--c-accent);
}
@media (max-width: 768px) {
  #custom-cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}
