:root{
	--nexus-bg:            #020202;
	--nexus-bg-alt:        #0a0a0a;
	--nexus-surface:       #111111;
	--nexus-surface-2:     #161616;
	--nexus-border:        #262626;
	--nexus-gold:          #f5b301;
	--nexus-gold-dark:     #d4a017;
	--nexus-cyan:          #22d3ee;
	--nexus-text:          #f5f5f5;
	--nexus-text-muted:    #9ca3af;
	--nexus-font-heading:  'Poppins', sans-serif;
	--nexus-font-body:     'Inter', sans-serif;
	--nexus-font-mono:     'JetBrains Mono', monospace;
	--nexus-radius:        14px;
	--nexus-radius-sm:     8px;
	--nexus-container:     1280px;
}

* { box-sizing: border-box; }

body{
	background-color: var(--nexus-bg);
	color: var(--nexus-text);
	font-family: var(--nexus-font-body);
	margin: 0;
}

h1,h2,h3,h4,h5,h6{
	font-family: var(--nexus-font-heading);
	color: var(--nexus-text);
	margin: 0 0 .5em;
}

a{ color: var(--nexus-gold); text-decoration: none; }
a:hover{ color: var(--nexus-gold-dark); }

img{ max-width: 100%; height: auto; display: block; }

::selection{ background: var(--nexus-gold); color: #000; }
