:root {
	--bg: #262524;
	--panel: #3c3c3c;
	--text: #ffffff;
	--muted: #cccccc;
	--gold: #d4a15f;
	--border: #ffffff33;
	--surface: #1f1e1d
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif
}

main {
	min-height: calc(100vh - 491px);
}

.container {
	max-width: 1440px;
	margin: 0 240px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: var(--bg);

	.header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 24px 0;
	}

	.brand {
		display: flex;
		align-items: center;
		gap: 20px;

		.brand-mark {
			display: flex;
			align-items: center;
			border: 3px solid var(--text);
			border-radius: 50px;
			padding: 0 12px;
			height: 50px;
			width: 50px;
			justify-content: center;
		}

		.brand-e {
			display: block;
			color: var(--text);
			font-family: Poppins, Arial, Helvetica, sans-serif;
			font-weight: 700;
			font-size: 32px;
			justify-content: center;
			transform: skew(-25deg);
		}

		.brand-er {
			color: var(--text);
			font-family: Poppins, Arial, Helvetica, sans-serif;
			font-size: 24px;
			transform: skew(-25deg);
		}
	}

	.nav {
		display: flex;
		align-items: center;
		gap: 80px;

		.nav-link {
			color: var(--text);
			text-decoration: none;
			font-size: 14px;
			padding: 10px 14px;

			&.nav-cta {
				border-radius: 10px;
				background: var(--gold);
				color: #fff;
			}
		}
	}
}

.section {
	padding-bottom: 120px;

	.section-title {
		font-family: AR One Sans, AR One Sans;
		font-weight: 600;
		font-size: 50px;
		line-height: 75px;
		text-align: center;
		margin-top: 120px;

		.accent {
			color: var(--gold);
		}
	}

	&#team,&#vision{
		scroll-margin-top: 98px;
	}
}

.sub {
	text-align: center;
	color: #eeeeee;
	line-height: 22px;
	font-family: Roboto, Roboto;
}

.us {
	display: flex;
	flex-direction: column;
	gap: 80px;
	padding: 40px 95px 120px 95px;
	margin-top: 50px;

	.container:first-child {
		padding: 0;
	}

	.sub {
		margin-bottom: 80px;
	}

	.sub-btn {
		display: flex;
		justify-content: center;
		gap: 40px;
	}

	.info {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 90px;
		margin-bottom: 120px;

		.title {
			font-weight: 600;
			font-size: 36px;
			line-height: 54px;
			font-family: AR One Sans, AR One Sans;
			margin-bottom: 20px;
		}

		.desc {
			font-family: Roboto, Roboto;
			font-size: 16px;
			color: #EEEEEE;
			line-height: 22px;
		}
	}
}

.grid {
	display: grid;
	gap: 24px;

	&.cols-2 {
		grid-template-columns: 1fr 1fr;
	}

	&.cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	background: var(--panel);
	border-radius: 12px;
	padding: 40px 50px;
	color: var(--text);

	.media {
		width: 150px;
		height: 150px;
		border-radius: 100px;
		margin-bottom: 10px;
	}

	.title {
		font-family: Roboto, Roboto;
		font-weight: 500;
		font-size: 22px;
		line-height: 28px;
	}

	.subtitle {
		font-family: Roboto, Roboto;
		font-size: 14px;
		color: var(--gold);
		line-height: 28px;
		margin-bottom: 12px;
	}

	.desc {
		font-family: Arial, Arial;
		font-size: 14px;
		line-height: 21px;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 10px;
	font-size: 14px;
	height: 46px;

	&.primary {
		background: var(--gold);
		color: var(--text);
		padding: 10px 16px;
		gap: 10px;

		.btn-icon {
			transform: rotate(180deg);
			width: 34px;
			height: 34px;
		}

		&.light {
			background: var(--gold);
			color: var(--text);
			align-self: flex-start;
		}
	}

	&.ghost {
		color: var(--text);
		border: 1px solid var(--text);
		padding: 10px 16px;
	}
}

.team {
	position: relative;
	overflow: hidden;
	padding: 0;

	.team-bg {
		position: absolute;
		width: 100vw;
		height: 100%;
		z-index: -1;

		.bg-mask {
			width: 100%;
			height: 100%;
			background-color: #262524e0;
			z-index: 5;
			position: absolute;
		}

		.bg-img {
			width: 100%;
			position: absolute;
		}
	}

	.grid {
		gap: 45px;
	}

	.container {
		padding-bottom: 120px;
	}

	.section-title {
		margin-bottom: 80px;
	}
}

.journey {
	background: var(--panel);
	padding: 120px 0;

	.section-title {
		margin-top: 0;
		margin-bottom: 80px;
	}

	.content {
		width: 1000px;
		margin: 0 auto;
		display: flex;
		gap: 16px;

		.timeline {
			margin-top: 8px;
			display: flex;
			flex-direction: column;
			align-items: center;

			.circle {
				background: var(--gold);
				width: 16px;
				height: 16px;
				border-radius: 50%;
			}

			.line {
				background: var(--gold);
				width: 1px;
				height: 74px;
			}
		}

		.list {
			display: flex;
			flex-direction: column;
			gap: 34px;
			font-family: Roboto, Roboto;

			.item {
				display: flex;
				flex-direction: column;
				gap: 10px;

				.title {
					font-size: 22px;
					line-height: 24px;
				}

				.desc {
					font-size: 16px;
					line-height: 22px;
				}
			}
		}
	}
}

.nft {

	.content {
		margin-bottom: 50px;
		scroll-margin-top: 152px;

		.content-title {
			font-family: Inter, Inter;
			font-weight: 500;
			font-size: 20px;
			line-height: 22px;
			margin-bottom: 20px;
		}

		&#images {
			.card {
				display: flex;
				justify-content: space-between;
				align-items: center;
				gap: 10px;

				.btn {
					width: 32px;
					height: 32px;
					transition: opacity 0.2s ease;

					&.next-btn {
						transform: rotate(180deg);
					}
				}

				.img-list {
					display: flex;
					align-items: center;
					gap: 10px;
					width: calc(100% - 84px);
					overflow: hidden;

					.img-item {
						flex-shrink: 0;
						transition: transform 0.3s ease;

						img {
							width: 200px;
							height: 129px;
							border-radius: 10px;
							cursor: pointer;
						}
					}
				}
			}
		}

		&#description {
			.card {
				.text-title {
					font-family: Roboto, Roboto;
					font-weight: 500;
					font-size: 20px;
					line-height: 30px;
					margin-bottom: 10px;
				}

				.text-content {
					font-family: Inter, Inter;
					font-size: 14px;
					line-height: 21px;
					margin-bottom: 30px;

					ul {
						margin: 0;
						padding: 0 0 0 20px;
					}

					&:last-child {
						margin-bottom: 0;
					}
				}
			}
		}

		&#faq {
			.card {
				border: 1px solid var(--panel);
				padding: 0;
				overflow: hidden;
				margin-bottom: 10px;

				.header {
					font-family: Roboto, Roboto;
					font-weight: 500;
					font-size: 14px;
					line-height: 22px;
					padding: 12px 16px;
				}

				.label {
					font-family: Inter, Inter;
					font-size: 14px;
					line-height: 14px;
					padding: 16px;
					background-color: var(--bg);
					width: 100%;
				}
			}
		}

		&#related {
			.projects-list {
				overflow: hidden;
				position: relative;

				.list-container {
					overflow: hidden;
					width: 100%;

					.list {
						display: flex;
						transition: transform 0.3s ease;
						width: 100%;

						.item {
							flex: 0 0 100%;
							min-width: 0;
						}
					}
				}
			}

			.pages {
				display: flex;
				justify-content: center;
				gap: 9px;
				width: 100%;


				.point {
					width: 10px;
					height: 10px;
					border-radius: 50%;
					border: 1px solid #F0F0F3;
					transition: background-color 0.3s ease;

					&.active {
						border: 1px solid var(--gold);
						background-color: var(--gold);
					}
				}
			}
		}
	}

	.share {
		font-family: Roboto, Roboto;
		font-size: 14px;
		line-height: 22px;
		display: flex;
		align-items: center;
		gap: 40px;
		margin-bottom: 50px;

		img {
			width: 48px;
			height: 48px;
		}
	}

	.pop {
		background: rgba(0, 0, 0, 0.5);
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1000;

		.pop-content {
			background-color: var(--panel);
			border-radius: 20px;
			padding: 50px;
			margin: 0 240px;
			display: grid;
			grid-template-columns: 2fr 3fr;
			gap: 80px;
			box-sizing: border-box;

			.article{
				.title{
					font-family: Roboto, Roboto;
					font-weight: 500;
					font-size: 20px;
					line-height: 30px;
					margin-bottom: 10px;
				}

				.text{
					font-family: Inter, Inter;
					font-size: 14px;
					line-height: 21px;
				}
			}

			.photo {
				img {
					width: 100%;
				}
			}
		}
	}
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 80px;

	img {
		width: 100%;
		height: 120px;
		border-radius: 20px;
		object-fit: cover;
	}
}

.touch {
	background-color: var(--panel);

	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.section-title {
		margin: 0;
		padding: 120px 0 10px;
	}

	.subtitle {
		font-family: Roboto, Roboto;
		font-weight: 400;
		font-size: 16px;
		color: #EEEEEE;
		line-height: 22px;
		text-align: center;
		margin-bottom: 80px;
	}

	.table {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: 900px;
		margin: 0 auto;



		.touch-input,
		.touch-textarea {
			background-color: var(--bg);
			padding: 18px 20px;
			border: 0;
			border-radius: 10px;
			color: var(--text);
		}

		.touch-textarea {
			max-width: 100%;
			min-width: 100%;
			min-height: 283px;
		}
	}

	.primary {
		margin-top: 80px;
		width: 900px;
	}
}

.site-footer {
	background: url('../.figma/image/mi2ibm6f-8pcf04q.png') center/cover no-repeat;
	color: #f4f4f4;
	position: relative;

	* {
		z-index: 10;
	}

	.footer-mask {
		z-index: 0 !important;
		background-color: #262524e0;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}

	.footer-top {
		display: flex;
		justify-content: space-between;
		padding: 40px 240px 60px 240px;
		position: relative;

		.footer-col {
			display: flex;
			flex-direction: column;
			gap: 20px;

			.footer-title {
				font-weight: 600;
				text-decoration: underline;
			}

			.footer-item {
				color: var(--text);
			}
		}

		.footer-help {
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 50%;
			background: var(--text);
			width: 36px;
			height: 36px;
			position: absolute;
			bottom: 75px;
			right: 93px;

			img {
				width: 14px;
				height: 14px;
			}
		}
	}

	.footer-line {
		box-shadow: 0px 1px 1px 0px rgb(239, 239, 239);
		border: 1px solid #000000;
		width: 100vw;
		height: 0px;
	}

	.footer-bottom {
		.footer-bottom-inner {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 18px 240px;

			.follow {
				display: flex;
				align-items: center;
				gap: 12px;

				img {
					width: 20px;
					height: 20px;
				}
			}

			.footer-bottom-right {
				display: flex;
				gap: 78px;

				.copyright {
					color: #f4f4f4;
				}

				.locale {
					display: flex;
					gap: 12px;
					color: #f0f0f3;
				}
			}
		}
	}
}

[data-theme="light"] {
	--bg: #ffffff;
	--surface: #ffffff;
	--text: #262524;
	--panel: #f5f5f5;
	--border: #00000020
}

[data-theme="eye"] {
	--bg: #f2f0da;
	--surface: #f2f0da;
	--text: #262524;
	--panel: #fff8dc;
	--border: #00000020
}

.filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	background-color: var(--bg);
	position: sticky;
	top: 98px;
	margin-bottom: 30px;
	z-index: 100;

	.sort {
		position: relative;
		cursor: pointer;

		.sort-options {
			position: absolute;
			top: calc(100% + 9px);
			right: 0;
			z-index: 10;
			width: 134px;

			.options-top {
				margin-left: auto;
				margin-right: 5px;
				width: 0;
				height: 0;
				border-left: 4px solid transparent;
				border-right: 4px solid transparent;
				border-bottom: 7px solid var(--surface);

				&.first-active {
					border-bottom: 7px solid var(--gold);
				}
			}

			.options-bottom {
				background-color: var(--surface);
				border-radius: 4px;
				font-size: 14px;
				line-height: 20px;
				font-family: Arial, Arial;
				overflow: hidden;

				.item {
					padding: 6px 10px;
					border-bottom: 1px solid var(--panel);

					&:last-child {
						border-bottom: none
					}

					&.active {
						background-color: var(--gold);
					}
				}
			}
		}
	}
}

.chips {
	display: flex;
	gap: 20px;
}

.chip {
	padding: 7px 17px;
	border-radius: 10px;
	background: var(--panel);
	color: var(--text);
	font-size: 14px;
}

.chip.active {
	background: var(--gold);
}

.search {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px;
	background: var(--panel);
	overflow: hidden;
	width: 360px;
	height: 34px;
	box-sizing: border-box;
}

.search input {
	border: none;
	background: transparent;
	color: var(--text);
	padding: 8px 12px;
	min-width: 220px;
	outline: none;
	flex: 1;
}

.search .go {
	background: var(--gold);
	padding: 10px 24px;

	img {
		width: 13px;
	}
}

.hero-shot {
	width: 100%;
	height: 500px;
	border-radius: 10px;
	background-size: cover;
	background-position: center
}

.list .item img {
	width: 260px;
	height: 160px;
	border-radius: 10px;
	object-fit: cover
}

.list .item .actions {
	display: flex;
	align-items: center;
}

.list .item .actions .btn {
	white-space: nowrap;
	margin-left: auto;
}

.social-list {
	display: flex;
	gap: 16px;
	align-items: center
}

.social-list img {
	width: 20px;
	height: 20px
}

.projects-list {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	.list {
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;

		.item {
			height: 390px;
			background: var(--panel);
			border-radius: 20px;
			display: flex;
			align-items: center;
			gap: 30px;
			padding: 40px;
			font-family: Roboto, Roboto;

			.item-img {
				width: 430px;
				height: 310px;
				flex-shrink: 0;
			}

			.text {
				margin-bottom: 20px;

				.title {
					font-weight: 500;
					font-size: 28px;
					line-height: 40px;
					margin-bottom: 10px;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 2;
					overflow: hidden;
				}

				.desc {
					font-size: 20px;
					line-height: 38px;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 4;
					overflow: hidden;
				}
			}
		}


	}

	.empty {
		font-weight: 500;
		font-size: 28px;
		color: #8C8C8C;
		line-height: 40px;
		height: calc(100vh - 654px);
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 120px;
	}
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	font-family: Roboto, Roboto;

	.total {
		margin-right: 16px;
		font-size: 14px;
	}

	.pages {
		display: flex;
		gap: 8px;
		margin-right: 28px;

		.active .item {
			background-color: var(--gold);
		}

		.item {
			width: 32px;
			height: 32px;
			background: var(--panel);
			border-radius: 4px;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.omit {
			width: 32px;
			height: 32px;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 3px;

			.point {
				width: 4px;
				height: 4px;
				border-radius: 50%;
				background-color: var(--panel);
			}
		}
	}

	.per-page {
		padding: 4px 12px;
		margin-right: 9px;
		position: relative;

		.per-top {
			display: flex;
			align-items: baseline;
			gap: 6px;

			.page-size {
				font-size: 14px;
				line-height: 22px;
			}

			.per-page-icon {
				transition: transform 0.3s ease;
			}

			.per-page-icon.rotate {
				transform: rotate(180deg);
			}
		}

		.options {
			position: absolute;
			top: calc(100% + 9px);
			left: calc(50% - 35px);
			z-index: 20;

			.options-top {
				margin-left: auto;
				margin-right: 5px;
				width: 0;
				height: 0;
				border-left: 4px solid transparent;
				border-right: 4px solid transparent;
				border-bottom: 7px solid var(--panel);

				&.first-active {
					border-bottom: 7px solid var(--gold);
				}
			}

			.options-bottom {
				background-color: var(--panel);
				border-radius: 4px;
				font-size: 14px;
				line-height: 20px;
				font-family: Arial, Arial;
				overflow: hidden;

				.item {
					padding: 6px 10px;
					border-bottom: 1px solid var(--bg);

					&:last-child {
						border-bottom: none
					}

					&.active {
						background-color: var(--gold);
					}
				}
			}
		}
	}

	.jump {
		font-size: 14px;
		display: flex;
		align-items: center;
		gap: 8px;

		.page-number-input {
			background-color: var(--panel);
			padding: 5px 12px;
			border: none;
			width: 50px;
			height: 32px;
			border: 4px;
			color: var(--text);
			text-align: center;
		}
	}
}

@media (max-width:1200px) {
	.grid.cols-2 {
		grid-template-columns: 1fr
	}

	.list .item {
		grid-template-columns: 1fr;
	}

	.list .item img {
		width: 100%;
		height: 200px
	}
}

@media (max-width:768px) {
	.header-inner {
		padding: 16px 0
	}

	.brand-er {
		display: none
	}

	.nav .pill {
		display: none
	}

	.section-title {
		font-size: 32px
	}

	.hero-shot {
		height: 320px
	}

	.gallery {
		grid-template-columns: repeat(3, 1fr)
	}

	.footer-top {
		grid-template-columns: 1fr 1fr
	}

	.list .item .actions {
		justify-content: flex-start
	}
}

@media (max-width:480px) {
	.container {
		padding: 0 16px
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr)
	}

	.footer-top {
		grid-template-columns: 1fr
	}

	.nav .cta {
		display: none
	}
}