@import url(fontawesome-all.min.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #4a4a5a;
	line-height: 1.7;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.25; }

/* ── Hero ── */
#header {
	background: linear-gradient(135deg, #1a0433 0%, #2d1b69 40%, #4a2c8a 70%, #6b3fa0 100%);
	color: #f0e6ff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	padding: 5em 2em 3em;
	position: relative;
	overflow: hidden;
}

#header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

#header::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 40%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

#header .content {
	text-align: left;
	max-width: 36em;
	position: relative;
	z-index: 1;
}

#header h1 {
	font-size: 3.5em;
	font-weight: 800;
	margin: 0 0 0.3em 0;
	background: linear-gradient(135deg, #fff 0%, #ddd6fe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
}

#header .tagline {
	font-size: 1.35em;
	font-weight: 500;
	color: #c4b5fd;
	margin: 0 0 0.75em;
}

#header p {
	font-size: 1.1em;
	margin: 0 0 1.5em 0;
	color: #b8a9d4;
	line-height: 1.6;
}

.badge-row {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0;
	margin: 0;
}

.badge-row a { border-bottom: none !important; display: block; line-height: 1; }

#google-play-badge {
	width: 172px;
	height: auto;
	transition: transform 0.2s ease;
}

#apple-store-badge {
	width: 152px;
	height: auto;
	transition: transform 0.2s ease;
}

#google-play-badge:hover,
#apple-store-badge:hover { transform: scale(1.06); }

/* Phone mockup */
.image.phone {
	width: 16em;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.image.phone .inner {
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.image.phone img {
	width: 100%;
	border-radius: 0;
}

/* ── Section Shared ── */
.section {
	padding: 5em 2em;
}

.section .inner {
	width: min(64em, calc(100% - 2em));
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 3.5em;
}

.section-header h2 {
	font-size: 2.4em;
	font-weight: 800;
	color: #1a0433;
	margin-bottom: 0.4em;
	letter-spacing: -0.02em;
}

.section-header p {
	font-size: 1.15em;
	color: #6b6b80;
	max-width: 40em;
	margin: 0 auto;
}

.section--alt {
	background: #f8f7fc;
}

/* ── Video Section ── */
.video-section {
	background: #f8f7fc;
	padding: 4em 2em;
}

.video-wrap {
	position: relative;
	width: 100%;
	max-width: 48em;
	margin: 0 auto;
	padding-top: 56.25%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ── Feature Grid ── */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
}

.feature-card {
	background: #fff;
	border: 1px solid #ede9f6;
	border-radius: 1rem;
	padding: 2em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(107, 63, 160, 0.1);
}

.feature-card .icon-circle {
	width: 3.2em;
	height: 3.2em;
	border-radius: 0.75em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	margin-bottom: 1em;
	color: #fff;
}

.icon-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.icon-rose { background: linear-gradient(135deg, #e11d48, #fb7185); }
.icon-amber { background: linear-gradient(135deg, #d97706, #fbbf24); }
.icon-emerald { background: linear-gradient(135deg, #059669, #34d399); }
.icon-blue { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.icon-pink { background: linear-gradient(135deg, #db2777, #f9a8d4); }

.feature-card h3 {
	font-size: 1.2em;
	font-weight: 700;
	color: #1a0433;
	margin-bottom: 0.5em;
}

.feature-card p {
	font-size: 0.95em;
	color: #6b6b80;
	line-height: 1.6;
}

/* ── Spotlight (deep-dive features) ── */
.spotlight-section .inner {
	display: flex;
	flex-direction: column;
	gap: 3.5em;
}

.spotlight {
	display: flex;
	align-items: center;
	gap: 4em;
}

.spotlight:nth-child(even) {
	flex-direction: row-reverse;
}

.spotlight .spot-image {
	width: 18%;
	flex-shrink: 0;
}

.spotlight .spot-image img {
	border-radius: 1.25rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.spotlight .spot-content {
	flex: 1;
}

.spotlight .spot-label {
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #7c3aed;
	margin-bottom: 0.5em;
}

.spotlight .spot-content h3 {
	font-size: 1.8em;
	font-weight: 800;
	color: #1a0433;
	margin-bottom: 0.5em;
	letter-spacing: -0.01em;
}

.spotlight .spot-content p {
	font-size: 1.05em;
	color: #5a5a6e;
	line-height: 1.7;
	margin-bottom: 1em;
}

.spotlight .spot-content ul {
	list-style: none;
	padding: 0;
}

.spotlight .spot-content ul li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.5em;
	font-size: 0.95em;
	color: #5a5a6e;
}

.spotlight .spot-content ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #7c3aed;
	font-size: 0.85em;
}

/* ── Premium Section ── */
.premium-section {
	background: linear-gradient(135deg, #1a0433 0%, #2d1b69 50%, #4a2c8a 100%);
	color: #f0e6ff;
}

.premium-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
	max-width: 52em;
	margin: 0 auto;
}

.premium-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.25rem;
	padding: 2.5em 2em;
	backdrop-filter: blur(10px);
}

.premium-card.featured {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(167, 139, 250, 0.5);
	position: relative;
}

.premium-badge {
	display: inline-block;
	background: linear-gradient(135deg, #7c3aed, #a78bfa);
	color: #fff;
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.3em 0.8em;
	border-radius: 2em;
	margin-bottom: 1em;
}

.premium-card h3 {
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 0.75em;
	color: #fff;
}

.premium-card ul {
	list-style: none;
	padding: 0;
}

.premium-card ul li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.6em;
	font-size: 0.95em;
	color: #c4b5fd;
}

.premium-card ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #a78bfa;
	font-size: 0.8em;
}

.premium-section .section-header h2 {
	color: #fff;
}

.premium-section .section-header p {
	color: #b8a9d4;
}

/* ── Why Choose ── */
.why-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5em 3em;
	max-width: 52em;
	margin: 0 auto;
}

.why-item {
	display: flex;
	gap: 1em;
	align-items: flex-start;
}

.why-item .why-icon {
	width: 2.4em;
	height: 2.4em;
	border-radius: 0.6em;
	background: #f3f0ff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #7c3aed;
	font-size: 0.9em;
}

.why-item h4 {
	font-size: 1em;
	font-weight: 700;
	color: #1a0433;
	margin-bottom: 0.2em;
}

.why-item p {
	font-size: 0.9em;
	color: #6b6b80;
	line-height: 1.5;
}

/* ── FAQ ── */
.faq-list {
	max-width: 44em;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #ede9f6;
	padding: 1.5em 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-item h3 {
	font-size: 1.1em;
	font-weight: 700;
	color: #1a0433;
	margin-bottom: 0.5em;
}

.faq-item p {
	font-size: 0.95em;
	color: #5a5a6e;
	line-height: 1.65;
}

/* ── Footer ── */
#footer {
	background: #1a0433;
	color: #9a8bb5;
	text-align: center;
	padding: 3.5em 2em 2.5em;
}

#footer .icons {
	list-style: none;
	padding: 0;
	margin: 0 0 1em;
}

#footer .icons li {
	display: inline-block;
	padding: 0 1em;
}

#footer .icon {
	color: #9a8bb5;
	border-bottom: none;
	font-size: 1.2em;
	transition: color 0.2s;
}

#footer .icon:hover { color: #c4b5fd; }

#footer .copyright {
	font-size: 0.8em;
	margin: 0.5em 0 0;
	color: #6b5b80;
}

#footer .copyright a {
	color: #9a8bb5;
	border-bottom: 1px dotted rgba(154, 139, 181, 0.4);
}

#footer .copyright a:hover { color: #c4b5fd; }

/* ── CTA Banner ── */
.cta-banner {
	text-align: center;
	padding: 4em 2em;
	background: #f8f7fc;
}

.cta-banner h2 {
	font-size: 2em;
	font-weight: 800;
	color: #1a0433;
	margin-bottom: 0.5em;
}

.cta-banner p {
	font-size: 1.1em;
	color: #6b6b80;
	margin-bottom: 1.5em;
}

.cta-badges {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0;
}

.cta-badges a { border-bottom: none !important; display: block; line-height: 1; }

/* ── Responsive ── */
@media (max-width: 980px) {
	#header {
		min-height: auto;
		padding: 5em 2em 3em;
		flex-direction: column-reverse;
		text-align: center;
	}

	#header .content { text-align: center; max-width: 100%; }
	.badge-row { justify-content: center; }

	.image.phone { width: 12em; }

	.feature-grid { grid-template-columns: repeat(2, 1fr); }

	.premium-cards { grid-template-columns: 1fr; max-width: 28em; }
}

@media (max-width: 736px) {
	#header h1 { font-size: 2.2em; }
	#header .tagline { font-size: 1.1em; }
	#header p { font-size: 1em; }

	.section { padding: 3.5em 1.5em; }
	.section-header h2 { font-size: 1.8em; }

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

	.spotlight {
		flex-direction: column !important;
		text-align: center;
		gap: 2em;
	}

	.spotlight .spot-image { width: min(80%, 20em); }
	.spotlight .spot-content ul li { text-align: left; }

	.why-list { grid-template-columns: 1fr; }

	.badge-row { flex-direction: column; align-items: center; }
	.cta-badges { flex-direction: column; align-items: center; }
}
