.block--hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #0d0d0d;
	color: #fff;
	padding-top: 70px;
	z-index: 0;
	overflow: hidden;
}

.block--hero__ticker {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--pb-green, #4a7c2f);
	overflow: hidden;
	height: 44px;
	display: flex;
	align-items: center;
	z-index: 2;
}

.block--hero__ticker-track {
	display: flex;
	white-space: nowrap;
	will-change: transform;
	animation: pb-ticker 30s linear infinite;
}

.block--hero__ticker-text {
	font-family: 'Roboto', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #fff;
	padding-right: 80px;
	flex-shrink: 0;
}

@keyframes pb-ticker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@keyframes pb-ticker-px {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-1 * var(--ticker-half, 50%))); }
}

.block--hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.70) 0%,
		rgba(0, 0, 0, 0.50) 60%,
		rgba(0, 0, 0, 0.75) 100%
	);
}

.block--hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 100px 20px 80px;
}

.block--hero__content {
	max-width: 760px;
}

.block--hero__naglowek {
	margin: 0 0 24px;
}

.block--hero__typewriter {
	font-family: 'Roboto', sans-serif;
	font-size: clamp(2rem, 5.5vw, 6rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0;
	color: #fff;
	text-shadow: 0 3px 16px rgba(0,0,0,0.6);
	white-space: nowrap;
	letter-spacing: 0.04em;
}

@media (max-width: 600px) {
	.block--hero__typewriter {
		white-space: normal;
		font-size: clamp(1.8rem, 9vw, 3rem);
	}
	.block--hero__inner {
		padding: 60px 20px 60px;
	}
	.block--hero__podnaglowek {
		font-size: 0.9rem;
	}
}

.block--hero__cursor {
	display: inline-block;
	color: var(--pb-green-light, #6aac3f);
	animation: pb-blink 0.9s step-start infinite;
	margin-left: 2px;
}

@keyframes pb-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.block--hero__podnaglowek {
	font-size: 1rem;
	margin: 0 0 36px;
	color: rgba(255,255,255,0.82);
	max-width: 580px;
	line-height: 1.7;
}

.block--hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.block--hero__cta { flex-direction: column; align-items: flex-start; }
	.block--hero__inner { padding: 80px 20px 60px; }
}
