@charset "utf-8";
/* CSS Document 
my css 
*/


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


:root{
  --primary-green: #00F6FF;      /* Neon Cyan */
  --secondary-green: #FF00C8;    /* Neon Magenta */
  --accent-blue: #7A00FF;        /* Neon Violet */
  --warm-yellow: #00FF9C;        /* Neon Mint */

  --deep-forest: #050608;
  --light-mint: #EAF7FF;

  --bg-0: #050608;
  --bg-1: #0B0E14;
  --bg-2: #0F1320;

  --text-0: #EAF7FF;
  --text-1: rgba(234, 247, 255, 0.78);
  --text-2: rgba(234, 247, 255, 0.58);

  --glow-green: rgba(0, 246, 255, 0.28);
  --glow-blue: rgba(255, 0, 200, 0.22);

  --border-0: rgba(0, 246, 255, 0.22);
  --border-1: rgba(255, 0, 200, 0.18);

  --shadow-0: 0 14px 50px rgba(5, 6, 8, 0.55);
  --shadow-1: 0 0 18px rgba(0, 246, 255, 0.35), 0 0 42px rgba(255, 0, 200, 0.18);

  --radius-0: 18px;
  --radius-1: 28px;

  --font-ui: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
	font-family: 'Inter', sans-serif;
	background: linear-gradient(135deg, #050608 0%, #0B0E14 50%, #0F1320 100%);
	color: #EAF7FF;
	overflow-x: hidden;
	position: relative;
}

p a {
	color: #EAF7FF;
}
p a:hover {
	color: var(--primary-green);
	text-decoration: none;
}



/* Organic background patterns */
.bio-bgх {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(0, 246, 255, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255, 0, 200, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 40% 60%, rgba(0, 255, 156, 0.05) 0%, transparent 30%);
	animation: bio-pulse 8s ease-in-out infinite;
	z-index: -3;
}


@keyframes bio-pulse {

	0%,
	100% {
		opacity: 0.8;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

/* Animated organic shapes */
.organic-shapes {
	position: fixed;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -2;
}

.leaf {
	position: absolute;
	opacity: 0.1;
	animation: float-organic 4s ease-in-out infinite;
}

.leaf-1 {
	width: 80px;
	height: 120px;
	background: linear-gradient(45deg, var(--primary-green), var(--accent-blue));
	clip-path: ellipse(40% 60% at 50% 40%);
	top: 20%;
	left: 10%;
	animation-delay: 5s;
}

.leaf-2 {
	width: 60px;
	height: 90px;
	background: linear-gradient(45deg, var(--accent-blue), var(--warm-yellow));
	clip-path: ellipse(35% 65% at 50% 35%);
	top: 60%;
	right: 15%;
	animation-delay: -5s;
}

.leaf-3 {
	width: 100px;
	height: 150px;
	background: linear-gradient(45deg, var(--warm-yellow), var(--primary-green));
	clip-path: ellipse(45% 70% at 50% 30%);
	bottom: 20%;
	left: 20%;
	animation-delay: -10s;
}

@keyframes float-organic {

	0%,
	100% {
		transform: translateY(0) rotate(0deg) scale(1);
		opacity: 0.1;
	}

	25% {
		transform: translateY(-20px) rotate(90deg) scale(1.1);
		opacity: 0.2;
	}

	50% {
		transform: translateY(10px) rotate(180deg) scale(0.9);
		opacity: 0.15;
	}

	75% {
		transform: translateY(-10px) rotate(270deg) scale(1.05);
		opacity: 0.18;
	}
}

/* Particle system */
.particle-system {
	position: fixed;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.bio-particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: var(--primary-green);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--primary-green);
/*	animation: bio-float 15s linear infinite; */
	animation: none !important;
}

@keyframes bio-float {
	0% {
		transform: translateY(100vh) translateX(0) scale(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
		transform: translateY(90vh) translateX(10px) scale(1);
	}

	90% {
		opacity: 1;
		transform: translateY(10vh) translateX(-10px) scale(1);
	}

	100% {
		transform: translateY(-10vh) translateX(0) scale(0);
		opacity: 0;
	}
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 40px;
	background: rgba(5, 6, 8, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 246, 255, 0.2);
	z-index: 1000;
	transition: all 0.4s ease;
}

nav.scrolled {
	padding: 15px 40px;
	background: rgba(5, 6, 8, 0.95);
	box-shadow: 0 8px 32px rgba(0, 246, 255, 0.1);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 12px;
}

.logo-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	animation: logo-glow 3s ease-in-out infinite;
}

.logo-icon::before {
	content: '🌿';
	font-size: 24px;
	animation: logo-rotate 6s linear infinite;
}

@keyframes logo-glow {

	0%,
	100% {
		box-shadow: 0 0 20px var(--glow-green);
	}

	50% {
		box-shadow: 0 0 30px var(--glow-blue);
	}
}

@keyframes logo-rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.logo-text {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 8px;
	background: rgba(234, 247, 255, 0.05);
	padding: 8px;
	border-radius: 50px;
	border: 1px solid rgba(0, 246, 255, 0.2);
	backdrop-filter: blur(20px);
}

.nav-menu a {
	text-decoration: none;
	color: rgba(234, 247, 255, 0.7);
	font-weight: 500;
	position: relative;
	padding: 12px 24px;
	border-radius: 25px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.95rem;
	#EAF7FF-space: nowrap;
	overflow: hidden;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	border-radius: 25px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(234, 247, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	z-index: -1;
}

.nav-menu a:hover {
	color: var(--deep-forest);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 246, 255, 0.3);
}

.nav-menu a:hover::before {
	width: 100%;
}

.nav-menu a:hover::after {
	width: 40px;
	height: 40px;
}

.nav-menu a.active {
	color: var(--deep-forest);
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	box-shadow: 0 4px 20px rgba(0, 246, 255, 0.4);
}

.nav-menu a.active::before {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--primary-green);
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 100px 40px 40px;
}

.hero-content {
	max-width: 1400px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-text h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(3rem, 6vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #EAF7FF, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: text-glow 4s ease-in-out infinite;
}

@keyframes text-glow {

	0%,
	100% {
		filter: drop-shadow(0 0 20px rgba(0, 246, 255, 0.3));
	}

	50% {
		filter: drop-shadow(0 0 30px rgba(255, 0, 200, 0.4));
	}
}

.hero-text p {
	font-size: 1.3rem;
	line-height: 1.6;
	color: rgba(234, 247, 255, 0.8);
	margin-bottom: 40px;
	max-width: 500px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	color: var(--deep-forest);
	box-shadow: 0 8px 32px rgba(0, 246, 255, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 246, 255, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-green);
	border: 2px solid var(--primary-green);
	box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(0, 246, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0, 246, 255, 0.3);
}

.hero-visual {
	position: relative;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bio-sphere {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 30%, var(--glow-green) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, var(--glow-blue) 0%, transparent 50%);
	position: relative;
	animation: sphere-pulse 6s ease-in-out infinite;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rotating-text {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.text-circle {
	position: absolute;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-green);
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.text-circle.active {
	opacity: 1;
}

.text-circle:nth-child(1) {
	animation: rotate-text 9s linear infinite;
}

.text-circle:nth-child(2) {
	animation: rotate-text 9s linear infinite;
	animation-delay: -3s;
}

.text-circle:nth-child(3) {
	animation: rotate-text 9s linear infinite;
	animation-delay: -6s;
}

@keyframes rotate-text {

	0%,
	30% {
		opacity: 1;
		transform: rotate(0deg) scale(1);
	}

	33%,
	66% {
		opacity: 0;
		transform: rotate(120deg) scale(0.8);
	}

	67%,
	100% {
		opacity: 0;
		transform: rotate(240deg) scale(0.8);
	}
}

@keyframes sphere-pulse {

	0%,
	100% {
		transform: scale(1) rotate(0deg);
		box-shadow: 0 0 60px var(--glow-green);
	}

	50% {
		transform: scale(1.1) rotate(180deg);
		box-shadow: 0 0 80px var(--glow-blue);
	}
}

.bio-sphere::before,
.bio-sphere::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 2px solid var(--primary-green);
	opacity: 0.3;
}

.bio-sphere::before {
	width: 120%;
	height: 120%;
	top: -10%;
	left: -10%;
	animation: orbit 15s linear infinite;
}

.bio-sphere::after {
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	border-color: var(--accent-blue);
	animation: orbit 12s linear infinite reverse;
}

@keyframes orbit {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Features Section - Interactive Showcase */
.features {
	padding: 120px 40px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.section-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 80px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features .section-title {
	margin-bottom: 60px;
}

.features-showcase {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 60px;
	align-items: stretch;
}

.feature-navigation {
	background: rgba(234, 247, 255, 0.03);
	border: 1px solid rgba(0, 246, 255, 0.2);
	border-radius: 24px;
	padding: 32px;
	backdrop-filter: blur(20px);
	position: sticky;
	top: 120px;
	height: fit-content;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	margin-bottom: 12px;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.nav-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 246, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.nav-item:hover::before {
	left: 100%;
}

.nav-item:hover {
	background: rgba(0, 246, 255, 0.05);
	border-color: rgba(0, 246, 255, 0.3);
	transform: translateX(8px);
}

.nav-item.active {
	background: linear-gradient(135deg, rgba(0, 246, 255, 0.2), rgba(255, 0, 200, 0.1));
	border-color: var(--primary-green);
	box-shadow: 0 8px 32px rgba(0, 246, 255, 0.2);
}

.nav-item-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {

	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
	}

	50% {
		box-shadow: 0 0 30px rgba(255, 0, 200, 0.5);
	}
}

.nav-item-content h4 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 4px;
}

.nav-item-content p {
	font-size: 0.9rem;
	color: rgba(234, 247, 255, 0.6);
	line-height: 1.4;
}

.feature-display {
	background: rgba(234, 247, 255, 0.03);
	border: 1px solid rgba(0, 246, 255, 0.2);
	border-radius: 24px;
	padding: 48px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

.feature-panel {
	display: none;
	animation: fadeInSlide 0.6s ease-out;
}

.feature-panel.active {
	display: block;
}

@keyframes fadeInSlide {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature-panel h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 24px;
}

.feature-panel p {
	font-size: 1.2rem;
	line-height: 1.7;
	color: rgba(234, 247, 255, 0.8);
	margin-bottom: 32px;
}

.feature-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 32px;
}

.benefit-item {
	background: rgba(234, 247, 255, 0.05);
	border: 1px solid rgba(0, 246, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	border-color: var(--primary-green);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 246, 255, 0.15);
}

.benefit-item h5 {
	color: var(--primary-green);
	font-weight: 600;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.benefit-item p {
	font-size: 0.95rem;
	color: rgba(234, 247, 255, 0.7);
	margin: 0;
	line-height: 1.5;
}

.feature-visual {
	position: absolute;
	top: 48px;
	right: 48px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 246, 255, 0.2) 0%, transparent 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	animation: feature-float 6s ease-in-out infinite;
}

@keyframes feature-float {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		box-shadow: 0 0 40px rgba(0, 246, 255, 0.3);
	}

	50% {
		transform: translateY(-10px) rotate(180deg);
		box-shadow: 0 10px 50px rgba(255, 0, 200, 0.4);
	}
}

.feature-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	color: var(--deep-forest);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.feature-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 246, 255, 0.4);
}

/* Stats Section */
.stats {
	padding: 80px 40px;
	background: rgba(0, 246, 255, 0.05);
	border-top: 1px solid rgba(0, 246, 255, 0.2);
	border-bottom: 1px solid rgba(0, 246, 255, 0.2);
}

.stats-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 60px;
	text-align: center;
}

.stat-item h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 12px;
	animation: counter 2s ease-out;
}

.stat-item p {
	font-size: 1.2rem;
	color: rgba(234, 247, 255, 0.8);
	font-weight: 500;
}

/* About Section */
.about {
	padding: 120px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 120px;
}

.about-content:last-child {
	margin-bottom: 0;
}

.about-text h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 32px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-text p {
	font-size: 1.2rem;
	line-height: 1.7;
	color: rgba(234, 247, 255, 0.8);
	margin-bottom: 24px;
}

.about-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eco-visualization {
	width: 100%;
	height: 100%;
	position: relative;
	background: radial-gradient(circle, rgba(0, 246, 255, 0.1) 0%, transparent 70%);
	border-radius: 20px;
	overflow: hidden;
}

.growth-rings {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ring {
	position: absolute;
	border: 2px solid var(--primary-green);
	border-radius: 50%;
	opacity: 0.3;
	animation: expand-ring 4s ease-in-out infinite;
}

.ring:nth-child(1) {
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	animation-delay: 0s;
}

.ring:nth-child(2) {
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	animation-delay: -1s;
	border-color: var(--accent-blue);
}

.ring:nth-child(3) {
	width: 300px;
	height: 300px;
	margin: -150px 0 0 -150px;
	animation-delay: -2s;
}

@keyframes expand-ring {

	0%,
	100% {
		transform: scale(0.8);
		opacity: 0.3;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.6;
	}
}

/* Second about section animation */
.dna-helix {
	width: 100%;
	height: 100%;
	position: relative;
	background: radial-gradient(circle, rgba(255, 0, 200, 0.1) 0%, transparent 70%);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.helix-strand {
	position: absolute;
	width: 4px;
	height: 400px;
	background: linear-gradient(to bottom, var(--primary-green), var(--accent-blue));
	border-radius: 2px;
	animation: helix-rotate 8s linear infinite;
}

.helix-strand:nth-child(1) {
	transform: rotateY(0deg) translateZ(50px);
	animation-delay: 0s;
}

.helix-strand:nth-child(2) {
	transform: rotateY(60deg) translateZ(50px);
	animation-delay: -1.3s;
}

.helix-strand:nth-child(3) {
	transform: rotateY(120deg) translateZ(50px);
	animation-delay: -2.6s;
}

.helix-strand:nth-child(4) {
	transform: rotateY(180deg) translateZ(50px);
	animation-delay: -4s;
}

.helix-strand:nth-child(5) {
	transform: rotateY(240deg) translateZ(50px);
	animation-delay: -5.3s;
}

.helix-strand:nth-child(6) {
	transform: rotateY(300deg) translateZ(50px);
	animation-delay: -6.6s;
}

.helix-container {
	position: relative;
	width: 200px;
	height: 400px;
	transform-style: preserve-3d;
	animation: helix-spin 12s linear infinite;
}

@keyframes helix-rotate {
	0% {
		transform: rotateY(0deg) translateZ(50px) rotateX(0deg);
		opacity: 0.3;
	}

	50% {
		opacity: 0.8;
	}

	100% {
		transform: rotateY(360deg) translateZ(50px) rotateX(360deg);
		opacity: 0.3;
	}
}

@keyframes helix-spin {
	0% {
		transform: rotateY(0deg) rotateX(10deg);
	}

	100% {
		transform: rotateY(360deg) rotateX(10deg);
	}
}

/* Network nodes animation */
.network-visualization {
	width: 100%;
	height: 100%;
	position: relative;
	background: radial-gradient(circle, rgba(0, 255, 156, 0.1) 0%, transparent 70%);
	border-radius: 20px;
	overflow: hidden;
}

.network-node {
	position: absolute;
	width: 12px;
	height: 12px;
	background: var(--primary-green);
	border-radius: 50%;
	box-shadow: 0 0 20px var(--primary-green);
	animation: node-pulse 3s ease-in-out infinite;
}

.network-node:nth-child(1) {
	top: 20%;
	left: 20%;
	animation-delay: 0s;
}

.network-node:nth-child(2) {
	top: 30%;
	right: 25%;
	background: var(--accent-blue);
	box-shadow: 0 0 20px var(--accent-blue);
	animation-delay: -0.5s;
}

.network-node:nth-child(3) {
	bottom: 25%;
	left: 30%;
	background: var(--warm-yellow);
	box-shadow: 0 0 20px var(--warm-yellow);
	animation-delay: -1s;
}

.network-node:nth-child(4) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	animation-delay: -1.5s;
}

.network-node:nth-child(5) {
	bottom: 20%;
	right: 20%;
	background: var(--accent-blue);
	box-shadow: 0 0 20px var(--accent-blue);
	animation-delay: -2s;
}

.network-connection {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-green), transparent, var(--accent-blue));
	opacity: 0.4;
	animation: connection-flow 4s ease-in-out infinite;
}

.connection-1 {
	top: 25%;
	left: 25%;
	width: 30%;
	transform: rotate(25deg);
	animation-delay: 0s;
}

.connection-2 {
	top: 45%;
	left: 35%;
	width: 25%;
	transform: rotate(-30deg);
	animation-delay: -1s;
}

.connection-3 {
	bottom: 30%;
	left: 40%;
	width: 35%;
	transform: rotate(15deg);
	animation-delay: -2s;
}

@keyframes node-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

@keyframes connection-flow {

	0%,
	100% {
		opacity: 0.2;
		transform: scaleX(1);
	}

	50% {
		opacity: 0.6;
		transform: scaleX(1.2);
	}
}

/* Contact Section */
.contact {
	padding: 120px 40px;
	background: rgba(0, 246, 255, 0.03);
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.contact-form {
	background: rgba(234, 247, 255, 0.05);
	border: 1px solid rgba(0, 246, 255, 0.2);
	border-radius: 24px;
	padding: 48px;
	backdrop-filter: blur(20px);
}

.form-group {
	margin-bottom: 32px;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 12px;
	font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: rgba(234, 247, 255, 0.08);
	border: 2px solid rgba(0, 246, 255, 0.2);
	border-radius: 12px;
	color: #EAF7FF;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-green);
	background: rgba(234, 247, 255, 0.12);
	box-shadow: 0 0 20px rgba(0, 246, 255, 0.2);
}

.form-group textarea {
	min-height: 140px;
	resize: vertical;
}

.submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	color: var(--deep-forest);
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 246, 255, 0.3);
}

.contact-info h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 32px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 32px;
	padding: 20px;
	background: rgba(234, 247, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(0, 246, 255, 0.1);
	transition: all 0.3s ease;
}

.contact-item:hover {
	border-color: var(--primary-green);
	transform: translateX(5px);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}

.contact-details h4 {
	color: var(--primary-green);
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-details p {
	color: rgba(234, 247, 255, 0.7);
}

/* Footer */
footer {
	background: var(--deep-forest);
	border-top: 1px solid rgba(0, 246, 255, 0.2);
	padding: 60px 40px 30px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
}

.footer-brand p {
	color: rgba(234, 247, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 24px;
}

.social-links {
	display: flex;
	gap: 16px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(0, 246, 255, 0.1);
	border: 1px solid rgba(0, 246, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-green);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary-green);
	color: var(--deep-forest);
	transform: translateY(-2px);
}

.footer-section h4 {
	font-weight: 600;
	color: var(--primary-green);
	margin-bottom: 20px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: rgba(234, 247, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-section ul li a:hover {
	color: var(--primary-green);
	padding-left: 8px;
}

.footer-bottom {
	border-top: 1px solid rgba(0, 246, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: rgba(234, 247, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom a {
	color: var(--primary-green);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--accent-blue);
	text-shadow: 0 0 10px currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 85px;
		left: -100%;
		width: 100%;
		gap: 26px;  /* ← Increased from the default */
		height: calc(100vh - 85px);
		background: rgba(5, 6, 8, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: start;
		padding-top: 60px;
		transition: left 0.3s ease;
		backdrop-filter: blur(20px);
	}

	.nav-menu.active {
		left: 0;
	}

	.menu-toggle {
		display: flex;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 60px;
	}

	.hero-visual {
		order: -1;
		height: 400px;
	}

	.bio-sphere {
		width: 300px;
		height: 300px;
	}

	.hero-buttons {
		justify-content: center;
	}

	.features-showcase {
		grid-template-columns: 1fr;
	}

	.feature-navigation {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 40px;
	}

	.nav-item {
		padding: 16px;
	}

	.nav-item-content h4 {
		font-size: 1rem;
	}

	.nav-item-content p {
		font-size: 0.8rem;
	}

	.feature-display {
		min-height: auto;
	}

	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.about-content,
	.contact-container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.about-visual {
		order: -1;
	}

	.about-content:nth-child(3) .about-visual {
		order: 1;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	nav {
		padding: 15px 20px;
	}

	.hero {
		padding: 100px 20px 40px;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.features,

	.about,
	.contact {
		padding: 80px 20px;
	}

	.stats {
		padding: 60px 20px;
	}

	.stats-container {
		grid-template-columns: 1fr;
	}

	footer {
		padding: 40px 20px 20px;
	}
}

/* ========================================================================== */
/*  VOID.BG — ULTRA MODERN TECHNO NEON THEME (OVERRIDES)                       */
/*  Drop-in layer: keep your existing CSS above, paste this at the END.        */
/* ========================================================================== */

html{
  color-scheme: dark;
  scroll-behavior: smooth;
}

::selection{
  background: rgba(0, 246, 255, 0.28);
  color: #050608;
}

/* Base */
body{
  font-family: var(--font-ui);
  background:
    radial-gradient(1100px 600px at 50% -5%, rgba(122, 0, 255, 0.26) 0%, transparent 60%),
    radial-gradient(900px 540px at 15% 30%, rgba(0, 246, 255, 0.18) 0%, transparent 60%),
    radial-gradient(900px 540px at 85% 70%, rgba(255, 0, 200, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-0) 65%);
  color: var(--text-0);
}

/* Subtle tech grid + scanlines overlay (no JS) */
body::before,
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before{
  background:
    linear-gradient(rgba(0, 246, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 246, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  opacity: 0.35;
  transform: translateZ(0);
  }

body::after{
  background: repeating-linear-gradient(
    180deg,
    rgba(234, 247, 255, 0.00) 0px,
    rgba(234, 247, 255, 0.00) 2px,
    rgba(5, 6, 8, 0.28) 3px
  );
  opacity: 0.20;
}

/* Links */
a{
  color: var(--primary-green);
  text-decoration: none;
}
a:hover{
  color: var(--secondary-green);
  text-shadow: 0 0 10px rgba(255, 0, 200, 0.35);
}

/* Navigation */
nav{
  background: rgba(5, 6, 8, 0.78) !important;
  border-bottom: 1px solid var(--border-0) !important;
  box-shadow: 0 10px 40px rgba(5, 6, 8, 0.45);
}
nav.scrolled{
  background: rgba(5, 6, 8, 0.92) !important;
}
.logo{
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Headings — neon glow but readable */
h1, h2, h3{
  color: var(--text-0);
  text-shadow:
    0 0 10px rgba(0, 246, 255, 0.25),
    0 0 26px rgba(122, 0, 255, 0.18);
}
h1 .highlight, .highlight{
  color: var(--primary-green) !important;
  text-shadow:
    0 0 14px rgba(0, 246, 255, 0.55),
    0 0 34px rgba(255, 0, 200, 0.18);
}

/* Panels / cards (glass + tech edge) */
.feature-display,
.feature-navigation,
.about-card,
.contact-form,
.feature-card,
.service-card,
.card{
  background: linear-gradient(180deg, rgba(15, 19, 32, 0.85), rgba(5, 6, 8, 0.82)) !important;
  border: 1px solid var(--border-0) !important;
  border-radius: var(--radius-0) !important;
  box-shadow: var(--shadow-0);
}

/* Add a “neon edge” on hover */
.feature-card:hover,
.service-card:hover,
.about-card:hover{
  border-color: rgba(255, 0, 200, 0.26) !important;
  box-shadow: var(--shadow-0), var(--shadow-1);
  transform: translateY(-2px);
}

/* Buttons */
.btn,
button,
input[type="submit"],
input[type="button"],
.btn-primary,
.btn-secondary{
  border-radius: 14px !important;
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
  color: #050608 !important;
  border: 1px solid rgba(234, 247, 255, 0.12) !important;
  box-shadow: 0 0 14px rgba(0, 246, 255, 0.45), 0 0 34px rgba(255, 0, 200, 0.18);
}
.btn-primary:hover{
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 18px rgba(0, 246, 255, 0.62), 0 0 46px rgba(255, 0, 200, 0.22);
}

.btn-secondary{
  background: rgba(15, 19, 32, 0.65) !important;
  color: var(--text-0) !important;
  border: 1px solid rgba(0, 246, 255, 0.22) !important;
}
.btn-secondary:hover{
  border-color: rgba(255, 0, 200, 0.24) !important;
  box-shadow: 0 0 18px rgba(255, 0, 200, 0.18);
}

/* Inputs */
input, textarea, select{
  background: rgba(5, 6, 8, 0.55) !important;
  color: var(--text-0) !important;
  border: 1px solid rgba(0, 246, 255, 0.20) !important;
  border-radius: 14px !important;
  outline: none;
}

input:focus, textarea:focus, select:focus{
  border-color: rgba(255, 0, 200, 0.35) !important;
  box-shadow: 0 0 0 4px rgba(255, 0, 200, 0.12), 0 0 18px rgba(0, 246, 255, 0.25) !important;
}

/* Tech separators */
hr, .divider{
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 246, 255, 0.35), transparent);
  opacity: 0.9;
}

/* Product / media images (generic) */
img{
  max-width: 100%;
  height: auto;
}
.product img,
.product-image,
.product-img,
.media-frame img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 246, 255, 0.18);
  box-shadow: 0 18px 60px rgba(5, 6, 8, 0.55);
}
.product img:hover,
.product-image:hover,
.product-img:hover,
.media-frame img:hover{
  box-shadow: 0 0 18px rgba(0, 246, 255, 0.35), 0 0 46px rgba(255, 0, 200, 0.16), 0 18px 60px rgba(5, 6, 8, 0.55);
  transform: translateY(-2px);
}

/* Replace organic decorations with subtle tech particles (or hide them) */
.leaf, .leaf-1, .leaf-2, .leaf-3,
.dna-helix, .growth-rings,
.organic-shapes{
  display: none !important;
}

/* Re-skin the existing bio background into a techno glow field */
.bio-bg{
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 246, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 82% 68%, rgba(255, 0, 200, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 42% 62%, rgba(122, 0, 255, 0.10) 0%, transparent 38%) !important;
  opacity: 1 !important;
}

/* If you use “bio” particles/cards, make them feel like UI widgets */
.bio-particle,
.bio-sphere{
  border-radius: 12px !important;
  border: 1px solid rgba(0, 246, 255, 0.18) !important;
  background: rgba(15, 19, 32, 0.40) !important;
  box-shadow: 0 0 18px rgba(0, 246, 255, 0.16);
}

/* Footer */
footer{
  background: rgba(5, 6, 8, 0.80) !important;
  border-top: 1px solid var(--border-0) !important;
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: rgba(5, 6, 8, 0.9); }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(0, 246, 255, 0.55), rgba(255, 0, 200, 0.38));
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(0, 246, 255, 0.75), rgba(255, 0, 200, 0.55));
}

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Responsive tuning for neon readability */
@media (max-width: 768px){
  nav{ padding: 14px 18px !important; }
  body::before{ opacity: 0.22; }
  body::after{ opacity: 0.16; }
}


/* =========================================================
   VOID.BG – Laser Sweep Reveal (scoped)
   Uses ONLY palette variables from voidbg.neon.css (:root below)
   Violet feel is achieved via overlay + hue-rotate (no new colors)
   ========================================================= */

/* (palette inherited from main :root) */
.hero--laser-split .hero-visual { position: relative; }

.hero--laser-split .hero-photo {
  position: relative;
  width: min(720px, 48vw);
  height: min(720px, 48vw);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(234, 247, 255, 0.06),
    0 0 22px var(--glow-blue),
    0 0 34px var(--glow-green);
}

.hero--laser-split .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: brightness(1.22) contrast(1.05);
  transform: scale(1.02);
}

.hero--laser-split .hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(234, 247, 255, 0.08) 0%, rgba(234, 247, 255, 0.00) 45%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.10) 0%, rgba(5, 6, 8, 0.55) 100%);
  pointer-events: none;
}

.hero--laser-split .hero-laser {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(10%);
  pointer-events: none;
}

.hero--laser-split .laser-lines {
  width: min(560px, 40vw);
  text-align: center;
}

.hero--laser-split .laser-line {
  --dur: 12.0s;
  --delay: 0s;

  position: relative;
  display: block;
  margin: 6px 0;

  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.06em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 247, 255, 0.10);

  background: linear-gradient(90deg,
    rgba(234, 247, 255, 0.92) 0%,
    rgba(234, 247, 255, 0.92) 28%,
    var(--accent-blue) 60%,
    var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;

  text-shadow:
    0 0 10px rgba(234, 247, 255, 0.12),
    0 0 22px var(--glow-blue);

  -webkit-mask-image: linear-gradient(#050608 0 0);
  mask-image: linear-gradient(#050608 0 0);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;

  mask-size: 0% 100%;

  animation: voidLaserWriteSplit var(--dur) linear infinite;
  animation-delay: var(--delay);
}

.hero--laser-split .laser-line--brand {
  font-weight: 900;
  font-size: clamp(28px, 2.8vw, 44px);
  margin-bottom: 10px;
  text-shadow:
    0 0 12px rgba(234, 247, 255, 0.18),
    0 0 26px var(--glow-blue),
    0 0 22px var(--glow-green);
}

.hero--laser-split .laser-line:not(.laser-line--brand) {
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0.95;
}

.hero--laser-split .laser-line::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  color: transparent;

  background: linear-gradient(90deg,
    rgba(234, 247, 255, 0.00) 0%,
    rgba(234, 247, 255, 0.00) 55%,
    var(--accent-blue) 78%,
    var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;

  opacity: 0.75;

  -webkit-mask-image: linear-gradient(#050608 0 0);
  mask-image: linear-gradient(#050608 0 0);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  animation: voidLaserWriteSplit var(--dur) linear infinite;
  animation-delay: var(--delay);
  pointer-events: none;
}

.hero--laser-split .laser-line::after {
  content: "";
  position: absolute;
  top: -8%;
  left: 0;
  width: 2px;
  height: 116%;

  opacity: 0;
  background: linear-gradient(
    to bottom,
    rgba(234, 247, 255, 0) 0%,
    rgba(234, 247, 255, 0.92) 45%,
    rgba(234, 247, 255, 0) 100%
  );

  box-shadow:
    0 0 10px var(--glow-blue),
    0 0 22px var(--glow-green);

  transform: translateX(-10%);
  animation: voidLaserBeamSplit var(--dur) linear infinite;
  animation-delay: var(--delay);
}

.hero--laser-split .laser-spark {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateY(-50%) scale(0.2);
  opacity: 0;
  background: rgba(234, 247, 255, 0.9);
  box-shadow:
    0 0 10px var(--glow-blue),
    0 0 18px var(--glow-green);
  animation: voidLaserSparkSplit var(--dur) linear infinite;
  animation-delay: var(--delay);
}

.hero--laser-split .laser-spark::before,
.hero--laser-split .laser-spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 2px;
  background: rgba(234, 247, 255, 0.85);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
  opacity: 0.9;
}
.hero--laser-split .laser-spark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes voidLaserWriteSplit {
  0%   { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
  10%  { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
  52%  { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
  70%  { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
  78%  { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
  100% { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
}

@keyframes voidLaserBeamSplit {
  0%   { opacity: 0; transform: translateX(-10%); }
  12%  { opacity: 0; transform: translateX(-10%); }
  18%  { opacity: 1; }
  52%  { opacity: 1; transform: translateX(110%); }
  60%  { opacity: 0.70; }
  70%  { opacity: 0.15; transform: translateX(110%); }
  78%  { opacity: 0; transform: translateX(-10%); }
  100% { opacity: 0; transform: translateX(-10%); }
}

@keyframes voidLaserSparkSplit {
  0%, 49% { opacity: 0; transform: translateY(-50%) scale(0.2); }
  52%     { opacity: 0.95; transform: translateY(-50%) scale(1.0); }
  55%     { opacity: 0.35; transform: translateY(-50%) scale(0.6); }
  70%     { opacity: 0.0; transform: translateY(-50%) scale(0.2); }
  100%    { opacity: 0; transform: translateY(-50%) scale(0.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero--laser-split .laser-line,
  .hero--laser-split .laser-line::before {
    animation: none !important;
    -webkit-mask-size: 100% 100% !important;
    mask-size: 100% 100% !important;
  }
  .hero--laser-split .laser-line::after,
  .hero--laser-split .laser-spark {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .hero--laser-split .hero-content { flex-direction: column; }
  .hero--laser-split .hero-photo {
    width: min(840px, 92vw);
    height: min(840px, 92vw);
    margin-top: 26px;
  }
  .hero--laser-split .laser-lines { width: min(620px, 84vw); }
}



/* ===========================================================
   VOID.BG — Laser write overlay (beam-only)
   - Starts from the middle of the photo and writes downward
   - Only the laser beam remains (no trail, no sparks)
   - Text is revealed directly under the beam (no lag)
   =========================================================== */

.hero--laser-split .hero-photo{
  position: relative;
}

.hero--laser-split .v-laser-write{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: clamp(10px, 1.1vw, 14px);
  padding: clamp(14px, 1.8vw, 20px);

  pointer-events: none;
  z-index: 3;

  --write-dur: 2.2s;
  --phase: 2.7s;
  /* --erase-dur is set by the chosen erase variant */

}

.v-laser-write.is-erasing{
  /* Variant files define the erase animation. */
}

.hero--laser-split .v-laser-line{
  --dur: 10.8s; /* 4 lines -> 2.7s phase shift */
  position: relative;
  width: min(92%, 620px);
}

.hero--laser-split .v-laser-text{
  display: block;
  text-align: center;
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: transparent;
  background: linear-gradient(
    135deg,
    rgba(234, 247, 255, 1) 0%,
    var(--primary-green) 50%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;

  /* Subtle glassy lift without adding new hues */
  text-shadow:
    0 0 10px rgba(0, 246, 255, 0.18),
    0 0 16px rgba(122, 0, 255, 0.14);

  opacity: 0.98;

  /* Reveal mask (driven by the same timing as the beam) */
  -webkit-mask-image: linear-gradient(#050608 0 0);
  mask-image: linear-gradient(#050608 0 0);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  /* Writing is JS-driven (per-line) */
  will-change: -webkit-mask-size, mask-size;
}

.hero--laser-split .v-laser-line.is-written .v-laser-text{
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero--laser-split .v-laser-line.is-writing .v-laser-text{
  animation: voidBeamWriteOnce var(--write-dur) linear forwards;
}

@keyframes voidBeamWriteOnce{
  from{ -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
  to  { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }
}

/* Beam only */
.hero--laser-split .v-laser-line::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 36px;
  opacity: 0;

  background: linear-gradient(
    to bottom,
    rgba(234, 247, 255, 0) 0%,
    rgba(234, 247, 255, 0.98) 45%,
    rgba(234, 247, 255, 0) 100%
  );

  filter: blur(0.15px);
  box-shadow:
    0 0 10px rgba(234, 247, 255, 0.55),
    0 0 22px rgba(0, 246, 255, 0.55),
    0 0 28px rgba(122, 0, 255, 0.32);

  will-change: left, opacity;
  border-radius: 18px;
}

.hero--laser-split .v-laser-line.is-writing::after{
  opacity: 1;
  animation: voidBeamSweepOnce var(--write-dur) linear forwards;
}

@keyframes voidBeamSweepOnce{
  0%   { opacity: 1; left: 0%; }
  100% { opacity: 0; left: 100%; }
}

/* Sizes per line (starts at middle of photo and goes down) */
.hero--laser-split .v-laser-line:nth-child(1) .v-laser-text{
  font-size: clamp(26px, 4.0vw, 58px);
  letter-spacing: 0.18em;
}
.hero--laser-split .v-laser-line:nth-child(2) .v-laser-text{
  font-size: clamp(14px, 1.8vw, 22px);
  letter-spacing: 0.22em;
}
.hero--laser-split .v-laser-line:nth-child(3) .v-laser-text,
.hero--laser-split .v-laser-line:nth-child(4) .v-laser-text{
  font-size: clamp(12px, 1.55vw, 18px);
  letter-spacing: 0.20em;
  opacity: 0.92;
}

/* Text reveal is synchronized with beam movement (no lag) */
@keyframes voidBeamWrite{
  0%   { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
  18%  { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }   /* beam appears -> start writing */
  56%  { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }/* written */
  76%  { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; }/* hold */
  86%  { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }    /* reset */
  100% { -webkit-mask-size: 0% 100%; mask-size: 0% 100%; }
}

@keyframes voidBeamSweep{
  0%   { opacity: 0; left: 0%; }
  18%  { opacity: 1; left: 0%; }
  56%  { opacity: 1; left: 100%; }
  60%  { opacity: 0; left: 100%; }  /* vanish immediately after finishing */
  86%  { opacity: 0; left: 0%; }
  100% { opacity: 0; left: 0%; }
}

@media (max-width: 768px){
  .hero--laser-split .v-laser-write{
    top: 48%;
    gap: 10px;
    padding: 14px;
  }
  .hero--laser-split .v-laser-line{
    width: min(94%, 520px);
  }
}

/* Reduced motion: show the text without the sweeping beam */
@media (prefers-reduced-motion: reduce){
  .hero--laser-split .v-laser-text{
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    animation: none;
  }
  .hero--laser-split .v-laser-line::after{
    display: none;
  }
}
