@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900");
@import url("fontawesome-all.min.css");

/*
	Aerial by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* =========================================================
   DARK GREYSCALE THEME (full rewrite)
   - All “color elements” shifted to dark grey / black scale
   - Layout/animations unchanged
   ========================================================= */

/* Optional: quick palette controls */
:root {
	--bg-base: #0f1012;                 /* page base */
	--bg-panel: #14161a;                /* subtle panels/overlays */
	--text-main: #e6e6e6;               /* primary text */
	--text-muted: rgba(230,230,230,0.75);
	--border: #7a7a7a;                  /* borders/lines */
	--link-underline: #9a9a9a;          /* dotted underline */
	--hover-bg: rgba(255,255,255,0.10); /* hover fill */
	--active-bg: rgba(255,255,255,0.20);/* active fill */
	--shadow-dark: rgba(0,0,0,0.65);
}

/* Reset */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: var(--bg-base);
	overflow: hidden;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

body, input, select, textarea {
	color: var(--text-main);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15pt;
	font-weight: 300 !important;
	letter-spacing: -0.025em;
	line-height: 1.75em;
}

a {
	-moz-transition: border-color 0.2s ease-in-out;
	-webkit-transition: border-color 0.2s ease-in-out;
	-ms-transition: border-color 0.2s ease-in-out;
	transition: border-color 0.2s ease-in-out;
	border-bottom: dotted 1px var(--link-underline);
	color: inherit;
	outline: 0;
	text-decoration: none;
}

a:hover {
	border-color: transparent;
}

/* Icon */

.icon {
	text-decoration: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon > .label {
	display: none;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

/* Wrapper */

@-moz-keyframes wrapper {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes wrapper {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@-ms-keyframes wrapper {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes wrapper {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

#wrapper {
	-moz-animation: wrapper 3s forwards;
	-webkit-animation: wrapper 3s forwards;
	-ms-animation: wrapper 3s forwards;
	animation: wrapper 3s forwards;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

/* BG */

#bg {
	-moz-animation: bg 60s linear infinite;
	-webkit-animation: bg 60s linear infinite;
	-ms-animation: bg 60s linear infinite;
	animation: bg 60s linear infinite;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);

	/* Greyscale background base */
	background: var(--bg-base) url("/assets/images/bg.png") bottom left;
	background-repeat: repeat-x;

	height: 100%;
	left: 0;
	opacity: 1;
	position: fixed;
	top: 0;
}

@-moz-keyframes bg {
	0% { transform: translate3d(0,0,0); }
	100% { transform: translate3d(-2250px,0,0); }
}

@-webkit-keyframes bg {
	0% { transform: translate3d(0,0,0); }
	100% { transform: translate3d(-2250px,0,0); }
}

@-ms-keyframes bg {
	0% { transform: translate3d(0,0,0); }
	100% { transform: translate3d(-2250px,0,0); }
}

@keyframes bg {
	0% { transform: translate3d(0,0,0); }
	100% { transform: translate3d(-2250px,0,0); }
}

#bg {
	background-size: 2250px auto;
	width: 6750px;
}

/* Overlay */

@-moz-keyframes overlay {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes overlay {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@-ms-keyframes overlay {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes overlay {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

#overlay {
	-moz-animation: overlay 1.5s 1.5s forwards;
	-webkit-animation: overlay 1.5s 1.5s forwards;
	-ms-animation: overlay 1.5s 1.5s forwards;
	animation: overlay 1.5s 1.5s forwards;

	background-attachment: fixed, fixed;
	background-image: url("/assets/images/overlay-pattern.png"), url("/assets/images/overlay.svg");
	background-position: top left, center center;
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;

	/* Darken the overlay layer for grayscale mood */
	background-color: rgba(0,0,0,0.35);

	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

/* Main */

#main {
	height: 100%;
	left: 0;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
}

#main:before {
	content: '';
	display: inline-block;
	height: 100%;
	margin-right: 0;
	vertical-align: middle;
	width: 1px;
}

/* Header */

@-moz-keyframes header {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes header {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@-ms-keyframes header {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@keyframes header {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@-moz-keyframes nav-icons {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@-webkit-keyframes nav-icons {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@-ms-keyframes nav-icons {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

@keyframes nav-icons {
	0% { transform: translate3d(0,1em,0); opacity: 0; }
	100% { transform: translate3d(0,0,0); opacity: 1; }
}

#header {
	-moz-animation: header 1s 2.25s forwards;
	-webkit-animation: header 1s 2.25s forwards;
	-ms-animation: header 1s 2.25s forwards;
	animation: header 1s 2.25s forwards;

	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;

	transform: translate3d(0,0,0);
	cursor: default;
	display: inline-block;
	opacity: 0;
	position: relative;
	text-align: center;
	top: -1em;
	vertical-align: middle;
	width: 90%;
}

#header h1 {
	font-size: 4.35em;
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1em;
	color: var(--text-main);
}

#header p {
	font-size: 1.25em;
	margin: 0.75em 0 0.25em 0;
	opacity: 0.75;
	color: var(--text-muted);
}

#header .subtitle {
	font-size: 1em;
	margin: 0.35em 0 0;
	opacity: 0.7;
	color: var(--text-muted);
}

#header .tagline {
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.3em;
	height: 1.15em;
	width: 1.15em;
	border-radius: 999px;
	border: 1px solid var(--border);
	font-size: 0.5em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75em;
	justify-content: center;
	margin: 1.5em 0 0;
}

.button {
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text-main);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95em;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 0.6em 1.6em;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
}

.button.primary {
	background: var(--hover-bg);
	border-color: transparent;
	color: #ffffff;
}

.button.primary:hover {
	background: var(--active-bg);
}

.button.ghost:hover {
	background: rgba(255, 255, 255, 0.08);
}

.feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25em 2em;
	justify-content: center;
	margin-top: 1.5em;
}

.feature-item {
	align-items: center;
	display: inline-flex;
	gap: 0.5em;
	font-size: 0.95em;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.feature-item .icon:before {
	font-size: 1em;
}

#header nav {
	margin: 1.5em 0 0 0;
}

#header nav li {
	-moz-animation: nav-icons 0.5s ease-in-out forwards;
	-webkit-animation: nav-icons 0.5s ease-in-out forwards;
	-ms-animation: nav-icons 0.5s ease-in-out forwards;
	animation: nav-icons 0.5s ease-in-out forwards;

	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;

	transform: translate3d(0,0,0);
	display: inline-block;
	height: 5.35em;
	line-height: 5.885em;
	opacity: 0;
	position: relative;
	top: 0;
	width: 5.35em;
}

#header nav li:nth-child(1) { animation-delay: 2.5s; }
#header nav li:nth-child(2) { animation-delay: 2.75s; }
#header nav li:nth-child(3) { animation-delay: 3s; }
#header nav li:nth-child(4) { animation-delay: 3.25s; }
#header nav li:nth-child(5) { animation-delay: 3.5s; }
#header nav li:nth-child(6) { animation-delay: 3.75s; }
#header nav li:nth-child(7) { animation-delay: 4s; }
#header nav li:nth-child(8) { animation-delay: 4.25s; }
#header nav li:nth-child(9) { animation-delay: 4.5s; }
#header nav li:nth-child(10) { animation-delay: 4.75s; }

#header nav a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	border: 0;
	display: inline-block;
	color: var(--text-main);
}

#header nav a:before {
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

	border-radius: 100%;
	border: solid 1px var(--border);
	display: block;
	font-size: 1.75em;
	height: 2.5em;
	line-height: 2.5em;
	position: relative;
	text-align: center;
	top: 0;
	width: 2.5em;

	/* ensure icon glyph is visible */
	color: var(--text-main);
}

#header nav a:hover {
	font-size: 1.1em;
}

#header nav a:hover:before {
	background-color: var(--hover-bg);
	color: #ffffff;
	border-color: #b0b0b0;
}

#header nav a:active {
	font-size: 0.95em;
	background: none;
}

#header nav a:active:before {
	background-color: var(--active-bg);
	color: #ffffff;
	border-color: #c8c8c8;
}

#header nav a span {
	display: none;
}

/* Footer */

#footer {
	/* darker gradient for grayscale */
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75) 75%);
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75) 75%);
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75) 75%);
	background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75) 75%);

	bottom: 0;
	cursor: default;
	height: 6em;
	left: 0;
	line-height: 8em;
	position: absolute;
	text-align: center;
	width: 100%;
	color: var(--text-muted);
}

/* Wide */

@media screen and (max-width: 1680px) {

	/* Basic */
	body, input, select, textarea {
		font-size: 13pt;
	}

	/* BG */
	@-moz-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-1500px,0,0); }
	}

	@-webkit-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-1500px,0,0); }
	}

	@-ms-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-1500px,0,0); }
	}

	@keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-1500px,0,0); }
	}

	#bg {
		background-size: 1500px auto;
		width: 4500px;
	}
}

/* Normal */

@media screen and (max-width: 1280px) {

	/* Basic */
	body, input, select, textarea {
		font-size: 12pt;
	}

	/* BG */
	@-moz-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-750px,0,0); }
	}

	@-webkit-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-750px,0,0); }
	}

	@-ms-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-750px,0,0); }
	}

	@keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-750px,0,0); }
	}

	#bg {
		background-size: 750px auto;
		width: 2250px;
	}
}

/* Mobile */

@media screen and (max-width: 736px) {

	/* Basic */
	body {
		min-width: 320px;
	}

	body, input, select, textarea {
		font-size: 11pt;
	}

	/* BG */
	@-moz-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-300px,0,0); }
	}

	@-webkit-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-300px,0,0); }
	}

	@-ms-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-300px,0,0); }
	}

	@keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-300px,0,0); }
	}

	#bg {
		background-size: 300px auto;
		width: 900px;
	}

	/* Header */
	#header h1 {
		font-size: 2.5em;
	}

	#header p {
		font-size: 1em;
	}

	#header nav {
		font-size: 1em;
	}

	#header nav a:hover {
		font-size: 1em;
	}

	#header nav a:active {
		font-size: 1em;
	}
}

/* Mobile (Portrait) */

@media screen and (max-width: 480px) {

	/* BG */
	@-moz-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-412.5px,0,0); }
	}

	@-webkit-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-412.5px,0,0); }
	}

	@-ms-keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-412.5px,0,0); }
	}

	@keyframes bg {
		0% { transform: translate3d(0,0,0); }
		100% { transform: translate3d(-412.5px,0,0); }
	}

	#bg {
		background-size: 412.5px auto;
		width: 1237.5px;
	}

	/* Header */
	#header nav {
		padding: 0 1em;
	}
}
