/* Landing Test Page Styles - Buyingen AI Platform */
:root{
	--btn-close-fullscreen-dimensions: 48px;
}
/* Chat Section Styles */
.content-wrapper {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.chat-section {
	flex: 0 0 380px;
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
}

.chat-container {
	background: rgba(10, 10, 10, 0.95);
	border: 1px solid rgba(0, 222, 70, 0.3);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 600px;
	box-shadow: 0 10px 40px rgba(0, 222, 70, 0.1);
}

.chat-header {
	padding: 1.25rem;
	background: rgba(0, 222, 70, 0.1);
	border-bottom: 1px solid rgba(0, 222, 70, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chat-header h4 {
	margin: 0;
	color: var(--neon-green);
	font-size: 1.125rem;
	display: flex;
	align-items: center;
}

.btn-close-chat {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	
}

.btn-close-chat:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--neon-green);
}

.chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.chat-message {
	display: flex;
	gap: 0.75rem;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.message-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.assistant-message .message-avatar {
	background: rgba(0, 222, 70, 0.2);
	color: var(--neon-green);
}

.user-message .message-avatar {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}

.message-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	padding: 0.875rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.assistant-message .message-content {
	background: rgba(0, 222, 70, 0.05);
	border-color: rgba(0, 222, 70, 0.2);
}

.message-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	line-height: 1.5;
}

.chat-input-area {
	padding: 1rem;
	background: rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 0.75rem;
}

.chat-input {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.75rem;
	color: white;
	font-size: 0.9rem;
	outline: none;
	
}

.chat-input:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--neon-green);
}

.chat-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.btn-send-message {
	background: var(--neon-green);
	border: none;
	color: black;
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	cursor: pointer;
	
	font-weight: 600;
}

.btn-send-message:hover {
	background: #00ff9d;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 222, 70, 0.3);
}

.btn-send-message:active {
	transform: translateY(0);
}

.agent-creation-wrapper {
	flex: 1;
	min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.content-wrapper {
		flex-direction: column;
	}

	.chat-section {
		flex: 1;
		width: 100%;
		position: relative;
		top: 0;
		max-height: 500px;
	}
}

:root {
	--neon-green: #00ff7f;
	--black: #000000;
	--dark-green: #001a0f;
	--white: #ffffff;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;

	/* Create Agent Variables */
	--primary-color: #00de46;
	--card-bg: #0a0a0a;
	--card-body-bg: #121212;
	--border-color: #333;
	--text-color: #ffffff;
	--text-secondary: #9ca3af;
	--input-bg: #0a0a0a;
	--search-box-bg: #1a1a1a;
	--button-secondary-bg: #2a2a2a;
	--button-secondary-hover-bg: #3a3a3a;
	--button-secondary-hover-border: #444;
	--icon-color: #00de46;
	--placeholder-color: #666;
}

[data-theme="light"] {
	--text-color: #111827; /* light mode için yeni renk */
	--input-bg:#ffffff;
	--border-color: #c6c3c3;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
		"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--black);
	color: var(--white);
	overflow-x: hidden;
}

/* Light mode adjustments */
[data-theme="light"] body {
	background-color: var(--background);
	color: var(--text-color);
}

[data-theme="light"] .hero-section,
[data-theme="light"] .why-section,
[data-theme="light"] .features-section,
[data-theme="light"] .how-it-works-section,
[data-theme="light"] .cta-section,
[data-theme="light"] .app-creation-section {
	background: var(--background);
	color: var(--text-color);
}

[data-theme="light"] .hero-bg-gradient {
	background: linear-gradient(to bottom right, #ffffff, #f9fafb, #f3f4f6);
}

[data-theme="light"] .section-bg {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

[data-theme="light"] .section-bg-black {
	background: #f9fafb;
}

[data-theme="light"] .section-bg-gradient {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Typography */
h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: var(--white);
}

h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--white);
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	color: var(--white);
}

p {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
	color: var(--white);
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3 {
	color: #111827 !important;
}

[data-theme="light"] p {
	color: #374151 !important;
}

.text-neon {
	color: var(--neon-green);
}

/* Glow effects */
.glow-neon {
	box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.glow-neon-strong {
	box-shadow: 0 0 30px rgba(0, 255, 127, 0.8);
}

/* Mobile Menu - hidden on this page, use header's menu */
.mobile-menu-btn,
.mobile-menu {
	display: none !important;
}

.btn-primary {
	padding: 0.5rem 1.5rem;
	background: var(--neon-green);
	color: var(--background);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary:hover {
	background: rgba(0, 255, 127, 0.9);
	box-shadow: 0 0 30px rgba(0, 255, 127, 0.8);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.btn-outline {
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 2px solid var(--neon-green);
	color: var(--text-color);
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	
}

.btn-outline:hover {
	background: rgba(0, 255, 127, 0.1);
}

.btn-outline-cta {
	padding: 1.25rem 2.5rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	border: 2px solid var(--neon-green);
	color: var(--text-color);
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	
	min-width: 280px;
}

.btn-outline-cta:hover {
	background: rgba(0, 255, 127, 0.1);
	box-shadow: 0 0 30px rgba(0, 255, 127, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
	display: block;
	background: none;
	border: none;
	color: var(--white);
	padding: 0.5rem;
	cursor: pointer;
}

@media (min-width: 768px) {
	.mobile-menu-btn {
		display: none;
	}
}

.menu-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	position: relative;
}

.menu-icon::before,
.menu-icon::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--white);
	left: 0;
}

.menu-icon::before {
	top: -8px;
}

.menu-icon::after {
	top: 8px;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(0, 255, 127, 0.2);
}

.mobile-menu.active {
	display: flex;
}

.mobile-nav-link {
	color: var(--gray-300);
	text-decoration: none;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.mobile-nav-link:hover {
	color: var(--neon-green);
}

.mobile-btn {
	width: 100%;
	text-align: center;
}

/* Scroll Animations */
.scroll-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.scroll-fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.scroll-scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

.scroll-delay-1 {
	transition-delay: 0.1s;
}

.scroll-delay-2 {
	transition-delay: 0.2s;
}

.scroll-delay-3 {
	transition-delay: 0.3s;
}

.scroll-delay-4 {
	transition-delay: 0.4s;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 80px;
}

.hero-bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom right,
		var(--black),
		var(--black),
		var(--dark-green)
	);
	opacity: 0.8;
}

.hero-bg-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.1;
}

.glow-orb {
	position: absolute;
	border-radius: 50%;
	background: var(--neon-green);
	filter: blur(100px);
}

.glow-orb-1 {
	top: 80px;
	left: 80px;
	width: 288px;
	height: 288px;
	animation: pulse 3s ease-in-out infinite;
}

.glow-orb-2 {
	bottom: 80px;
	right: 80px;
	width: 384px;
	height: 384px;
	animation: pulse 3s ease-in-out infinite;
	animation-delay: 1s;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.5;
	}
}

.hero-container {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	margin: 0 auto;
	padding: 5rem 3rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 255, 127, 0.3);
	border-radius: 9999px;
	width: fit-content;
}

.hero-badge svg {
	width: 16px;
	height: 16px;
	color: var(--neon-green);
}

.hero-badge span {
	font-size: 0.875rem;
	color: var(--gray-300);
}

.hero-title {
	color: var(--white);
}

.hero-subtitle {
	color: var(--gray-300);
	max-width: 640px;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.hero-cta {
		flex-direction: row;
	}
}

.hero-image {
	position: relative;
}

.hero-image-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 255, 127, 0.2);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	padding: 2rem;
}

.hero-img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.floating-node {
	position: absolute;
	background: rgba(0, 255, 127, 0.2);
	backdrop-filter: blur(12px);
	border-radius: 50%;
	border: 1px solid rgba(0, 255, 127, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-node-1 {
	top: 40px;
	right: 40px;
	width: 64px;
	height: 64px;
	animation: float-1 3s ease-in-out infinite;
}

.floating-node-2 {
	bottom: 40px;
	left: 40px;
	width: 48px;
	height: 48px;
	animation: float-2 4s ease-in-out infinite;
}

@keyframes float-1 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes float-2 {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(20px);
	}
}

.node-inner {
	width: 32px;
	height: 32px;
	background: var(--neon-green);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.floating-node-2 .node-inner {
	width: 24px;
	height: 24px;
}

/* Why Section */
.why-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.section-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		var(--black),
		var(--dark-green),
		var(--black)
	);
}

.glow-orb-large {
	position: absolute;
	width: 384px;
	height: 384px;
	background: var(--neon-green);
	border-radius: 50%;
	filter: blur(150px);
	opacity: 0.1;
}

.glow-orb-large-1 {
	top: 50%;
	left: 25%;
}

.glow-orb-large-2 {
	top: 33.333%;
	right: 25%;
}

.section-container {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 3rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	color: var(--white);
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--gray-300);
	max-width: 768px;
	margin: 0 auto;
}

.glass-panel {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(0, 255, 127, 0.2);
	border-radius: 24px;
	padding: 3rem;
	overflow: hidden;
}

.glass-panel-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom right,
		rgba(0, 255, 127, 0.05),
		transparent
	);
	pointer-events: none;
}

.feature-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.feature-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: scale(1.1);
}

.feature-icon-box {
	width: 80px;
	height: 80px;
	background: rgba(0, 255, 127, 0.1);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 255, 127, 0.3);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.feature-item:hover .feature-icon-box {
	background: rgba(0, 255, 127, 0.2);
}

.feature-icon-box svg {
	color: var(--neon-green);
}

.feature-label {
	font-size: 0.875rem;
	color: var(--gray-300);
	text-align: center;
}

/* Connection Visualization */
.connection-viz {
	position: relative;
	height: 128px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.connection-flow {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.connection-node {
	backdrop-filter: blur(12px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.connection-node-primary {
	width: 64px;
	height: 64px;
	background: rgba(0, 255, 127, 0.2);
	border: 2px solid var(--neon-green);
	animation: scale-pulse 2s ease-in-out infinite;
}

.connection-node-users {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(0, 255, 127, 0.3);
}

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

.connection-node-inner {
	width: 32px;
	height: 32px;
	background: var(--neon-green);
	border-radius: 50%;
}

.connection-node-users svg {
	color: var(--neon-green);
}

.connection-dots {
	display: flex;
	gap: 0.5rem;
}

.connection-dot {
	width: 8px;
	height: 8px;
	background: var(--neon-green);
	border-radius: 50%;
	animation: dot-fade 1.5s ease-in-out infinite;
}

.connection-dot:nth-child(2) {
	animation-delay: 0.2s;
}

.connection-dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes dot-fade {
	0%,
	100% {
		opacity: 0.2;
	}
	50% {
		opacity: 1;
	}
}

/* Features Section */
.features-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.section-bg-black {
	position: absolute;
	inset: 0;
	background: var(--black);
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.features-column {
	display: flex;
	flex-direction: column;
}

.features-header {
	margin-bottom: 2rem;
}

.features-subheader {
	color: var(--gray-400);
	font-size: 0.875rem;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 255, 127, 0.2);
	border-radius: 16px;
	padding: 1.5rem;
	
}

.feature-card:hover {
	transform: scale(1.02);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 255, 127, 0.4);
}

.feature-card-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 255, 127, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-card:hover .feature-card-icon {
	background: rgba(0, 255, 127, 0.2);
}

.feature-card-icon svg {
	color: var(--neon-green);
}

.feature-card-content {
	flex: 1;
}

.feature-card-title {
	color: var(--white);
	margin-bottom: 0.5rem;
}

.feature-card-desc {
	color: var(--gray-400);
	font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works-section {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.section-bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		var(--black),
		var(--dark-green),
		var(--black)
	);
}

.section-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: var(--neon-green);
	border-radius: 50%;
	filter: blur(200px);
	opacity: 0.05;
}

.journey-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.journey-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.journey-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(0, 255, 127, 0.2);
	border-radius: 24px;
	padding: 2rem;
	overflow: hidden;
}

.journey-card-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom right,
		rgba(0, 255, 127, 0.05),
		transparent
	);
	pointer-events: none;
}

.journey-content {
	position: relative;
}

.journey-header {
	margin-bottom: 2rem;
}

.journey-subheader {
	color: var(--gray-400);
	font-size: 0.875rem;
}

.journey-steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.journey-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.journey-step-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 255, 127, 0.2);
	backdrop-filter: blur(4px);
	border: 2px solid var(--neon-green);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.journey-step-icon svg {
	color: var(--neon-green);
}

.journey-step-content {
	flex: 1;
	padding-top: 0.5rem;
}

.journey-step-number {
	font-size: 0.75rem;
	color: var(--neon-green);
}

.journey-step-title {
	color: var(--white);
	margin-bottom: 0.25rem;
}

.journey-step-desc {
	color: var(--gray-400);
	font-size: 0.875rem;
}

.journey-step:not(:last-child) .journey-step-icon::after {
	content: "";
	position: absolute;
	top: 60px;
	left: 23px;
	width: 2px;
	height: 48px;
	background: linear-gradient(to bottom, var(--neon-green), transparent);
}

.journey-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(0, 255, 127, 0.1);
	border: 1px solid rgba(0, 255, 127, 0.3);
	border-radius: 9999px;
	margin-top: 2rem;
	animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.journey-badge svg {
	width: 16px;
	height: 16px;
	color: var(--neon-green);
}

.journey-badge span {
	font-size: 0.875rem;
	color: var(--neon-green);
}

/* CTA Section */
.cta-section {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom right,
		var(--black),
		var(--dark-green),
		rgba(0, 255, 127, 0.2)
	);
}

.cta-bg-image {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	background-image: url("https://images.unsplash.com/photo-1644088379091-d574269d422f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxhYnN0cmFjdCUyMHRlY2glMjBiYWNrZ3JvdW5kfGVufDF8fHx8MTc2NDU5MzE0NXww&ixlib=rb-4.1.0&q=80&w=1080");
	background-size: cover;
	background-position: center;
}

.cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: var(--neon-green);
	border-radius: 50%;
	filter: blur(150px);
	opacity: 0.2;
}

.cta-container {
	position: relative;
	z-index: 10;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 3rem;
}

.cta-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(32px);
	border: 1px solid rgba(0, 255, 127, 0.3);
	border-radius: 24px;
	padding: 3rem;
	text-align: center;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.cta-card {
		padding: 4rem;
	}
}

.cta-card-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom right,
		rgba(0, 255, 127, 0.1),
		transparent,
		rgba(0, 255, 127, 0.05)
	);
	pointer-events: none;
}

.cta-content {
	position: relative;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(0, 255, 127, 0.2);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 255, 127, 0.5);
	border-radius: 9999px;
	margin-bottom: 2rem;
	animation: cta-badge-float 2s ease-in-out infinite;
}

@keyframes cta-badge-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.cta-badge svg {
	width: 16px;
	height: 16px;
	color: var(--neon-green);
}

.cta-badge span {
	font-size: 0.875rem;
	color: var(--neon-green);
}

.cta-title {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.cta-subtitle {
	color: var(--gray-300);
	max-width: 672px;
	margin: 0 auto 3rem;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.cta-buttons {
		flex-direction: row;
	}
}

.cta-decorative {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	opacity: 0.4;
}

.cta-dot {
	width: 8px;
	height: 8px;
	background: var(--neon-green);
	border-radius: 50%;
	animation: cta-dot-float 2s ease-in-out infinite;
}

.cta-dot:nth-child(2) {
	animation-delay: 0.2s;
}

.cta-dot:nth-child(3) {
	animation-delay: 0.4s;
}

.cta-dot:nth-child(4) {
	animation-delay: 0.6s;
}

.cta-dot:nth-child(5) {
	animation-delay: 0.8s;
}

@keyframes cta-dot-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* CTA Floating Nodes */
.cta-floating-nodes {
	position: relative;
	margin-top: 4rem;
	display: flex;
	justify-content: center;
	gap: 3rem;
}

.cta-node {
	background: rgba(0, 255, 127, 0.1);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 255, 127, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-node-1 {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	animation: cta-node-float-1 4s ease-in-out infinite;
}

.cta-node-2 {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	animation: cta-node-float-2 5s ease-in-out infinite;
}

.cta-node-3 {
	width: 96px;
	height: 96px;
	border-radius: 16px;
	animation: cta-node-float-3 4.5s ease-in-out infinite;
}

@keyframes cta-node-float-1 {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(5deg);
	}
}

@keyframes cta-node-float-2 {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(-5deg);
	}
}

@keyframes cta-node-float-3 {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(5deg);
	}
}

.cta-node-inner {
	background: var(--neon-green);
	box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.cta-node-1 .cta-node-inner {
	width: 40px;
	height: 40px;
	border-radius: 8px;
}

.cta-node-2 .cta-node-inner {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.cta-node-3 .cta-node-inner {
	width: 48px;
	height: 48px;
	border-radius: 12px;
}

/* Footer */
.footer {
	position: relative;
	background: var(--black);
	border-top: 1px solid rgba(0, 255, 127, 0.2);
	overflow: hidden;
}

[data-theme="light"] .footer {
	background: var(--background);
	border-top: 1px solid rgba(0, 222, 70, 0.2);
}

.footer-glow {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 400px;
	background: var(--neon-green);
	border-radius: 50%;
	filter: blur(200px);
	opacity: 0.05;
}

.footer-container {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	margin: 0 auto;
	padding: 4rem 3rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	width: fit-content;
	transition: transform 0.3s ease;
}

.footer-logo:hover {
	transform: scale(1.05);
}

.footer-desc {
	color: var(--gray-400);
	margin-bottom: 1.5rem;
	max-width: 384px;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 255, 127, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.social-link:hover {
	background: rgba(0, 255, 127, 0.1);
	border-color: rgba(0, 255, 127, 0.4);
	transform: scale(1.2) translateY(-2px);
}

.social-link svg {
	color: var(--neon-green);
}

.footer-links-group {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--neon-green);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 255, 127, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-copyright {
	color: var(--gray-500);
	font-size: 0.875rem;
}

.footer-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-dot {
	width: 8px;
	height: 8px;
	background: var(--neon-green);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

.footer-status span {
	color: var(--gray-500);
	font-size: 0.875rem;
}

/* App Creation Section */
.app-creation-section {
	position: relative;
	padding: 0 0 6rem;
	overflow: hidden;
	background: linear-gradient(to bottom, var(--black), var(--dark-green));
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.scroll-hint a:hover {
	opacity: 0.8;
}

.scroll-hint i {
	font-size: 1.5rem;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

html {
	scroll-behavior: smooth;
}

.agent-creation-wrapper {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	position: relative;
	
}

[data-theme="light"] .agent-creation-wrapper {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.agent-creation-wrapper:hover {
	border-color: rgba(0, 255, 127, 0.2);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 127, 0.1);
}

/* Request Section */
.request-section {
	background: rgba(0, 0, 0, 0.5) !important;
	border: 2px solid rgba(0, 255, 127, 0.25) !important;
	border-radius: 16px !important;
	padding: 2rem !important;
	box-shadow: 0 8px 32px rgba(0, 255, 127, 0.1);
}

[data-theme="light"] .request-section {
	background: rgba(255, 255, 255, 0.95) !important;
	border: 2px solid rgba(0, 222, 70, 0.3) !important;
	box-shadow: 0 8px 32px rgba(0, 222, 70, 0.1);
}

.request-input-wrapper {
	position: relative;
}

.request-input {
	font-size: 1rem;
	line-height: 1.6;
	padding: 1.25rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	color: var(--text-color);
	border-radius: 12px;
	
	width: 100%;
	resize: vertical;
}

[data-theme="light"] .request-input {
	background: var(--input-bg);
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--text-color);
}

.request-input:focus {
	border-color: rgba(0, 255, 127, 0.5);
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
	outline: none;
}

.request-input::placeholder {
	color: var(--placeholder-color);
}

.btn-generate {
	background: var(--neon-green);
	border: none;
	color: #000000;
	padding: 1rem 2rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	margin-top: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 255, 127, 0.3);
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-generate:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 255, 127, 0.4);
	background: #00ff8c;
}

.btn-generate:active:not(:disabled) {
	transform: translateY(0);
}

.btn-generate:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Form Section */
.form-section {
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(0, 255, 127, 0.15);
	border-radius: 16px;
	padding: 2rem;
	
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .form-section {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 222, 70, 0.2);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.form-section:hover {
	border-color: rgba(0, 255, 127, 0.3);
	box-shadow: 0 8px 32px rgba(0, 255, 127, 0.15);
}

.section-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(0, 255, 127, 0.2);
}

.section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	letter-spacing: -0.01em;
	justify-content: center;
}

.section-title i {
	color: var(--neon-green);
}

.section-description {
	color: var(--gray-400);
	margin-bottom: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

[data-theme="light"] .section-description {
	color: var(--text-secondary);
}

.section-content {
	padding-top: 1rem;
}

/* Summary Section */
.summary-section,
.additional-info-section {
	height: 100%;
	min-height: 400px;
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(0, 255, 127, 0.15);
	border-radius: 16px;
	padding: 2rem;
}

[data-theme="light"] .summary-section,
[data-theme="light"] .additional-info-section {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 222, 70, 0.2);
}

.summary-section:hover,
.additional-info-section:hover {
	border-color: rgba(0, 255, 127, 0.3);
}

.summary-content {
	min-height: 300px;
	padding: 1.5rem;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	line-height: 1.7;
	color: var(--text-color);
	backdrop-filter: blur(10px);
}

[data-theme="light"] .summary-content {
	background: var(--input-bg);
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--text-color);
}

.additional-info-content {
	min-height: 300px;
	padding: 1rem;
	background-color: transparent;
	border-radius: 12px;
	line-height: 1.7;
}

.loading-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	color: var(--text-secondary);
}

/* Workflow Section */
.workflow-section {
	margin-top: 3rem;
	background: rgba(0, 0, 0, 0.5) !important;
	border: 2px solid rgba(0, 255, 127, 0.2) !important;
	border-radius: 16px !important;
	padding: 2rem !important;
	box-shadow: 0 8px 32px rgba(0, 255, 127, 0.15);
}

[data-theme="light"] .workflow-section {
	background: rgba(255, 255, 255, 0.95) !important;
	border: 2px solid rgba(0, 222, 70, 0.25) !important;
	box-shadow: 0 8px 32px rgba(0, 222, 70, 0.1);
}

.workflow-section:hover {
	border-color: rgba(0, 255, 127, 0.35) !important;
	box-shadow: 0 12px 40px rgba(0, 255, 127, 0.2);
}

.btn-collapse {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-color);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.btn-collapse:hover {
	background: var(--neon-green);
	border-color: var(--neon-green);
	color: #000;
}

.btn-collapse i {
	transition: transform 0.3s ease;
}

.btn-collapse.expanded i {
	transform: rotate(180deg);
}

.workflow-collapsible {
	
	overflow: hidden;
}

.workflow-content {
	padding: 2rem 0;
	position: relative;
}

/* Info Source Items */
.info-source-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	margin-bottom: 1rem;
	
	backdrop-filter: blur(10px);
}

[data-theme="light"] .info-source-item {
	background: var(--input-bg);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-source-item:hover {
	border-color: rgba(0, 255, 127, 0.4);
	background: rgba(0, 0, 0, 0.6);
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0, 255, 127, 0.1);
}

.info-source-image {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(0, 255, 127, 0.1);
	border: 1px solid rgba(0, 255, 127, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-source-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.info-source-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-source-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.35rem;
}

.info-source-description {
	font-size: 0.875rem;
	color: var(--gray-400);
	line-height: 1.5;
	margin: 0;
}

/* Bootstrap Grid Support */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col-lg-6 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 992px) {
	.col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.mb-4 {
	margin-bottom: 1.5rem;
}

.d-none {
	display: none !important;
}

.mt-3 {
	margin-top: 1rem;
}

.me-2 {
	margin-right: 0.5rem;
}

/* Toast & Utility Classes */
.spinner-border {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: text-bottom;
	border: 0.25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}

.text-primary {
	color: var(--neon-green) !important;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Toast Notifications */
.toast-container {
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 1rem;
	z-index: 10000;
}

.toast {
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	min-width: 300px;
}

.toast-header {
	border-bottom: 1px solid var(--border-color);
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
}

.toast-header.bg-success {
	background-color: #00de46 !important;
	color: #000 !important;
}

.toast-header.bg-danger {
	background-color: #ff6b6b !important;
	color: #fff !important;
}

.toast-body {
	padding: 1rem;
	color: var(--text-color);
}

.btn-close {
	background: transparent;
	border: none;
	opacity: 0.5;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
}

.btn-close-white {
	filter: brightness(0) invert(1);
}

/* Tool Popup */
.tool-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background-color: var(--card-bg);
	border: 2px solid var(--neon-green);
	border-radius: 16px;
	padding: 2rem;
	max-width: 500px;
	width: 90%;
	z-index: 10000;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
}

[data-theme="light"] .tool-popup {
	background-color: #ffffff;
	border: 2px solid var(--primary-color);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tool-popup.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.tool-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	
}

.tool-popup-overlay.show {
	opacity: 1;
	visibility: visible;
}

.tool-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border-color);
}

.tool-popup-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}

.tool-popup-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: linear-gradient(135deg, var(--neon-green) 0%, #00b838 100%);
	color: #000;
}

.tool-popup-title h4 {
	margin: 0;
	font-size: 1.4rem;
	color: var(--text-color);
}

.tool-popup-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-secondary);
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	
}

.tool-popup-close:hover {
	background-color: var(--search-box-bg);
	color: var(--text-color);
}

.tool-popup-body {
	color: var(--text-secondary);
	line-height: 1.8;
}

.tool-popup-body p {
	margin-bottom: 1rem;
}

.tool-popup-body strong {
	color: var(--text-color);
	display: block;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

.tool-popup-features {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.tool-popup-features li {
	padding: 0.5rem 0 0.5rem 1.5rem;
	position: relative;
	color: var(--gray-300);
	font-size: 0.9rem;
}

.tool-popup-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--neon-green);
	font-weight: bold;
}

.tool-popup-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 1rem;
	text-transform: uppercase;
}

.tool-popup-badge.api {
	background: rgba(76, 154, 255, 0.2);
	color: #4c9aff;
	border: 1px solid rgba(76, 154, 255, 0.3);
}

.tool-popup-badge.tool {
	background: rgba(0, 222, 70, 0.2);
	color: var(--neon-green);
	border: 1px solid rgba(0, 222, 70, 0.3);
}

.tool-popup-badge.database {
	background: rgba(255, 152, 0, 0.2);
	color: #ff9800;
	border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Tree Diagram for Workflow */
.tree-diagram-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 1rem;
	gap: 0;
}

.tree-node-wrapper {
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.tree-node {
	background: linear-gradient(
		135deg,
		var(--card-bg) 0%,
		rgba(0, 222, 70, 0.05) 100%
	);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	padding: 1rem;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tree-node {
	background: linear-gradient(135deg, #ffffff 0%, rgba(0, 222, 70, 0.05) 100%);
	border: 2px solid rgba(0, 0, 0, 0.1);
}

.tree-node:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 222, 70, 0.15);
	border-color: var(--neon-green);
}

.tree-node-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--neon-green) 0%, #00b838 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 222, 70, 0.3);
}

.tree-node-content {
	flex: 1;
}

.tree-node-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 0.25rem;
}

.tree-node-type .badge {
	font-size: 0.7rem;
	padding: 0.25rem 0.5rem;
	background-color: var(--neon-green);
	color: #000;
	border-radius: 4px;
}

.tree-node-expand {
	width: 28px;
	height: 28px;
	background-color: var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	flex-shrink: 0;
}

.tree-node:hover .tree-node-expand {
	background-color: var(--neon-green);
	color: #000;
}

.tree-connector {
	width: 2px;
	height: 40px;
	background: linear-gradient(
		180deg,
		var(--neon-green) 0%,
		rgba(0, 222, 70, 0.3) 100%
	);
	margin: 0.5rem 0;
}

/* Tree Node Details */
.tree-node-details {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 255, 127, 0.15);
	border-radius: 12px;
	margin-top: 0.5rem;
}

.tree-node-details.show {
	max-height: 1000px;
	opacity: 1;
	padding: 1.5rem;
	margin-top: 1rem;
}

.node-detail-section {
	margin-bottom: 1.25rem;
}

.node-detail-section:last-child {
	margin-bottom: 0;
}

.node-detail-section h5 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--neon-green);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
}

.node-detail-section p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gray-300);
	margin: 0;
}

.node-tools-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tool-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	background: rgba(0, 255, 127, 0.1);
	border: 1px solid rgba(0, 255, 127, 0.3);
	border-radius: 6px;
	font-size: 0.8rem;
	color: var(--text-color);
	cursor: pointer;
}

.tool-chip:hover {
	background: rgba(0, 255, 127, 0.2);
	border-color: var(--neon-green);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 255, 127, 0.2);
}

.tool-chip i {
	color: var(--neon-green);
}

.tree-node.active {
	border-color: var(--neon-green);
	box-shadow: 0 6px 16px rgba(0, 222, 70, 0.2);
}

.tree-node-expand i {
	transition: transform 0.3s ease;
}

.tree-node-expand i.rotated {
	transform: rotate(180deg);
}

/* Tree Branches */
.tree-branches {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tree-junction {
	width: 40px;
	height: 40px;
	background: rgba(0, 255, 127, 0.15);
	border: 2px solid var(--neon-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--neon-green);
	font-size: 1.2rem;
	margin: 0.5rem 0;
}

.tree-children {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.tree-child {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tree-branch-line {
	width: 2px;
	height: 30px;
	background: var(--branch-color, var(--neon-green));
	margin: 0.5rem 0;
}

.tree-child-node {
	background: rgba(0, 0, 0, 0.4);
	border: 2px solid var(--branch-color, var(--neon-green));
	border-radius: 12px;
	padding: 0.75rem 1rem;
	width: 100%;
	max-width: 450px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	
}

.tree-child-node:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 222, 70, 0.15);
}

.tree-child-node.active {
	box-shadow: 0 6px 16px rgba(0, 222, 70, 0.25);
}

.tree-child-icon {
	width: 32px;
	height: 32px;
	background: var(--branch-color, var(--neon-green));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 1rem;
	flex-shrink: 0;
}

.tree-child-title {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-color);
}

.tree-child-expand {
	width: 24px;
	height: 24px;
	background-color: var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	
	flex-shrink: 0;
	font-size: 0.8rem;
}

.tree-child-node:hover .tree-child-expand {
	background-color: var(--branch-color, var(--neon-green));
	color: #000;
}

.tree-child-expand i.rotated {
	transform: rotate(180deg);
}

/* Conditional Node Styling */
.tree-node.conditional {
	background: linear-gradient(
		135deg,
		var(--card-bg) 0%,
		rgba(255, 165, 0, 0.05) 100%
	);
}

.tree-node-icon.conditional-icon {
	position: relative;
}

.conditional-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 18px;
	height: 18px;
	background: #ff9800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	color: #000;
	border: 2px solid var(--card-bg);
}

/* Position Fixed Classes */
.position-fixed {
	position: fixed !important;
}

.bottom-0 {
	bottom: 0 !important;
}

.end-0 {
	right: 0 !important;
}

.p-3 {
	padding: 1rem !important;
}

/* Responsive Typography */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	p {
		font-size: 1rem;
	}

	.agent-creation-wrapper {
		padding: 1.5rem;
	}

	.form-section {
		padding: 1.5rem;
	}

	.request-section {
		padding: 1.5rem !important;
	}

	.workflow-section {
		padding: 1.5rem !important;
	}

	.summary-section,
	.additional-info-section {
		padding: 1.5rem;
		margin-bottom: 1rem;
	}
}

/* ========================================
   LIGHT MODE COMPREHENSIVE SUPPORT
   ======================================== */

/* Glass Panels & Cards */
[data-theme="light"] .glass-panel {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .feature-card:hover {
	border-color: #10b981;
	box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2),
		0 4px 12px rgba(16, 185, 129, 0.1);
	transform: translateY(-2px);
}

[data-theme="light"] .journey-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .cta-card {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
	border: 1px solid #e5e7eb;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
		0 6px 20px rgba(16, 185, 129, 0.08);
}

/* Agent Creation & Forms */
[data-theme="light"] .agent-creation-wrapper {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .agent-creation-wrapper:hover {
	border-color: #d1d5db;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
		0 6px 20px rgba(16, 185, 129, 0.06);
}

[data-theme="light"] .request-section {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
	border: 2px solid #10b981 !important;
	box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15),
		0 4px 12px rgba(16, 185, 129, 0.08);
}

[data-theme="light"] .form-section {
	background: #ffffff;
	border: 2px solid #e5e7eb;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .form-section:hover {
	border-color: #10b981;
	box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15),
		0 4px 12px rgba(16, 185, 129, 0.08);
}

/* Summary & Additional Info */
[data-theme="light"] .summary-section,
[data-theme="light"] .additional-info-section {
	background: #ffffff;
	border: 2px solid #e5e7eb;
}

[data-theme="light"] .summary-section:hover,
[data-theme="light"] .additional-info-section:hover {
	border-color: #10b981;
	box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}

[data-theme="light"] .summary-content {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	color: var(--text-color);
}

/* Workflow Section */
[data-theme="light"] .workflow-section {
	background: #ffffff !important;
	border: 2px solid #e5e7eb !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
		0 4px 12px rgba(16, 185, 129, 0.06);
}

[data-theme="light"] .workflow-section:hover {
	border-color: #10b981 !important;
	box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15),
		0 6px 20px rgba(16, 185, 129, 0.08);
}

/* Input Fields */
[data-theme="light"] .request-input {
	background: #ffffff;
	border: 2px solid #e5e7eb;
	color: var(--text-color);
}

[data-theme="light"] .request-input:focus {
	border-color: #10b981;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1),
		0 4px 12px rgba(16, 185, 129, 0.08);
}

[data-theme="light"] .request-input::placeholder {
	color: #6b7280 !important;
}

[data-theme="light"] .tool-popup-body {
	color: #374151 !important;
}

[data-theme="light"] .tool-popup-title h4 {
	color: #111827 !important;
}

/* Info Source Items */
[data-theme="light"] .info-source-item {
	background: #ffffff;
	border: 1px solid #e5e7eb;
}

[data-theme="light"] .info-source-item:hover {
	border-color: #10b981;
	background: #f9fafb;
	box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12),
		0 2px 8px rgba(16, 185, 129, 0.06);
}

[data-theme="light"] .info-source-image {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #10b981;
}

[data-theme="light"] .info-source-title {
	color: #111827 !important;
}

[data-theme="light"] .info-source-description {
	color: #4b5563 !important;
}

[data-theme="light"] .tree-node-title {
	color: #111827 !important;
}

[data-theme="light"] .node-detail-section h5 {
	color: #111827 !important;
}

[data-theme="light"] .node-detail-section p {
	color: #4b5563 !important;
}

/* Tree Diagram */
[data-theme="light"] .tree-node {
	background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
	border: 2px solid #e5e7eb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .tree-node:hover {
	border-color: #10b981;
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2),
		0 3px 10px rgba(16, 185, 129, 0.1);
}

[data-theme="light"] .tree-node-details {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

[data-theme="light"] .tree-child-node {
	background: #ffffff;
	border: 1px solid #e5e7eb;
}

[data-theme="light"] .tree-child-node:hover {
	border-color: #10b981;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

[data-theme="light"] .btn-collapse {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	color: var(--text-color);
}

[data-theme="light"] .btn-collapse:hover {
	background: #10b981;
	border-color: #10b981;
	color: #ffffff;
}

/* Tool Popup */
[data-theme="light"] .tool-popup {
	background-color: #ffffff;
	border: 2px solid #10b981;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15),
		0 12px 32px rgba(16, 185, 129, 0.1);
}

[data-theme="light"] .tool-popup-header {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .tool-popup-close {
	color: var(--text-secondary);
}

[data-theme="light"] .tool-popup-close:hover {
	background-color: var(--search-box-bg);
	color: var(--text-color);
}

/* Section Text Colors */
[data-theme="light"] .section-title {
	color: #111827 !important;
}

[data-theme="light"] .section-subtitle {
	color: #374151 !important;
}

[data-theme="light"] .section-description {
	color: #4b5563 !important;
}

[data-theme="light"] .hero-subtitle {
	color: #374151 !important;
}

[data-theme="light"] .feature-label {
	color: #111827 !important;
}

[data-theme="light"] .feature-card-title {
	color: #111827 !important;
}

[data-theme="light"] .feature-card-desc {
	color: #4b5563 !important;
}

[data-theme="light"] .journey-subheader {
	color: #4b5563 !important;
}

[data-theme="light"] .journey-step-title {
	color: #111827 !important;
}

[data-theme="light"] .journey-step-desc {
	color: #4b5563 !important;
}

[data-theme="light"] .journey-step-number {
	color: #6b7280 !important;
}

[data-theme="light"] .cta-title {
	color: #111827 !important;
}

[data-theme="light"] .cta-subtitle {
	color: #374151 !important;
}

/* Footer */
[data-theme="light"] .footer {
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
}

[data-theme="light"] .footer-desc {
	color: #4b5563 !important;
}

[data-theme="light"] .footer-links a {
	color: #4b5563 !important;
}

[data-theme="light"] .footer-links a:hover {
	color: #10b981 !important;
}

[data-theme="light"] .footer-copyright,
[data-theme="light"] .footer-status span {
	color: #6b7280 !important;
}

[data-theme="light"] .footer-heading {
	color: #111827 !important;
}

/* Hero Badge & Badges */
[data-theme="light"] .hero-badge {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #10b981;
}

[data-theme="light"] .cta-badge {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #10b981;
}

[data-theme="light"] .journey-badge {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #10b981;
}

/* Loading Placeholder */
[data-theme="light"] .loading-placeholder {
	color: #4b5563 !important;
}

[data-theme="light"] .hero-badge span {
	color: #047857 !important;
}

[data-theme="light"] .cta-badge span {
	color: #047857 !important;
}

[data-theme="light"] .journey-badge span {
	color: #047857 !important;
}

/* Feature Icon Box */
[data-theme="light"] .feature-icon-box {
	background: linear-gradient(135deg, var(--neon-green) 0%, #00b838 100%);
}

/* Hero Image Card */
[data-theme="light"] .hero-image-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Connection Nodes */
[data-theme="light"] .connection-node {
	background: rgba(0, 222, 70, 0.1);
	border: 1px solid rgba(0, 222, 70, 0.3);
}

/* Floating Nodes */
[data-theme="light"] .floating-node {
	background: rgba(0, 222, 70, 0.1);
	border: 1px solid rgba(0, 222, 70, 0.3);
}

[data-theme="light"] .cta-node {
	background: rgba(0, 222, 70, 0.1);
	border: 1px solid rgba(0, 222, 70, 0.3);
}

/* Scroll hint link */
[data-theme="light"] #scrollToPlatformInfo {
	color: #059669 !important;
}

[data-theme="light"] #scrollToPlatformInfo span {
	color: #047857 !important;
}

[data-theme="light"] .text-neon {
	color: #059669 !important;
}

/* Tool Chips */
[data-theme="light"] .tool-chip {
	background: #f0fdf4;
	border: 1px solid #10b981;
	color: var(--text-color);
}

[data-theme="light"] .tool-chip:hover {
	background: #dcfce7;
	border-color: #059669;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

/* Section Header Border */
[data-theme="light"] .section-header {
	border-bottom: 2px solid #e5e7eb;
}

/* Social Links */
[data-theme="light"] .social-link {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

[data-theme="light"] .social-link:hover {
	background: #ecfdf5;
	border-color: #10b981;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Glow orbs - reduce opacity in light mode */
[data-theme="light"] .glow-orb {
	opacity: 0.05;
}

[data-theme="light"] .glow-orb-large {
	opacity: 0.03;
}

[data-theme="light"] .footer-glow,
[data-theme="light"] .cta-glow,
[data-theme="light"] .section-glow {
	opacity: 0.02;
}

/* Construction Banner Animation */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.construction-banner {
	position: relative;
	overflow: hidden;
}

.construction-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 193, 7, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Discovery Hero Section Base Styles */
.discovery-hero-section {
	background: rgba(0, 0, 0, 0.95);
}

.discovery-card {
	padding: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(16, 185, 129, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	backdrop-filter: blur(10px);
	background: linear-gradient(
		135deg,
		rgba(0, 255, 163, 0.05) 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
}

.discovery-card h2 {
	color: #fff;
}

.discovery-card p {
	color: rgba(255, 255, 255, 0.7);
}

/* Discovery Hero Section Light Mode Styles */
[data-theme="light"] .discovery-hero-section {
	background: #f9fafb;
}

[data-theme="light"] .discovery-card {
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.05) 0%,
		rgba(255, 255, 255, 0.95) 100%
	);
	border: 1px solid rgba(16, 185, 129, 0.15);
	box-shadow: 0 12px 48px rgba(16, 185, 129, 0.08), 0 6px 20px rgba(16, 185, 129, 0.06);
}

[data-theme="light"] .discovery-card h2 {
	color: #1f2937;
}

[data-theme="light"] .discovery-card p {
	color: rgba(31, 41, 55, 0.7);
}

/* Contact Section Light Mode Styles */
[data-theme="light"] .contact-section {
	background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

[data-theme="light"] .contact-wrapper {
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 0.05) 0%,
		rgba(255, 255, 255, 0.95) 100%
	) !important;
	border: 1px solid rgba(16, 185, 129, 0.2) !important;
	box-shadow: 0 20px 60px rgba(16, 185, 129, 0.08) !important;
}

[data-theme="light"] .contact-header h2 {
	color: #1f2937 !important;
}

[data-theme="light"] .contact-header h2 span {
	color: #10b981 !important;
}

[data-theme="light"] .contact-header p {
	color: rgba(31, 41, 55, 0.8) !important;
}

[data-theme="light"] .contact-header .badge-style,
[data-theme="light"] .contact-header div[style*="rgba(0, 255, 163, 0.1)"] {
	background: rgba(16, 185, 129, 0.1) !important;
}

[data-theme="light"] .contact-header div[style*="rgba(0, 255, 163, 0.1)"] span {
	color: #10b981 !important;
}

[data-theme="light"] #contactForm label {
	color: #374151 !important;
}

[data-theme="light"] #contactForm label span {
	color: #10b981 !important;
}

[data-theme="light"] #contactForm .form-control {
	background: #ffffff !important;
	border: 1px solid #e5e7eb !important;
	color: #1f2937 !important;
}

[data-theme="light"] #contactForm .form-control:focus {
	background: #ffffff !important;
	border-color: #10b981 !important;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
	outline: none;
}

[data-theme="light"] #contactForm .form-control::placeholder {
	color: #9ca3af !important;
}

[data-theme="light"] #contactForm p {
	color: rgba(107, 114, 128, 0.8) !important;
}

[data-theme="light"] .scroll-hint a {
	color: #10b981 !important;
}

.example-prompt-btn {
	color: var(--text-color) !important;
}


.discovery-logo:hover {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 6px 20px rgba(0, 255, 127, 0.5));
}

.example-prompt-card {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1.25rem;
	
	cursor: pointer;
	width: 100%;
	text-align: left;
}

.example-prompt-card:hover {
	background: rgba(0, 255, 163, 0.08);
	border-color: rgba(0, 255, 163, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 255, 163, 0.15);
}

.example-prompt-card:active {
	transform: translateY(0);
}

.example-prompt-btn {
	background: rgba(0, 255, 163, 0.05);
	border: 1px solid rgba(0, 255, 163, 0.2);
	color: rgba(255, 255, 255, 0.85);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	cursor: pointer;
	
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.example-prompt-btn:hover {
	background: rgba(0, 255, 163, 0.12);
	border-color: rgba(0, 255, 163, 0.4);
	color: #fff;
	transform: translateY(-1px);
}

.example-prompt-btn i {
	color: var(--neon-green);
}

/* Fullscreen Chat Styles */
.fullscreen-chat-section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--background);
	z-index: 10000;
	animation: fadeIn 0.4s ease-out;
}

[data-theme="light"] .fullscreen-chat-section {
	background: #FFFFFF;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fullscreen-chat-container {
	width: 100%;
	height: calc(100% - 72px);
	margin-top: 72px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.btn-close-fullscreen {
	position: absolute;
	top: 1.7rem;
	right: 1.5rem;
	width: var(--btn-close-fullscreen-dimensions);
	height: var(--btn-close-fullscreen-dimensions);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--text-color);
	font-size: 1.25rem;
	cursor: pointer;
	
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

[data-theme="light"] .btn-close-fullscreen {
	background: rgba(46, 46, 46, 0.05);
	border: 1px solid rgba(46, 46, 46, 0.2);
}

.btn-close-fullscreen:hover {
	background: rgba(255, 59, 48, 0.2);
	border-color: rgba(255, 59, 48, 0.5);
	transform: scale(1.05);
}

.chat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100%;
	gap: 0;
}

/* Left Side - Chat Area */
.chat-area {
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.4);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem;
	overflow: hidden;
}

[data-theme="light"] .chat-area {
	background: rgba(46, 46, 46, 0.03);
	border-right: 1px solid rgba(46, 46, 46, 0.1);
}

.chat-area-header {
	margin-bottom: 2rem;
}

.chat-area-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.chat-area-title i {
	font-size: 1.75rem;
	color: var(--neon-green);
}

.chat-area-title h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin: 0;
}

.chat-area-subtitle {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin: 0;
	padding-left: 2.5rem;
}

.chat-messages-area {
	flex: 1;
	overflow-y: auto;
	margin-bottom: 1.5rem;
	padding-right: 0.5rem;
}

.chat-messages-area::-webkit-scrollbar {
	width: 8px;
}

.chat-messages-area::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}

.chat-messages-area::-webkit-scrollbar-thumb {
	background: rgba(0, 255, 163, 0.3);
	border-radius: 4px;
}

.chat-messages-area::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 255, 163, 0.5);
}

.chat-message {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.message-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--neon-green),
		rgba(0, 255, 163, 0.5)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.message-avatar i {
	font-size: 1.25rem;
	color: #000;
}

.message-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1rem;
}

[data-theme="light"] .message-content {
	background: rgba(46, 46, 46, 0.05);
	border: 1px solid rgba(46, 46, 46, 0.1);
}

.message-content p {
	margin: 0;
	color: var(--text-color);
	font-size: 0.95rem;
	line-height: 1.6;
}

.user-message {
	flex-direction: row-reverse;
}

.user-message .message-avatar {
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.8),
		rgba(139, 92, 246, 0.8)
	);
}

.user-message .message-content {
	background: rgba(0, 255, 163, 0.1);
	border-color: rgba(0, 255, 163, 0.2);
}

[data-theme="light"] .user-message .message-content {
	background: rgba(0, 255, 163, 0.15);
	border-color: rgba(0, 255, 163, 0.3);
}

.chat-input-area-fullscreen {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1.25rem;
}

[data-theme="light"] .chat-input-area-fullscreen {
	background: rgba(46, 46, 46, 0.03);
	border: 1px solid rgba(46, 46, 46, 0.1);
}

.chat-input-fullscreen {
	width: 100%;
	background: var(--input-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1rem;
	color: var(--text-color);
	font-size: 0.95rem;
	font-family: inherit;
	resize: none;
	
	height: 72px;
}

.chat-input-fullscreen:focus {
	outline: none;
	border-color: var(--neon-green);
	box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.1);
}

.chat-input-fullscreen::placeholder {
	color: var(--placeholder-color);
}

.btn-send-fullscreen {
	align-self: flex-end;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--neon-green);
	color: #000;
	border: none;
	border-radius: 12px;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	
}

.btn-send-fullscreen:hover {
	background: rgba(0, 255, 163, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 255, 163, 0.4);
}

.btn-send-fullscreen:active {
	transform: translateY(0);
}

.btn-send-fullscreen i {
	font-size: 1.125rem;
}

/* Right Side - App Preview */
.app-preview-area {
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.2);
	padding: 2rem;
	overflow: hidden;
}

[data-theme="light"] .app-preview-area {
	background: rgba(46, 46, 46, 0.02);
}

.app-preview-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.app-preview-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.app-preview-title i {
	font-size: 1.75rem;
	color: var(--neon-green);
}

.app-preview-title h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin: 0;
}

.preview-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(0, 255, 163, 0.1);
	border: 1px solid rgba(0, 255, 163, 0.3);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	margin-right:calc(var(--btn-close-fullscreen-dimensions) + 10px);
}

.status-dot {
	width: 8px;
	height: 8px;
	background: var(--neon-green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

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

.status-text {
	color: var(--neon-green);
	font-size: 0.875rem;
	font-weight: 500;
}

.app-preview-content {
	flex: 1;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	overflow-y: auto;
}

[data-theme="light"] .app-preview-content {
	background: rgba(46, 46, 46, 0.02);
	border: 1px solid rgba(46, 46, 46, 0.1);
}

.app-preview-content::-webkit-scrollbar {
	width: 8px;
}

.app-preview-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}

.app-preview-content::-webkit-scrollbar-thumb {
	background: rgba(0, 255, 163, 0.3);
	border-radius: 4px;
}

.preview-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
}

.empty-state-icon {
	width: 80px;
	height: 80px;
	background: rgba(0, 255, 163, 0.1);
	border: 2px solid rgba(0, 255, 163, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.empty-state-icon i {
	font-size: 2.5rem;
	color: var(--neon-green);
}

.preview-empty-state h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 0.75rem;
}

.preview-empty-state p {
	color: var(--text-secondary);
	font-size: 1rem;
	max-width: 400px;
	line-height: 1.6;
}

/* Preview Sections (Similar to form sections) */
.preview-section {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 0.5rem;
	animation: slideInRight 0.4s ease-out;
}

[data-theme="light"] .preview-section {
	background: rgba(46, 46, 46, 0.03);
	border: 1px solid rgba(46, 46, 46, 0.1);
}

.preview-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .preview-section-header {
	border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.preview-section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--neon-green);
	margin: 0;
}

.preview-section-title i {
	font-size: 1.25rem;
}

.preview-section-content {
	color: var(--text-color);
	font-size: 0.95rem;
	line-height: 1.6;
}

[data-theme="light"] .preview-section-content {
	opacity: 0.9;
}

.preview-collapsible {
	overflow: hidden;
	
}

.btn-collapse-preview {
	background: transparent;
	border: none;
	color: var(--neon-green);
	font-size: 1.25rem;
	cursor: pointer;
	transition: transform 0.3s ease;
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-collapse-preview:hover {
	transform: scale(1.1);
}

.btn-collapse-preview.open {
	transform: rotate(180deg);
}

.loading-placeholder-small {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	gap: 0.75rem;
}

.loading-placeholder-small p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin: 0;
}

/* Data Source Items */
.preview-section-content{
	display: flex !important;
	flex-direction: column !important;
	gap: 0.5rem !important;
}
.data-source-item {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	
}

[data-theme="light"] .data-source-item {
	background: rgba(46, 46, 46, 0.04);
	border: 1px solid rgba(46, 46, 46, 0.15);
}

.data-source-item:hover {
	background: rgba(0, 255, 163, 0.05);
	border-color: rgba(0, 255, 163, 0.2);
}

[data-theme="light"] .data-source-item:hover {
	background: rgba(0, 255, 163, 0.08);
	border-color: rgba(0, 255, 163, 0.3);
}

.data-source-icon {
	width: 36px;
	height: 36px;
	background: rgba(0, 255, 163, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.data-source-icon i {
	font-size: 1.125rem;
	color: var(--neon-green);
}

.data-source-info {
	flex: 1;
}

.data-source-name {
	font-weight: 600;
	color: var(--text-color);
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.data-source-desc {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin: 0;
}

/* Workflow Step Items */
.workflow-step-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	position: relative;
}

.workflow-step-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 40px;
	width: 2px;
	height: calc(100% - 20px);
	background: linear-gradient(
		180deg,
		rgba(0, 255, 163, 0.3) 0%,
		rgba(0, 255, 163, 0.05) 100%
	);
}

.workflow-step-number {
	width: 36px;
	height: 36px;
	background: linear-gradient(
		135deg,
		var(--neon-green),
		rgba(0, 255, 163, 0.7)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #000;
	font-size: 0.875rem;
	flex-shrink: 0;
	z-index: 1;
}

.workflow-step-details {
	flex: 1;
	padding-top: 0.25rem;
}

.workflow-step-title {
	font-weight: 600;
	color: var(--text-color);
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.workflow-step-description {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
}

/* App Feature Card */
.app-feature-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	animation: slideInRight 0.4s ease-out;
}

[data-theme="light"] .app-feature-card {
	background: rgba(46, 46, 46, 0.03);
	border: 1px solid rgba(46, 46, 46, 0.1);
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.app-feature-card h4 {
	color: var(--neon-green);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.app-feature-card p {
	color: var(--text-color);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

[data-theme="light"] .app-feature-card p {
	opacity: 0.9;
}

.app-feature-card ul {
	margin: 0.75rem 0 0 0;
	padding-left: 1.25rem;
	color: var(--text-secondary);
}

.app-feature-card li {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
	.chat-grid {
		grid-template-columns: 1fr;
	}

	.chat-area {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	[data-theme="light"] .chat-area {
		border-bottom: 1px solid rgba(46, 46, 46, 0.1);
	}
}
