:root {
	--bg: #0f1724;
	--card: #0b1220;
	--muted: #94a3b8;
	--accent: #6ee7b7;
	--glass: rgba(255, 255, 255, 0.04);
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	background: linear-gradient(180deg, #071029 0%, #071227 100%);
	color: #e6eef6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px
}

.site-header {
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

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

.brand {
	font-weight: 700;
	color: var(--accent);
	text-decoration: none;
	font-size: 1.1rem
}

.nav a {
	color: var(--muted);
	text-decoration: none;
	margin-left: 18px
}

.hero {
	padding: 48px 0
}

.hero-inner {
	display: flex;
	gap: 32px;
	align-items: center
}

.hero-copy {
	flex: 1
}

.hero-media {
	flex: 1;
	display: flex;
	justify-content: center
}

.hero-media img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(2, 6, 23, 0.7)
}

h1 {
	font-size: 2.1rem;
	margin: 0 0 12px
}

.lede {
	color: var(--muted);
	font-size: 1.05rem;
	margin-top: 6px
}

.highlights {
	display: flex;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 16px 0 0
}

.highlights li {
	color: var(--muted);
	font-size: .95rem
}

.btn {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600
}

.btn.primary {
	background: linear-gradient(90deg, var(--accent), #3ee7d0);
	color: #062023
}

.btn.ghost {
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--accent);
	background: transparent;
	margin-left: 8px
}

.features {
	padding: 28px 0
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 18px
}

.card {
	background: var(--card);
	padding: 18px;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6)
}

.card h3 {
	margin-top: 0
}

.demo {
	padding: 36px 0
}

.media-card {
	background: var(--glass);
	padding: 16px;
	border-radius: 12px;
	display: flex;
	justify-content: center
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	padding: 22px 0;
	margin-top: 36px
}

.site-footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.small {
	color: var(--muted);
	font-size: .9rem
}

@media (max-width:900px) {
	.hero-inner {
		flex-direction: column
	}

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

/* Lightbox styles */
.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999
}

.lightbox.open {
	display: flex
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.75);
	backdrop-filter: blur(4px)
}

.lightbox-content {
	position: relative;
	max-width: 97%;
	max-height: 97%;
	padding: 10px;
	border-radius: 12px;
	z-index: 2
}

.lightbox-content img {
	display: block;
	max-width: 100%;
	max-height: 95vh;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(2, 6, 23, 0.7)
}

.lightbox-close {
	position: absolute;
	top: -6px;
	right: -6px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 24px;
	height: 40px;
	width: 40px;
	border-radius: 10px;
	cursor: pointer
}

@media (max-width:520px) {
	.lightbox-content img {
		max-height: 70vh
	}
}