﻿* {
	margin: 0;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
}

:root {
	--deep-black: #000000;
	--graphite: #1a1a1a;
	--electric-blue: #00d4ff;
	--soft-white: #f5f5f7;
	--subtle-purple: #a855f7;
	--gradient-primary: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
	--gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

body {
	/*font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;*/
	font-family: 'Montserrat', sans-serif;
	background: var(--deep-black);
	color: var(--soft-white);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
	font-weight: 600;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1.1;
}

h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.2;
	margin-bottom: 2rem;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	line-height: 1.3;
}

p {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	opacity: 0.9;
}

/* Container */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-cta {
	padding: 0.75rem 2rem;
	background: var(--gradient-primary);
	border: none;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease;
}

	.nav-cta:hover {
		transform: scale(1.05);
	}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.hero-background {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.network-canvas {
	position: absolute;
	width: 100%;
	height: 100%;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	margin-bottom: 1.5rem;
}

.hero-text p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.8;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	border: none;
}

.btn-secondary {
	background: transparent;
	color: var(--soft-white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

	.btn-primary:hover, .btn-secondary:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
	}

.hero-visual {
	position: relative;
	height: 600px;
}

.hero-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
	border-radius: 30px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.floating-card img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	display: block;
	margin: 0 auto 10px;
}

.floating-card {
	position: absolute;
	background: #191919;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 1.5rem;
	animation: float 6s ease-in-out infinite;
}

	.floating-card:nth-child(1) {
		top: 10%;
		left: 10%;
		animation-delay: 0s;
	}

	.floating-card:nth-child(2) {
		top: 50%;
		right: 10%;
		animation-delay: 2s;
	}

	.floating-card:nth-child(3) {
		bottom: 10%;
		left: 30%;
		animation-delay: 4s;
	}

	.floating-card h4 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.floating-card p {
		font-size: 0.875rem;
		opacity: 0.7;
	}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* Sections */
section {
	padding: 8rem 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
}

/* Fragmented World Section */
.fragmented-world {
	background: var(--gradient-dark);
}

.islands-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 4rem;
}

.island {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	transition: all 0.3s ease;
}

	.island:hover {
		transform: translateY(-10px);
		border-color: var(--electric-blue);
		box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
	}

.island-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	background: var(--gradient-primary);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

/* Intelligence Layer */
.intelligence-layer {
	text-align: center;
}

.ai-core {
	width: 300px;
	height: 300px;
	display: block;
	margin: 4rem auto;
	object-fit: contain;
	animation: pulse 3s ease-in-out infinite;
	filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.5));
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 5rem;
}

.pillar {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 3rem;
	transition: all 0.3s ease;
}

	.pillar:hover {
		background: rgba(255, 255, 255, 0.05);
		transform: translateY(-10px);
	}

.pillar-placeholder {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
	border-radius: 15px;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed rgba(255, 255, 255, 0.2);
}

/* Split Layout Sections */
.split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

	.split-section.reverse {
		direction: rtl;
	}

		.split-section.reverse > * {
			direction: ltr;
		}

.feature-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.feature-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
}

	.feature-card:hover {
		background: rgba(255, 255, 255, 0.05);
		transform: translateY(-5px);
	}

	.feature-card h4 {
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

.image-placeholder {
	width: 100%;
	height: 500px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
	border-radius: 30px;
	border: 2px dashed rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	opacity: 0.5;
}

/* Ecosystem Effect */
.ecosystem-effect {
	text-align: center;
}

.ecosystem-diagram {
	max-width: 1000px;
	margin: 5rem auto;
	position: relative;
}

.ecosystem-step {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

	.ecosystem-step:hover {
		background: rgba(255, 255, 255, 0.05);
		transform: scale(1.02);
	}

	.ecosystem-step::after {
		content: '↓';
		position: absolute;
		bottom: -2rem;
		left: 50%;
		transform: translateX(-50%);
		font-size: 2rem;
		color: var(--electric-blue);
	}

	.ecosystem-step:last-child::after {
		display: none;
	}

/* Technology Stack */
.tech-stack {
	display: grid;
	gap: 2rem;
	margin-top: 4rem;
}

.tech-layer {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 3rem;
	transition: all 0.3s ease;
}

	.tech-layer:hover {
		background: rgba(255, 255, 255, 0.05);
		border-color: var(--electric-blue);
	}

/* Market Opportunity */
.market-opportunity {
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 5rem;
}

.stat-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 3rem;
}

.stat-number {
	font-size: 4rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.stat-label {
	font-size: 1.25rem;
	opacity: 0.8;
}

/* Timeline */
.timeline {
	position: relative;
	max-width: 1200px;
	margin: 5rem auto;
}

.timeline-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gradient-primary);
	transform: translateY(-50%);
}

.timeline-items {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.timeline-item {
	text-align: center;
	flex: 1;
	position: relative;
}

.timeline-dot {
	width: 20px;
	height: 20px;
	background: var(--electric-blue);
	border-radius: 50%;
	margin: 0 auto 1rem;
	box-shadow: 0 0 20px var(--electric-blue);
}

/* Final CTA */
.final-cta {
	text-align: center;
	padding: 10rem 0;
	position: relative;
	overflow: hidden;
}

	.final-cta h2 {
		font-size: clamp(3rem, 8vw, 6rem);
		margin-bottom: 3rem;
	}

.final-cta-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-content,
	.split-section,
	.islands-grid,
	.pillars,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		height: 400px;
	}

	.feature-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	section {
		padding: 5rem 0;
	}

	.container {
		padding: 0 1rem;
	}
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

html {
	scroll-behavior: smooth;
}