.ks-hero {
	--ks-accent: #815421;
	--ks-accent-light: #a8783f;
	--ks-ink: #181512;
	--ks-muted: #5d554c;
	--ks-paper: #f4f0e8;
	--ks-surface: #fff;
	--ks-pointer-x: 0px;
	--ks-pointer-y: 0px;
	position: relative;
	display: flex;
	width: 100%;
	min-height: 88vh;
	overflow: hidden;
	isolation: isolate;
	background: var(--ks-paper);
	color: var(--ks-ink);
}

.ks-hero *,
.ks-hero *::before,
.ks-hero *::after {
	box-sizing: border-box;
}

.ks-hero__noise {
	position: absolute;
	z-index: -2;
	inset: 0;
	opacity: 0.24;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}

.ks-hero__blade-lines {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 42%;
	height: 8px;
	pointer-events: none;
	background:
		repeating-linear-gradient(
			135deg,
			var(--ks-accent) 0 7px,
			transparent 7px 14px
		);
}

.ks-hero::before {
	content: "";
	position: absolute;
	z-index: -2;
	top: 0;
	left: 6%;
	width: 1px;
	height: 100%;
	background: rgba(24, 21, 18, 0.09);
}

.ks-hero::after {
	content: "KATANA / STEEL";
	position: absolute;
	z-index: -1;
	right: 24px;
	bottom: 18px;
	color: rgba(24, 21, 18, 0.28);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.32em;
	line-height: 1;
	writing-mode: vertical-rl;
}

.ks-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
	align-items: center;
	width: 100%;
	max-width: 1440px;
	min-height: inherit;
	margin-inline: auto;
	padding: 96px 48px 72px;
	column-gap: 6vw;
}

.ks-hero__content {
	position: relative;
	z-index: 3;
	max-width: 690px;
}

.ks-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	width: fit-content;
	margin-bottom: 28px;
	color: var(--ks-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.19em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ks-hero__eyebrow-line {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 6px;
	background:
		repeating-linear-gradient(
			90deg,
			var(--ks-accent) 0 5px,
			transparent 5px 8px
		);
}

.ks-hero__eyebrow-line::after {
	content: "";
	position: absolute;
	top: -5px;
	right: 0;
	width: 14px;
	height: 1px;
	background: var(--ks-accent);
	transform: rotate(-35deg);
	transform-origin: right;
}

.ks-hero__title {
	max-width: 760px;
	margin: 0;
	color: var(--ks-ink);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
	font-size: clamp(3.4rem, 5.4vw, 5.2rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.9;
	text-wrap: balance;
}

.ks-hero__title span {
	position: relative;
	z-index: 0;
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-top: 0.14em;
	color: var(--ks-accent);
	font-style: normal;
	font-weight: 800;
}

.ks-hero.has-text-effect--cut .ks-hero__title span {
	padding-right: 0.48em;
}

.ks-hero.has-text-effect--cut .ks-hero__title span::before {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0.09em;
	bottom: -0.06em;
	width: 0.16em;
	height: 1.08em;
	background: var(--ks-ink);
	transform: skewX(-18deg);
}

.ks-hero.has-text-effect--cut .ks-hero__title span::after {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -0.13em;
	left: 0;
	height: 0.08em;
	background: var(--ks-accent-light);
	clip-path: polygon(0 35%, 100% 0, 98% 100%, 1% 78%);
	transform: scaleX(0.74);
	transform-origin: left;
}

.ks-hero.has-text-effect--marker .ks-hero__title span {
	margin-top: 0.18em;
	padding: 0.04em 0.18em 0.1em;
	background: var(--ks-ink);
	color: #fff;
	box-decoration-break: clone;
	clip-path: polygon(1.5% 4%, 100% 0, 97.5% 100%, 0 93%);
}

.ks-hero.has-text-effect--outline .ks-hero__title span {
	color: transparent;
	-webkit-text-stroke: 2px var(--ks-accent);
	text-stroke: 2px var(--ks-accent);
}

.ks-hero__description {
	max-width: 590px;
	margin: 30px 0 0;
	color: var(--ks-muted);
	font-size: 18px;
	line-height: 1.65;
	text-wrap: pretty;
}

.ks-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 36px;
}

.ks-hero__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 54px;
	padding: 16px 24px;
	border: 1px solid transparent;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 180ms ease,
		border-color 180ms ease,
		background-color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.ks-hero__button--primary {
	overflow: hidden;
	background: var(--ks-accent);
	box-shadow: 6px 6px 0 var(--ks-ink);
	color: #fff;
}

.ks-hero__button--primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--ks-ink);
	transform: translateX(-104%) skewX(-14deg);
	transform-origin: left;
	transition: transform 260ms ease;
}

.ks-hero__button--primary > * {
	position: relative;
	z-index: 1;
}

.ks-hero__button--primary:hover::before {
	transform: translateX(0) skewX(0);
}

.ks-hero__button--secondary {
	border-color: rgba(24, 21, 18, 0.28);
	background: transparent;
	color: var(--ks-ink);
}

.ks-hero__button--secondary::after {
	content: "";
	position: absolute;
	right: 20px;
	bottom: 11px;
	left: 20px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 220ms ease;
}

.ks-hero__button--secondary:hover {
	border-color: var(--ks-ink);
	background: rgba(255, 255, 255, 0.42);
}

.ks-hero__button--secondary:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ks-hero__button:hover {
	color: inherit;
	transform: translate(-2px, -2px);
}

.ks-hero__button--primary:hover {
	color: #fff;
	box-shadow: 8px 8px 0 var(--ks-accent-light);
}

.ks-hero__button:focus-visible {
	outline: 3px solid var(--ks-accent-light);
	outline-offset: 4px;
}

.ks-hero__button-icon {
	flex: 0 0 auto;
	transition: transform 180ms ease;
}

.ks-hero__button:hover .ks-hero__button-icon {
	transform: translateX(4px);
}

.ks-hero__sales-note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 22px 0 0;
	color: #665e55;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
}

.ks-hero__sales-note span {
	display: grid;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: var(--ks-ink);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
}

.ks-hero__metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 42px 0 0;
	padding: 0;
	border-top: 1px solid rgba(24, 21, 18, 0.16);
	border-bottom: 1px solid rgba(24, 21, 18, 0.16);
}

.ks-hero__metric {
	position: relative;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 150px;
	margin: 0;
	padding: 18px 20px 17px;
	border-left: 1px solid rgba(24, 21, 18, 0.16);
	background: color-mix(in srgb, var(--ks-surface) 76%, transparent);
}

.ks-hero__metric:first-child {
	padding-left: 0;
	border-left: 0;
	background: transparent;
}

.ks-hero__metric-value,
.ks-hero__metric-label {
	margin: 0;
}

.ks-hero__metric-value {
	order: 1;
	color: var(--ks-ink);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ks-hero__metric-label {
	order: 2;
	margin-top: 6px;
	color: rgba(24, 21, 18, 0.52);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ks-hero__visual {
	position: relative;
	z-index: 1;
	display: grid;
	min-width: 0;
	min-height: 590px;
	place-items: center;
	perspective: 1000px;
}

.ks-hero__visual::before {
	content: "";
	position: absolute;
	z-index: -3;
	top: 5%;
	right: -18%;
	bottom: 3%;
	left: 4%;
	background: #1b1916;
	clip-path: polygon(13% 0, 100% 0, 100% 87%, 83% 100%, 0 100%, 0 15%);
	box-shadow: 0 28px 70px rgba(52, 39, 24, 0.18);
}

.ks-hero__visual::after {
	content: "";
	position: absolute;
	z-index: -2;
	top: calc(5% + 18px);
	right: calc(-18% + 18px);
	bottom: calc(3% + 18px);
	left: calc(4% + 18px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	clip-path: polygon(13% 0, 100% 0, 100% 87%, 83% 100%, 0 100%, 0 15%);
}

.ks-hero__stage {
	position: absolute;
	z-index: -1;
	top: 17%;
	right: -8%;
	width: 84%;
	height: 62%;
	overflow: hidden;
	background: var(--ks-accent);
	clip-path: polygon(13% 0, 100% 0, 90% 100%, 0 100%);
	transform: translate3d(calc(var(--ks-pointer-x) * -0.3), calc(var(--ks-pointer-y) * -0.3), 0);
	transition: transform 240ms ease-out;
}

.ks-hero__stage::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 18px;
	height: 100%;
	background:
		repeating-linear-gradient(
			135deg,
			#1b1916 0 7px,
			transparent 7px 14px
		);
}

.ks-hero__stage::after {
	content: "";
	position: absolute;
	top: 24%;
	right: -10%;
	width: 120%;
	height: 1px;
	background: rgba(255, 255, 255, 0.26);
	box-shadow:
		0 78px 0 rgba(255, 255, 255, 0.13),
		0 156px 0 rgba(255, 255, 255, 0.08);
	transform: rotate(-11deg);
}

.ks-hero__stage span {
	position: absolute;
	top: 5%;
	right: 8%;
	color: rgba(255, 255, 255, 0.11);
	font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
	font-size: clamp(7rem, 14vw, 13rem);
	font-weight: 900;
	letter-spacing: -0.09em;
	line-height: 0.8;
}

.ks-hero__stage small {
	position: absolute;
	bottom: 20px;
	left: 12%;
	color: rgba(255, 255, 255, 0.72);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.28em;
	line-height: 1;
}

.ks-hero__product-image {
	position: relative;
	z-index: 2;
	display: block;
	width: 92%;
	max-width: 760px;
	height: auto;
	object-fit: contain;
	transform: translate3d(var(--ks-pointer-x), var(--ks-pointer-y), 0) rotate(-2deg);
	transition: transform 240ms ease-out;
	will-change: transform;
}

.ks-hero__product-image--shadow {
	filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.38));
}

.ks-hero__model-label {
	position: absolute;
	top: 10%;
	left: 8%;
	z-index: 3;
	padding: 8px 12px;
	border-left: 3px solid var(--ks-accent-light);
	background: #fff;
	box-shadow: 5px 5px 0 rgba(24, 21, 18, 0.16);
	color: var(--ks-ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.25;
	text-transform: uppercase;
}

.ks-hero__badge {
	position: absolute;
	right: -2%;
	bottom: 5%;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 202px;
	padding: 15px 17px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #fff;
	box-shadow: 7px 7px 0 var(--ks-accent);
	transform: translate3d(calc(var(--ks-pointer-x) * -0.45), calc(var(--ks-pointer-y) * -0.45), 0);
	transition: transform 240ms ease-out;
}

.ks-hero__badge-icon {
	display: grid;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	place-items: center;
	background: var(--ks-ink);
	color: #fff;
}

.ks-hero__badge-icon svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.ks-hero__badge-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ks-hero__badge-copy strong {
	color: var(--ks-ink);
	font-size: 10px;
	letter-spacing: 0.15em;
	line-height: 1.2;
}

.ks-hero__badge-copy small {
	color: rgba(24, 21, 18, 0.58);
	font-size: 11px;
	line-height: 1.3;
}

.ks-hero.has-reveal:not(.is-visible) .ks-hero__content > *,
.ks-hero.has-reveal:not(.is-visible) .ks-hero__visual {
	opacity: 0;
	transform: translateY(22px);
}

.ks-hero.has-reveal.is-visible .ks-hero__content > *,
.ks-hero.has-reveal.is-visible .ks-hero__visual {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 580ms ease,
		transform 580ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ks-hero.has-reveal.is-visible .ks-hero__content > :nth-child(2) {
	transition-delay: 55ms;
}

.ks-hero.has-reveal.is-visible .ks-hero__content > :nth-child(3) {
	transition-delay: 105ms;
}

.ks-hero.has-reveal.is-visible .ks-hero__content > :nth-child(4) {
	transition-delay: 155ms;
}

.ks-hero.has-reveal.is-visible .ks-hero__content > :nth-child(5) {
	transition-delay: 205ms;
}

.ks-hero.has-reveal.is-visible .ks-hero__content > :nth-child(6) {
	transition-delay: 255ms;
}

.ks-hero.has-reveal.is-visible .ks-hero__visual {
	transition-delay: 110ms;
}

@media (max-width: 1100px) {
	.ks-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
		padding: 80px 32px 60px;
		column-gap: 34px;
	}

	.ks-hero__visual {
		min-height: 500px;
	}

	.ks-hero__metric {
		min-width: 125px;
		padding-inline: 12px;
	}

	.ks-hero__badge {
		right: 0;
	}
}

@media (max-width: 767px) {
	.ks-hero {
		min-height: 0;
	}

	.ks-hero::before {
		left: 20px;
	}

	.ks-hero::after {
		display: none;
	}

	.ks-hero__blade-lines {
		width: 62%;
	}

	.ks-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		padding: 58px 18px 36px;
	}

	.ks-hero__content {
		max-width: none;
	}

	.ks-hero__eyebrow {
		margin-bottom: 21px;
		font-size: 9px;
	}

	.ks-hero__title {
		font-size: clamp(2.8rem, 13.2vw, 4.2rem);
		line-height: 0.93;
	}

	.ks-hero.has-text-effect--outline .ks-hero__title span {
		-webkit-text-stroke-width: 1.4px;
	}

	.ks-hero__description {
		margin-top: 23px;
		font-size: 16px;
		line-height: 1.6;
	}

	.ks-hero__actions {
		align-items: stretch;
		margin-top: 29px;
	}

	.ks-hero__button {
		flex: 1 1 100%;
		width: 100%;
	}

	.ks-hero__button--primary {
		box-shadow: 5px 5px 0 var(--ks-ink);
	}

	.ks-hero__sales-note {
		align-items: flex-start;
	}

	.ks-hero__metrics {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 27px;
	}

	.ks-hero__metric,
	.ks-hero__metric:first-child {
		min-width: 0;
		padding: 12px 0;
		border-top: 1px solid rgba(24, 21, 18, 0.11);
		border-left: 0;
		background: transparent;
	}

	.ks-hero__metric:first-child {
		border-top: 0;
	}

	.ks-hero__visual {
		min-height: 380px;
		margin-top: 28px;
	}

	.ks-hero__visual::before {
		top: 3%;
		right: -15%;
		bottom: 2%;
		left: 0;
	}

	.ks-hero__visual::after {
		top: calc(3% + 12px);
		right: calc(-15% + 12px);
		bottom: calc(2% + 12px);
		left: 12px;
	}

	.ks-hero__stage {
		top: 17%;
		right: -7%;
		width: 92%;
		height: 58%;
	}

	.ks-hero__stage span {
		font-size: clamp(7rem, 41vw, 11rem);
	}

	.ks-hero__product-image {
		width: min(96%, 520px);
	}

	.ks-hero__model-label {
		top: 8%;
		left: 6%;
		max-width: 72%;
	}

	.ks-hero__badge {
		right: 0;
		bottom: 3%;
		min-width: 184px;
	}
}

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

	.ks-hero__product-image,
	.ks-hero__stage,
	.ks-hero__badge {
		transform: none !important;
	}
}
