@font-face {
	font-family:SF-Pro-Display;
	src:url('fonts/SF-Pro-Display-Regular.otf') format('truetype');
	font-style:normal;
	font-weight:400;
	text-rendering:optimizeLegibility
}

@font-face {
	font-family:SF-Pro-Display;
	src:url('fonts/SF-Pro-Display-Medium.otf') format('truetype');
	font-style:normal;
	font-weight:500;
	text-rendering:optimizeLegibility
}

@font-face {
	font-family:SF-Pro-Display;
	src:url('fonts/SF-Pro-Display-Semibold.otf') format('truetype');
	font-style:normal;
	font-weight:600;
	text-rendering:optimizeLegibility
}

@font-face {
	font-family:SF-Pro-Display;
	src:url('fonts/SF-Pro-Display-Bold.otf') format('truetype');
	font-style:normal;
	font-weight:700;
	text-rendering:optimizeLegibility
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'SF-Pro-Display', sans-serif;
	margin: 0;
	padding: 0;
	color: #ffffff;
	background-color: #010315;
}

p {
	font-weight: 400;
	color: #A9A4C0;
	font-size: 18px;
	line-height: 1.3;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

.main-btn {
	position: relative;
	display: inline-block;
	font-size: 18px;
	padding: 20px 30px;
	text-align: center;
	border-radius: 30px;
	background: #ffffff;
	color: #010315;
	font-weight: 600;
	transition-duration: 0.3s;
}

.main-copy {
	position: relative;
	display: inline-flex;
	font-size: 18px;
	padding: 20px 30px;
	text-align: left;
	border-radius: 30px;
	color: #ffffff;
	font-weight: 600;
	align-items: center;
	justify-content: space-around;
}

.main-copy::before {
	content: '';
   display: block;
   position: absolute;
   top: 0;
   width: 100%;
   height: 100%;
   border-radius: 30px;
   border: 1px solid rgba(255, 255, 255, .08);
   background-color: rgba(20, 30, 53, .5);
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

.main-copy h3 {
	position: relative;
}

.copy-text {
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0px 20px 0px 10px;
	font-weight: 400;
}

.copy-btn {
	position: relative;
	cursor: pointer;
	background: transparent;
	border: none;
}

.copy-btn img {
	width: 20px;
	background: transparent;
	opacity: 0.5;
}

.copy-done {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	line-height: 1.2;
	bottom: -60px;
	transition-duration: 0.3s;
}

.copy-done.show {
	opacity: 1;
	visibility: visible;
	transition-duration: 0.3s;
	transform: translateY(-30px);
}

.main-btn:hover {
	-webkit-box-shadow: rgba(255,255,255,.4) 0 0 4px 4px;
	box-shadow: rgba(255,255,255,.4) 0 0 4px 4px;
	transition-duration: 0.3s;
}

.container {
	margin: 0px auto;
	padding: 0px 20px;
	max-width: 1200px;
	position: relative;
}

.header {
	position: fixed;
	width: 100%;
	z-index: 101;
	top: 30px;
}

.header-container {
	position: relative;
	display: flex;
	height: 70px;
	align-items: center;
	justify-content: space-between;
}

.header-container::before {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    background-color: rgba(20, 30, 53, .5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.logo {
	display: inline-block;
	width: 150px;
	margin-left: 30px;
}

.logo img {
	width: 100%;
	display: inline-block;
	vertical-align: middle;
}

.header-container ul {
	position: relative;
	display: flex;
	gap: 30px;
}

.header-container ul li {
	display: inline-block;
}

.header-container ul li a {
	display: inline-block;
	color: rgb(255 255 255 / 80%);
	font-size: 18px;
	transition-duration: 0.3s;
}

.header-container ul li a:hover {
	color: #ffffff;
	transition-duration: 0.3s;
}

.socials {
	display: flex;
	gap: 10px;
}

.header-socials {
	margin-right: 30px;
	justify-content: flex-end;
}

.socials a {
	background: rgb(255 255 255 / 20%);
	padding: 10px;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	transition-duration: 0.3s;
}

.socials a:hover {
	transform: scale(1.2);
	transition-duration: 0.3s;
}

.socials a img {
	width: 22px;
	height: 22px;
}

.hamburger {
  display: none; 
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin-right: 30px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease; 
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0; 
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.nav-menu {
	position: absolute;
	transform: translateY(-100%);
	z-index: 55;
	opacity: 0;
	visibility: hidden;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
  list-style: none;
  margin: 0;
  padding: 0;
  background-image: url('images/bg_bottom_mobile.png');
  background-size: cover;
  transition-duration: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.nav-menu.active {
	z-index: 100;
	transform: none;
	visibility: visible;
	transition-duration: 0.3s;
	opacity: 1;
}

.nav-menu ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.nav-menu li {
  margin: 0 15px;
  text-align: left;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 40px;
  color: rgb(255 255 255 / 80%);
}

.page-wrap {
	position: relative;
}

.index-hero {
	min-height: 100vh;
}

.index-hero_bg {
	position: absolute;
   z-index: 2;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   -o-object-position: center;
   object-position: center;
}

.index-hero_content {
	position: absolute;
	top: 20vh;
	color: #ffffff;
	z-index: 100;
	width: 100%;
	text-align: center;
	padding: 0px 20px;
}

.index-hero_content .hero-big-logo {
	max-width: 90%;
	width: 650px;
}

.index-hero_content svg {
	display: none;
}

.index-hero_content h1 {
	font-size: 38px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-bottom: 40px;
}

.stocks_field {
	position: relative;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 25vh;
	margin-top: 20px;
}

.stocks_field img {
	width: 60px;
	height: 60px;
}

.index-about {
	position: relative;
	padding-top: 100px;
}

.index-about_content {
	background: #010316 url('images/index_about_bg.png') no-repeat center bottom;
	background-size: cover;
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	padding: 60px 60px 0px 60px;
	gap: 50px;
	border-radius: 20px;
	border: 1px solid #24263A;
	box-shadow: 0px -50px 70px -20px rgb(40 63 255 / 30%);
}

.about_block-text {
	width: 50%;
	padding-bottom: 60px;
}

.about_block-text h1 {
	font-size: 50px;
}

.about_block-text p {
	margin: 30px 0px;
	color: #ffffff;
}

.about_block-item {
	width: 400px;
	background: url('images/about_item.png') no-repeat center top #010315;
	min-height: 500px;
	background-size: 400px;
	border: 1px solid #4d2fba;
	border-bottom: none;
	border-radius: 20px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 30px;
	padding-top: 200px;
	text-align: center;
	box-shadow: inset 0px -40px 80px -30px #4c3e96;
}

.about_block-item h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 20px;
}

.index-features {
	position: relative;
	margin-top: 210px;
	background: url('images/index_features_bg.png') no-repeat center top;
	background-size: 850px;
}

.index-features_content {
	width: 100%;
	padding-top: 390px;
	text-align: center;
}

.h2-title {
	font-size: 54px;
	text-align: center;
	font-weight: 500;
}

.features-container {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}

.features_block {
	width: 30%;
	border: 1px solid #24263A;
	border-radius: 20px;
	background: radial-gradient(74.33% 87.22% at 69.12% 91.51%,#030517 0,#020317 100%);
	overflow: hidden;
	text-align: center;
}

.features_block img {
	width: 100%;
}

.features_block h3 {
	margin-top: 20px;
}

.features_block span {
	display: block;
	padding: 30px 20px;
	line-height: 1.3;
}

.index-tokenomics {
	position: relative;
	background: url('images/index_tokenomics.png') no-repeat center top;
	background-size: 1440px;
	padding-top: 170px;
}

.index-tokenomics h2 {
	margin-bottom: 470px;
}

.index-tokenomics h4 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 36px;
}

.index-tokenomics_content {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 20px;
}

.tokenomics_item {
	background: linear-gradient(150deg, rgb(3 5 31) 35%, rgb(17 14 73) 75%, rgb(34 14 166) 100%);
	background: linear-gradient(150deg, rgb(6 9 38) 35%, rgb(17 14 73) 75%, rgb(34 14 166) 100%);
	padding: 20px 10px;
	border-radius: 30px;
	text-align: center;
	position: relative;
	width: 20%;
	font-size: 18px;
}

.tokenomics_item img {
	width: 60px;
	height: 60px;
	border-radius: 20px;
	display: block;
	margin: 0px auto;
	margin-bottom: 20px;
}

.tokenomics_item b {
	display: block;
	margin-top: 5px;
	font-weight: 700;
}

.index-faq {
	padding-top: 100px;
	background: url('images/faq_bg.jpg') no-repeat center bottom;
	background-size: cover;
	padding-bottom: 300px;
}

.faq_content h2 {
	margin-bottom: 60px;
}

.faq {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #24263A;
  padding: 30px 0px;
}

.faq-question {
  background: transparent;
  cursor: pointer;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  padding-right: 30px;
}

.faq-question::after {
  content: url('images/arrow.svg');
  position: absolute;
  display: block;
  width: 18px;
  right: 0px;
  top: 0px;
  transition-duration: 0.3s;
}

.faq-question.active::after {
  transform: rotate(180deg);
  transition-duration: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  padding-left: 0px;
  transition: max-height 0.3s ease, padding 0.3s ease; 
}

.faq-answer.active {
  max-height: 300px; 
  padding: 15px;
  padding-left: 0px;
}

.footer {
	width: 100%;
}

.footer_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
}

.copyrights {
	font-size: 18px;
}

@media (max-width: 1200px) {
	.index-hero {
		height: auto;
	}
}

@media (max-width: 1024px) {
	.index-hero_bg{
		display: none !important;
	}

	.index-hero {
		min-height: 0;
		padding-top: 282px;
		background-image: url('images/index_bg_tablet.png');
		background-repeat: no-repeat;
		background-position: top center;
		background-size: auto 293px;
	}

	.index-hero_content {
		position: static;
	}

	.index-hero_content h1 {
		font-size: 24px;
	}

	.index-hero_content svg {
		display: inline-block;
		color: #ffffff;
    	width: 343px;
    	max-width: 100%;
    	margin-bottom: 15px;
	}

	.index-features {
		margin-top: 120px;
	}
}

@media (max-width: 768px) {
	.hamburger {
		display: block;
	}

	.header-container ul,
	.header-socials {
		display: none;
		opacity: 0;
		visibility: hidden;
	}

	.about_block-text h1 {
		font-size: 36px;
	}

	.h2-title {
		font-size: 36px;
	}

	.tokenomics_item {
		flex: 1 1 33%;
		font-size: 16px;
	}
}

@media (max-width: 540px) {
	.index-hero {
		background-image: url('images/index_bg_mobile.png');
	}

	.index-about_content {
		flex-direction: column;
		padding: 20px 20px 0px 20px;
	}

	.index-hero_content h1 {
		font-size: 18px;
	}

	.index-hero_content svg {
		width: 90vw;
	}

	.main-copy {
		width: 100%;
		padding: 10px 15px;
	}

	.about_block-text {
		width: 100%;
	}

	.about_block-item {
		width: 100%;
	}

	.index-features {
		background-size: 500px;
	}

	.index-features_content {
		padding-top: 230px;
	}

	.features-container {
		flex-direction: column;
		gap: 50px;
	}

	.features_block {
		width: 100%;
	}

	.index-tokenomics_content {
		flex-wrap: wrap;
	}
}