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

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

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

body {
	font-family: 'Noto Sans SC', 'Outfit', sans-serif;
	background: #1d2029;
	color: #f0efff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #15171e;
}

::-webkit-scrollbar-thumb {
	background: #5a58d4;
	border-radius: 3px;
}

/* ===== ANIMATIONS ===== */
@keyframes feelin-float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes feelin-float-slow {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-8px) rotate(2deg);
	}
}

@keyframes feelin-pulse-glow {

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

	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

@keyframes feelin-gradient-shift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes feelin-fade-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

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

@keyframes feelin-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes feelin-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}

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

@keyframes feelin-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(60px);
	}

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

@keyframes feelin-typing-dot {

	0%,
	60%,
	100% {
		opacity: 0.3;
		transform: translateY(0);
	}

	30% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

@keyframes feelin-orbit {
	from {
		transform: rotate(0deg) translateX(120px) rotate(0deg);
	}

	to {
		transform: rotate(360deg) translateX(120px) rotate(-360deg);
	}
}

@keyframes feelin-particle-drift {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) translateX(50px);
		opacity: 0;
	}
}

@keyframes feelin-message-pop {
	0% {
		opacity: 0;
		transform: scale(0.9) translateY(10px);
	}

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

@keyframes feelin-shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

/* Scroll reveal */
.feelin-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feelin-reveal.feelin-visible {
	opacity: 1;
	transform: translateY(0);
}

.feelin-reveal-delay-1 {
	transition-delay: 0.1s;
}

.feelin-reveal-delay-2 {
	transition-delay: 0.2s;
}

.feelin-reveal-delay-3 {
	transition-delay: 0.3s;
}

.feelin-reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ===== NAVIGATION ===== */
#feelin-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 48px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#feelin-nav.feelin-scrolled {
	background: rgba(29, 32, 41, 0.85);
	backdrop-filter: blur(20px) saturate(1.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	box-shadow: 0 1px 0 rgba(118, 115, 254, 0.15);
}

.feelin-nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: -0.02em;
}

.feelin-nav-logo-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	overflow: hidden;
	justify-content: center;
	font-size: 1.1rem;
}

.feelin-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.feelin-nav-links a {
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(240, 239, 255, 0.6);
	transition: color 0.3s;
	position: relative;
}

.feelin-nav-links a:hover {
	color: #f0efff;
}

.feelin-nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #7673fe;
	border-radius: 1px;
	transition: width 0.3s;
}

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

.feelin-nav-cta {
	padding: 10px 24px;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	border: none;
	border-radius: 50px;
	color: #fff;
	font-family: 'Noto Sans SC', 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 0 20px rgba(118, 115, 254, 0.35);
}

.feelin-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 30px rgba(118, 115, 254, 0.35);
}

.feelin-nav-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}

.feelin-nav-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #f0efff;
	border-radius: 1px;
	transition: all 0.3s;
}

/* ===== SECTION COMMON ===== */
.feelin-section {
	padding: 120px 48px;
	position: relative;
}

.feelin-section-header {
	text-align: center;
	margin-bottom: 72px;
}

.feelin-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #7673fe;
	margin-bottom: 16px;
}

.feelin-section-label::before,
.feelin-section-label::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #7673fe;
	opacity: 0.5;
}

.feelin-section-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 16px;
}

.feelin-section-desc {
	font-size: 1.05rem;
	color: rgba(240, 239, 255, 0.6);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 300;
}

.feelin-gradient-text {
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: feelin-gradient-shift 4s ease-in-out infinite;
}

/* ===== IMMERSIVE EXPERIENCE (FIRST SECTION) ===== */
#feelin-immersive {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 48px 80px;
	position: relative;
	overflow: hidden;
	background: #15171e;
}

.feelin-immersive-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.feelin-immersive-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 40% at 30% 50%, rgba(118, 115, 254, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 40% 30% at 70% 30%, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
}

.feelin-immersive-particles {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.feelin-particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: #7673fe;
	border-radius: 50%;
	animation: feelin-particle-drift linear infinite;
	opacity: 0;
}

.feelin-immersive-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.feelin-immersive-left {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.feelin-immersive-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: rgba(118, 115, 254, 0.1);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 50px;
	font-size: 0.85rem;
	color: #9b99ff;
	width: fit-content;
	animation: feelin-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-immersive-badge-dot {
	width: 6px;
	height: 6px;
	background: #7673fe;
	border-radius: 50%;
	animation: feelin-pulse-glow 2s ease-in-out infinite;
}

.feelin-immersive-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.03em;
	animation: feelin-fade-up 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-immersive-desc {
	font-size: 1.1rem;
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.8;
	font-weight: 300;
	animation: feelin-fade-up 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-immersive-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	animation: feelin-fade-up 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-immersive-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: rgba(240, 239, 255, 0.6);
}

.feelin-immersive-feature svg {
	width: 20px;
	height: 20px;
	color: #7673fe;
	flex-shrink: 0;
}

.feelin-immersive-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
	animation: feelin-fade-up 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	border: none;
	border-radius: 50px;
	color: #fff;
	font-family: 'Noto Sans SC', 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 0 30px rgba(118, 115, 254, 0.35);
}

.feelin-btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 40px rgba(118, 115, 254, 0.4);
}

.feelin-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 36px;
	background: transparent;
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 50px;
	color: #f0efff;
	font-family: 'Noto Sans SC', 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s;
}

.feelin-btn-secondary:hover {
	border-color: #7673fe;
	background: rgba(118, 115, 254, 0.08);
	transform: translateY(-2px);
}

/* Chat Interface */
.feelin-immersive-right {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.feelin-chat-container {
	width: 100%;
	max-width: 400px;
	background: rgba(21, 23, 30, 0.95);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 24px;
	overflow: hidden;
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 60px rgba(118, 115, 254, 0.1);
	animation: feelin-float-slow 6s ease-in-out infinite;
}

.feelin-chat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(118, 115, 254, 0.15);
	background: rgba(118, 115, 254, 0.05);
}

.feelin-chat-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #7673fe;
	box-shadow: 0 0 15px rgba(118, 115, 254, 0.35);
}

.feelin-chat-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feelin-chat-info {
	flex: 1;
}

.feelin-chat-name {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 2px;
}

.feelin-chat-status {
	font-size: 0.75rem;
	color: #9b99ff;
	display: flex;
	align-items: center;
	gap: 4px;
}

.feelin-chat-status::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #4ade80;
	border-radius: 50%;
	animation: feelin-pulse-glow 2s ease-in-out infinite;
}

.feelin-chat-body {
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 320px;
}

.feelin-chat-bubble {
	max-width: 85%;
	padding: 14px 18px;
	border-radius: 18px;
	font-size: 0.9rem;
	line-height: 1.6;
	animation: feelin-message-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feelin-chat-bubble-ai {
	background: rgba(118, 115, 254, 0.12);
	border: 1px solid rgba(118, 115, 254, 0.15);
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	color: #f0efff;
}

.feelin-chat-bubble-user {
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	align-self: flex-end;
	border-bottom-right-radius: 4px;
	color: #fff;
}

.feelin-chat-typing {
	display: flex;
	gap: 4px;
	padding: 14px 18px;
	align-self: flex-start;
	background: rgba(118, 115, 254, 0.08);
	border-radius: 18px;
	border-bottom-left-radius: 4px;
	width: fit-content;
}

.feelin-chat-typing span {
	width: 6px;
	height: 6px;
	background: #9b99ff;
	border-radius: 50%;
	animation: feelin-typing-dot 1.4s infinite;
}

.feelin-chat-typing span:nth-child(2) {
	animation-delay: 0.2s;
}

.feelin-chat-typing span:nth-child(3) {
	animation-delay: 0.4s;
}

.feelin-chat-input {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-top: 1px solid rgba(118, 115, 254, 0.15);
	background: rgba(118, 115, 254, 0.03);
}

.feelin-chat-input-field {
	flex: 1;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 20px;
	padding: 0 16px;
	color: rgba(240, 239, 255, 0.35);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
}

.feelin-chat-send {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.feelin-chat-send:hover {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(118, 115, 254, 0.35);
}

/* Floating avatars around chat */
.feelin-chat-orbit {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.feelin-orbit-avatar {
	position: absolute;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(118, 115, 254, 0.4);
	box-shadow: 0 0 20px rgba(118, 115, 254, 0.2);
	animation: feelin-float 5s ease-in-out infinite;
}

.feelin-orbit-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feelin-orbit-avatar:nth-child(1) {
	top: -20px;
	right: 40px;
	animation-delay: 0s;
}

.feelin-orbit-avatar:nth-child(2) {
	bottom: 60px;
	left: -30px;
	animation-delay: 1s;
}

.feelin-orbit-avatar:nth-child(3) {
	bottom: -10px;
	right: 60px;
	animation-delay: 2s;
}

/* ===== PRODUCT SHOWCASE ===== */
#feelin-showcase {
	background: #1d2029;
	position: relative;
	padding: 100px 48px;
}

#feelin-showcase::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.feelin-showcase-item {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(118, 115, 254, 0.15);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feelin-showcase-item:hover {
	transform: translateY(-8px);
	border-color: rgba(118, 115, 254, 0.35);
	box-shadow: 0 0 40px rgba(118, 115, 254, 0.15);
}

.feelin-showcase-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feelin-showcase-item:hover img {
	transform: scale(1.05);
}

.feelin-showcase-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(29, 32, 41, 0.9) 100%);
	opacity: 0;
	transition: opacity 0.4s;
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.feelin-showcase-item:hover .feelin-showcase-overlay {
	opacity: 1;
}

.feelin-showcase-caption {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: #f0efff;
}

/* ===== CHARACTERS GALLERY ===== */
#feelin-characters {
	background: #15171e;
	position: relative;
}

#feelin-characters::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-characters-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.feelin-character-card {
	text-align: center;
	padding: 40px 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 24px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.feelin-character-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	opacity: 0;
	transition: opacity 0.4s;
}

.feelin-character-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(118, 115, 254, 0.35);
	transform: translateY(-8px);
	box-shadow: 0 0 40px rgba(118, 115, 254, 0.15);
}

.feelin-character-card:hover::before {
	opacity: 1;
}

.feelin-character-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 20px;
	border: 3px solid rgba(118, 115, 254, 0.3);
	transition: all 0.4s;
	position: relative;
}

.feelin-character-card:hover .feelin-character-avatar {
	border-color: #7673fe;
	box-shadow: 0 0 30px rgba(118, 115, 254, 0.35);
	transform: scale(1.05);
}

.feelin-character-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feelin-character-name {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.feelin-character-trait {
	font-size: 0.82rem;
	color: #9b99ff;
	margin-bottom: 12px;
	font-weight: 400;
}

.feelin-character-desc {
	font-size: 0.85rem;
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 20px;
}

.feelin-character-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 50px;
	color: rgba(240, 239, 255, 0.6);
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
}

.feelin-character-card:hover .feelin-character-btn {
	background: #7673fe;
	border-color: #7673fe;
	color: #fff;
}

/* ===== FEATURES SECTION ===== */
#feelin-features {
	background: #1d2029;
	position: relative;
}

#feelin-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.feelin-feature-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 24px;
	padding: 40px 32px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.feelin-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	opacity: 0;
	transition: opacity 0.4s;
}

.feelin-feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(118, 115, 254, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 0 40px rgba(118, 115, 254, 0.15);
}

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

.feelin-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(118, 115, 254, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: all 0.4s;
}

.feelin-feature-card:hover .feelin-feature-icon {
	background: rgba(118, 115, 254, 0.2);
	transform: scale(1.1);
}

.feelin-feature-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

.feelin-feature-desc {
	font-size: 0.92rem;
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.7;
	font-weight: 300;
}

/* ===== CREATE CHARACTER SECTION ===== */
#feelin-create {
	background: #15171e;
	position: relative;
	overflow: hidden;
}

#feelin-create::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-create-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(118, 115, 254, 0.08) 0%, transparent 60%);
}

.feelin-create-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.feelin-create-visual {
	position: relative;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feelin-create-card {
	width: 280px;
	background: rgba(21, 23, 30, 0.9);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	animation: feelin-float-slow 7s ease-in-out infinite;
}

.feelin-create-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.feelin-create-card-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.feelin-create-card-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
}

.feelin-create-card-subtitle {
	font-size: 0.8rem;
	color: rgba(240, 239, 255, 0.6);
}

.feelin-create-sliders {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feelin-create-slider {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feelin-create-slider-label {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: rgba(240, 239, 255, 0.6);
}

.feelin-create-slider-track {
	height: 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
}

.feelin-create-slider-fill {
	height: 100%;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	border-radius: 3px;
}

.feelin-create-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.feelin-create-text h2 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.feelin-create-text>p {
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.8;
	font-weight: 300;
	font-size: 1.05rem;
}

.feelin-create-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 16px 0;
}

.feelin-create-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.feelin-create-step-num {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: rgba(118, 115, 254, 0.15);
	border: 1px solid rgba(118, 115, 254, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: #7673fe;
}

.feelin-create-step-text h4 {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 4px;
}

.feelin-create-step-text p {
	font-size: 0.88rem;
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.6;
	margin: 0;
}

/* ===== USER REVIEWS ===== */
#feelin-reviews {
	background: #1d2029;
	position: relative;
	padding: 120px 48px;
}

#feelin-reviews::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.feelin-review-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(118, 115, 254, 0.15);
	border-radius: 24px;
	padding: 32px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.feelin-review-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(118, 115, 254, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 0 40px rgba(118, 115, 254, 0.15);
}

.feelin-review-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
}

.feelin-review-stars svg {
	width: 16px;
	height: 16px;
	fill: #7673fe;
}

.feelin-review-text {
	font-size: 0.95rem;
	color: rgba(240, 239, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 24px;
	font-weight: 300;
}

.feelin-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feelin-review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	flex-shrink: 0;
}

.feelin-review-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.feelin-review-name {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: #f0efff;
}

.feelin-review-role {
	font-size: 0.78rem;
	color: rgba(240, 239, 255, 0.35);
}


/* ===== TESTIMONIALS / STATS ===== */
#feelin-social {
	background: #15171e;
	padding: 80px 48px;
	position: relative;
}

#feelin-social::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-social-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.feelin-social-item {
	text-align: center;
	padding: 32px 16px;
	position: relative;
}

.feelin-social-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background: rgba(118, 115, 254, 0.15);
}

.feelin-social-number {
	font-family: 'Outfit', sans-serif;
	font-size: 2.8rem;
	font-weight: 900;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.feelin-social-label {
	font-size: 0.9rem;
	color: rgba(240, 239, 255, 0.6);
	font-weight: 400;
}

/* ===== CTA SECTION ===== */
#feelin-cta {
	padding: 120px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: #1d2029;
}

#feelin-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(118, 115, 254, 0.15), transparent);
}

.feelin-cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(118, 115, 254, 0.1) 0%, transparent 70%);
}

.feelin-cta-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.feelin-cta-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	line-height: 1.15;
}

.feelin-cta-desc {
	font-size: 1.05rem;
	color: rgba(240, 239, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 40px;
	font-weight: 300;
}

.feelin-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#feelin-footer {
	padding: 48px;
	border-top: 1px solid rgba(118, 115, 254, 0.15);
	background: #15171e;
}

.feelin-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.feelin-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
}

.feelin-footer-logo-icon {
	width: 38px;
	height: 38px;
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, #7673fe 0%, #a78bfa 50%, #c084fc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
}

.feelin-footer-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.feelin-footer-links a {
	font-size: 0.85rem;
	color: rgba(240, 239, 255, 0.6);
	transition: color 0.3s;
}

.feelin-footer-links a:hover {
	color: #f0efff;
}

.feelin-footer-copy {
	font-size: 0.82rem;
	color: rgba(240, 239, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.feelin-immersive-content {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.feelin-immersive-right {
		order: -1;
		display: none;
	}

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

	.feelin-characters-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feelin-showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	#feelin-reviews {
	    padding: 60px 20px;
	}
	.feelin-reviews-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.feelin-social-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.feelin-social-item:nth-child(2)::after {
		display: none;
	}

	.feelin-create-content {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.feelin-create-visual {
		order: -1;
		height: 350px;
	}
}

@media (max-width: 768px) {
	#feelin-nav {
		padding: 0 24px;
	}

	.feelin-nav-links {
		display: none;
	}

	.feelin-nav-mobile-toggle {
		display: flex;
	}

	#feelin-immersive {
		padding: 100px 24px 60px;
	}

	.feelin-section {
		padding: 80px 24px;
	}

	#feelin-showcase {
		padding: 80px 24px;
	}

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

	.feelin-characters-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.feelin-showcase-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.feelin-character-card {
		padding: 24px 16px;
	}

	.feelin-social-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.feelin-social-item::after {
		display: none;
	}

	.feelin-social-number {
		font-size: 2rem;
	}

	.feelin-chat-container {
		max-width: 100%;
	}

	.feelin-orbit-avatar {
		display: none;
	}

	#feelin-cta {
		padding: 80px 24px;
	}

	#feelin-footer {
		padding: 32px 24px;
	}

	.feelin-footer-inner {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}

	.feelin-footer-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.feelin-immersive-actions {
		flex-direction: column;
	}

	.feelin-btn-primary,
	.feelin-btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.feelin-cta-buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.feelin-characters-grid {
		grid-template-columns: 1fr;
		max-width: 280px;
		margin: 0 auto;
	}

	.feelin-social-inner {
		grid-template-columns: 1fr;
	}
}