/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-500: #3b82f6;
	--primary-400: #60a5fa;
	--primary-600: #316cec;
	--neutral-100: #efefef;
	--neutral-50: #fafafa;
	--background-color: #121212;
	--letter-spacing: -0.6px;
}

html {
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: var(--background-color);
	color: var(--neutral-100);
	line-height: 1.5;
	overflow-x: hidden;
}

.container {
	max-width: 1312px;
	margin: 0 auto;
	padding: 0 64px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	backdrop-filter: blur(6px);
	background: rgba(18, 18, 18, 0.02);
	border-bottom: 1px solid rgba(239, 239, 239, 0.06);
}

.header-content {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr auto 1fr;
	height: 60px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	width: max-content;
}

.logo > img {
	display: block;
}

.logo-icon {
	width: 18px;
	height: 24px;
	background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
	border-radius: 4px;
}

.logo-text {
	font-size: 16px;
	font-weight: 600;
	color: var(--neutral-100);
}

.navigation {
	display: flex;
	gap: 2px;
}

.nav-item {
	padding: 8px 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--neutral-100);
	opacity: 0.6;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity 0.2s ease;
	letter-spacing: var(--letter-spacing);
}

.nav-item:hover {
	opacity: 1;
}

.header-actions {
	display: flex;
	gap: 12px;
	margin-left: auto;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	letter-spacing: var(--letter-spacing);
}

.btn > img {
	display: block;
}

.btn-primary {
	background: linear-gradient(to bottom, var(--primary-500), var(--primary-600));
	color: var(--neutral-50);
	border: 1px solid rgba(239, 239, 239, 0.08);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
	background: rgba(239, 239, 239, 0.06);
	color: var(--neutral-50);
}

.btn-secondary:hover {
	background: rgba(239, 239, 239, 0.1);
}

.btn i {
	opacity: 0.6;
	font-size: 14px;
}

/* Hero Section */
.hero {
	position: relative;
	height: 964px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1024px;
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.5) 0%, rgba(18, 18, 18, 1) 90%, #121212 100%) 100% 100%,
		url('/assets/bg/hero.jpg') no-repeat center center / cover;
	z-index: -1;
}

.hero-content {
	text-align: center;
	z-index: 1;
}

.hero-text h1 {
	font-size: 52px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 24px;
	letter-spacing: var(--letter-spacing);
}

.hero-text p {
	font-size: 20px;
	opacity: 0.6;
	margin-bottom: 64px;
	line-height: 1.2;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-400);
	letter-spacing: 4px;
	margin-bottom: 24px;
	opacity: 0.8;
}

.section-header h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: var(--letter-spacing);
}

.text-muted {
	opacity: 0.5;
}

/* Features Section */
.features {
	padding: 128px 0;
}

.features-illustration {
	position: relative;
	height: 272px;
	width: 736px;
	margin: 0 auto;
}

.features-illustration > img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.feature-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.feature-mobile {
		display: initial;
	}
	.feature-desktop {
		display: none;
	}
}

.features-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 96px;
	height: 96px;
	background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.center-icon {
	width: 48px;
	height: 48px;
	background: var(--neutral-100);
	border-radius: 50%;
}

.features-left,
.features-right {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 64px;
}

.features-left {
	left: 0;
}

.features-right {
	right: 0;
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: rgba(239, 239, 239, 0.04);
	border: 1px solid var(--neutral-100);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--neutral-100);
}

.features-connections {
	position: absolute;
	top: 32px;
	left: 64px;
	right: 64px;
	height: 208px;
}

.connection-left,
.connection-right {
	position: absolute;
	width: 256px;
	height: 208px;
	opacity: 0.3;
}

.connection-left {
	left: 0;
}

.connection-right {
	right: 0;
}

.features-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 608px;
	height: 608px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	z-index: 1;
}

/* How It Works Section */
.how-it-works {
	padding: 96px 0;
	position: relative;
	overflow: hidden;
}

.steps {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.step {
	width: 424px;
	background: rgba(239, 239, 239, 0.04);
	backdrop-filter: blur(32px);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.step-illustration {
	height: 300px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.step-illustration img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.step-bg-elements {
	position: absolute;
	inset: 0;
}

.bg-element {
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	opacity: 0.1;
}

.bg-element-1 {
	top: 0;
	left: 0;
	background: radial-gradient(circle, var(--primary-500) 0%, transparent 70%);
}

.bg-element-2 {
	bottom: 0;
	right: 0;
	background: radial-gradient(circle, var(--primary-500) 0%, transparent 70%);
}

.step-blue .bg-element {
	background: radial-gradient(circle, var(--primary-500) 0%, transparent 70%);
}

.step-orange .bg-element {
	background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.step-green .bg-element {
	background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.step-icon {
	width: 160px;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	z-index: 2;
	position: relative;
}

.step-blue .step-icon {
	color: var(--primary-500);
}

.step-orange .step-icon {
	color: #f59e0b;
}

.step-green .step-icon {
	color: #10b981;
}

.step-content {
	padding: 24px;
}

.step-content h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: var(--letter-spacing);
}

.step-content p {
	font-size: 16px;
	opacity: 0.6;
	line-height: 1.2;
}

/* Value Section */
.value {
	padding: 96px 0;
	background: rgba(239, 239, 239, 0.02);
	border-top: 1px solid rgba(239, 239, 239, 0.06);
}

.value-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.value-item {
	display: flex;
	background: rgba(239, 239, 239, 0.02);
	backdrop-filter: blur(1px);
	border-radius: 12px;
	overflow: hidden;
}

.value-item-reverse {
	flex-direction: row-reverse;
}

.value-content {
	flex: 1;
	padding: 48px;
	display: flex;
	flex-direction: column;
}

.value-content-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.value-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	flex: 0;
}

.badge-icon {
	width: 8px;
	height: 8px;
	background: var(--primary-500);
	border-radius: 25%;
	transform: rotate(45deg);
}

.value-badge span {
	font-size: 14px;
	opacity: 0.8;
	letter-spacing: var(--letter-spacing);
}

.value-content h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: var(--letter-spacing);
}

.value-content p {
	font-size: 16px;
	opacity: 0.6;
	line-height: 1.2;
}

.value-illustration {
	flex: 1;
	padding: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-illustration img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.value-bg {
	position: absolute;
	inset: 0;
	background: rgba(239, 239, 239, 0.02);
	border-radius: 10px;
	overflow: hidden;
}

.value-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.value-icons {
	display: flex;
	gap: 20px;
	z-index: 2;
	position: relative;
}

.value-icons i {
	font-size: 64px;
	color: var(--primary-500);
	opacity: 0.8;
}

/* Team Section */
.team {
	padding: 96px 0;
	background: linear-gradient(to bottom, rgba(239, 239, 239, 0.02), rgba(18, 18, 18, 0.02));
	position: relative;
	overflow: hidden;
}

.team-background {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 474px;
	background: radial-gradient(ellipse at 20% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
	z-index: 1;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	z-index: 2;
	position: relative;
}

.team-member {
	display: flex;
	height: 260px;
	background: rgba(239, 239, 239, 0.02);
	backdrop-filter: blur(1px);
	border-radius: 12px;
	padding: 24px;
	overflow: hidden;
}

.member-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.member-badge {
	background: rgba(239, 239, 239, 0.04);
	border: 1px solid rgba(239, 239, 239, 0.04);
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	width: fit-content;
}

.member-info h3 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: var(--letter-spacing);
}

.member-info p {
	font-size: 18px;
	opacity: 0.6;
	line-height: 1.2;
}

.member-image {
	width: 160px;
	height: 100%;
	background: rgba(239, 239, 239, 0.1);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
}

.member-glow {
	position: absolute;
	bottom: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

/* Contact Section */
.contact {
	padding: 96px 0;
	border-top: 1px solid rgba(239, 239, 239, 0.06);
}

.contact-card {
	position: relative;
	border: 1px solid rgba(239, 239, 239, 0.06);
	border-radius: 6px;
	overflow: hidden;
}

.contact-background {
	position: absolute;
	inset: 0;
	background: linear-gradient(-90deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 80%, #121212 100%),
		url('/assets/bg/form.jpg') no-repeat center center / cover;
	z-index: 1;
}

.contact-content {
	position: relative;
	padding: 48px;
	z-index: 2;
}

.contact-title {
	margin-bottom: 48px;
	max-width: 50%;
	min-width: 275px;
}

.contact-content h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 4px;
	letter-spacing: var(--letter-spacing);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 400px;
}

.contact-form input,
.contact-form textarea {
	background: rgba(239, 239, 239, 0.06);
	backdrop-filter: blur(2px);
	border: none;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 500;
	color: var(--neutral-100);
	letter-spacing: var(--letter-spacing);
}

.contact-form input {
	height: 40px;
}

.contact-form textarea {
	height: 150px;
	resize: vertical;
	font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--neutral-100);
	opacity: 0.8;
}

.contact-form button {
	margin-top: 12px;
	align-self: flex-start;
}

/* Footer */
.footer {
	background: rgba(18, 18, 18, 0.01);
	backdrop-filter: blur(1px);
}

.footer-content {
	display: flex;
	align-items: flex-start;
	padding: 64px 0;
}

.footer-brand {
	flex: 1;
	max-width: 800px;
	text-align: left !important;
}

.footer-brand h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: var(--letter-spacing);
}

.footer-links {
	display: flex;
	gap: 64px;
	flex: 1;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-column a {
	color: var(--neutral-100);
	opacity: 0.6;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: var(--letter-spacing);
	padding: 8px 0;
	transition: opacity 0.2s ease;
}

.footer-column a:hover {
	opacity: 1;
}

.back-to-top {
	margin-left: auto;
}

.footer-divider {
	height: 1px;
	background: rgba(239, 239, 239, 0.06);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
}

.footer-copyright {
	font-size: 13px;
	font-weight: 500;
	opacity: 0.6;
	letter-spacing: var(--letter-spacing);
}

.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	font-size: 13px;
	font-weight: 500;
	color: var(--neutral-100);
	text-decoration: underline;
	letter-spacing: var(--letter-spacing);
}

.animate-preload {
	opacity: 0;
	transform: translateY(30px);
}
.animate-in {
	animation: slideInUp 0.6s ease forwards;
}

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

.loaded {
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--neutral-100);
	margin: 3px 0;
	transition: 0.3s;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(18, 18, 18, 0.95);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 20px;
		border-top: 1px solid rgba(239, 239, 239, 0.1);
	}

	.navigation.mobile-open {
		display: flex;
	}

	.mobile-menu-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.container {
		padding: 0 32px;
	}

	.hero {
		height: 800px;
	}

	.hero-text h1 {
		font-size: 42px;
	}

	.section-header h2 {
		font-size: 32px;
	}

	.step {
		width: 100%;
		max-width: 424px;
	}

	.step-content p {
		font-size: 14px;
	}

	.step-illustration {
		height: 200px;
	}

	.features-illustration {
		width: 100%;
	}

	.value-item,
	.value-item-reverse {
		flex-direction: column;
		height: auto;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 24px;
	}

	.header-content {
		grid-template-columns: auto auto;
		height: auto;
		padding: 16px 0;
		gap: 16px;
	}

	.navigation {
		order: 3;
		width: 100%;
		justify-content: center;
	}

	.hero {
		height: 600px;
		padding: 0 16px;
		min-height: 100vh;
		align-items: flex-start;
		padding-top: 150px;
	}

	.hero .container {
		padding: 0;
	}

	.hero-content {
		text-align: left;
	}

	.steps {
		flex-direction: column;
		align-items: center;
	}

	.hero-text h1 {
		font-size: 30px;
	}

	.hero-text p {
		font-size: 18px;
	}

	.section-header h2 {
		font-size: 28px;
	}

	.features-illustration {
		width: 100%;
		/* height: 200px; */
	}

	.features-left,
	.features-right {
		display: none;
	}

	.value-content {
		padding: 32px 24px;
	}

	.value-content h3 {
		font-size: 24px;
	}

	.member-badge {
		margin-bottom: 24px;
	}

	.team-member {
		flex-direction: column;
		height: auto;
		/* text-align: center; */
	}

	.member-image {
		width: 100%;
		height: 200px;
		margin-top: 20px;
	}

	.contact-content {
		padding: 32px 24px;
	}

	.contact-content h2 {
		font-size: 28px;
	}

	.contact-form {
		max-width: 100%;
	}

	.footer-content {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.footer-column {
		align-items: flex-start;
	}
}

.post-page {
	padding-top: 120px;
}

.post-page h1 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: var(--letter-spacing);
	margin-block-end: 64px;
}

.post-page > p {
	color: #60a5fa;
	font-size: 16px;
	opacity: 0.6;
	line-height: 1.2;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-block-end: 24px;
}

.post-page section {
	margin-bottom: 48px;
}

.post-page section h2 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: var(--letter-spacing);
	margin-block-end: 24px;
}

.post-page section p {
	font-size: 16px;
	opacity: 0.6;
	line-height: 1.2;
	margin-block-end: 24px;
}

.post-page section ul {
	list-style-position: inside;
	padding-left: 20px;
}

.post-page section li {
	font-size: 16px;
	opacity: 0.6;
	line-height: 1.2;
	margin-block-end: 12px;
}
