*, *::before, *::after {
	box-sizing: border-box;
	outline: none !important;
}

html {
	background: #000000;
	color: #fff;
	font: normal normal 400 16px/1.5 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

@media (max-width: 1000px) {
	html {
		font-size: 15.5px;
	}
}

@media (max-width: 700px) {
	html {
		font-size: 15px;
	}
}

body {
	font: inherit;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
		linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.92)), 
		url('../images/background.png') center center / cover;
	background-attachment: fixed;
	background-blend-mode: overlay, overlay, normal;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 75px;
	overflow: hidden;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.75);
	width: 100%;
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	z-index: 999;
	transition: all 0.3s ease;
}

.navbar:hover {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.navbar__container {
	display: flex;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.5rem;
	height: 75px;
}

.navbar__branding {
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 6.5px;
}

.navbar__branding a {
	display: flex;
	align-items: center;
}

.navbar__branding a svg {
	width: 32px;
	height: 32px;
	margin-right: 0.75rem;
}

.navbar__items {
	display: flex;
	align-items: center;
	margin-left: auto;
}

@media (max-width: 700px) {
	.navbar__items:not(.navbar__items--mobile) {
		display: none;
	}
}

@media (min-width: 701px) {
	.navbar__items--mobile {
		display: none;
	}
}

.navbar__item {
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Raleway', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.navbar__item::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__item:hover {
	color: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
}

.navbar__item:hover::after {
	width: 100%;
}

.navbar__item:not(:first-child) {
	margin-left: 1.25rem;
}

@media (min-width: 701px) {
	.navbar__item--highlighted {
		background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
		padding: 0.65rem 1.5rem;
		color: #000000;
		font-size: 0.9rem;
		font-weight: 700;
		border-radius: 0.75rem;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 
			0 4px 15px rgba(255, 255, 255, 0.15),
			0 2px 5px rgba(0, 0, 0, 0.1),
			inset 0 1px 0 rgba(255, 255, 255, 0.9);
		border: 1px solid rgba(255, 255, 255, 0.2);
		position: relative;
		overflow: hidden;
	}
	.navbar__item--highlighted::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
		transition: left 0.5s ease;
	}
	.navbar__item--highlighted:hover {
		background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
		transform: translateY(-3px) scale(1.02);
		box-shadow: 
			0 8px 25px rgba(255, 255, 255, 0.25),
			0 4px 10px rgba(0, 0, 0, 0.15),
			inset 0 1px 0 rgba(255, 255, 255, 0.9);
	}
	.navbar__item--highlighted:hover::before {
		left: 100%;
	}
	.navbar__item--highlighted::after {
		display: none;
	}
}

.navbar__items--mobile .navbar__item {
	font-size: 1.1rem;
	cursor: default;
}

.navbar__items--mobile .navbar__item label {
	padding: 1rem;
}

@media (max-width: 700px) {
	.navbar__items:not(.navbar__items--mobile) {
		position: absolute;
		top: 75px;
		right: 1rem;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		width: 200px;
		border-radius: 0 0 0.5rem 0.5rem;
		transform-origin: top center;
		transition: transform 0.25s ease;
		z-index: 99;
	}
	.navbar__items:not(.navbar__items--mobile) .navbar__item {
		margin: 0;
		width: 100%;
		padding: 1rem;
		text-align: right;
	}
	#input-navbar:not(:checked)+.navbar__items:not(.navbar__items--mobile) {
		transform: scale(1, 0);
		pointer-events: none;
	}
}

.main {
	flex-grow: 1;
}

.main__container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.heading {
	margin: 4rem 0;
	font-family: 'Rawline', sans-serif;
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
}

.section {
	position: relative;
}

.section:first-child {
	border-top-left-radius: 1.5rem;
	border-top-right-radius: 1.5rem;
}

.section:last-child {
	border-bottom-left-radius: 1.5rem;
	border-bottom-right-radius: 1.5rem;
}

.section__container {
	padding: 5rem 4rem;
}

@media (max-width: 700px) {
	.section__container {
		padding: 5rem 2rem;
	}
}

@media (max-width: 700px) {
	.navbar__branding {
	  letter-spacing: 0;
	}
  }

.section__heading {
	font-family: 'Raleway', sans-serif;
	text-shadow: 
		0 2px 10px rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 0, 0, 0.3);
	font-size: 2rem;
	letter-spacing: 4px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.block__body h1 {
	margin: 1.5rem 0 1rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
}

.block__body h2 {
	margin: 1.5rem 0 1rem;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
}

.block__body p+p {
	margin-top: 1rem;
}

.section__description {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	line-height: 1.75;
}

.section__description a {
	color: #ffffff;
	text-decoration: underline;
	transition: opacity 0.25s ease;
}

.section__description a:hover {
	opacity: 0.7;
}

.block__body a {
	color: #ffffff;
	text-decoration: underline;
	transition: opacity 0.25s ease;
}

.block__body a:hover {
	opacity: 0.7;
}

.section--hero {
	height: calc(100vh - 75px);
}

.section--hero .section__container {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
	padding: 0;
	height: 100%;
}

@media (max-width: 1200px) {
	.section--hero .section__container {
		flex-direction: column-reverse;
	}
}

.section--hero .section__image {
	box-shadow: 
		0 0 80px rgba(0, 0, 0, 0.9),
		0 0 40px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(255, 255, 255, 0.08),
		inset 0 0 60px rgba(0, 0, 0, 0.3);
	position: relative;
	background-image: var(--image-url);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	flex-basis: 100%;
	width: 100%;
	height: 500px;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	z-index: 9;
	animation: reveal-hero-image 3s ease-out backwards;
	overflow: hidden;
	display: block;
}

.section--hero .section__image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.section--hero .section__image>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@keyframes reveal-hero-image {
	from {
		opacity: 0;
		transform: scale(1.1, 1.1);
	}
}

@media (min-width: 1201px) {
	.section--hero .section__image {
		transform: perspective(800px) rotateY(-15deg) translateY(10px) rotateX(10deg) scale(1);
		transition: transform 0.6s ease;
	}
	.section--hero .section__image:hover {
		transform: scale(1.1, 1.1);
	}
}

@media (max-width: 1200px) {
	.section--hero .section__image {
		flex-basis: auto;
		max-width: 600px;
	}
}

.section--hero .section__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.section--hero .section__content {
	position: relative;
	flex-basis: 100%;
	width: 100%;
}

@media (max-width: 1200px) {
	.section--hero .section__content {
		flex-basis: auto;
		margin-bottom: 2rem;
		text-align: center;
	}
}

.section--hero .section__heading {
	font-size: 3.5rem;
	letter-spacing: 8px;
	animation: reveal-hero-heading 1s ease-out both;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

@keyframes reveal-hero-heading {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}
}

@media (max-width: 700px) {
	.section--hero .section__heading {
		font-size: 2.5rem;
	}
}

.section--hero .section__subheading {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	transform: translateX(13px);
	animation: reveal-hero-subheading 1s ease-out 0.5s both;
}

@media (max-width: 1200px) {
	.section--hero .section__subheading {
		transform: translateX(-3px);
	}
}

@keyframes reveal-hero-subheading {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}
}

@media (max-width: 700px) {
	.section--hero .section__subheading {
		font-size: 0.9rem;
		letter-spacing: 1px;
	}
}

.section--hero .section__buttons {
	display: flex;
	justify-content: center;
	margin-top: 2.25rem;
	animation: reveal-hero-buttons 1s ease-out 0.75s both;
}

@keyframes reveal-hero-buttons {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
}

@media (min-width: 1201px) {
	.section--hero .section__buttons {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.section--hero .section__buttons {
		flex-direction: column;
	}
}

.section--hero .section__buttons .button {
	width: 250px;
	margin: 0 0.5rem;
}

@media (max-width: 700px) {
	.section--hero .section__buttons .button {
		width: 100%;
		margin: 0.5rem 0;
	}
}

.section--about {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(40px) saturate(180%);
	-webkit-backdrop-filter: blur(40px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 20px 60px rgba(0, 0, 0, 0.3);
}

.section--about .section__content {
	text-align: center;
}

.section--about .section__heading {
	font-size: 2.5rem;
}

.section--about .section__description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.section--feature {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(35px) saturate(180%);
	-webkit-backdrop-filter: blur(35px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 15px 50px rgba(0, 0, 0, 0.25);
	transition: all 0.4s ease;
}

.section--feature:hover {
	background: rgba(0, 0, 0, 0.55);
	border-top-color: rgba(255, 255, 255, 0.08);
}

.section--feature .section__container {
	display: flex;
	align-items: center;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

@media (max-width: 1200px) {
	.section--feature .section__container {
		flex-direction: column-reverse;
	}
}

.section--feature .section__image {
	box-shadow: 
		0 0 60px rgba(0, 0, 0, 0.85),
		0 0 30px rgba(0, 0, 0, 0.5),
		0 0 15px rgba(255, 255, 255, 0.06),
		inset 0 0 40px rgba(0, 0, 0, 0.2);
	position: relative;
	background-image: var(--image-url);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	flex-basis: 100%;
	width: 100%;
	height: 400px;
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	display: block;
}

.section--feature .section__image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.section--feature .section__image:hover::after {
	opacity: 1;
}

.section--feature .section__image>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (min-width: 1200px) {
	.section--feature .section__image {
		transform: perspective(750px) translate3d(0px, 0px, -220px) rotateY(20deg) scale(1.2, 1.2);
		transition: 0.6s;
	}
	.section--feature .section__image:hover {
		transform: perspective(750px) translate3d(0px, 0px, -220px) rotateY(0) scale(1.35, 1.35);
		transition: 0.6s;
	}
}

@media (max-width: 1200px) {
	.section--feature .section__image {
		flex-basis: auto;
		max-width: 600px;
	}
}

.section--feature .section__image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.section--feature .section__content {
	flex-basis: 100%;
	padding-left: 2rem;
}

@media (max-width: 1201px) {
	.section--feature .section__content {
		flex-basis: auto;
		margin-bottom: 2rem;
		padding-left: 0;
		text-align: center;
	}
}

.section--feature .section__heading {
	font-size: 2.25rem;
}

@media (max-width: 700px) {
	.section--feature .section__heading {
		font-size: 2rem;
	}
}

.section--feature .section__description {
	margin-top: 1rem;
}

@media (max-width: 700px) {
	.section--feature .section__description {
		font-size: 0.9rem;
	}
}

.section--feature--alt {
	background: rgba(10, 10, 10, 0.65);
	backdrop-filter: blur(35px) saturate(180%);
	-webkit-backdrop-filter: blur(35px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 15px 50px rgba(0, 0, 0, 0.25);
	transition: all 0.4s ease;
}

.section--feature--alt:hover {
	background: rgba(10, 10, 10, 0.7);
	border-top-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1201px) {
	.section--feature--alt .section__image {
		transform: perspective(750px) translate3d(0px, 0px, -250px) rotateY(-20deg) scale(1.2, 1.2);
	}
}

.section--feature--alt .section__container {
	flex-direction: row-reverse;
}

@media (max-width: 1200px) {
	.section--feature--alt .section__container {
		flex-direction: column-reverse;
	}
}

.section--feature--alt .section__content {
	padding-left: 0;
	padding-right: 2rem;
}

@media (max-width: 1200px) {
	.section--feature--alt .section__content {
		padding-right: 0;
	}
}

.section--download {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(40px) saturate(180%);
	-webkit-backdrop-filter: blur(40px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 25px 70px rgba(0, 0, 0, 0.4);
}

.section--download .section__content {
	text-align: center;
}

.section--download .section__heading {
	font-size: 2.5rem;
}

.section--download .section__description {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.section--download .section__buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: -0.5rem;
	margin-top: calc(2.25rem - 0.5rem);
}

@media (max-width: 700px) {
	.section--download .section__buttons {
		flex-direction: column;
	}
}

.section--download .section__buttons .button {
	width: 250px;
	margin: 0.5rem;
}

@media (max-width: 700px) {
	.section--download .section__buttons .button {
		width: 100%;
		margin: 0.5rem 0;
	}
}

.partners {
	display: grid;
	grid-gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.block {
	display: block;
	background: rgba(0, 0, 0, 0.35);
	padding: 1.5rem 2rem;
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

a.block:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(255, 255, 255, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.block__body {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	line-height: 1.75;
}

.block--partner {
	height: 100%;
}

.block--partner .block__image {
	margin-bottom: 1rem;
}

.block--partner .block__image img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.block--partner .block__header {
	margin-bottom: 0.25rem;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
}

.block--partner .block__body {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
}

.block--download {
	margin-top: 1.5rem;
}

.download {
	display: flex;
	margin: 0 -0.5rem;
}

.block--download:nth-child(2n) .download {
	flex-direction: row-reverse;
}

@media (max-width: 1000px) {
	.download {
		flex-direction: column !important;
	}
}

.download>* {
	margin: 0 0.5rem;
	flex-basis: 100%;
}

.download__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.download__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.download__logo img {
	max-width: 110px;
	height: auto;
}

.download__heading {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 2px;
}

.download__content .button {
	height: 65px;
	font-size: 1.15rem;
}

.download__video {
	position: relative;
	width: 100%;
}

.download__video::before {
	content: '';
	display: block;
	padding-top: calc(9 / 16 * 100%);
}

.download__video>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1000px) {
	.download__video {
		margin-top: 1.5rem;
	}
}

.download__video iframe {
	display: block;
	width: 100%;
	border-radius: 0.5rem;
	/* aspect-ratio: 16/9; */
}

.footer__container {
	display: flex;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	padding: 4rem 1.5rem;
}

@media (max-width: 700px) {
	.footer__container {
		flex-direction: column;
	}
}

.footer__content {
	width: 100%;
}

.footer__copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
}

.footer__affiliation {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.bolded__text {
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-decoration: underline;
	transition: opacity 0.25s ease;
}

.bolded__text:hover {
	opacity: 0.7;
}

.footer__icons {
	display: flex;
	align-items: center;
	margin-left: auto;
}

@media (max-width: 700px) {
	.footer__icons {
		width: 100%;
		align-items: flex-start;
		margin-left: 0;
		margin-top: 1rem;
	}
}

.footer__icon {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.25rem;
	text-decoration: none !important;
	transition: color 0.25s ease;
}

.footer__icon:not(:first-child) {
	margin-left: 1rem;
}

.footer__icon:hover {
	color: rgba(255, 255, 255, 1);
}

.button {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 2rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	position: relative;
	overflow: hidden;
}

.button--secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.button--secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.button--secondary:hover::before {
	left: 100%;
}

.button--primary {
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
	color: #000000;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 
		0 6px 25px rgba(255, 255, 255, 0.2),
		0 3px 10px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.button--primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transition: left 0.6s ease;
}

.button--primary:hover {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 
		0 10px 35px rgba(255, 255, 255, 0.3),
		0 5px 15px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button--primary:hover::before {
	left: 100%;
}

strong {
	color: #fff;
	font-weight: 600;
}

a {
	color: inherit;
	text-decoration: none;
}

.clouds {
	position: fixed;
	background: transparent url(../images/clouds_repeat.png) repeat;
	background-size: 1000px 1000px;
	width: 10000px;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0.15;
	filter: grayscale(100%) contrast(1.2);
	animation: clouds 24s linear infinite;
	pointer-events: none;
}

@keyframes logo {
	to {
		filter: drop-shadow(0 0 8px var(--color-primary));
	}
}

@keyframes clouds {
	to {
		transform: translate3d(1000px, 0px, 0px);
	}
}

::-webkit-scrollbar {
	width: 10px
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 3.75pt #323333;
	background-color: #323333
}

::-webkit-scrollbar-thumb {
	background: #ffffff;
	border-radius: 10px
}

::-webkit-scrollbar-thumb:hover {
	background: #e0e0e0;
}