@charset "utf-8";
/*
    Theme Name: mufyAI官网
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/


:root {
	--mufy-bg-deep: #0a0a0f;
	--mufy-bg-surface: #12121a;
	--mufy-purple-glow: #a855f7;
	--mufy-purple-deep: #7c3aed;
	--mufy-purple-light: #c084fc;
	--mufy-cyan-accent: #22d3ee;
	--mufy-text-primary: #f8fafc;
	--mufy-text-secondary: #94a3b8;
	--mufy-text-muted: #64748b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--mufy-bg-deep);
	color: var(--mufy-text-primary);
	overflow-x: hidden;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a,a:hover {
    text-decoration: none;
}
/* Background Effects */
.mufy-bg-mesh {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.mufy-glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	animation: mufy-float 20s ease-in-out infinite;
}

.mufy-glow-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--mufy-purple-glow) 0%, transparent 70%);
	top: -200px;
	right: -100px;
	animation-delay: 0s;
}

.mufy-glow-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--mufy-purple-deep) 0%, transparent 70%);
	bottom: 20%;
	left: -100px;
	animation-delay: -7s;
}

.mufy-glow-orb-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--mufy-cyan-accent) 0%, transparent 70%);
	top: 50%;
	right: 10%;
	opacity: 0.2;
	animation-delay: -14s;
}

@keyframes mufy-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -30px) scale(1.05); }
	50% { transform: translate(-20px, 20px) scale(0.95); }
	75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Grid Pattern */
.mufy-grid-pattern {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 1;
}

/* Navigation */
.mufy-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(20px);
	background: rgba(10, 10, 15, 0.7);
	border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.mufy-logo {
	display: flex;
	align-items: center;
	font-size: 1.25rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--mufy-purple-light) 0%, var(--mufy-cyan-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.mufy-logo img {
	width: 40px;
	border-radius: 4px;
	margin-right: 10px;
}

.mufy-nav-links {
	display: none;
	gap: 3rem;
	list-style: none;
}

.mufy-nav-links a {
	color: var(--mufy-text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
}

.mufy-nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--mufy-purple-glow), var(--mufy-cyan-accent));
	transition: width 0.3s ease;
}

.mufy-nav-links a:hover {
	color: var(--mufy-text-primary);
}

.mufy-nav-links a:hover::after {
	width: 100%;
}

.mufy-nav-cta {
	padding: 0.625rem 1.25rem;
	background: linear-gradient(135deg, var(--mufy-purple-deep) 0%, var(--mufy-purple-glow) 100%);
	border: none;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
	white-space: nowrap;
}

.mufy-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}



/* Hero Section */
.mufy-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 1rem 3rem;
	z-index: 10;
}

.mufy-hero-content {
	text-align: center;
	max-width: 900px;
	width: 100%;
}

.mufy-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: 50px;
	font-size: 0.8rem;
	color: var(--mufy-purple-light);
	margin-bottom: 1.5rem;
	animation: mufy-fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.mufy-hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--mufy-purple-glow);
	border-radius: 50%;
	animation: mufy-pulse 2s ease-in-out infinite;
}

@keyframes mufy-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.mufy-hero h1 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(2rem, 9vw, 5rem);
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 1.25rem;
	animation: mufy-fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.mufy-hero h1 .mufy-gradient-text {
	background: linear-gradient(135deg, var(--mufy-purple-light) 0%, var(--mufy-cyan-accent) 50%, var(--mufy-purple-glow) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: mufy-gradientShift 5s ease infinite;
}

@keyframes mufy-gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.mufy-hero-subtitle {
	font-size: clamp(0.95rem, 4vw, 1.25rem);
	color: var(--mufy-text-secondary);
	max-width: 600px;
	margin: 0 auto 2rem;
	padding: 0 0.5rem;
	animation: mufy-fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

.mufy-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: mufy-fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
}

.mufy-btn-primary {
	padding: 0.875rem 1.75rem;
	background: linear-gradient(135deg, var(--mufy-purple-deep) 0%, var(--mufy-purple-glow) 100%);
	border: none;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
	box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.mufy-btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.mufy-btn-primary:hover::before {
	left: 100%;
}

.mufy-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 50px rgba(168, 85, 247, 0.6);
}

.mufy-btn-secondary {
	padding: 0.875rem 1.75rem;
	background: transparent;
	border: 2px solid rgba(168, 85, 247, 0.5);
	border-radius: 50px;
	color: var(--mufy-purple-light);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Outfit', sans-serif;
	backdrop-filter: blur(10px);
	white-space: nowrap;
}

.mufy-btn-secondary:hover {
	background: rgba(168, 85, 247, 0.1);
	border-color: var(--mufy-purple-glow);
	transform: translateY(-3px);
}

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

/* Floating Elements */
.mufy-floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	overflow: hidden;
	display: none;
}

.mufy-float-card {
	position: absolute;
	background: rgba(18, 18, 26, 0.8);
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-radius: 16px;
	padding: 1rem 1.5rem;
	backdrop-filter: blur(10px);
	animation: mufy-floatCard 6s ease-in-out infinite;
}

.mufy-float-card-1 {
	top: 20%;
	left: 8%;
	animation-delay: 0s;
}

.mufy-float-card-2 {
	top: 30%;
	right: 8%;
	animation-delay: -2s;
}

.mufy-float-card-3 {
	bottom: 25%;
	left: 12%;
	animation-delay: -4s;
}

.mufy-float-card-4 {
	bottom: 20%;
	right: 10%;
	animation-delay: -3s;
}

@keyframes mufy-floatCard {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(2deg); }
}

.mufy-float-card-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--mufy-purple-deep), var(--mufy-purple-glow));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	color: white;
	margin: 0 auto;
	text-align: center;
}

.mufy-float-card-text {
	margin-top: .5rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--mufy-text-secondary);
}

.mufy-float-card-value {
	font-size: 1.1rem;
	text-align: center;
	color: var(--mufy-text-primary);
	font-weight: 600;
}

/* Features Section */
.mufy-features {
	position: relative;
	z-index: 10;
	padding: 4rem 1.25rem;
}

.mufy-section-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 0 0.5rem;
}

.mufy-section-tag {
	font-family: 'Orbitron', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	color: var(--mufy-purple-light);
	margin-bottom: 0.75rem;
	display: block;
}

.mufy-section-title {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.5rem, 6vw, 3rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.mufy-section-desc {
	color: var(--mufy-text-secondary);
	max-width: 600px;
	margin: 0 auto;
	font-size: 0.95rem;
	padding: 0 0.5rem;
}

.mufy-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 1400px;
	margin: 0 auto;
}

.mufy-feature-card {
	background: linear-gradient(135deg, rgba(18, 18, 26, 0.9) 0%, rgba(18, 18, 26, 0.5) 100%);
	border: 1px solid rgba(168, 85, 247, 0.15);
	border-radius: 20px;
	padding: 1.75rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.mufy-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--mufy-purple-glow), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.mufy-feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(168, 85, 247, 0.4);
	box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.mufy-feature-card:hover::before {
	opacity: 1;
}

.mufy-feature-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
	border: 1px solid rgba(168, 85, 247, 0.2);
	color: var(--mufy-purple-light);
}

.mufy-feature-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.625rem;
}

.mufy-feature-desc {
	color: var(--mufy-text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* Products Section */
.mufy-products {
	position: relative;
	z-index: 10;
	padding: 4rem 0;
}

.mufy-products-header {
	text-align: center;
	margin-bottom: 2.5rem;
	padding: 0 1.25rem;
}

.mufy-products-scroll {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 0 1.25rem 1.5rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mufy-products-scroll::-webkit-scrollbar {
	display: none;
}

.mufy-product-item {
	flex: 0 0 auto;
	width: calc(50% - 0.5rem);
	scroll-snap-align: start;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(18, 18, 26, 0.9) 0%, rgba(18, 18, 26, 0.5) 100%);
	border: 1px solid rgba(168, 85, 247, 0.15);
	transition: all 0.4s ease;
}

.mufy-product-item:hover {
	border-color: rgba(168, 85, 247, 0.4);
	box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
	transform: translateY(-4px);
}

.mufy-product-item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}


/* Scroll Indicator */
.mufy-scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
	color: var(--mufy-text-muted);
	font-size: 0.8rem;
}

.mufy-scroll-hint svg {
	animation: mufy-scrollBounce 1.5s ease-in-out infinite;
}

@keyframes mufy-scrollBounce {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(8px); }
}

/* Testimonials Section */
.mufy-testimonials {
	position: relative;
	z-index: 10;
	padding: 4rem 1.25rem;
}

.mufy-testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 1200px;
	margin: 0 auto;
}

.mufy-testimonial-card {
	background: linear-gradient(135deg, rgba(18, 18, 26, 0.9) 0%, rgba(18, 18, 26, 0.5) 100%);
	border: 1px solid rgba(168, 85, 247, 0.15);
	border-radius: 20px;
	padding: 1.75rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.mufy-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--mufy-purple-glow), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.mufy-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(168, 85, 247, 0.4);
	box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.mufy-testimonial-card:hover::before {
	opacity: 1;
}

.mufy-testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: #fbbf24;
	font-size: 1rem;
}

.mufy-testimonial-text {
	color: var(--mufy-text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.mufy-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mufy-testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mufy-purple-deep), var(--mufy-purple-glow));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: white;
	font-size: 0.9rem;
}

.mufy-testimonial-info h4 {
	font-family: 'Orbitron', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--mufy-text-primary);
	margin-bottom: 0.125rem;
}

.mufy-testimonial-info span {
	font-size: 0.8rem;
	color: var(--mufy-text-muted);
}

/* Demo Section */
.mufy-demo {
	position: relative;
	z-index: 10;
	padding: 4rem 1.25rem;
}

.mufy-demo-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.mufy-demo-content h2 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.5rem, 6vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.mufy-demo-content p {
	color: var(--mufy-text-secondary);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.7;
}

.mufy-demo-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.mufy-stat-item {
	text-align: center;
}

.mufy-stat-value {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.25rem, 5vw, 2.5rem);
	font-weight: 800;
	background: linear-gradient(135deg, var(--mufy-purple-light), var(--mufy-cyan-accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mufy-stat-label {
	color: var(--mufy-text-muted);
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.mufy-demo-interface {
	background: linear-gradient(135deg, rgba(18, 18, 26, 0.95) 0%, rgba(18, 18, 26, 0.8) 100%);
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-radius: 20px;
	padding: 1.25rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(168, 85, 247, 0.1);
}

.mufy-demo-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.mufy-demo-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.mufy-demo-dot:nth-child(1) { background: #ef4444; }
.mufy-demo-dot:nth-child(2) { background: #eab308; }
.mufy-demo-dot:nth-child(3) { background: #22c55e; }

.mufy-demo-chat {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mufy-chat-message {
	max-width: 90%;
	padding: 0.875rem 1rem;
	border-radius: 14px;
	font-size: 0.875rem;
	line-height: 1.6;
}

.mufy-chat-message.mufy-user {
	align-self: flex-end;
	background: linear-gradient(135deg, var(--mufy-purple-deep), var(--mufy-purple-glow));
	border-bottom-right-radius: 4px;
}

.mufy-chat-message.mufy-ai {
	align-self: flex-start;
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-bottom-left-radius: 4px;
}

.mufy-typing-indicator {
	display: flex;
	gap: 4px;
	padding: 0.75rem;
	align-self: flex-start;
}

.mufy-typing-indicator span {
	width: 6px;
	height: 6px;
	background: var(--mufy-purple-glow);
	border-radius: 50%;
	animation: mufy-typing 1.4s ease-in-out infinite;
}

.mufy-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.mufy-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes mufy-typing {
	0%, 60%, 100% { transform: translateY(0); }
	30% { transform: translateY(-6px); }
}

.mufy-demo-input {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.mufy-demo-input input {
	flex: 1;
	background: rgba(168, 85, 247, 0.05);
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	color: var(--mufy-text-primary);
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	outline: none;
	transition: all 0.3s ease;
	min-width: 0;
}

.mufy-demo-input input::placeholder {
	color: var(--mufy-text-muted);
}

.mufy-demo-input input:focus {
	border-color: var(--mufy-purple-glow);
	box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.mufy-demo-input button {
	background: linear-gradient(135deg, var(--mufy-purple-deep), var(--mufy-purple-glow));
	border: none;
	border-radius: 10px;
	padding: 0 1.25rem;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	flex-shrink: 0;
}

.mufy-demo-input button:hover {
	transform: scale(1.05);
}

/* CTA Section */
.mufy-cta {
	position: relative;
	z-index: 10;
	padding: 4rem 1.25rem;
	text-align: center;
}

.mufy-cta-container {
	max-width: 800px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
	border: 1px solid rgba(168, 85, 247, 0.3);
	border-radius: 24px;
	padding: 2.5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

.mufy-cta-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
	animation: mufy-rotate 20s linear infinite;
}

@keyframes mufy-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.mufy-cta h2 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.25rem, 5vw, 2.75rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
	position: relative;
}

.mufy-cta p {
	color: var(--mufy-text-secondary);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	position: relative;
}

.mufy-cta .mufy-btn-primary {
	position: relative;
	font-size: 0.95rem;
	padding: 1rem 2rem;
	display: inline-block;
}

/* Footer */
.mufy-footer {
	position: relative;
	z-index: 10;
	padding: 2.5rem 1.25rem 1.5rem;
	border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.mufy-footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

.mufy-footer-brand .mufy-logo {
	margin-bottom: 0.5rem;
	display: inline-block;
}

.mufy-footer-brand p {
	color: var(--mufy-text-muted);
	font-size: 0.85rem;
}

.mufy-footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	text-align: center;
	color: var(--mufy-text-muted);
	font-size: 0.8rem;
}

.mufy-social-links {
	display: flex;
	gap: 0.75rem;
}

.mufy-social-links a {
	width: 36px;
	height: 36px;
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mufy-text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.mufy-social-links a:hover {
	background: rgba(168, 85, 247, 0.2);
	color: var(--mufy-purple-light);
	transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.mufy-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 10, 15, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mufy-mobile-menu.mufy-active {
	opacity: 1;
	visibility: visible;
}

.mufy-mobile-menu a {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.5rem;
	color: var(--mufy-text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.mufy-mobile-menu a:hover {
	color: var(--mufy-purple-light);
}

.mufy-mobile-menu-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: var(--mufy-text-secondary);
	font-size: 2rem;
	cursor: pointer;
}
.mufy-hero-buttons .mufy-btn-secondary {
	display: none;
}
.mufy-hero-buttons .mufy-btn-primary {
	width: 100%;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
	.mufy-hero-buttons .mufy-btn-secondary {
		display: block;
	}
	.mufy-hero-buttons .mufy-btn-primary {
		width: auto;
	}
	.mufy-nav {
		padding: 1.25rem 2rem;
	}

	.mufy-logo {
		font-size: 1.5rem;
	}

	.mufy-nav-links {
		display: flex;
	}

	.mufy-menu-btn {
		display: none;
	}

	.mufy-nav-cta {
		padding: 0.75rem 1.75rem;
		font-size: 0.95rem;
	}

	.mufy-hero {
		padding: 10rem 2rem 4rem;
	}

	.mufy-hero-badge {
		padding: 0.5rem 1.25rem;
		font-size: 0.85rem;
		margin-bottom: 2rem;
	}

	.mufy-hero-subtitle {
		margin-bottom: 3rem;
	}

	.mufy-hero-buttons {
		gap: 1.5rem;
	}

	.mufy-btn-primary,
	.mufy-btn-secondary {
		padding: 1rem 2.5rem;
		font-size: 1rem;
	}

	.mufy-floating-elements {
		display: block;
	}

	.mufy-features {
		padding: 6rem 2rem;
	}

	.mufy-section-header {
		margin-bottom: 4rem;
	}

	.mufy-section-tag {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}

	.mufy-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.mufy-feature-card {
		padding: 2rem;
		border-radius: 24px;
	}

	.mufy-feature-icon {
		width: 64px;
		height: 64px;
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.mufy-feature-title {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.mufy-feature-desc {
		font-size: 0.95rem;
	}

	/* Products - Tablet */
	.mufy-products {
		padding: 6rem 0;
	}

	.mufy-products-header {
		padding: 0 2rem;
	}

	.mufy-products-scroll {
		padding: 0 2rem 1.5rem;
		gap: 1.5rem;
	}

	.mufy-product-item {
		width: calc(25% - 1.125rem);
	}



	.mufy-scroll-hint {
		display: none;
	}

	/* Testimonials - Tablet */
	.mufy-testimonials {
		padding: 6rem 2rem;
	}

	.mufy-testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.mufy-testimonial-card {
		padding: 2rem;
		border-radius: 24px;
	}

	.mufy-testimonial-stars {
		font-size: 1.1rem;
	}

	.mufy-testimonial-text {
		font-size: 1rem;
	}

	.mufy-testimonial-avatar {
		width: 48px;
		height: 48px;
		font-size: 1rem;
	}

	.mufy-testimonial-info h4 {
		font-size: 1rem;
	}

	.mufy-demo {
		padding: 6rem 2rem;
	}

	.mufy-demo-container {
		gap: 3rem;
	}

	.mufy-demo-content p {
		font-size: 1.1rem;
	}

	.mufy-demo-stats {
		gap: 2rem;
		margin-top: 3rem;
	}

	.mufy-stat-label {
		font-size: 0.9rem;
	}

	.mufy-demo-interface {
		padding: 1.75rem;
		border-radius: 24px;
	}

	.mufy-demo-header {
		margin-bottom: 1.25rem;
		padding-bottom: 1rem;
	}

	.mufy-demo-dot {
		width: 12px;
		height: 12px;
	}

	.mufy-demo-chat {
		gap: 1rem;
	}

	.mufy-chat-message {
		max-width: 85%;
		padding: 1rem 1.25rem;
		font-size: 0.95rem;
		border-radius: 16px;
	}

	.mufy-typing-indicator {
		padding: 1rem;
	}

	.mufy-typing-indicator span {
		width: 8px;
		height: 8px;
	}

	.mufy-demo-input {
		gap: 1rem;
		margin-top: 1.25rem;
		padding-top: 1.25rem;
	}

	.mufy-demo-input input {
		padding: 0.875rem 1.25rem;
		font-size: 0.95rem;
		border-radius: 12px;
	}

	.mufy-demo-input button {
		padding: 0 1.5rem;
		font-size: 1.2rem;
		border-radius: 12px;
	}

	.mufy-cta {
		padding: 6rem 2rem;
	}

	.mufy-cta-container {
		padding: 3rem 2.5rem;
		border-radius: 32px;
	}

	.mufy-cta p {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}

	.mufy-cta .mufy-btn-primary {
		font-size: 1.1rem;
		padding: 1.25rem 3rem;
	}

	.mufy-footer {
		padding: 3rem 2rem 2rem;
	}

	.mufy-footer-content {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}

	.mufy-footer-brand p {
		font-size: 0.9rem;
	}

	.mufy-footer-bottom {
		flex-direction: row;
		gap: 1.5rem;
	}

	.mufy-social-links {
		gap: 1rem;
	}

	.mufy-social-links a {
		width: 40px;
		height: 40px;
		border-radius: 12px;
		font-size: 1rem;
	}
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
	.mufy-nav {
		padding: 1.5rem 4rem;
	}

	.mufy-nav-links {
		gap: 3rem;
	}

	.mufy-hero {
		padding: 12rem 4rem 4rem;
	}

	.mufy-features {
		padding: 8rem 4rem;
	}

	.mufy-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.mufy-products {
		padding: 8rem 0;
	}

	.mufy-products-header {
		padding: 0 4rem;
	}

	.mufy-products-scroll {
		padding: 0 4rem 2rem;
		gap: 2rem;
	}

	.mufy-product-item {
		width: calc(25% - 1.5rem);
	}

	/* Testimonials - Desktop */
	.mufy-testimonials {
		padding: 8rem 4rem;
	}

	.mufy-testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.mufy-demo {
		padding: 8rem 4rem;
	}

	.mufy-demo-container {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}

	.mufy-cta {
		padding: 8rem 4rem;
	}

	.mufy-cta-container {
		padding: 4rem;
	}

	.mufy-footer {
		padding: 3rem 4rem 2rem;
	}
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
	.mufy-hero h1 {
		font-size: 1.75rem;
	}

	.mufy-hero-subtitle {
		font-size: 0.875rem;
	}

	.mufy-btn-primary,
	.mufy-btn-secondary {
		padding: 0.75rem 1.25rem;
		font-size: 0.875rem;
	}

	.mufy-product-item {
		width: calc(60% - 0.5rem);
	}

	.mufy-demo-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.mufy-stat-item {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		text-align: left;
	}

	.mufy-chat-message {
		font-size: 0.8rem;
	}
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {


	.mufy-hero h1 {
		font-size: 2rem;
	}

	.mufy-hero-subtitle {
		margin-bottom: 1.5rem;
	}
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
	.mufy-feature-card:hover {
		transform: none;
	}

	.mufy-btn-primary:hover,
	.mufy-btn-secondary:hover,
	.mufy-nav-cta:hover {
		transform: none;
	}

	.mufy-product-item:hover {
		transform: none;
	}

	.mufy-testimonial-card:hover {
		transform: none;
	}

	.mufy-feature-card:active {
		transform: scale(0.98);
	}

	.mufy-btn-primary:active,
	.mufy-btn-secondary:active,
	.mufy-nav-cta:active {
		transform: scale(0.95);
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}