@font-face {
	font-family: "Manrope";
	src: url("assets/fonts/manrope.woff2") format("woff2");
	font-weight: 200 800;
	font-display: swap;
}

@font-face {
	font-family: "Unbounded";
	src: url("assets/fonts/unbounded-500.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Unbounded";
	src: url("assets/fonts/unbounded-700.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}

:root {
	--ink: #08090d;
	--surface: rgba(255, 255, 255, 0.035);
	--surface-2: rgba(255, 255, 255, 0.06);
	--line: rgba(255, 255, 255, 0.08);
	--line-2: rgba(255, 255, 255, 0.14);
	--text: #eceef3;
	--muted: #9aa2b1;
	--faint: #646b7b;
	--accent: #8b7bff;
	--accent-2: #5e8bff;
	--gold: #f2c35b;
	--green: #45d69a;
	--r: 16px;
	--r-lg: 24px;
	--display: "Unbounded", "Segoe UI", sans-serif;
	--body: "Manrope", "Segoe UI", sans-serif;
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--page: 1180px;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(1100px 620px at 78% -8%, rgba(94, 139, 255, 0.14), transparent 62%),
		radial-gradient(900px 500px at 8% 104%, rgba(139, 123, 255, 0.1), transparent 60%),
		var(--ink);
	color: var(--text);
	font: 500 16px/1.65 var(--body);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3 {
	font-family: var(--display);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
}

p {
	margin: 0;
}

.wrap {
	width: min(100% - 40px, var(--page));
	margin-inline: auto;
}

.nav {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(14px);
	background: rgba(8, 9, 13, 0.72);
	border-bottom: 1px solid var(--line);
}

.nav .wrap {
	display: flex;
	align-items: center;
	gap: 22px;
	height: 68px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	font: 700 19px var(--display);
}

.brand span.mark {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--accent), var(--accent-2));
	box-shadow: 0 8px 22px -10px rgba(139, 123, 255, 0.9);
	font-size: 15px;
	color: #fff;
}

.brand .word {
	white-space: nowrap;
}

.brand em {
	font-style: normal;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nav nav {
	display: flex;
	gap: 6px;
	margin-left: auto;
	align-items: center;
}

.nav nav a {
	padding: 9px 14px;
	border-radius: 10px;
	color: var(--muted);
	font-weight: 600;
	font-size: 15px;
	transition: color 160ms var(--ease), background 160ms var(--ease);
}

.nav nav a:hover {
	color: var(--text);
	background: var(--surface-2);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 46px;
	padding: 0 22px;
	border-radius: 12px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 15px;
	border: 1px solid var(--line-2);
	background: var(--surface-2);
	color: var(--text);
	cursor: pointer;
	transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.1);
}

.btn.primary {
	border-color: transparent;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	box-shadow: 0 16px 36px -16px rgba(111, 118, 255, 0.95);
}

.btn.big {
	height: 56px;
	padding: 0 30px;
	font-size: 16px;
}

.btn.ghost {
	background: transparent;
}

.btn.waiting {
	opacity: 0.55;
	cursor: default;
	box-shadow: none;
}

.hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}

.hero .art {
	position: absolute;
	inset: 0;
	background: url("assets/img/hero.webp") center 42% / cover no-repeat;
	opacity: 0.85;
}

.hero .art::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--ink) 4%, rgba(8, 9, 13, 0.82) 42%, rgba(8, 9, 13, 0.25) 78%),
		linear-gradient(0deg, var(--ink) 2%, transparent 45%);
}

.hero .wrap {
	position: relative;
	padding: 108px 0 96px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 6px 13px;
	border-radius: 999px;
	border: 1px solid var(--line-2);
	background: rgba(8, 9, 13, 0.6);
	color: var(--muted);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 10px var(--green);
}

.hero h1 {
	margin: 22px 0 18px;
	font-size: clamp(42px, 7vw, 76px);
}

.hero p.lead {
	max-width: 540px;
	color: var(--muted);
	font-size: clamp(16px, 2vw, 19px);
}

.hero .cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hero .small {
	margin-top: 14px;
	color: var(--faint);
	font-size: 13.5px;
}

.strip {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 38px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 14.5px;
}

.strip b {
	color: var(--text);
}

section {
	padding: 88px 0;
}

.section-head {
	max-width: 620px;
	margin-bottom: 44px;
}

.section-head h2 {
	font-size: clamp(28px, 4vw, 40px);
	margin-bottom: 14px;
}

.section-head p {
	color: var(--muted);
}

.grid {
	display: grid;
	gap: 18px;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px;
}

.card h3 {
	font-size: 17px;
	margin-bottom: 10px;
}

.card p {
	color: var(--muted);
	font-size: 15px;
}

.card .tagline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 16px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(69, 214, 154, 0.12);
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.card .tagline.violet {
	background: rgba(139, 123, 255, 0.14);
	color: #b3a8ff;
}

.shots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.shots figure {
	margin: 0;
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface);
}

.shots figcaption {
	padding: 12px 16px 14px;
	color: var(--muted);
	font-size: 14px;
}

.looks {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.look {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line);
	background: radial-gradient(circle at 50% 30%, #1b2030, #0c0e14 72%);
	text-align: center;
	transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.look:hover {
	transform: translateY(-4px);
	border-color: var(--line-2);
}

.look img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.look span {
	display: block;
	padding: 11px 8px 13px;
	font-size: 13.5px;
	font-weight: 700;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: center;
}

.split img,
.split video {
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
}

.list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.list li {
	display: flex;
	gap: 12px;
	color: var(--muted);
}

.list li svg {
	flex: none;
	margin-top: 3px;
	color: var(--green);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.price {
	position: relative;
	text-align: center;
	padding: 26px 18px 22px;
	border-radius: var(--r);
	border: 1px solid var(--line);
	background: var(--surface);
}

.price.best {
	border-color: rgba(242, 195, 91, 0.45);
	background: linear-gradient(180deg, rgba(242, 195, 91, 0.1), rgba(255, 255, 255, 0.02));
}

.price .ribbon {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f7d77c, #e3a93a);
	color: #2d2105;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.price .amount {
	font: 700 26px var(--display);
	color: var(--gold);
}

.price .cost {
	margin-top: 6px;
	font-weight: 700;
}

.price .bonus {
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	min-height: 20px;
}

.plus {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	align-items: center;
	border-radius: var(--r-lg);
	border: 1px solid rgba(242, 195, 91, 0.3);
	background:
		radial-gradient(420px 220px at 92% 0%, rgba(242, 195, 91, 0.18), transparent 70%),
		linear-gradient(160deg, #191821, #101117);
	padding: 34px;
}

.plus h3 {
	font-size: 26px;
	color: var(--gold);
	margin-bottom: 12px;
}

.faq details {
	border-bottom: 1px solid var(--line);
	padding: 20px 0;
}

.faq summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 17px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	color: var(--accent);
	font-size: 22px;
	line-height: 1;
}

.faq details[open] summary::after {
	content: "\2013";
}

.faq p {
	margin-top: 12px;
	color: var(--muted);
	max-width: 760px;
}

.notice {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px 20px;
	border-radius: var(--r);
	border: 1px solid rgba(242, 195, 91, 0.3);
	background: rgba(242, 195, 91, 0.07);
	color: #f0dcae;
	font-size: 14.5px;
}

.notice svg {
	flex: none;
	margin-top: 2px;
	color: var(--gold);
}

.download-box {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 26px;
	align-items: center;
	padding: 30px;
	border-radius: var(--r-lg);
	border: 1px solid var(--line-2);
	background: linear-gradient(140deg, rgba(139, 123, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.download-box h2 {
	font-size: 24px;
	margin-bottom: 8px;
}

.download-box p {
	color: var(--muted);
}

.steps {
	counter-reset: step;
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.steps li {
	counter-increment: step;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	color: var(--muted);
}

.steps li::before {
	content: counter(step);
	width: 34px;
	height: 34px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	background: var(--surface-2);
	border: 1px solid var(--line);
	color: var(--text);
	font-weight: 800;
	font-size: 14px;
}

.steps b {
	color: var(--text);
	display: block;
	margin-bottom: 2px;
}

.steps li span {
	padding-top: 4px;
}

footer {
	border-top: 1px solid var(--line);
	padding: 44px 0 60px;
	color: var(--faint);
	font-size: 14px;
}

footer .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 40px;
	align-items: center;
}

footer nav {
	display: flex;
	gap: 18px;
	margin-left: auto;
	flex-wrap: wrap;
}

footer a:hover {
	color: var(--text);
}

.legal {
	max-width: 760px;
	padding: 70px 0 90px;
}

.legal h1 {
	font-size: 34px;
	margin-bottom: 10px;
}

.legal .updated {
	color: var(--faint);
	font-size: 14px;
	margin-bottom: 30px;
}

.legal h2 {
	font-size: 20px;
	margin: 34px 0 10px;
}

.legal p,
.legal li {
	color: var(--muted);
}

.legal ul {
	padding-left: 20px;
	display: grid;
	gap: 8px;
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@media (max-width: 1000px) {
	.grid-3,
	.shots {
		grid-template-columns: 1fr 1fr;
	}
	.looks {
		grid-template-columns: repeat(3, 1fr);
	}
	.split,
	.plus,
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.price-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 680px) {
	section {
		padding: 62px 0;
	}
	.nav nav a.hide-small {
		display: none;
	}
	.hero .wrap {
		padding: 72px 0 64px;
	}
	.hero .art {
		background-position: 68% 40%;
	}
	.grid-3,
	.shots,
	.price-grid {
		grid-template-columns: 1fr;
	}
	.looks {
		grid-template-columns: 1fr 1fr;
	}
	.download-box {
		grid-template-columns: 1fr;
	}
	.btn {
		width: 100%;
	}
	.hero .cta .btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	html {
		scroll-behavior: auto;
	}
}
