:root {
  --background: #101413;
  --on-background: #e0e3e1;
  --primary-fixed: #c3f400;
  --text-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Uses custom cursor */
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--background);
  color: var(--on-background);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* CUSTOM SQUARE CURSOR matching Stitch Minimal Design */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--primary-fixed);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  transform: translate(-50%, -50%);
}

/* TYPOGRAPHY */
.text-headline-md {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.text-primary-fixed {
  color: var(--primary-fixed);
}

.font-display-lg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.text-glow {
  text-shadow: 0 0 20px rgba(195, 244, 0, 0.3);
}

/* LAYOUT & UTILITIES */
.relative { position: relative; }
.absolute { position: absolute; }
.h-screen { height: 100vh; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.z-10 { z-index: 10; }
.top-12 { top: 3rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.uppercase { text-transform: uppercase; }
.tracking-tighter { letter-spacing: -0.04em; }
.leading-none { line-height: 1; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.opacity-20 { opacity: 0.2; }
.text-white { color: var(--text-white); }

/* ATMOSPHERIC GLOW ORB */
.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: rgba(195, 244, 0, 0.1);
  filter: blur(120px);
  border-radius: 9999px;
}
