:root {
	--bg: #fefefe;
	--panel: #f8f9fa;
	--glass: rgba(255, 255, 255, 0.8);
	--card: rgba(0, 0, 0, 0.02);
	--accent: #10b981;
	--accent-2: #f59e0b;
	--text: #1e293b;
	--muted: #64748b;
	--border: rgba(0, 0, 0, 0.08);
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	--grid: rgba(0, 0, 0, 0.03);
	font-family: "Space Grotesk", "Manrope", system-ui, -apple-system, sans-serif;
}

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

body {
	background-color: var(--bg);
	background-image: 
		linear-gradient(var(--grid) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: -1px -1px;
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	padding-bottom: 3rem;
}

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

.hero {
	padding: 3.5rem clamp(1.5rem, 3vw, 3rem) 2.5rem;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(16, 185, 129, 0.03), rgba(245, 158, 11, 0.03), transparent);
	pointer-events: none;
}

.topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--text);
}

.logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.brand-name {
	font-size: 1.1rem;
}

.pill {
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid var(--border);
	padding: 0.6rem 1rem;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.9rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(1.5rem, 2.5vw, 2.5rem);
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(2.6rem, 4vw, 3.6rem);
	margin-bottom: 1rem;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 0.75rem;
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	border-radius: 999px;
}

.lede {
	font-size: 1.1rem;
	color: var(--muted);
	max-width: 620px;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin: 1.6rem 0 1.2rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1.4rem;
	border-radius: 12px;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
	background: linear-gradient(135deg, #10b981, #3b82f6);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.btn.ghost {
	background: rgba(0, 0, 0, 0.03);
	border-color: var(--border);
	color: var(--text);
}

.btn.ghost:hover {
	border-color: rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
	background: rgba(0, 0, 0, 0.05);
}

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

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	color: var(--muted);
	font-size: 0.9rem;
}

.hero-badges span {
	padding: 0.5rem 0.8rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-visual .glass-card {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.2rem;
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
}

.hero-gif {
	width: 100%;
	display: block;
	border-radius: 14px;
	border: 1px solid var(--border);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.caption {
	margin-top: 0.75rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.section {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
}

.section-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 2rem;
}

.section-header h2 {
	font-size: clamp(2rem, 3vw, 2.6rem);
	margin-bottom: 0.5rem;
}

.intro {
	color: var(--muted);
	font-size: 1.05rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.feature-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(16, 185, 129, 0.3);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: rgba(16, 185, 129, 0.1);
	margin-bottom: 0.8rem;
	font-size: 1.4rem;
}

.feature-card h3 {
	margin-bottom: 0.35rem;
}

.feature-card p {
	color: var(--muted);
}

.story {
	padding-top: 1rem;
}

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

.story-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.5rem;
	box-shadow: var(--shadow);
}

.story-card.secondary {
	background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.06));
}

.story-card h3 {
	margin-bottom: 0.8rem;
}

.story-list {
	list-style: none;
	display: grid;
	gap: 0.7rem;
	color: var(--muted);
	font-size: 0.98rem;
}

.story-list li {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
}

.story-text {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.chip {
	padding: 0.45rem 0.8rem;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.04);
	border: 1px solid var(--border);
	color: var(--text);
	font-size: 0.9rem;
}

.footer {
	text-align: center;
	color: var(--muted);
	padding: 2rem 1.5rem 0;
}

.footer a {
	color: var(--accent);
	border-bottom: 1px solid transparent;
}

.footer a:hover {
	border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
	.hero {
		padding-top: 2.5rem;
	}

	.topline {
		flex-direction: column;
		gap: 0.8rem;
		align-items: flex-start;
	}

	.hero-actions {
		width: 100%;
	}

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

	.hero-badges {
		gap: 0.4rem;
	}
}

/* Carousel Styles */
.carousel-container {
	position: relative;
	overflow: visible;
}

.carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
}

.carousel-track {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-slide.active {
	opacity: 1;
	z-index: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	color: var(--text);
	font-size: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
	background: rgba(16, 185, 129, 0.15);
	border-color: var(--accent);
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
	left: 10px;
}

.carousel-btn.next {
	right: 10px;
}

.carousel-indicators {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.indicator:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: scale(1.2);
}

.indicator.active {
	background: var(--accent);
	width: 24px;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
	
	.carousel-btn.prev {
		left: 5px;
	}
	
	.carousel-btn.next {
		right: 5px;
	}
	
	.carousel-indicators {
		bottom: 10px;
		padding: 6px 12px;
		gap: 6px;
	}
	
	.indicator {
		width: 8px;
		height: 8px;
	}
	
	.indicator.active {
		width: 20px;
	}
}
