:root {
	/* Ploutos Studios Brand */
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #e0e7ff;
	--accent: #10b981;
	--accent-dark: #059669;

	/* Ploutos Budget Brand */
	--budget-primary: #0f4e5b;
	--budget-primary-light: #3a7985;
	--budget-accent: #ff7100;
	--budget-bg: #e6f0f2;

	/* Capacitly Brand */
	--calendar-primary: #1ecbe1;
	--calendar-primary-light: #16a3bd;
	--calendar-accent: #e1341e;
	--calendar-bg: #e3f8fb;

	/* Grays */
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
}

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

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
		sans-serif;
	color: var(--gray-800);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

@keyframes pulse-subtle {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

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

.animate-fade-up {
	opacity: 0;
	animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
	animation: fadeIn 0.4s ease-out forwards;
}

.animate-float {
	animation: float 3s ease-in-out infinite;
}

.animate-pulse-subtle {
	animation: pulse-subtle 2s ease-in-out infinite;
}

.delay-1 {
	animation-delay: 0.1s;
}
.delay-2 {
	animation-delay: 0.2s;
}
.delay-3 {
	animation-delay: 0.3s;
}
.delay-4 {
	animation-delay: 0.4s;
}
.delay-5 {
	animation-delay: 0.5s;
}

.text-gradient {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--budget-primary) 50%,
		var(--calendar-primary) 100%
	);
	background-size: 200% 200%;
	animation: gradient-shift 5s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 100;
	border-bottom: 1px solid var(--gray-100);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}

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

.logo span {
	font-size: 22px;
	font-weight: 800;
	color: var(--gray-900);
}

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

.nav-links a {
	text-decoration: none;
	color: var(--gray-600);
	font-weight: 500;
	transition: color 0.2s;
	position: relative;
}

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

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s;
}

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

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: background 0.2s;
}

.mobile-menu-btn:hover {
	background: var(--gray-100);
}

.mobile-menu-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gray-700);
	border-radius: 2px;
	transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
	padding: 16px 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
	display: block;
	padding: 12px 0;
	color: var(--gray-700);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
	border-bottom: none;
}

/* Hero Section */
.hero {
	padding: 140px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		135deg,
		#f8fafc 0%,
		var(--primary-light) 50%,
		var(--calendar-bg) 100%
	);
}

.hero-bg::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(99, 102, 241, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero-bg::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(30, 203, 225, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-700);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	margin-bottom: 24px;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse-subtle 2s infinite;
}

.hero h1 {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--gray-900);
}

.hero p {
	font-size: clamp(18px, 2.5vw, 22px);
	color: var(--gray-600);
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
	background: white;
	color: var(--gray-700);
	border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

/* Stats Section */
.stats {
	padding: 60px 0;
	background: white;
	border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item h3 {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
}

.stat-item p {
	color: var(--gray-500);
	font-weight: 500;
}

/* Products Section */
.products {
	padding: 100px 0;
	background: var(--gray-50);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 16px;
}

.section-header p {
	font-size: 18px;
	color: var(--gray-600);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	gap: 32px;
}

.product-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--gray-100);
	transition: all 0.3s;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card.budget:hover {
	border-color: var(--budget-primary-light);
}

.product-card.calendar:hover {
	border-color: var(--calendar-primary);
}

.product-header {
	padding: 40px 40px 0;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.product-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.product-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-header-text h3 {
	font-size: 28px;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.product-header-text .tagline {
	font-size: 16px;
	color: var(--gray-500);
	font-weight: 500;
}

.product-body {
	padding: 24px 40px 40px;
}

.product-body p {
	font-size: 17px;
	color: var(--gray-600);
	margin-bottom: 24px;
	line-height: 1.7;
}

.product-features {
	list-style: none;
	margin-bottom: 32px;
}

.product-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	color: var(--gray-700);
	font-weight: 500;
}

.product-features li svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}

.product-features li.budget svg {
	color: var(--budget-primary);
}

.product-features li.calendar svg {
	color: var(--calendar-primary);
}

.product-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-budget {
	background: linear-gradient(
		135deg,
		var(--budget-primary) 0%,
		var(--budget-primary-light) 100%
	);
	color: white;
	box-shadow: 0 4px 15px rgba(15, 78, 91, 0.3);
}

.btn-budget:hover {
	background: linear-gradient(
		135deg,
		var(--budget-primary-light) 0%,
		var(--budget-primary) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(15, 78, 91, 0.4);
}

.btn-calendar {
	background: linear-gradient(
		135deg,
		var(--calendar-primary) 0%,
		var(--calendar-primary-light) 100%
	);
	color: white;
	box-shadow: 0 4px 15px rgba(30, 203, 225, 0.3);
}

.btn-calendar:hover {
	background: linear-gradient(
		135deg,
		var(--calendar-primary-light) 0%,
		var(--calendar-primary) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 203, 225, 0.4);
}

/* Features Section */
.features {
	padding: 100px 0;
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.feature-card {
	padding: 32px;
	border-radius: 20px;
	background: var(--gray-50);
	border: 1px solid var(--gray-100);
	transition: all 0.3s;
}

.feature-card:hover {
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary);
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 12px;
}

.feature-card p {
	color: var(--gray-600);
	line-height: 1.6;
}

/* About Section */
.about {
	padding-top: 100px;
	padding-bottom: 100px;
	background: linear-gradient(135deg, var(--gray-900) 0%, #1e1b4b 100%);
	color: white;
}

.about-content {
	max-width: 700px;
	margin: 0 auto;
}

.about-content h2 {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: 1.2;
}

.about-content p {
	font-size: 18px;
	color: var(--gray-300);
	margin-bottom: 20px;
	line-height: 1.7;
}

.about-visual {
	position: relative;
}

.about-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 40px;
}

.about-card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.about-card-icon img {
	width: 200px;
	height: 100%;
}

.about-card h3 {
	font-size: 24px;
	font-weight: 700;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.about-stat {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
}

.about-stat h4 {
	font-size: 32px;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 4px;
}

.about-stat p {
	font-size: 14px;
	color: var(--gray-400);
	margin: 0;
}

/* CTA Section */
.cta {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--primary-light) 0%,
		var(--calendar-bg) 100%
	);
	text-align: center;
}

.cta h2 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 16px;
}

.cta p {
	font-size: 20px;
	color: var(--gray-600);
	max-width: 600px;
	margin: 0 auto 40px;
}

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

/* Footer */
footer {
	background: var(--gray-900);
	color: var(--gray-400);
	padding: 80px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand .logo {
	margin-bottom: 20px;
}

.footer-brand p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 24px;
}

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

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--primary);
}

.social-links svg {
	width: 20px;
	height: 20px;
	color: white;
}

.footer-column h4 {
	font-size: 16px;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
}

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

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

.footer-column a {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 15px;
	transition: color 0.2s;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid var(--gray-800);
	padding-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	font-size: 14px;
	text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

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

	.hero {
		padding: 120px 0 80px;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.product-header {
		padding: 32px 24px 0;
		flex-wrap: wrap;
	}

	.product-body {
		padding: 20px 24px 32px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}

	.product-cta {
		flex-direction: column;
	}

	.cta-buttons {
		flex-direction: column;
		width: 100%;
		padding: 0 20px;
	}
}
