:root {
	color-scheme: dark;
	--glass-bg: rgba(15, 23, 42, 0.75);
	--glass-border: rgba(148, 163, 184, 0.25);
	--card-shadow: 0 25px 45px rgba(15, 23, 42, 0.6);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: url('assets/images/1c87648b-1732-48c3-9d48-defdc70b942e.jpg') center/cover fixed no-repeat,
		radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 45%),
		linear-gradient(180deg, #020617 0%, #030a1b 35%, #010511 100%);
	font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	overflow-x: hidden;
}

.cosmic-glow {
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.2), transparent 45%),
		radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.15), transparent 40%);
	filter: blur(80px);
	pointer-events: none;
	z-index: -1;
}


.glass-header {
	margin: 0.5rem;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: clamp(40px, 6vw, 999px);
	backdrop-filter: blur(18px);
	box-shadow: 0 25px 55px rgba(2, 6, 23, 0.6);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	width: min(1100px, calc(100% - 1.5rem));
	height: 130px;
}

.glass-header:hover {
	box-shadow: 0 35px 65px rgba(2, 6, 23, 0.65);
	transform: translateY(-2px);
}




.nav-link {
	color: #94a3b8;
	transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
	color: #e2e8f0;
}

.nav-link.is-active {
	color: #5eead4;
}

.primary-cta,
.secondary-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 999px;
	font-weight: 600;
	padding: 0.65rem 1.7rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
	border: 1px solid transparent;
	text-decoration: none;
}

.primary-cta {
	background: linear-gradient(135deg, #38bdf8, #a855f7);
	color: #0f172a;
	box-shadow: 0 15px 35px rgba(56, 189, 248, 0.35);
}

.primary-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 45px rgba(168, 85, 247, 0.35);
}

.secondary-cta {
	background: rgba(148, 163, 184, 0.15);
	border-color: rgba(148, 163, 184, 0.3);
	color: #e2e8f0;
}

.secondary-cta:hover {
	background: rgba(148, 163, 184, 0.25);
	transform: translateY(-2px);
}

.mobile-trigger {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: transparent;
	display: grid;
	place-items: center;
	gap: 5px;
	cursor: pointer;
}

.mobile-trigger span {
	width: 20px;
	height: 2px;
	background: #e2e8f0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-trigger.open span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.mobile-trigger.open span:nth-child(2) {
	opacity: 0;
}

.mobile-trigger.open span:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	border-top: 1px solid var(--glass-border);
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(12px);
	transform-origin: top center;
	transform: scaleY(0);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu[data-open="true"] {
	transform: scaleY(1);
	opacity: 1;
	pointer-events: auto;
}

.demo-hero {
	background: radial-gradient(circle at 25% 20%, rgba(14, 165, 233, 0.25), transparent 55%),
		linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.65));
	border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 60% 10%, rgba(168, 85, 247, 0.35), transparent 55%);
	filter: blur(50px);
	z-index: 0;
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.eyebrow {
	font-size: 0.85rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #5eead4;
	margin-bottom: 1rem;
}

.hero-title {
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.hero-subtitle {
	color: #cbd5f5;
	font-size: 1.1rem;
	line-height: 1.7;
}

.hero-visual {
	position: relative;
	height: 360px;
	border-radius: 36px;
	background: linear-gradient(145deg, rgba(14, 165, 233, 0.25), rgba(99, 102, 241, 0.25));
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	isolation: isolate;
}

.visual-layer {
	position: absolute;
	inset: 0;
}

.layer-base {
	background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.8), transparent 55%);
	z-index: 1;
}

.layer-grid {
	background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 70%);
	z-index: 2;
}

.layer-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2.5rem;
	z-index: 3;
}

.layer-orbit {
	width: 260px;
	height: 260px;
	border-radius: 999px;
	border: 1px dashed rgba(94, 234, 212, 0.5);
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 2;
}

.layer-orbit::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #5eead4;
	box-shadow: 0 0 20px rgba(94, 234, 212, 0.7);
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.mini-card {
	padding: 1.2rem;
	border-radius: 1rem;
	background: rgba(15, 23, 42, 0.75);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 15px 30px rgba(2, 6, 23, 0.35);
}

.mini-card p {
	margin: 0;
	color: #cbd5f5;
	font-size: 0.85rem;
}

.mini-card strong {
	font-size: 1.8rem;
	font-weight: 700;
}

.glass-panel {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	padding: 2rem;
	box-shadow: var(--card-shadow);
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.demo-card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transform-style: preserve-3d;
}

.demo-card:hover {
	transform: translateY(-12px) scale(1.01);
	box-shadow: 0 35px 55px rgba(15, 23, 42, 0.75);
}

.screenshot-frame {
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.85));
	padding: 1rem;
	overflow: hidden;
}

.screenshot-frame img {
	width: 100%;
	display: block;
	border-radius: 16px;
	filter: drop-shadow(0 20px 30px rgba(2, 6, 23, 0.45));
}

.card-copy h3 {
	font-size: 1.4rem;
	margin-bottom: 0.4rem;
}

.card-copy p {
	color: #cbd5f5;
	margin: 0;
	line-height: 1.6;
}

.section-title {
	font-size: clamp(2rem, 3vw, 3.25rem);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.demo-grid {
	margin-top: 2rem;
}

.pricing-panel {
	padding: 3rem;
}

.pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-row p {
	margin: 0;
	font-size: 0.9rem;
	color: #94a3b8;
}

/* Footer */
.footer-wrapper {
	background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 45%),
		radial-gradient(circle at bottom right, rgba(147, 51, 234, 0.18), transparent 50%),
		rgba(2, 6, 23, 0.95);
	border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 60%);
	filter: blur(60px);
	opacity: 0.7;
}

.footer-heading {
	font-size: 0.85rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #93c5fd;
	margin-bottom: 1rem;
}

.footer-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: #cbd5f5;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
	transform-style: preserve-3d;
}

.footer-link::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #38bdf8;
	opacity: 0;
	transform: translateZ(20px);
	transition: opacity 0.3s ease;
}

.footer-link:hover {
	color: #f8fafc;
	transform: translateY(-2px) scale(1.07);
	text-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.footer-link:hover::after {
	opacity: 1;
}

.footer-social {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.75);
	border: 1px solid rgba(148, 163, 184, 0.35);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	color: #f8fafc;
	box-shadow: 0 12px 25px rgba(2, 6, 23, 0.4);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	transform-style: preserve-3d;
}

.footer-social:hover {
	transform: translateY(-6px) rotateX(8deg) rotateY(-4deg) scale(1.05);
	border-color: rgba(244, 114, 182, 0.6);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 25px 45px rgba(14, 165, 233, 0.35);
}

.footer-btn {
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #38bdf8, #9333ea);
	color: #0f172a;
	font-weight: 600;
	box-shadow: 0 20px 35px rgba(147, 51, 234, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 30px 45px rgba(56, 189, 248, 0.45);
}

.footer-switch {
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.6);
	color: #cbd5f5;
	font-size: 0.85rem;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-switch:hover {
	transform: translateY(-3px);
	border-color: rgba(59, 130, 246, 0.7);
	box-shadow: 0 12px 20px rgba(15, 23, 42, 0.45);
}

@media (max-width: 1023px) {
	.glass-header {
		margin: 0 1.25rem;
	}
}

@media (max-width: 767px) {
	.hero-visual {
		height: 280px;
	}

	.glass-panel {
		padding: 1.5rem;
	}
}
