@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&family=Anton&family=Oswald:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

:root {
  --bg: #0A0118;
  --bg-deep: #05000F;
  --surface: rgba(22, 9, 44, 0.55);
  --surface-solid: #140826;
  --border: rgba(255, 45, 149, 0.18);
  --border-cyan: rgba(0, 229, 255, 0.22);
  --magenta: #FF2D95;
  --cyan: #00E5FF;
  --sunset: #FF9E1F;
  --violet: #7B2FBE;
  --text: #F4EFFF;
  --text-dim: #B9A8D9;
  --text-mute: #7E6CA8;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --f-script: 'Mr Dafoe', cursive;
  --f-block: 'Anton', sans-serif;
  --f-cond: 'Oswald', sans-serif;
  --f-mono: 'Share Tech Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-cond);
  scroll-behavior: smooth;
}

body { background: var(--bg); min-height: 100vh; overflow-x: hidden; }

::selection { background: var(--magenta); color: var(--bg); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #3A1D6E; border-radius: 3px; }

a { color: inherit; text-decoration: none; }
img, video, canvas { display: block; max-width: 100%; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
