* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: #050509;
}

body {
	min-height: 100%;
	margin: 0;
	background: #050509;
}

.BrandNewWebLanding {
	--ColorBackground: #050509;
	--ColorPanel: rgba(27, 12, 30, .78);
	--ColorText: #ffffff;
	--ColorMuted: rgba(255, 255, 255, .72);
	--ColorSoft: rgba(255, 255, 255, .46);
	--ColorPink: #ee2868;
	--ColorPurple: #8d31c7;
	--GradientBrand: linear-gradient(135deg, var(--ColorPink), var(--ColorPurple));

	position: relative;
	min-height: 100vh;
	overflow: hidden;
	padding: clamp(32px, 5vw, 72px);
	color: var(--ColorText);
	background:
			radial-gradient(circle at 14% 12%, rgba(238, 40, 104, .24), transparent 30%),
			radial-gradient(circle at 88% 42%, rgba(141, 49, 199, .26), transparent 36%),
			radial-gradient(circle at 48% 115%, rgba(238, 40, 104, .16), transparent 34%),
			var(--ColorBackground);
	font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
}

.BrandNewWebLanding::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .12) 1px, transparent 1px);
	background-size: 38px 38px;
	opacity: .045;
	mask-image: linear-gradient(to bottom, black, transparent 78%);
	-webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.BrandNewWebHeader,
.HeroSection,
.BrandNewWebFooter {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin-inline: auto;
}

.BrandNewWebHeader {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: clamp(72px, 10vw, 130px);
}

.BrandNewWebLogoLink {
	display: inline-flex;
}

.BrandNewWebLogo {
	width: clamp(230px, 25vw, 390px);
	height: auto;
	display: block;
	filter: drop-shadow(0 0 26px rgba(238, 40, 104, .30));
}

.DashboardLink {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ColorSoft);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color .18s ease;
}

.DashboardLink::after {
	content: "";
	position: absolute;
	right: 0;
	top: 38px;
	width: 72px;
	height: 3px;
	border-radius: 999px;
	background: var(--GradientBrand);
}

.DashboardLink i {
	color: var(--ColorPink);
	font-size: 13px;
}

.DashboardLink:hover {
	color: #ffffff;
}

.HeroSection {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr);
	align-items: center;
	gap: clamp(48px, 8vw, 112px);
}

.HeroTitle {
	max-width: 760px;
	margin: 0;
	font-size: clamp(56px, 7.6vw, 112px);
	line-height: 1.02;
	letter-spacing: -.06em;
	font-weight: 300;
}

.HeroTitle span:not(.HeroTitleGradient) {
	font-weight: 300;
	letter-spacing: -.07em;
}

.HeroTitleGradient {
	width: max-content;
	max-width: 100%;
	padding-bottom: .08em;
	margin-bottom: -.04em;
	background: var(--GradientBrand);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -.075em;
}

.GradientDivider {
	width: 74px;
	height: 4px;
	margin: 32px 0;
	border-radius: 999px;
	background: var(--GradientBrand);
}

.GradientDivider.Small {
	width: 58px;
	height: 3px;
	margin: 18px 0 24px;
}

.HeroText {
	max-width: 640px;
	margin: 0;
	color: var(--ColorMuted);
	font-size: clamp(18px, 1.45vw, 22px);
	font-weight: 400;
	line-height: 1.58;
}

.RequestCard {
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid rgba(238, 40, 104, .68);
	border-radius: 28px;
	background:
			linear-gradient(145deg, rgba(238, 40, 104, .13), rgba(141, 49, 199, .11)),
			var(--ColorPanel);
	box-shadow:
			0 28px 90px rgba(0, 0, 0, .45),
			0 0 44px rgba(141, 49, 199, .18);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.RequestIcon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 28px;
	border-radius: 50%;
	color: var(--ColorPink);
	border: 1px solid rgba(238, 40, 104, .35);
	background: rgba(238, 40, 104, .08);
	font-size: 22px;
}

.RequestCard h2 {
	max-width: 320px;
	margin: 0;
	font-size: clamp(26px, 2vw, 34px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.RequestCard p {
	margin: 0 0 32px;
	color: var(--ColorMuted);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.55;
}

.PrimaryButton {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
	padding: 0 30px;
	margin-bottom: 28px;
	border-radius: 16px;
	color: #ffffff;
	background: var(--GradientBrand);
	text-decoration: none;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -.025em;
	box-shadow: 0 18px 44px rgba(238, 40, 104, .26);
	transition: transform .18s ease, box-shadow .18s ease;
}

.PrimaryButton i {
	font-size: 18px;
}

.PrimaryButton:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 54px rgba(238, 40, 104, .34);
}

.MailLine {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	color: var(--ColorMuted);
}

.MailLine i {
	color: var(--ColorPink);
	font-size: 18px;
}

.MailLine a {
	color: var(--ColorMuted);
	font-size: 15px;
	text-decoration: none;
}

.MailLine a:hover {
	color: #ffffff;
}

.BrandNewWebFooter {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin: clamp(90px, 12vw, 150px) auto 0;
	padding-top: 64px;
	text-align: center;
}

.FooterLine {
	position: absolute;
	left: 50%;
	top: 0;
	width: 140vw;
	height: 180px;
	transform: translateX(-50%) rotate(-2deg);
	pointer-events: none;
	overflow: hidden;
}

.FooterLine::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 42px;
	height: 2px;
	background: var(--GradientBrand);
	opacity: .64;
	box-shadow: 0 0 22px rgba(238, 40, 104, .30);
}

.ServiceBar {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 4vw, 54px);
	padding: 74px 0 44px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.ServiceItem {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--ColorMuted);
	font-size: 18px;
	font-weight: 500;
	white-space: nowrap;
}

.ServiceItem i {
	width: 28px;
	color: var(--ColorPink);
	font-size: 24px;
	line-height: 1;
	text-align: center;
}

.ServiceItem p {
	margin: 0;
}

.FooterBottom {
	position: relative;
	z-index: 1;
	padding-top: 28px;
}

.FooterClaim {
	margin: 0;
	color: var(--ColorSoft);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .34em;
}

.FooterAddress {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, .52);
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.7;
}

.FooterAddress strong {
	color: rgba(255, 255, 255, .72);
	font-weight: 700;
}

@media (max-width: 900px) {
	.BrandNewWebLanding {
		padding: 28px 20px;
	}

	.BrandNewWebHeader {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		gap: 24px;
		margin-bottom: 64px;
		text-align: center;
	}

	.BrandNewWebLogoLink {
		justify-content: center;
	}

	.BrandNewWebLogo {
		margin-inline: auto;
	}

	.DashboardLink {
		margin-top: 0;
		justify-content: center;
		text-align: center;
	}

	.DashboardLink::after {
		display: none;
	}

	.HeroSection {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.BrandNewWebFooter {
		margin-top: 72px;
		padding-top: 44px;
		text-align: left;
	}

	.FooterLine {
		height: 140px;
		transform: translateX(-50%) rotate(-2deg);
	}

	.FooterLine::before {
		top: 34px;
		opacity: .42;
	}

	.ServiceBar {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
		padding: 56px 0 36px;
	}

	.FooterClaim {
		letter-spacing: .18em;
	}

	.FooterAddress {
		margin-top: 24px;
	}
}

@media (max-width: 560px) {
	.BrandNewWebLogo {
		width: min(280px, 82vw);
	}

	.HeroTitle {
		font-size: clamp(46px, 17vw, 72px);
		line-height: 1.06;
		letter-spacing: -.065em;
	}

	.RequestCard {
		border-radius: 22px;
	}

	.PrimaryButton {
		min-height: 62px;
		font-size: 18px;
	}

	.MailLine {
		align-items: flex-start;
	}

	.FooterClaim {
		font-size: 12px;
		letter-spacing: .12em;
	}

	.FooterAddress {
		font-size: 14px;
	}
}