:root {
	--ink: #111827;
	--muted: #667085;
	--paper: #fff7f7;
	--card: rgba(255, 255, 255, 0.78);
	--lime: #d7ff3f;
	--orange: #ff2d55;
	--blue: #1563ff;
	--rose: #e30613;
	--aqua: #26f4d0;
	--shadow: 0 28px 90px rgba(17, 24, 39, 0.2);
	--radius-xl: 34px;
	--radius-md: 22px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 12% 6%, rgba(21, 99, 255, 0.22), transparent 28rem),
		radial-gradient(circle at 86% 12%, rgba(227, 6, 19, 0.23), transparent 28rem),
		radial-gradient(circle at 50% 48%, rgba(38, 244, 208, 0.12), transparent 34rem),
		linear-gradient(135deg, #fff 0%, #fff1f3 38%, #eef5ff 100%);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(227, 6, 19, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(21, 99, 255, 0.06) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, black, transparent 80%);
	z-index: -1;
}

body::after {
	content: "POLSKA / PART-TIME / START";
	position: fixed;
	right: -160px;
	top: 36%;
	z-index: -1;
	font-family: "Archivo", sans-serif;
	font-size: clamp(64px, 10vw, 150px);
	font-weight: 900;
	letter-spacing: -0.08em;
	color: rgba(227, 6, 19, 0.055);
	transform: rotate(-90deg);
	pointer-events: none;
}

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

img {
	display: block;
	max-width: 100%;
}

.site-header {
	position: sticky;
	top: 12px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1180px, calc(100% - 32px));
	margin: 12px auto 0;
	padding: 10px 12px 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	backdrop-filter: blur(18px);
	box-shadow: 0 14px 44px rgba(17, 24, 39, 0.12);
}

.brand,
.nav-links,
.hero-actions,
.trust-row {
	display: flex;
	align-items: center;
}

.brand {
	gap: 10px;
	font-weight: 800;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, #e30613, #1563ff);
}

.nav-links {
	gap: 24px;
	font-size: 14px;
	color: var(--muted);
}

.header-cta,
.mega-cta,
.submit-btn,
.sticky-cta {
	border: 0;
	font-weight: 900;
	letter-spacing: -0.02em;
	background: var(--orange);
	color: #fff;
	box-shadow: 0 14px 0 var(--ink), 0 24px 42px rgba(255, 106, 34, 0.34);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta {
	padding: 13px 19px;
	border-radius: 999px;
	box-shadow: none;
}

.header-cta:hover,
.mega-cta:hover,
.submit-btn:hover,
.sticky-cta:hover {
	transform: translateY(-3px);
}

.section-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	gap: 48px;
	align-items: center;
	min-height: calc(100vh - 92px);
	padding: 68px 0 56px;
	overflow: hidden;
}

.city-backdrop {
	position: absolute;
	inset: 28px -20px auto auto;
	z-index: -1;
	width: min(63vw, 780px);
	height: 520px;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 48px;
	overflow: hidden;
	box-shadow: 0 28px 90px rgba(17, 24, 39, 0.18);
	transform: rotate(2deg);
}

.city-backdrop::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4) 48%, rgba(227, 6, 19, 0.18)),
		linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.2));
}

.city-backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.04);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	padding: 8px 12px;
	border: 1px solid rgba(227, 6, 19, 0.16);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(14px);
}

.eyebrow::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--rose);
	box-shadow: 0 0 0 7px rgba(227, 6, 19, 0.12);
}

h1,
h2,
h3 {
	font-family: "Archivo", sans-serif;
	letter-spacing: -0.055em;
	line-height: 0.95;
}

h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(52px, 8vw, 104px);
	text-shadow: 0 10px 40px rgba(255, 255, 255, 0.82);
}

h2 {
	margin: 0;
	font-size: clamp(36px, 5vw, 70px);
}

h3 {
	margin: 0;
	font-size: 26px;
}

.hero-text,
.apply-copy p,
.job-card p,
.benefit-item p,
.step-card p,
.quote-card p {
	font-size: 18px;
	line-height: 1.62;
	color: var(--muted);
}

.hero-text {
	max-width: 660px;
	margin: 24px 0 0;
}

.hero-actions {
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.mega-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 0 30px;
	border: 3px solid var(--ink);
	border-radius: 18px;
	font-size: 20px;
}

.mega-cta.compact {
	margin-top: 28px;
	min-height: 58px;
	font-size: 18px;
}

.pulse {
	animation: ctaPulse 1.9s infinite;
}

.ghost-link {
	font-weight: 800;
	border-bottom: 3px solid var(--ink);
}

.trust-row {
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 34px;
}

.trust-row span {
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 250, 240, 0.78);
	box-shadow: 0 10px 25px rgba(17, 19, 15, 0.08);
}

.trust-row strong {
	margin-right: 6px;
}

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

.hero-img {
	position: absolute;
	inset: 46px 28px 0 auto;
	width: min(92%, 520px);
	height: 470px;
	object-fit: cover;
	border: 5px solid rgba(255, 255, 255, 0.9);
	border-radius: 38px;
	box-shadow: var(--shadow);
	animation: photoTilt 5s ease-in-out infinite;
}

.city-label {
	position: absolute;
	right: 34px;
	top: 36px;
	z-index: 3;
	padding: 10px 14px;
	border: 2px solid var(--ink);
	border-radius: 999px;
	font-family: "Archivo", sans-serif;
	font-weight: 900;
	letter-spacing: -0.03em;
	background: #fff;
	box-shadow: 6px 6px 0 var(--blue);
	transform: rotate(4deg);
}

.orbit {
	position: absolute;
	border-radius: 999px;
	filter: blur(0.1px);
	animation: floaty 6s ease-in-out infinite;
}

.orbit-one {
	top: 28px;
	left: 12px;
	width: 220px;
	height: 220px;
	background: linear-gradient(135deg, var(--rose), #fff);
}

.orbit-two {
	right: 4px;
	bottom: 42px;
	width: 155px;
	height: 155px;
	background: linear-gradient(135deg, var(--blue), var(--aqua));
	animation-delay: -2.2s;
}

.floating-card {
	position: absolute;
	z-index: 2;
	padding: 18px 20px;
	border: 3px solid var(--ink);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(16px);
	box-shadow: 10px 10px 0 var(--ink);
	animation: bob 3s ease-in-out infinite;
}

.floating-card span {
	display: block;
	font-family: "Archivo", sans-serif;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.floating-card small {
	color: var(--muted);
	font-weight: 700;
}

.card-pay {
	left: 0;
	top: 330px;
}

.card-fast {
	right: 0;
	top: 118px;
	animation-delay: -1.4s;
}

.hot-board {
	padding: 26px 0;
	border-block: 3px solid var(--ink);
	background:
		linear-gradient(135deg, rgba(20, 56, 255, 0.12), transparent 36%),
		var(--lime);
}

.hot-board-inner {
	display: grid;
	grid-template-columns: 0.72fr 1.65fr auto;
	gap: 22px;
	align-items: center;
}

.hot-board-copy span {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 7px 10px;
	border: 2px solid var(--ink);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	background: #fff;
}

.hot-board-copy strong {
	display: block;
	font-family: "Archivo", sans-serif;
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.hot-tags {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 10px;
}

.hot-tag {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 68px;
	padding: 12px;
	border: 2px solid var(--ink);
	border-radius: 19px;
	background: rgba(255, 250, 240, 0.92);
	box-shadow: 5px 5px 0 rgba(17, 19, 15, 0.88);
	font-weight: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hot-tag:hover {
	transform: translateY(-5px) rotate(-1deg);
	box-shadow: 8px 8px 0 var(--ink);
	background: #fff;
}

.hot-tag em {
	display: grid;
	place-items: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-style: normal;
	font-size: 12px;
	background: var(--ink);
	color: #fff;
}

.hot-tag span {
	line-height: 1.08;
}

.hot-tag.big,
.hot-tag.wide {
	grid-column: span 2;
}

.hot-tag.tall {
	grid-row: span 2;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	background: var(--orange);
	color: #fff;
}

.hot-tag.accent {
	background: var(--blue);
	color: #fff;
}

.hot-board-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 20px;
	border: 3px solid var(--ink);
	border-radius: 999px;
	font-weight: 900;
	white-space: nowrap;
	background: var(--orange);
	color: #fff;
	box-shadow: 7px 7px 0 var(--ink);
	animation: ctaPulseSoft 2.1s infinite;
}

.split-section,
.companies,
.city-opportunities,
.benefits,
.steps,
.social-proof,
.apply {
	padding: 94px 0;
}

.section-intro {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 36px;
	align-items: end;
	margin-bottom: 34px;
}

.section-intro.centered {
	display: block;
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.job-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.filter-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding: 18px;
	border: 3px solid var(--ink);
	border-radius: 26px;
	background: rgba(255, 250, 240, 0.88);
	box-shadow: 10px 10px 0 var(--ink);
}

.filter-panel span {
	font-family: "Archivo", sans-serif;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.filter-panel p {
	margin: 6px 0 0;
	color: var(--muted);
}

.filter-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-btn {
	padding: 12px 15px;
	border: 2px solid var(--ink);
	border-radius: 999px;
	font: inherit;
	font-weight: 900;
	background: #fff;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
	transform: translateY(-2px);
	background: var(--blue);
	color: #fff;
}

.job-card.is-hidden {
	display: none;
}

.job-card,
.benefit-panel,
.benefit-item,
.step-card,
.quote-card,
.lead-form {
	border: 2px solid rgba(17, 19, 15, 0.13);
	border-radius: var(--radius-md);
	background: rgba(255, 250, 240, 0.8);
	box-shadow: 0 18px 50px rgba(17, 19, 15, 0.08);
}

.job-card {
	overflow: hidden;
}

.job-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.job-card div {
	padding: 22px;
}

.tag {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
	background: var(--lime);
}

.companies {
	padding-top: 36px;
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.logo-card {
	display: grid;
	place-items: center;
	min-height: 150px;
	padding: 18px;
	border: 3px solid rgba(17, 19, 15, 0.86);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(17, 19, 15, 0.08);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.logo-card:hover {
	transform: translateY(-8px) rotate(-1deg);
	box-shadow: 8px 8px 0 var(--ink);
}

.logo-card span {
	font-weight: 900;
	text-align: center;
	color: rgba(17, 19, 15, 0.72);
}

.logo-card img {
	width: min(150px, 86%);
	height: 64px;
	margin-bottom: 13px;
	object-fit: contain;
}

.company-note {
	max-width: 820px;
	margin: 22px auto 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

.city-opportunities {
	padding-top: 34px;
}

.city-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.city-card {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 178px;
	padding: 20px;
	border: 3px solid var(--ink);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 8px 8px 0 rgba(17, 24, 39, 0.88);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card::after {
	content: "";
	position: absolute;
	right: -34px;
	bottom: -40px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: rgba(227, 6, 19, 0.12);
}

.city-card:hover {
	transform: translateY(-7px) rotate(-1deg);
	box-shadow: 12px 12px 0 var(--ink);
}

.city-card span,
.city-card strong,
.city-card small {
	position: relative;
	z-index: 1;
}

.city-card span {
	font-weight: 900;
	color: var(--muted);
}

.city-card strong {
	display: block;
	margin-top: 18px;
	font-family: "Archivo", sans-serif;
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.07em;
}

.city-card small {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 900;
	color: var(--rose);
}

.hero-city {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 372px;
	background:
		linear-gradient(135deg, rgba(227, 6, 19, 0.94), rgba(21, 99, 255, 0.88)),
		#e30613;
	color: #fff;
}

.hero-city span,
.hero-city small {
	color: #fff;
}

.hero-city::after {
	width: 240px;
	height: 240px;
	background: rgba(255, 255, 255, 0.14);
}

.gdansk-card {
	background: linear-gradient(135deg, rgba(38, 244, 208, 0.35), rgba(255, 255, 255, 0.9));
}

.city-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.city-strip span {
	padding: 10px 14px;
	border: 2px solid rgba(17, 24, 39, 0.18);
	border-radius: 999px;
	font-weight: 900;
	background: rgba(255, 255, 255, 0.72);
}

.benefits {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: 24px;
	align-items: stretch;
}

.benefit-panel {
	position: sticky;
	top: 110px;
	align-self: start;
	padding: 34px;
	background: var(--ink);
	color: #fff;
}

.benefit-panel .eyebrow,
.benefit-panel .eyebrow::before {
	background-color: var(--lime);
	color: var(--ink);
}

.benefit-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.benefit-item {
	padding: 24px;
}

.benefit-item span,
.step-card strong {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 50%;
	font-weight: 900;
	background: var(--orange);
	color: #fff;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.step-card {
	padding: 28px;
	transform: rotate(-1deg);
}

.step-card:nth-child(2) {
	transform: translateY(20px) rotate(1.5deg);
}

.step-card:nth-child(3) {
	transform: rotate(-0.5deg);
}

.social-proof {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 30px;
	align-items: center;
}

.proof-img {
	height: 520px;
	width: 100%;
	object-fit: cover;
	border: 5px solid var(--ink);
	border-radius: 34px;
	box-shadow: 14px 14px 0 var(--blue);
}

.quote-card {
	margin-top: 26px;
	padding: 24px;
	background: #fff;
}

.quote-card span {
	font-weight: 900;
}

.apply {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 28px;
	align-items: center;
}

.lead-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 24px;
	border: 4px solid var(--ink);
	background: var(--card);
	box-shadow: 16px 16px 0 var(--ink);
}

.lead-form label {
	display: grid;
	gap: 8px;
	font-weight: 900;
}

.lead-form input,
.lead-form select {
	width: 100%;
	min-height: 54px;
	padding: 0 14px;
	border: 2px solid rgba(17, 19, 15, 0.2);
	border-radius: 14px;
	font: inherit;
	background: #fff;
}

.submit-btn {
	grid-column: 1 / -1;
	min-height: 64px;
	border: 3px solid var(--ink);
	border-radius: 16px;
	font-size: 22px;
}

.form-note {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	text-align: center;
}

.sticky-cta {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 30;
	padding: 16px 22px;
	border: 3px solid var(--ink);
	border-radius: 999px;
	font-size: 17px;
}

.footer {
	padding: 34px 16px 92px;
	text-align: center;
	color: var(--muted);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.12s;
}

.delay-2 {
	transition-delay: 0.22s;
}

@keyframes ctaPulse {
	0%, 100% { box-shadow: 0 14px 0 var(--ink), 0 24px 42px rgba(255, 106, 34, 0.34); }
	50% { box-shadow: 0 10px 0 var(--ink), 0 0 0 14px rgba(255, 106, 34, 0.16), 0 24px 42px rgba(255, 106, 34, 0.34); }
}

@keyframes morph {
	0%, 100% { border-radius: 46% 54% 42% 58% / 55% 38% 62% 45%; }
	50% { border-radius: 58% 42% 54% 46% / 42% 56% 44% 58%; }
}

@keyframes photoTilt {
	0%, 100% { transform: rotate(-1.5deg) translateY(0); }
	50% { transform: rotate(1.5deg) translateY(-10px); }
}

@keyframes floaty {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(16px, -18px, 0) scale(1.06); }
}

@keyframes bob {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-14px) rotate(2deg); }
}

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

@keyframes ctaPulseSoft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

@media (max-width: 940px) {
	.nav-links {
		display: none;
	}

	.hero,
	.hot-board-inner,
	.section-intro,
	.benefits,
	.social-proof,
	.apply {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 44px;
	}

	.city-backdrop {
		inset: 70px 0 auto auto;
		width: min(100%, 680px);
		height: 420px;
		opacity: 0.72;
		transform: rotate(1deg);
	}

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

	.hero-img {
		inset: 36px auto auto 50%;
		width: min(92vw, 520px);
		animation: none;
		transform: translateX(-50%);
	}

	.card-pay {
		left: 8px;
	}

	.card-fast {
		right: 8px;
	}

	.job-grid,
	.logo-wall,
	.city-grid,
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.job-grid,
	.steps-grid {
		grid-template-columns: 1fr;
	}

	.filter-panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.filter-actions {
		justify-content: flex-start;
	}

	.hero-city {
		grid-column: span 2;
		grid-row: auto;
		min-height: 240px;
	}

	.hot-tags {
		grid-template-columns: repeat(2, 1fr);
	}

	.hot-board-cta {
		width: max-content;
	}

	.benefit-panel {
		position: relative;
		top: 0;
	}

	.step-card,
	.step-card:nth-child(2),
	.step-card:nth-child(3) {
		transform: none;
	}
}

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

	.brand span:last-child {
		display: none;
	}

	.header-cta {
		padding: 11px 14px;
		font-size: 14px;
	}

	.section-shell {
		width: min(100% - 22px, 1180px);
	}

	h1 {
		font-size: clamp(44px, 14vw, 64px);
	}

	.hero-text,
	.apply-copy p,
	.job-card p,
	.benefit-item p,
	.step-card p,
	.quote-card p {
		font-size: 16px;
	}

	.mega-cta,
	.submit-btn {
		width: 100%;
		font-size: 18px;
	}

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

	.hero-img {
		height: 360px;
		border-width: 4px;
	}

	.city-backdrop {
		inset: 96px 0 auto 0;
		width: 100%;
		height: 320px;
		border-radius: 32px;
		transform: none;
	}

	.city-label {
		right: 16px;
		top: 22px;
	}

	.floating-card {
		padding: 13px 14px;
		box-shadow: 7px 7px 0 var(--ink);
	}

	.floating-card span {
		font-size: 22px;
	}

	.card-pay {
		top: 270px;
	}

	.card-fast {
		top: 72px;
	}

	.split-section,
	.companies,
	.city-opportunities,
	.benefits,
	.steps,
	.social-proof,
	.apply {
		padding: 62px 0;
	}

	.benefit-list,
	.logo-wall,
	.city-grid,
	.lead-form {
		grid-template-columns: 1fr;
	}

	.hero-city {
		grid-column: auto;
		min-height: 220px;
	}

	.city-card {
		min-height: 150px;
		box-shadow: 7px 7px 0 rgba(17, 24, 39, 0.88);
	}

	.filter-panel {
		box-shadow: 7px 7px 0 var(--ink);
	}

	.filter-btn {
		flex: 1 1 calc(50% - 10px);
	}

	.hot-board-inner {
		gap: 16px;
	}

	.hot-tags {
		grid-template-columns: 1fr;
	}

	.hot-tag.big,
	.hot-tag.wide,
	.hot-tag.tall {
		grid-column: auto;
		grid-row: auto;
		flex-direction: row;
		align-items: center;
	}

	.hot-board-cta {
		width: 100%;
	}

	.proof-img {
		height: 330px;
		box-shadow: 8px 8px 0 var(--blue);
	}

	.lead-form {
		padding: 18px;
		box-shadow: 9px 9px 0 var(--ink);
	}

	.sticky-cta {
		left: 14px;
		right: 14px;
		text-align: center;
	}
}

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