:root {
	--chaos-bg: #111820;
	--chaos-panel: rgba(11, 18, 25, 0.58);
	--chaos-border: rgba(255, 255, 255, 0.16);
	--chaos-text: #ffffff;
	--chaos-muted: rgba(255, 255, 255, 0.78);
	--chaos-orange: #ff5b13;
	--chaos-orange-soft: rgba(255, 91, 19, 0.28);
	--chaos-blue-soft: rgba(58, 164, 209, 0.22);
	--chaos-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
	margin: 0;
}

body {
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	background: var(--chaos-bg);
	color: var(--chaos-text);
}

.chaos-hero {
	position: relative;
	isolation: isolate;
	min-height: 100svh;
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: clamp(28px, 5vw, 72px);
	background-image:
		linear-gradient(112deg, rgba(9, 16, 23, 0.92) 0%, rgba(9, 22, 31, 0.78) 42%, rgba(8, 32, 45, 0.68) 100%),
		url("https://images.unsplash.com/photo-1614850523011-8f49ffc73908?auto=format&fit=crop&fm=jpg&q=80&w=2400");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.chaos-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 18% 24%, rgba(255, 91, 19, 0.32), transparent 34%),
		radial-gradient(circle at 82% 18%, rgba(61, 177, 219, 0.22), transparent 32%),
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: auto, auto, 72px 72px, 72px 72px;
	mix-blend-mode: screen;
	opacity: 0.9;
}

.chaos-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.46)),
		radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.48) 100%);
	pointer-events: none;
}

.chaos-hero__content {
	width: min(100%, 880px);
	margin: 0 auto;
	padding: clamp(28px, 5vw, 64px);
	text-align: center;
	background: var(--chaos-panel);
	border: 1px solid var(--chaos-border);
	border-radius: 34px;
	box-shadow: var(--chaos-shadow);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.chaos-hero__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0px;
	padding: 10px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.chaos-hero__logo:hover,
.chaos-hero__logo:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.chaos-hero__logo img {
	display: block;
	width: clamp(128px, 18vw, 178px);
	height: auto;
}

.chaos-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--chaos-text);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	width: fit-content;
}

.chaos-hero__badge::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--chaos-orange);
	box-shadow: 0 0 0 8px var(--chaos-orange-soft), 0 0 32px rgba(255, 91, 19, 0.78);
}

.chaos-hero h1 {
	max-width: 820px;
	margin: 0 auto;
	color: var(--chaos-text);
	font-size: clamp(48px, 9vw, 108px);
	font-weight: 900;
	line-height: 0.94;
	letter-spacing: -0.075em;
	text-wrap: balance;
	text-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
}

.chaos-hero__lead {
	max-width: 720px;
	margin: clamp(24px, 4vw, 34px) auto 0;
	color: var(--chaos-muted);
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 700;
	line-height: 1.8;
	text-wrap: pretty;
}

.chaos-hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: clamp(30px, 5vw, 46px);
	flex-wrap: wrap;
}

.chaos-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.chaos-btn:hover,
.chaos-btn:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
}

.chaos-btn--primary {
	color: #ffffff;
	background: var(--chaos-orange);
	border: 1px solid rgba(255, 91, 19, 0.95);
	box-shadow: 0 16px 34px rgba(255, 91, 19, 0.28);
}

.chaos-btn--primary:hover,
.chaos-btn--primary:focus-visible {
	color: #ffffff;
	background: #ff6f2e;
	box-shadow: 0 20px 42px rgba(255, 91, 19, 0.36);
}

.chaos-btn--ghost {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.chaos-btn--ghost:hover,
.chaos-btn--ghost:focus-visible {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.42);
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox!important;
    display: flex !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column!important;
    flex-direction: column !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center!important;
    justify-content: center !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center!important;
    align-items: center !important;
}

@media (max-width: 720px) {
	.chaos-hero {
		padding: 18px;
		place-items: stretch;
	}

	.chaos-hero__content {
		min-height: calc(100svh - 36px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 28px 22px;
		border-radius: 26px;
	}

	.chaos-hero h1 {
		letter-spacing: -0.055em;
	}

	.chaos-hero__lead {
		font-weight: 500;
		line-height: 1.65;
	}

	.chaos-hero__actions {
		align-items: stretch;
	}

	.chaos-btn {
		width: 100%;
		max-width: 320px;
		margin-inline: auto;
	}
}
