:root
{
	--bg: #fff7fd;
	--text: #17111f;
	--muted: #655f75;
	--white: rgba(255, 255, 255, .72);
	--line: rgba(23, 17, 31, .12);
	--pink: #ff4fd8;
	--violet: #845cff;
	--cyan: #38dfff;
	--lime: #c7ff4f;
	--yellow: #ffe66d;
	--radius: 28px;
	--shadow: 0 24px 80px rgba(93, 62, 188, .18);
}

*
{
	box-sizing: border-box;
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at 10% 10%, rgba(255, 79, 216, .28), transparent 28rem),
		radial-gradient(circle at 90% 0%, rgba(56, 223, 255, .25), transparent 30rem),
		radial-gradient(circle at 50% 90%, rgba(199, 255, 79, .22), transparent 28rem),
		linear-gradient(135deg, #fff7fd, #f3f8ff 45%, #fffce8);
	color: var(--text);
	overflow-x: hidden;
}

body::before
{
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(23, 17, 31, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 17, 31, .035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
	z-index: -2;
}

body::after
{
	content: "";
	position: fixed;
	inset: -50%;
	pointer-events: none;
	background:
		conic-gradient(from 0deg, transparent, rgba(255, 79, 216, .08), transparent, rgba(56, 223, 255, .08), transparent);
	animation: rotateNoise 18s linear infinite;
	z-index: -3;
}

a
{
	color: inherit;
	text-decoration: none;
}

.site-header
{
	position: sticky;
	top: 16px;
	z-index: 20;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	width: min(1180px, calc(100% - 32px));
	margin: 16px auto 0;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .62);
	backdrop-filter: blur(22px);
	box-shadow: 0 14px 40px rgba(80, 50, 130, .12);
}

.brand
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: 950;
	letter-spacing: -.04em;
	background: #fff;
}

.brand span
{
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
	color: #fff;
	box-shadow: 0 10px 24px rgba(132, 92, 255, .28);
}

.brand strong
{
	font-size: 14px;
	letter-spacing: .02em;
}

.nav
{
	display: flex;
	justify-content: center;
	gap: 6px;
}

.nav a,
.language a
{
	padding: 10px 13px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	color: var(--muted);
	transition: .2s ease;
}

.nav a:hover,
.language a:hover,
.language a[aria-current="true"]
{
	background: rgba(132, 92, 255, .12);
	color: var(--text);
}

.language
{
	display: flex;
	gap: 4px;
}

.hero
{
	position: relative;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 40px;
	align-items: center;
	width: min(1180px, calc(100% - 32px));
	min-height: calc(100vh - 110px);
	margin: 0 auto;
	padding: 80px 0 56px;
}

.hero-content
{
	position: relative;
	z-index: 2;
}

.badge
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	backdrop-filter: blur(18px);
	font-weight: 900;
	color: #5f31d9;
	box-shadow: var(--shadow);
}

.badge::before
{
	content: "✦";
}

h1
{
	max-width: 850px;
	margin: 0;
	font-size: clamp(56px, 10vw, 132px);
	line-height: .82;
	letter-spacing: -.09em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #17111f, var(--violet), var(--pink), #17111f);
	background-size: 220% 100%;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientText 6s ease-in-out infinite;
}

.hero-text
{
	max-width: 680px;
	margin: 28px 0 0;
	font-size: clamp(19px, 2.2vw, 27px);
	line-height: 1.35;
	color: var(--muted);
	font-weight: 650;
}

.actions
{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.button
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 950;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover
{
	transform: translateY(-3px) rotate(-1deg);
}

.primary
{
	background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
	color: #fff;
	box-shadow: 0 20px 44px rgba(132, 92, 255, .32);
}

.secondary
{
	background: #fff;
	color: var(--text);
	border: 1px solid var(--line);
}

.hero-visual
{
	position: relative;
	min-height: 560px;
}

.orb
{
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	width: min(420px, 82vw);
	aspect-ratio: 1;
	border-radius: 38% 62% 64% 36% / 42% 38% 62% 58%;
	background:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .95), transparent 24%),
		linear-gradient(135deg, var(--yellow), var(--pink), var(--violet), var(--cyan));
	box-shadow: 0 34px 100px rgba(255, 79, 216, .34);
	font-size: clamp(72px, 10vw, 132px);
	font-weight: 1000;
	letter-spacing: -.09em;
	color: #fff;
	text-shadow: 0 8px 0 rgba(23, 17, 31, .1);
	animation: morph 7s ease-in-out infinite, float 4s ease-in-out infinite;
}

.floating-card
{
	position: absolute;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, .72);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	font-weight: 950;
	animation: float 4s ease-in-out infinite;
}

.card-one
{
	top: 16%;
	left: 3%;
	transform: rotate(-9deg);
}

.card-two
{
	right: 2%;
	top: 24%;
	transform: rotate(8deg);
	animation-delay: -.9s;
}

.card-three
{
	left: 18%;
	bottom: 15%;
	transform: rotate(5deg);
	animation-delay: -1.6s;
}

.blob
{
	position: absolute;
	width: 360px;
	aspect-ratio: 1;
	border-radius: 999px;
	filter: blur(70px);
	opacity: .55;
	z-index: -1;
	animation: blobMove 10s ease-in-out infinite;
}

.blob-one
{
	left: -140px;
	top: 120px;
	background: var(--pink);
}

.blob-two
{
	right: -140px;
	bottom: 80px;
	background: var(--cyan);
	animation-delay: -3s;
}

.ticker
{
	overflow: hidden;
	padding: 12px 0;
	border-block: 1px solid var(--line);
	background: rgba(255, 255, 255, .48);
	backdrop-filter: blur(14px);
}

.ticker div
{
	display: flex;
	width: max-content;
	gap: 42px;
	animation: ticker 16s linear infinite;
}

.ticker span
{
	font-size: 22px;
	font-weight: 1000;
	text-transform: uppercase;
	white-space: nowrap;
	color: #5f31d9;
}

.section
{
	width: min(1180px, calc(100% - 32px));
	margin: 34px auto;
	padding: clamp(28px, 5vw, 64px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .58);
	backdrop-filter: blur(22px);
	box-shadow: var(--shadow);
}

.grid-section
{
	display: grid;
	grid-template-columns: 1fr .8fr;
	gap: 32px;
	align-items: center;
}

h2
{
	margin: 0 0 16px;
	font-size: clamp(38px, 6vw, 78px);
	line-height: .9;
	letter-spacing: -.07em;
}

.section p
{
	margin: 0;
	max-width: 780px;
	font-size: 21px;
	line-height: 1.55;
	color: var(--muted);
	font-weight: 650;
}

.vibe-list
{
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vibe-list li,
.example-grid article
{
	position: relative;
	padding: 22px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--line);
	font-size: 20px;
	font-weight: 950;
	box-shadow: 0 14px 34px rgba(80, 50, 130, .1);
}

.vibe-list li::before
{
	content: "✹";
	margin-right: 10px;
	color: var(--pink);
}

.origin
{
	background:
		linear-gradient(135deg, rgba(255, 230, 109, .55), rgba(255, 255, 255, .58)),
		radial-gradient(circle at right, rgba(255, 79, 216, .22), transparent 24rem);
}

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

.example-grid article
{
	min-height: 160px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .52)),
		radial-gradient(circle at 30% 20%, rgba(56, 223, 255, .22), transparent 8rem);
	transition: transform .2s ease;
}

.example-grid article:hover
{
	transform: translateY(-8px) rotate(-1deg);
}

.faq
{
	margin-bottom: 64px;
}

details
{
	border: 1px solid var(--line);
	border-radius: 22px;
	background: #fff;
	margin-top: 12px;
	overflow: hidden;
}

summary
{
	padding: 20px 22px;
	cursor: pointer;
	font-size: 20px;
	font-weight: 950;
	list-style: none;
}

summary::-webkit-details-marker
{
	display: none;
}

summary::after
{
	content: "+";
	float: right;
	font-size: 28px;
	line-height: 20px;
	color: var(--violet);
}

details[open] summary::after
{
	content: "–";
}

details p
{
	padding: 0 22px 22px;
	font-size: 18px !important;
}

.footer
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 36px 16px 52px;
	color: var(--muted);
	font-weight: 800;
}

.footer strong
{
	color: var(--text);
}

.chaos-pop
{
	position: fixed;
	z-index: 100;
	pointer-events: none;
	padding: 10px 14px;
	border-radius: 999px;
	background: #fff;
	box-shadow: var(--shadow);
	font-weight: 1000;
	animation: popFly 1.1s ease forwards;
}

@keyframes gradientText
{
	0%, 100%
	{
		background-position: 0% 50%;
	}

	50%
	{
		background-position: 100% 50%;
	}
}

@keyframes ticker
{
	from
	{
		transform: translateX(0);
	}

	to
	{
		transform: translateX(-50%);
	}
}

@keyframes morph
{
	0%, 100%
	{
		border-radius: 38% 62% 64% 36% / 42% 38% 62% 58%;
	}

	50%
	{
		border-radius: 64% 36% 38% 62% / 58% 62% 38% 42%;
	}
}

@keyframes float
{
	0%, 100%
	{
		margin-top: 0;
	}

	50%
	{
		margin-top: -18px;
	}
}

@keyframes blobMove
{
	0%, 100%
	{
		transform: translate(0, 0) scale(1);
	}

	50%
	{
		transform: translate(40px, -30px) scale(1.18);
	}
}

@keyframes rotateNoise
{
	to
	{
		transform: rotate(360deg);
	}
}

@keyframes popFly
{
	0%
	{
		opacity: 0;
		transform: translate(-50%, -50%) scale(.5) rotate(-12deg);
	}

	20%
	{
		opacity: 1;
	}

	100%
	{
		opacity: 0;
		transform: translate(-50%, -160%) scale(1.2) rotate(12deg);
	}
}

@media (prefers-reduced-motion: reduce)
{
	*,
	*::before,
	*::after
	{
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 900px)
{
	.site-header
	{
		grid-template-columns: 1fr auto;
		border-radius: 28px;
	}

	.nav
	{
		display: none;
	}

	.hero,
	.grid-section
	{
		grid-template-columns: 1fr;
	}

	.hero
	{
		padding-top: 54px;
	}

	.hero-visual
	{
		min-height: 380px;
	}

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

@media (max-width: 560px)
{
	.site-header
	{
		width: calc(100% - 20px);
	}

	.brand strong
	{
		display: none;
	}

	.hero,
	.section
	{
		width: calc(100% - 20px);
	}

	.actions
	{
		display: grid;
	}

	.button
	{
		width: 100%;
	}

	.floating-card
	{
		font-size: 13px;
	}

	.card-two
	{
		right: 0;
	}
}