
:root {
	--bg: #07111a; /* deep navy */
	--panel: #0b2430; /* dark panel */
	--muted: #9aa6b0; /* subtle text */
	--accent: green; /* primary brand */
	--glass: rgba(255, 255, 255, 0.04);
	--radius: 14px;
	--maxw: 1100px;
	--container-padding: 24px;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	color-scheme: dark;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	background: #02060a linear-gradient(180deg, #02060a 8vh, var(--bg) 24vh, var(--bg) 70vh, #02060a 100vh);
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none
}

/* Layout */
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px
}

/* NAV */
.navbar {
	position: fixed;
	inset: 0 auto auto 0;
	/* background-color: #071019; */
	left: 0;
	right: 0;
	z-index: 60;
	display: flex;
	justify-content: center
}
.navbar.nav-bg{
	background-color: #071019;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--maxw);
	background: transparent;
	padding: 8px 12px
}

.navbar .brand {
	display: flex;
	align-items: center;
	gap: 12px
}

.navbar .brand img {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.06)
}

.nav-links {
	display: flex;
	gap: 18px;
	align-items: center
}

.nav-links a {
	font-weight: 600;
	color: var(--muted);
	padding: 8px 12px;
	border-radius: 8px
}

.nav-links a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.02)
}

.cta-btn {
	background: var(--accent)!important;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 700;
	color: #fff!important;
	opacity: 1;
	box-shadow: 0 8px 30px rgba(211, 42, 42, 0.12)
}

/* HERO */
.hero {
	padding: 120px 0 60px;
	display: flex;
	align-items: center;
	gap: 40px
}

.hero-left {
	flex: 1;
	max-width: 640px
}

.kicker {
	display: inline-block;
	background: rgba(255, 255, 255, 0.04);
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--muted);
	font-weight: 600;
	font-size: 13px
}

.hero-title {
	font-size: 40px;
	line-height: 1.02;
	margin: 18px 0;
	font-weight: 800;
	color: #fff
}

.hero-lead {
	color: var(--muted);
	font-size: 16px;
	max-width: 48ch
}

.download-group {
	display: flex;
	gap: 12px;
	margin-top: 22px;
	flex-wrap: wrap
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 12px;
	background: var(--glass);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: 0.3s;
}

.store-btn:hover{
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.075);
}

.store-btn img {
	width: 36px;
	height: 36px
}

.store-btn .meta {
	display: flex;
	flex-direction: column;
	line-height: 1
}

.store-btn .meta .small {
	font-size: 12px;
	color: var(--muted)
}

.store-btn .meta .big {
	font-weight: 700
}

/* HERO phone */
.hero-right {
	flex: 0 0 380px;
	display: flex;
	justify-content: center
}

.phone-card {
	width: 320px;
	border-radius: 28px;
	/*background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));*/
	padding: 18px;
	/*border: 1px solid rgba(255, 255, 255, 0.04);*/
	/*box-shadow: 0 20px 50px rgba(2, 6, 10, 0.7)*/
}

.phone-card img {
	width: 100%;
	border-radius: 14px
}

/* FEATURES */
.section {
	padding: 72px 0
}

.section .section-header {
	text-align: center;
	margin-bottom: 28px
}

.features-grid {
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 20px
}

.feature {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	padding: 20px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.03);
	min-height: 140px
}

.feature .icon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.02);
	font-size: 20px
}

.feature h4 {
	margin: 10px 0 6px
}

.feature p {
	color: var(--muted);
	font-size: 14px
}

/* TRUST */
.trust {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.trust .badges {
	display: flex;
	gap: 14px;
	align-items: center
}

.trust .stats {
	display: flex;
	gap: 12px
}

.stat {
	background: rgba(255, 255, 255, 0.02);
	padding: 14px;
	border-radius: 12px;
	min-width: 110px;
	text-align: center
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 18px
}

.faq-item {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	padding: 18px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.03)
}

.faq-item h5 {
	margin: 0 0 8px
}

.faq-item p {
	color: var(--muted);
	font-size: 14px
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns:1fr 360px;
	gap: 24px
}

form .form-row {
	display: flex;
	gap: 12px
}

.form-input {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	background: transparent;
	color: #fff
}

.form-text {
	min-height: 120px
}

.submit {
	background: var(--accent);
	padding: 12px;
	border-radius: 10px;
	border: none;
	color: #fff;
	font-weight: 700
}

/* FOOTER */
footer {
	padding: 28px 0;
	text-align: center;
	color: var(--muted);
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	margin-top: 36px
}

/* Responsive */
@media (max-width: 900px) {
	.features-grid {
		grid-template-columns:1fr
	}

	.hero {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 80px
	}

	.hero-right {
		order: -1;
		align-self: center
	}

	.contact-grid {
		grid-template-columns:1fr
	}

	.faq-grid {
		grid-template-columns:1fr
	}

	.nav-links {
		display: none
	}
}

/* subtle entrance animations */
.fade-up {
	opacity: 0;
	transform: translateY(8px);
	animation: fadeUp .7s cubic-bezier(.2, .9, .2, 1) forwards
}

.stagger-1 {
	animation-delay: 0.06s
}

.stagger-2 {
	animation-delay: 0.12s
}

.stagger-3 {
	animation-delay: 0.18s
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: none
	}
}