* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	letter-spacing: -2%;
	font-weight: 300;
}

img,
svg {
	display: block;
	max-width: 100%;
}

button {
	font: inherit;
	touch-action: manipulation;
}

@font-face {
	font-family: 'Lexend';
	src: url('/assets/fonts/lexend.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Lexend';
	src: url('/assets/fonts/lexend-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Lexend';
	src: url('/assets/fonts/lexend-light-italic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'DM Sans';
	src: url('/assets/fonts/dmsans.woff2') format('woff2');
	font-weight: 100 1000;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DM Mono';
	src: url('/assets/fonts/dmmono.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

.reveal_line {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	padding-bottom: 0.1em;
	margin-bottom: -0.1em;
}

.reveal_line_inner {
	display: inline-block;
}

.has_mask_js .reveal_line_inner {
	transform: translateY(110%);
	transition: transform 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	transition-delay: calc(var(--line, 0) * 0.3s);
}

.mask_reveal.is_in .reveal_line_inner {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.has_mask_js .reveal_line_inner {
		transform: none;
		transition: none;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is_visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@keyframes content_fade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content_fade {
	animation: content_fade 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
	.content_fade {
		animation: none;
	}
}

.cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	width: 0px;
	height: 0px;
	box-shadow: 0px 0px 26px 5px #ffffff53;
	border-radius: var(--radius-circle);
	background: var(--dark-text);
	mix-blend-mode: difference;
	pointer-events: none;
	opacity: 0;
	transform: translate(var(--cursor-x, -100px), var(--cursor-y, -100px)) translate(-50%, -50%);
	transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor.is_active {
	opacity: 1;
}

.cursor.is_grow {
	width: 40px;
	height: 40px;
}

body, html {
	overflow-x: clip;
}

body {
	background: var(--dark-bg);
	color: var(--dark-text-soft);
	font-family: var(--font-body), sans-serif;
  	font-optical-sizing: auto;
	transition: background-color 0.4s ease, color 0.4s ease;
}

body.is_light {
	background: var(--light-bg);
	color: var(--light-text-soft);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--dark-text);
	font-family: var(--font-heading), sans-serif;
  	line-height: 108%;
}

.section_title {
	font-size: var(--fs-heading);
	margin-block: var(--space-xs);
}

.section_title.dark {
	color: var(--light-text);
}

.accent {
	font-family: var(--font-heading), sans-serif;
	font-style: italic;
	color: var(--dark-accent);
}

.accent_yellow {
	color: var(--dark-accent-2);
}

.accent.light {
	color: var(--light-accent);
}

a {
	color: var(--dark-accent);
}

.br {
	display: block;
}

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--space-sm);
	padding-right: var(--space-sm);
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1535.98px) {
	.container {
		max-width: 1240px;
	}
}

@media (min-width: 2000px) {
	.container {
		max-width: 1600px;
	}
}

.container_narrow {
	max-width: 970px;
}

.button_accent {
	position: relative;
	font-family: var(--font-body), sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: var(--light-text);
	background: var(--dark-accent);
	border: 0;
	border-radius: 20px;
	outline: 1px solid transparent;
	padding: 16px 24px;
	text-decoration: none;
	transition: 0.3s all;
    overflow: hidden;
    transform: translateZ(0);
}

@media (max-width: 1399.98px) {
	.button_accent {
		font-size: 16px;
		border-radius: 15px;
		padding: 16px 20px;
	}
}

@media (max-width: 375.98px) {
	.button_accent {
		font-size: 13px;
		border-radius: 10px;
		padding: 12px 16px;
	}
}

.button_accent::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transform: translateY(150%);
    background-color: white;
    transition: 0.4s all;
}

.button_accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: rgb(169, 169, 169);
    transition: 0.4s all;
}

.button_accent:hover {
    background-color: transparent;
	color: var(--light-text);
    transform: scale(1.1) translateZ(0);
	outline: 1px solid #e6e6e6;
	border-radius: 20px;
	transition: all 0.3s, outline-color 0.2s 0.3s;
}

.button_accent:hover::after {
    transform: translateY(0);
}

.button_accent:hover::before {
    transform: translateY(-50%);
}

.coming_soon,
.coming_soon:hover {
	background-color: #858585 !important;
	border-color: #858585 !important;
	color: #c9c9c9 !important;
	outline: 1px solid transparent !important;
	transform: translateZ(0) !important;
	cursor: not-allowed !important;
}

.coming_soon::before,
.coming_soon::after {
    display: none !important;
}

.orb {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    filter: blur(150px);
    background-color: var(--dark-accent);
    opacity: 0.8;
    animation: orbOrbit 10s linear infinite, orbPulse 6s ease-in-out infinite;
}

@media (max-width: 991.98px) {
	.orb {
        width: 200px;
        height: 200px;
        filter: blur(75px);
    }
}

@media (max-width: 767.98px) {
	.orb {
        animation: none;
    }
}

@keyframes orbPulse {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.05;
  }
}

@keyframes orbOrbit {
  0% {
    transform: translate(-50%, -50%) translateX(40px) translateY(0px);
    opacity: 0.6;
  }
  25% {
    transform: translate(-50%, -50%) translateX(0px) translateY(40px);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) translateX(-40px) translateY(0px);
    opacity: 0.6;
  }
  75% {
    transform: translate(-50%, -50%) translateX(0px) translateY(-40px);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) translateX(40px) translateY(0px);
    opacity: 0.6;
  }
}

.cookie {
	position: fixed;
	left: var(--space-sm);
	right: var(--space-sm);
	bottom: var(--space-sm);
	z-index: 9999;
	max-width: 440px;
	margin-left: auto;
	background: #1b1b1b;
	color: #d6d6d6;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .45);
	transform: translateY(160%);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie.is_in {
	transform: translateY(0);
}

.cookie_text {
	font-family: var(--font-body), sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.cookie_text a {
	color: var(--dark-accent);
}

.cookie_actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.cookie_btn {
	flex: 1;
	font-family: var(--font-body), sans-serif;
	font-size: 14px;
	padding: 10px 16px;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s all;
}

.cookie_accept {
	background: var(--dark-accent);
	color: var(--light-text);
}

.cookie_decline {
	background: rgba(255, 255, 255, .08);
	color: #d6d6d6;
}

.cookie_btn:hover {
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.cookie {
		transition: none;
	}
}
