:root {
	--bg: #170b1b;
	--panel: #09070d;
	--text: #fff9fe;
	--muted: #c9b7c7;
	--pink: #f47ce6;
	--pink-light: #ffc0f4;
	--violet: #8b5cf6;
	--line: rgb(255 255 255 / 13%);
	--serif: 'Manrope', Arial, sans-serif;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	min-width: 20rem;
	margin: 0;
	overflow-x: clip;
	color: var(--text);
	background: var(--bg);
	font-family: 'Manrope', Arial, sans-serif;
	line-height: 1.5;
}
body:before {
	position: fixed;
	z-index: -2;
	inset: 0;
	background:
		radial-gradient(circle at 14% 5%, #a52276 0, transparent 24%),
		radial-gradient(circle at 90% 21%, #4f176d 0, transparent 27%),
		linear-gradient(145deg, #15091b, #2a1033 55%, #110918);
	content: '';
}
body:after {
	position: fixed;
	z-index: -1;
	inset: 0;
	opacity: 0.24;
	background-image: radial-gradient(
		rgb(255 255 255 / 45%) 0.04rem,
		transparent 0.06rem
	);
	background-size: 0.75rem 0.75rem;
	content: '';
	pointer-events: none;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
}
.container {
	width: min(100% - 3rem, 76rem);
	margin-inline: auto;
}
.skip-link {
	position: fixed;
	z-index: 100;
	top: -4rem;
	left: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background: var(--pink);
	color: #26082b;
}
.skip-link:focus {
	top: 1rem;
}
.site-header {
	position: absolute;
	z-index: 10;
	top: 1.25rem;
	width: 100%;
}
.site-header__container {
	min-height: 4.2rem;
	padding-inline: 1.5rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: rgb(7 6 11 / 85%);
	box-shadow: 0 0.9rem 3rem rgb(0 0 0 / 30%);
	backdrop-filter: blur(1.2rem);
}
.site-header.is-compact {
	position: fixed;
	top: 0.6rem;
}
.site-header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.62rem;
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.05em;
	white-space: nowrap;
}
.brand__mark {
	display: grid;
	width: 1.9rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 25%);
	border-radius: 0.55rem;
	background: linear-gradient(135deg, var(--pink), var(--violet));
	color: #fff;
	font-size: 1.35rem;
	font-style: italic;
}
.site-navigation {
	display: flex;
	gap: 1.8rem;
	margin-left: auto;
	color: #f1dfe9;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.site-navigation a:hover,
.text-link:hover {
	color: var(--pink);
}
.hero {
	position: relative;
	min-height: 49rem;
	padding: 8.5rem 1.5rem 2rem;
}
.hero__glow {
	position: absolute;
	z-index: -1;
	width: 30rem;
	height: 30rem;
	top: 0;
	left: 50%;
	border-radius: 50%;
	background: #fc70d1;
	filter: blur(10rem);
	opacity: 0.25;
}
.hero__container {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	min-height: 39rem;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 1.7rem;
	background: #08070d;
	box-shadow: 0 2rem 5rem rgb(0 0 0 / 37%);
}
.hero__content {
	position: relative;
	z-index: 1;
	align-self: end;
	padding: 3rem;
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.05rem;
	color: var(--pink-light);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.eyebrow__dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0.75rem var(--pink);
}
h1,
h2,
h3,
p {
	margin-top: 0;
}
h1,
h2 {
	font-family: Impact, 'Arial Narrow Bold', Arial, sans-serif;
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.88;
	text-transform: uppercase;
}
h1 {
	max-width: 41rem;
	margin-bottom: 1.2rem;
	font-size: clamp(3.6rem, 6.2vw, 6.1rem);
	text-shadow: 0.2rem 0.2rem 0 #542b55;
}
h1 span,
h2 span {
	color: var(--pink-light);
	text-shadow: 0.15rem 0.15rem 0 #75386e;
}
.hero__description {
	max-width: 30rem;
	margin-bottom: 1.8rem;
	color: var(--muted);
	font-size: 0.94rem;
}
.hero__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}
.text-link {
	color: #f4e5f0;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
}
.text-link span {
	margin-left: 0.4rem;
	color: var(--pink);
}
.hero__facts {
	display: none;
}
.hero__visual {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.65fr;
	grid-template-rows: 1fr 0.72fr;
	gap: 0.75rem;
	padding: 0.9rem 0.9rem 0.9rem 0;
}
.hero__image-wrap {
	grid-row: span 2;
	overflow: hidden;
	border-radius: 1rem;
	background: #4c1c50;
}
.hero__image-wrap img,
.hero__side-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__image-wrap img {
	object-position: 44% top;
}
.hero__side-image {
	overflow: hidden;
	border-radius: 1rem;
	background: #51255b;
}
.hero__side-image--top img {
	object-position: 65% top;
}
.hero__stats {
	position: absolute;
	right: 1.5rem;
	bottom: 1.55rem;
	display: grid;
	gap: 0.45rem;
	width: 6rem;
}
.hero__stats div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.45rem 0.5rem;
	border: 1px solid rgb(255 255 255 / 23%);
	border-radius: 0.55rem;
	background: rgb(22 12 27 / 78%);
	backdrop-filter: blur(0.4rem);
}
.hero__stats b {
	color: var(--pink-light);
	font-family: var(--serif);
	font-size: 1.25rem;
}
.hero__stats span {
	color: #fbeffa;
	font-size: 0.57rem;
	text-transform: uppercase;
}
.intro-section__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 11rem;
	border-bottom: 1px solid var(--line);
}
.intro-section p {
	max-width: 48rem;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(1.5rem, 2.4vw, 2.2rem);
	letter-spacing: -0.045em;
	line-height: 1.1;
}
.round-link {
	display: grid;
	flex: 0 0 auto;
	width: 3.35rem;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--pink);
	font-size: 1.25rem;
	transition: background var(--transition-duration);
}
.round-link:hover {
	background: #251428;
}
.section {
	padding-block: 7rem;
}
.section-heading {
	display: flex;
	justify-content: space-between;
	gap: 3rem;
	margin-bottom: 3rem;
}
.section-heading > p {
	max-width: 22rem;
	margin-top: 2.3rem;
	color: var(--muted);
	font-size: 0.9rem;
}
.section-heading--compact {
	justify-content: start;
}
h2 {
	margin-bottom: 1.2rem;
	font-size: clamp(3rem, 5.3vw, 5.2rem);
}
.story-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8rem;
}
.story-card {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: 28rem;
	overflow: hidden;
	align-items: end;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--panel);
}
.story-card img {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform var(--transition-duration);
}
.story-card:hover img {
	transform: scale(1.04);
}
.story-card__overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(0deg, rgb(6 5 9 / 96%), rgb(40 13 42 / 5%) 70%);
}
.story-card__content {
	padding: 2rem;
}
.story-card__location {
	color: var(--pink-light);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
.story-card h3 {
	margin: 0.55rem 0 0.5rem;
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: -0.04em;
}
.story-card p {
	max-width: 25rem;
	color: #ddccd9;
	font-size: 0.86rem;
}
.story-card a {
	display: inline-flex;
	gap: 0.45rem;
	margin-top: 0.8rem;
	color: var(--pink-light);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}
.characters {
	background: rgb(5 4 9 / 44%);
	border-block: 1px solid var(--line);
}
.character-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8rem;
}
.how-it-works {
	background: #09070e;
}
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
	padding: 0;
	margin: 0;
	list-style: none;
}
.steps li {
	min-height: 14rem;
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: #100b16;
}
.steps span {
	color: var(--pink);
	font-family: var(--serif);
	font-size: 1.65rem;
}
.steps h3 {
	margin: 2rem 0 0.6rem;
	font-family: var(--serif);
	font-size: 1.55rem;
	font-weight: 400;
	letter-spacing: -0.035em;
}
.steps p {
	color: var(--muted);
	font-size: 0.86rem;
}
.final-cta {
	padding-block: 7rem;
}
.final-cta__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	padding: 4rem;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 1.5rem;
	background:
		radial-gradient(circle at 85% 50%, #8f247d, transparent 32%),
		linear-gradient(120deg, #22101e, #361143);
}
.final-cta h2 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 4.5rem);
}
@media (max-width: 48rem) {
	.container {
		width: min(100% - 2rem, 76rem);
	}
	.site-header {
		top: 0.6rem;
	}
	.site-header__container {
		min-height: 3.6rem;
		padding-inline: 0.8rem;
		border-radius: 0.8rem;
	}
	.site-navigation {
		display: none;
	}
	.hero {
		min-height: auto;
		padding: 5.6rem 1rem 1rem;
	}
	.hero__container {
		display: flex;
		flex-direction: column-reverse;
		min-height: 0;
		border-radius: 1.15rem;
	}
	.hero__content {
		padding: 1.75rem;
	}
	.hero__visual {
		width: 100%;
		height: 20rem;
		padding: 0.7rem 0.7rem 0;
	}
	.hero__side-image,
	.hero__image-wrap {
		border-radius: 0.7rem;
	}
	.hero__description {
		font-size: 0.9rem;
	}
	.hero__actions {
		gap: 0.9rem;
	}
	.hero__stats {
		right: 1rem;
		bottom: 0.6rem;
		width: 5.1rem;
	}
	.hero__stats div {
		padding: 0.32rem 0.38rem;
	}
	.hero__stats b {
		font-size: 1rem;
	}
	.hero__stats span {
		font-size: 0.5rem;
	}
	.intro-section__container {
		min-height: 9rem;
	}
	.intro-section p {
		font-size: 1.4rem;
	}
	.section {
		padding-block: 4.5rem;
	}
	.section-heading,
	.final-cta__container {
		display: block;
	}
	.section-heading > p {
		margin-top: 1rem;
	}
	.story-grid,
	.character-grid,
	.steps {
		grid-template-columns: 1fr;
	}
	.story-card {
		min-height: 25rem;
	}
	.story-card__content {
		padding: 1.4rem;
	}
	.steps {
		gap: 0.7rem;
	}
	.steps li {
		min-height: 0;
	}
	.steps h3 {
		margin-top: 0.8rem;
	}
	.final-cta {
		padding-block: 4.5rem;
	}
	.final-cta__container {
		padding: 2rem 1.5rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*:before,
	*:after {
		transition-duration: 0.01ms !important;
	}
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope-variable.ttf') format('truetype');
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}
:root {
	--font-body: 'Manrope', Arial, sans-serif;
}
body {
	-webkit-font-smoothing: antialiased;
}
h1,
h2 {
	font-family: var(--font-body);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.055em;
	text-transform: none;
	text-wrap: balance;
}
h1 {
	font-size: clamp(2.6rem, 4.4vw, 4.25rem);
	text-shadow: none;
}
h2 {
	font-size: clamp(2rem, 3.8vw, 3.5rem);
}
h1 span,
h2 span {
	text-shadow: none;
}
.brand {
	font-weight: 800;
	letter-spacing: -0.04em;
}
.brand__mark {
	font-style: normal;
}
.icon {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	flex: 0 0 auto;
	vertical-align: middle;
}
a:focus-visible {
	outline: 0.15rem solid var(--pink-light);
	outline-offset: 0.35rem;
}
section[id] {
	scroll-margin-top: 6rem;
}
.hero__container {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.hero__content {
	min-width: 0;
	padding: clamp(1.5rem, 3vw, 3rem);
}
.hero__visual {
	min-width: 0;
}
.hero__actions {
	flex-wrap: wrap;
}
.section-heading > div,
.final-cta__container > div {
	min-width: 0;
}
.section-heading > p {
	flex: 0 0 18rem;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 0.7rem;
	min-height: 3.5rem;
	padding: 0.6rem 1.3rem;
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: 100vmax;
	font: 700 0.9rem / 1.3 var(--font-body);
	letter-spacing: -0.02em;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background var(--transition-duration),
		transform var(--transition-duration),
		box-shadow var(--transition-duration);
}
.button--primary,
.button--small {
	color: #241029;
	background: #efacf3;
	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 35%),
		0 0.3rem 1.5rem rgb(218 120 225 / 12%);
}
.button:hover {
	transform: translateY(-0.15rem);
	background: #f8ccfb;
	box-shadow: 0 0.5rem 2rem rgb(218 120 225 / 24%);
}
.button:active {
	transform: translateY(0);
}
.button--small {
	min-height: 2.75rem;
	font-size: 0.8rem;
	padding-inline: 1rem;
}
.button > .icon:last-child:not(:first-child) {
	width: 1rem;
	height: 1rem;
	margin-left: 0.3rem;
}
.button__label {
	white-space: nowrap;
}
.final-cta__container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: clamp(1.5rem, 4vw, 4rem);
}
.final-cta h2 {
	font-size: clamp(2rem, 3.3vw, 3.2rem);
}
.story-grid,
.character-grid {
	gap: 1.5rem;
	grid-auto-rows: 1fr;
}
.story-card {
	min-height: 31rem;
	border-radius: 1.5rem;
	transition:
		border-color var(--transition-duration),
		transform var(--transition-duration);
}
.story-card:hover {
	border-color: rgb(239 172 243 / 45%);
	transform: translateY(-0.25rem);
}
.story-card__content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: 2rem;
}
.story-card h3 {
	margin: 0;
	font-size: 1.65rem;
	font-weight: 750;
	line-height: 1.2;
}
.story-card p {
	margin: 0;
	min-height: 3rem;
}
.story-card__location {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.story-card__location .icon {
	width: 1rem;
	height: 1rem;
}
.story-card a {
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	text-transform: none;
	font-size: 0.85rem;
}
.story-card a::before {
	position: absolute;
	inset: 0;
	content: '';
}
.story-card a .icon {
	width: 1.2rem;
	height: 1.2rem;
}
.character-card {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: end;
	min-height: 36rem;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 1.5rem;
	background: var(--panel);
	transition:
		transform var(--transition-duration),
		border-color var(--transition-duration),
		box-shadow var(--transition-duration);
}
.character-card:hover,
.character-card:focus-within {
	transform: translateY(-0.25rem);
	border-color: rgb(239 172 243 / 50%);
	box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.character-card__image {
	position: absolute;
	z-index: -2;
	inset: 0;
	overflow: hidden;
}
.character-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform var(--transition-duration);
}
.character-card:hover img {
	transform: scale(1.035);
}
.character-card__animation::after {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgb(7 5 12 / 8%) 15%,
		rgb(7 5 12 / 25%) 35%,
		rgb(7 5 12 / 94%) 72%,
		#0c0811
	);
}
.character-card__label {
	position: absolute;
	top: 1.4rem;
	left: 1.4rem;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgb(255 255 255 / 22%);
	border-radius: 100vmax;
	background: rgb(16 11 23 / 55%);
	backdrop-filter: blur(0.6rem);
	font-size: 0.7rem;
	font-weight: 600;
}
.character-card__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	padding: 2rem;
}
.character-card__heading {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}
.character-card h3 {
	margin: 0;
	font-size: 2.75rem;
	line-height: 1.1;
	font-weight: 750;
	letter-spacing: -0.05em;
}
.character-card__age {
	color: #d1bed3;
	font-size: 0.85rem;
}
.character-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}
.character-card__tag {
	padding: 0.35rem 0.7rem;
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 100vmax;
	color: #e3c5e8;
	background: rgb(226 155 235 / 7%);
	font-size: 0.72rem;
}
.character-card__body > p {
	min-height: 4.5rem;
	margin: 0;
	color: #cfc0d3;
	font-size: 0.9rem;
	line-height: 1.65;
}
.character-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(255 255 255 / 16%);
	font-size: 0.85rem;
	font-weight: 700;
}
.character-card__link::before {
	position: absolute;
	inset: 0;
	content: '';
}
.character-card__link .icon {
	box-sizing: content-box;
	width: 1.2rem;
	height: 1.2rem;
	padding: 0.65rem;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--pink-light);
	transition: background var(--transition-duration);
}
.character-card__link:hover .icon {
	background: rgb(239 172 243 / 16%);
}
@media (max-width: 64rem) {
	.final-cta__container {
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 2rem;
	}
	.section-heading {
		flex-wrap: wrap;
	}
	.section-heading > p {
		flex: 1 1 18rem;
		margin-top: 0;
	}
}
@media (max-width: 48rem) {
	.hero {
		padding-inline: 0;
	}
	.hero__content {
		align-self: stretch;
		padding: 1.5rem;
	}
	.hero__actions {
		align-items: start;
		flex-direction: column;
	}
	.hero .button {
		font-size: 0.8rem;
		padding-inline: 1rem;
		gap: 0.45rem;
	}
	.button--small {
		min-height: 2.5rem;
		font-size: 0.7rem;
		padding-inline: 0.75rem;
	}
	.button--small > .icon {
		display: none;
	}
	.story-card {
		min-height: 29rem;
	}
	.story-card__content,
	.character-card__body {
		padding: 1.5rem;
	}
	.character-card {
		min-height: 35rem;
	}
	.character-card__body > p {
		min-height: 6rem;
		font-size: 0.85rem;
	}
	.character-card h3 {
		font-size: 2.4rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	.button,
	.character-card,
	.story-card,
	.character-card__image img {
		transition: none;
	}
}

:root {
	--transition-duration: 360ms;
	--transition-easing: cubic-bezier(0.22, 1, 0.36, 1);
}
a,
.button,
.story-card,
.character-card,
.character-card__link .icon,
.story-card img,
.character-card__image img {
	transition-timing-function: var(--transition-easing);
}
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color var(--transition-duration) var(--transition-easing);
}
.button .icon,
.text-link .icon {
	transition: transform var(--transition-duration) var(--transition-easing);
}
.button:hover > .icon:last-child {
	transform: translate(0.12rem, -0.12rem);
}
.text-link:hover .icon {
	transform: translateY(0.2rem);
}
.story-card__animation,
.character-card__animation {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: end;
	min-height: inherit;
	width: 100%;
	height: 100%;
}
.site-footer {
	padding: 0 0 2rem;
}
.site-footer__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.7rem;
	padding: 4rem 2rem 1.5rem;
	border: 1px solid rgb(239 172 243 / 18%);
	border-radius: 1.8rem;
	background: #09080d;
	box-shadow: 0 0 0 0.35rem rgb(255 255 255 / 3%);
}
.site-footer .brand {
	font-size: 1.35rem;
}
.site-footer__description {
	margin: 0;
	color: var(--muted);
	font-size: 0.85rem;
	text-align: center;
}
.site-footer__navigation,
.site-footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.site-footer__navigation a {
	font-size: 0.85rem;
	color: #e2d7e7;
	transition: color var(--transition-duration);
}
.site-footer__navigation a:hover {
	color: var(--pink-light);
}
.site-footer__socials {
	gap: 0.65rem;
}
.site-footer__socials a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 2.8rem;
	padding: 0.6rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 100vmax;
	color: #bfaacb;
	font-size: 0.75rem;
	transition:
		color var(--transition-duration),
		background var(--transition-duration),
		transform var(--transition-duration),
		border-color var(--transition-duration);
}
.site-footer__socials img {
	width: 1.25rem;
	height: 1.25rem;
}
.site-footer__socials a:hover {
	color: var(--pink-light);
	background: #25152d;
	border-color: #715175;
	transform: translateY(-0.2rem);
}
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	margin-top: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
	color: #9986a3;
	font-size: 0.7rem;
}
.site-footer__bottom p {
	margin: 0;
}
@media (max-width: 48rem) {
	.site-footer__panel {
		padding: 3rem 1.25rem 1.25rem;
	}
	.site-footer__navigation {
		gap: 1rem 1.25rem;
	}
	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.site-footer__socials {
		gap: 0.5rem;
	}
	.site-footer__socials a {
		padding-inline: 0.7rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	:root {
		--transition-duration: 0ms;
	}
	html {
		scroll-behavior: auto;
	}
}

/* Compact collage: keep one clear subject in frame on narrow screens. */
@media (max-width: 48rem) {
	.hero__visual {
		height: clamp(14rem, 76vw, 20rem);
		grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	}
	.hero__image-wrap img {
		object-position: 62% top;
	}
	.hero__side-image--top img {
		object-position: 58% top;
	}
	.hero__content {
		padding: 1.35rem 1.25rem 1.45rem;
	}
	.hero__actions .button {
		width: 100%;
		justify-content: center;
	}
}

/* Header, cards and section interactions share the global motion timing. */
.site-header {
	position: fixed;
	transition:
		transform var(--transition-duration) var(--transition-easing),
		opacity var(--transition-duration) var(--transition-easing),
		top var(--transition-duration) var(--transition-easing);
}
.site-header__container {
	transition:
		min-height var(--transition-duration) var(--transition-easing),
		background var(--transition-duration) var(--transition-easing),
		border-color var(--transition-duration) var(--transition-easing),
		box-shadow var(--transition-duration) var(--transition-easing);
}
.site-header.is-compact .site-header__container {
	min-height: 3.7rem;
	background: rgb(9 7 14 / 95%);
	border-color: rgb(239 172 243 / 22%);
	box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 28%);
}
.site-header.is-concealed:not(:focus-within) {
	transform: translateY(calc(-100% - 2rem));
	opacity: 0;
	pointer-events: none;
}
.site-navigation a {
	position: relative;
	padding-block: 0.4rem;
	transition: color var(--transition-duration);
}
.site-navigation a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 0.1rem;
	border-radius: 1rem;
	background: var(--pink-light);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-duration) var(--transition-easing);
}
.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
	transform: scaleX(1);
}
.story-grid,
.character-grid {
	perspective: 90rem;
}
.story-card,
.character-card {
	--tiltX: 0deg;
	--tiltY: 0deg;
	--pointerX: 50%;
	--pointerY: 50%;
}
.story-card.is-interactive,
.character-card.is-interactive {
	transform: perspective(70rem) rotateX(var(--tiltX)) rotateY(var(--tiltY))
		translateY(-0.4rem);
}
.story-card::before,
.character-card::before {
	content: '';
	position: absolute;
	z-index: 2;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		22rem circle at var(--pointerX) var(--pointerY),
		rgb(247 213 255 / 14%),
		transparent 65%
	);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition-duration) var(--transition-easing);
}
.story-card.is-interactive::before,
.character-card.is-interactive::before {
	opacity: 1;
}
.story-card a .icon,
.character-card__link .icon {
	transition:
		transform var(--transition-duration) var(--transition-easing),
		background var(--transition-duration);
}
.story-card a:hover .icon,
.character-card__link:hover .icon {
	transform: rotate(45deg);
}
.steps li {
	transition:
		border-color var(--transition-duration),
		background var(--transition-duration);
}
.steps li:hover {
	background: #1c1023;
	border-color: rgb(239 172 243 / 35%);
}
@media (prefers-reduced-motion: reduce) {
	.site-header.is-concealed:not(:focus-within) {
		transform: none;
		opacity: 1;
		pointer-events: auto;
	}
	.story-card.is-interactive,
	.character-card.is-interactive {
		transform: none;
	}
}

/* Image masks stay stationary while their contents animate. */
.hero__image-wrap {
	position: relative;
	min-width: 0;
	min-height: 0;
}
.hero__image-wrap img {
	transform-origin: center;
}
.hero__side-image {
	min-width: 0;
	min-height: 0;
}
.card-tile {
	min-width: 0;
	height: 100%;
}
.card-tile > article {
	height: 100%;
}
.card-tile:first-child > article img {
	object-position: center left;
}
.card-tile:last-child > article img {
	object-position: center right;
}
.button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	--buttonX: 0px;
	--buttonY: 0px;
	translate: var(--buttonX) var(--buttonY);
	transition:
		translate var(--transition-duration) var(--transition-easing),
		transform var(--transition-duration) var(--transition-easing),
		box-shadow var(--transition-duration) var(--transition-easing),
		background var(--transition-duration) var(--transition-easing);
}
.button::after {
	content: '';
	position: absolute;
	z-index: -1;
	inset: -50%;
	background: linear-gradient(
		110deg,
		transparent 35%,
		rgb(255 255 255 / 65%) 50%,
		transparent 65%
	);
	transform: translateX(-100%);
	transition: transform 650ms var(--transition-easing);
	pointer-events: none;
}
.button:hover::after {
	transform: translateX(100%);
}
.button:active {
	transform: scale(0.95);
}
.button .button__label {
	transition: transform var(--transition-duration) var(--transition-easing);
}
.button:hover .button__label {
	transform: translateX(0.12rem);
}
.custom-cursor {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
}
.custom-cursor.is-visible {
	opacity: 1;
}
.custom-cursor__ring,
.custom-cursor__dot {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.custom-cursor__ring {
	width: 2rem;
	height: 2rem;
	border: 1px solid #ffe7ff;
	background: rgb(239 172 243 / 3%);
	box-shadow: 0 0 0.4rem rgb(0 0 0 / 30%);
	transition:
		width 250ms var(--transition-easing),
		height 250ms var(--transition-easing),
		background 250ms var(--transition-easing);
}
.custom-cursor__dot {
	width: 0.25rem;
	height: 0.25rem;
	background: #fff;
	box-shadow: 0 0 0.15rem #000;
}
.custom-cursor.is-hovered .custom-cursor__ring {
	width: 3.5rem;
	height: 3.5rem;
	background: rgb(239 172 243 / 13%);
}
.custom-cursor.is-pressed .custom-cursor__ring {
	width: 1.5rem;
	height: 1.5rem;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.theme-switcher {
	position: fixed;
	z-index: 20;
	top: calc(4.2rem + 0.625rem);
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.35rem;
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: rgb(9 7 14 / 88%);
	box-shadow: 0 0.7rem 1.8rem rgb(0 0 0 / 18%);
	backdrop-filter: blur(1rem);
}
.site-header.is-compact .theme-switcher {
	top: calc(0.6rem + 3.7rem + 0.625rem);
}
.theme-switcher button {
	display: grid;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 0.6rem;
	color: #8f8996;
	background: transparent;
	cursor: pointer;
	transition:
		color var(--transition-duration),
		background var(--transition-duration),
		transform var(--transition-duration);
}
.theme-switcher button:hover,
.theme-switcher button:focus-visible,
.theme-switcher button.is-active {
	color: var(--pink-light);
	background: rgb(255 255 255 / 10%);
}
.theme-switcher button:active {
	transform: scale(0.92);
}
.theme-switcher .icon {
	width: 1.15rem;
	height: 1.15rem;
}

html[data-color-scheme='light'] {
	color-scheme: light;
	--bg: #fff7fc;
	--panel: #ffffff;
	--text: #2d1a2b;
	--muted: #735d70;
	--pink: #b82d99;
	--pink-light: #a7258d;
	--violet: #7046c7;
	--line: rgb(82 36 76 / 18%);
}
html[data-color-scheme='light'] body::before {
	background:
		radial-gradient(
			circle at 14% 5%,
			rgb(247 167 223 / 65%) 0,
			transparent 24%
		),
		radial-gradient(
			circle at 90% 21%,
			rgb(190 163 246 / 52%) 0,
			transparent 27%
		),
		linear-gradient(145deg, #fffaff, #f9eafd 55%, #f6f0ff);
}
html[data-color-scheme='light'] body::after {
	opacity: 0.12;
	background-image: radial-gradient(
		rgb(82 36 76 / 38%) 0.04rem,
		transparent 0.06rem
	);
}
html[data-color-scheme='light'] .site-header__container,
html[data-color-scheme='light']
	.site-header.is-compact
	.site-header__container {
	background: rgb(255 255 255 / 84%);
	border-color: rgb(82 36 76 / 18%);
	box-shadow: 0 0.8rem 2rem rgb(93 45 87 / 14%);
}
html[data-color-scheme='light'] .site-navigation {
	color: #50344d;
}
html[data-color-scheme='light'] .hero__container,
html[data-color-scheme='light'] .how-it-works,
html[data-color-scheme='light'] .site-footer__panel {
	background: rgb(255 255 255 / 76%);
}
html[data-color-scheme='light'] .site-footer__description {
	color: #60475c;
}
html[data-color-scheme='light'] .site-footer__navigation a {
	color: #50364c;
}
html[data-color-scheme='light'] .site-footer__socials a {
	color: #50364c;
	background: rgb(255 255 255 / 72%);
}
html[data-color-scheme='light'] .site-footer__socials a:hover {
	color: #7e1f6b;
	background: #f5dff1;
	border-color: rgb(184 45 153 / 38%);
}
html[data-color-scheme='light'] .site-footer__bottom {
	color: #60475c;
}
html[data-color-scheme='light'] .characters {
	background: rgb(255 255 255 / 40%);
}
html[data-color-scheme='light'] .steps li {
	background: rgb(255 255 255 / 72%);
}
html[data-color-scheme='light'] .steps li:hover,
html[data-color-scheme='light'] .round-link:hover {
	background: #f5dff1;
}
html[data-color-scheme='light'] .final-cta__container {
	background:
		radial-gradient(circle at 85% 50%, #f3a7df, transparent 35%),
		linear-gradient(120deg, #fff9fe, #f2e6ff);
}
html[data-color-scheme='light'] .story-card,
html[data-color-scheme='light'] .character-card {
	color: #fff9fe;
}
html[data-color-scheme='light'] .story-card p,
html[data-color-scheme='light'] .character-card__body > p {
	color: #f0e1ed;
}
html[data-color-scheme='light'] .theme-switcher {
	background: rgb(255 255 255 / 88%);
	box-shadow: 0 0.7rem 1.8rem rgb(93 45 87 / 14%);
}
html[data-color-scheme='light'] .theme-switcher button {
	color: #877786;
}
html[data-color-scheme='light'] .theme-switcher button:hover,
html[data-color-scheme='light'] .theme-switcher button:focus-visible,
html[data-color-scheme='light'] .theme-switcher button.is-active {
	color: var(--pink);
	background: rgb(184 45 153 / 12%);
}
@media (max-width: 48rem) {
	.site-header__actions {
		gap: 0.45rem;
	}
	.theme-switcher {
		position: static;
		flex-direction: row;
		gap: 0.05rem;
		padding: 0.2rem;
		border-right: 1px solid var(--line);
		border-radius: 0.65rem;
		box-shadow: none;
	}
	.theme-switcher button {
		width: 1.85rem;
		height: 1.85rem;
		border-radius: 0.45rem;
	}
	.theme-switcher .icon {
		width: 1rem;
		height: 1rem;
	}
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.has-custom-cursor,
	.has-custom-cursor * {
		cursor: none !important;
	}
}
@media (prefers-reduced-motion: reduce) {
	.custom-cursor {
		display: none;
	}
	.button {
		translate: none;
	}
	.button::after {
		display: none;
	}
	.button:hover .button__label {
		transform: none;
	}
}
