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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #1e293b;
	background: #ffffff;
}

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

/* Common */
.emoji-wrapper {
	font-size: inherit;
	display: inline-block
}
.emoji-wrapper .emoji {
	width: 1em;
	height: auto;
}

/* Header */
.header {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav {
	display: flex;
	gap: 40px;
	align-items: center;
}

.nav a {
	text-decoration: none;
	color: #e2e8f0;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav a:hover {
	color: #3b82f6;
}

.cta-header {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-header:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: #cbd5e1;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-highlight {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	padding: 16px 32px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1.1rem;
	display: inline-block;
	margin-bottom: 50px;
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero .emoji-wrapper {
	font-size: 2em;
}

.btn-primary {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
	display: inline-block;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding: 16px 32px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	display: inline-block;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Video Section */
.video-section {
	padding: 100px 0;
	background: white;
}

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

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 20px;
	color: #0f172a;
}
section.dark {
	color: white;
}

section.dark .section-title {
	color: inherit;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

.video-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	background: #000;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-features {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.video-feature {
	padding: 25px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	text-align: center;
}

.video-feature:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-feature-icon {
	font-size: 5em;
	margin-bottom: 12px;
	line-height: 1;
}

.video-feature h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #0f172a;
}

.video-feature p {
	color: #64748b;
	line-height: 1.6;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 80px 0;
}

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

.stat-card {
	background: white;
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.stat-label {
	font-size: 1.1rem;
	color: #64748b;
	font-weight: 600;
}

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

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

.feature-card {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 7.5rem;
	text-align: center;
	line-height: 1;
	margin-bottom: .15em;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #0f172a;
	text-align: center;
  line-height: 1.25;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	margin: 12px 0;
	padding-left: 24px;
	position: relative;
	color: #475569;
	font-weight: 500;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 100px 0;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.step-card {
	text-align: center;
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.step-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.08);
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.5rem;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.step-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.step-description {
	color: #cbd5e1;
	line-height: 1.6;
}

/* Use Cases */
.use-cases {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.use-case-card {
	background: white;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #3b82f6;
}

.use-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.use-case-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	display: flex;
  align-items: center;
  gap: .5em;
  margin-bottom: .25em;
}

.use-case-title .emoji-wrapper {
  font-size: 2em;
  line-height: 1;
}

.use-case-description {
	color: #64748b;
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 24px;
}

.cta-subtitle {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: #e0e7ff;
}

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

.btn-white {
	background: white;
	color: #3b82f6;
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
	display: inline-block;
}

.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
	background: #0f172a;
	color: #cbd5e1;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	color: white;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-section a {
	color: #cbd5e1;
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #3b82f6;
}

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 30px;
	text-align: center;
	color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		padding: 60px 0;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary, .btn-secondary {
		width: 100%;
		max-width: 300px;
	}

	.nav {
		display: none;
	}

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

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.steps-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.video-features {
		flex-direction: row;
		overflow-x: auto;
		gap: 20px;
	}

	.video-feature {
		min-width: 250px;
		flex-shrink: 0;
	}
}