:root {
	--drh-navy: #07172b;
	--drh-blue: #0d2d54;
	--drh-red: #ee2f36;
	--drh-white: #f8fbff;
}

.drh-hero,
.drh-hero * { box-sizing: border-box; }

.drh-hero {
	--drh-rx: 0deg;
	--drh-ry: 0deg;
	--drh-mx: 0px;
	--drh-my: 0px;
	--drh-scene-y: 0px;
	--drh-copy-y: 0px;
	--drh-scale: .98;
	position: relative;
	min-height: clamp(650px, calc(100svh - 120px), 820px);
	margin: 0;
	overflow: clip;
	background: var(--drh-navy);
	color: var(--drh-white);
	font-family: 'Instrument Sans', Inter, system-ui, sans-serif;
	isolation: isolate;
	perspective: 1400px;
}

.drh-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(4, 15, 30, .99) 0%, rgba(4, 15, 30, .94) 26%, rgba(4, 15, 30, .56) 45%, rgba(4, 15, 30, .07) 70%),
		linear-gradient(0deg, rgba(4, 15, 30, .46) 0%, transparent 34%);
	pointer-events: none;
}

.drh-media {
	position: absolute;
	inset: 0;
	z-index: -3;
	transform: translate3d(calc(var(--drh-mx) * .12), calc(var(--drh-scene-y) + var(--drh-my) * .08), 0) scale(var(--drh-scale));
	transform-origin: 68% 56%;
	will-change: transform;
}

.drh-media picture,
.drh-media img { display: block; width: 100%; height: 100%; }
.drh-media img { object-fit: cover; object-position: center; }

.drh-grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: .15;
	background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(90deg, #000, transparent 48%);
	-webkit-mask-image: linear-gradient(90deg, #000, transparent 48%);
	transform: translate3d(calc(var(--drh-mx) * -.05), calc(var(--drh-scene-y) * -.25), 0);
}

.drh-grain {
	position: absolute;
	inset: 0;
	z-index: 5;
	opacity: .045;
	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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.drh-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(610px, 1fr) 1fr;
	align-items: start;
	width: min(1480px, calc(100% - 72px));
	min-height: inherit;
	margin: 0 auto;
	padding: 52px 0 132px;
	transform-style: preserve-3d;
}

.drh-copy {
	max-width: 720px;
	transform: translate3d(0, var(--drh-copy-y), 0) rotateX(calc(var(--drh-rx) * -.13)) rotateY(calc(var(--drh-ry) * -.12));
	transform-origin: left center;
	transform-style: preserve-3d;
	will-change: transform;
}

.drh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	padding: 9px 15px;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 999px;
	color: rgba(255,255,255,.9);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .16em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.drh-eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--drh-red); box-shadow: 0 0 0 5px rgba(238,47,54,.14); }

.drh-copy h1 {
	margin: 0;
	font-size: clamp(48px, 4.15vw, 68px);
	font-weight: 750;
	line-height: 1.01;
	letter-spacing: -.045em;
	text-wrap: balance;
}

.drh-copy h1 em { color: #fff; font-family: inherit; font-weight: inherit; font-style: normal; letter-spacing: inherit; }

.drh-lead {
	max-width: 570px;
	margin: 22px 0 0;
	color: rgba(235,242,250,.74);
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.55;
}

.drh-benefits { display: flex; gap: 0; margin-top: 27px; }
.drh-benefit { display: flex; align-items: center; gap: 11px; min-width: 0; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.18); }
.drh-benefit:first-child { padding-left: 0; border-left: 0; }
.drh-benefit__icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(104,168,242,.5); border-radius: 12px; background: linear-gradient(145deg, rgba(28,93,166,.9), rgba(12,43,83,.82)); box-shadow: 0 8px 24px rgba(3,12,25,.32); }
.drh-benefit__icon--red { border-color: rgba(255,91,96,.6); background: linear-gradient(145deg, #f43b43, #b81724); }
.drh-benefit svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.drh-benefit strong, .drh-benefit small { display: block; }
.drh-benefit strong { color: #fff; font-size: 12px; line-height: 1.25; text-transform: uppercase; }
.drh-benefit small { margin-top: 4px; color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.25; }

.drh-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 29px; }
.drh-btn { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; border-radius: 12px; color: #fff !important; font-size: 13px; font-weight: 800; letter-spacing: .035em; text-decoration: none !important; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.drh-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.drh-btn--primary { background: var(--drh-red) !important; box-shadow: 0 16px 38px rgba(225,37,44,.28); }
.drh-btn--ghost { border-color: rgba(255,255,255,.48); background: rgba(7,23,43,.16) !important; backdrop-filter: blur(12px); }
.drh-btn:hover { transform: translateY(-3px); }
.drh-btn--primary:hover { box-shadow: 0 20px 44px rgba(225,37,44,.42); }
.drh-btn:hover svg { transform: translateX(4px); }

.drh-stage {
	position: relative;
	height: 520px;
	transform: translate3d(var(--drh-mx), calc(var(--drh-my) + var(--drh-scene-y) * -.25), 70px) rotateX(var(--drh-rx)) rotateY(var(--drh-ry));
	transform-style: preserve-3d;
	will-change: transform;
}

.drh-hotspot { --depth: 1; position: absolute; z-index: 4; display: flex; align-items: center; color: #fff !important; text-decoration: none !important; transform: translate3d(calc(var(--drh-mx) * var(--depth) * .12), calc(var(--drh-my) * var(--depth) * .12), calc(80px * var(--depth))); }
.drh-hotspot--chair { --depth: 1.25; left: 29%; top: 42%; }
.drh-hotspot--desk { --depth: .85; right: 20%; top: 37%; flex-direction: row-reverse; }
.drh-hotspot--craft { --depth: 1.5; right: 34%; bottom: 13%; flex-direction: row-reverse; }
.drh-hotspot__dot { position: relative; z-index: 2; display: grid; width: 36px; height: 36px; place-items: center; border: 5px solid rgba(255,255,255,.72); border-radius: 50%; background: #fff; color: #1c5eaa; font-size: 22px; font-weight: 400; line-height: 1; box-shadow: 0 0 0 1px rgba(28,94,170,.6), 0 6px 22px rgba(4,19,39,.42); transition: transform .25s ease, color .25s ease; }
.drh-hotspot__dot::after { content: ''; position: absolute; inset: -11px; border: 1px solid rgba(255,255,255,.65); border-radius: inherit; animation: drh-pulse 2.2s ease-out infinite; }
.drh-hotspot__card { position: absolute; right: calc(100% + 18px); bottom: calc(100% + 9px); width: 230px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.54); border-radius: 13px; background: rgba(8,24,43,.74); box-shadow: 0 18px 44px rgba(1,9,20,.28); opacity: 0; transform: translateY(8px) scale(.96); backdrop-filter: blur(18px) saturate(130%); transition: opacity .24s ease, transform .24s ease; pointer-events: none; }
.drh-hotspot--desk .drh-hotspot__card, .drh-hotspot--craft .drh-hotspot__card { right: auto; left: calc(100% + 18px); }
.drh-hotspot__card small, .drh-hotspot__card strong, .drh-hotspot__card span { display: block; }
.drh-hotspot__card small { margin-bottom: 5px; color: #8bbcf3; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.drh-hotspot__card strong { font-size: 14px; line-height: 1.35; }
.drh-hotspot__card span { margin-top: 8px; color: rgba(255,255,255,.66); font-size: 11px; }
.drh-hotspot:hover .drh-hotspot__dot, .drh-hotspot:focus-visible .drh-hotspot__dot { color: var(--drh-red); transform: rotate(45deg) scale(1.08); }
.drh-hotspot:hover .drh-hotspot__card, .drh-hotspot:focus-visible .drh-hotspot__card, .drh-hotspot.is-active .drh-hotspot__card { opacity: 1; transform: translateY(0) scale(1); }

.drh-trust {
	position: absolute;
	z-index: 3;
	right: 4%;
	bottom: 20px;
	left: 4%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 84px;
	align-items: center;
	padding: 16px 22px;
	border: 1px solid rgba(255,255,255,.26);
	border-radius: 28px;
	background: linear-gradient(110deg, rgba(9,31,55,.82), rgba(39,50,65,.58));
	box-shadow: 0 24px 68px rgba(0,0,0,.26);
	backdrop-filter: blur(22px) saturate(120%);
}

.drh-trust__item { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.2); }
.drh-trust__item:first-child { border-left: 0; }
.drh-trust__item svg { flex: 0 0 34px; width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.drh-trust__item strong, .drh-trust__item small { display: block; }
.drh-trust__item strong { font-size: 13px; line-height: 1.25; }
.drh-trust__item small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.3; }

.drh-scroll-cue { position: absolute; z-index: 4; top: 50%; right: 18px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
.drh-scroll-cue span { display: block; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.drh-scroll-cue span::after { content: ''; display: block; width: 50%; height: 100%; background: #fff; animation: drh-scroll 1.7s ease-in-out infinite; }

@keyframes drh-pulse { 0% { opacity: .75; transform: scale(.76); } 70%, 100% { opacity: 0; transform: scale(1.48); } }
@keyframes drh-scroll { 0% { transform: translateX(-130%); } 100% { transform: translateX(220%); } }

.drh-hero:not(.is-ready) .drh-copy { opacity: 0; transform: translate3d(-25px, 26px, 0); }
.drh-hero:not(.is-ready) .drh-hotspot { opacity: 0; }
.drh-copy, .drh-hotspot { transition: opacity .65s ease, transform .8s cubic-bezier(.2,.75,.2,1); }

@media (max-width: 1180px) {
	.drh-inner { grid-template-columns: minmax(360px, .95fr) 1.05fr; width: calc(100% - 42px); }
	.drh-copy h1 { font-size: clamp(44px, 5.7vw, 62px); }
	.drh-benefit { padding: 0 13px; }
	.drh-benefit__icon { flex-basis: 38px; width: 38px; height: 38px; }
	.drh-benefit small { display: none; }
	.drh-trust__item { padding: 0 14px; }
	.drh-hotspot--chair { left: 18%; }
}

@media (max-width: 900px) {
	.drh-hero { min-height: 840px; }
	.drh-hero::before { background: linear-gradient(180deg, rgba(4,15,30,.98) 0%, rgba(4,15,30,.86) 42%, rgba(4,15,30,.2) 67%, rgba(4,15,30,.86) 100%); }
	.drh-media { inset: 33% -10% 5%; transform: translate3d(0, calc(var(--drh-scene-y) * .35), 0) scale(1.04); }
	.drh-media img { object-position: 62% center; }
	.drh-inner { display: block; width: calc(100% - 36px); padding: 48px 0 154px; }
	.drh-copy { max-width: 620px; transform: translate3d(0, var(--drh-copy-y), 0); }
	.drh-copy h1 { font-size: clamp(48px, 10vw, 70px); }
	.drh-lead { max-width: 550px; }
	.drh-stage { position: absolute; inset: 300px 0 120px; height: auto; transform: none; }
	.drh-hotspot--chair { left: 43%; top: 40%; }
	.drh-hotspot--desk { right: 15%; top: 54%; }
	.drh-hotspot--craft { display: none; }
	.drh-hotspot__card { display: none; }
	.drh-trust { right: 18px; bottom: 18px; left: 18px; grid-template-columns: repeat(4, minmax(185px, 1fr)); overflow-x: auto; border-radius: 22px; scrollbar-width: none; }
	.drh-trust::-webkit-scrollbar { display: none; }
	.drh-trust__item { min-width: 185px; }
	.drh-scroll-cue { display: none; }
}

@media (max-width: 620px) {
	.drh-hero { min-height: 880px; }
	.drh-inner { width: calc(100% - 32px); padding-top: 34px; }
	.drh-eyebrow { margin-bottom: 17px; padding: 7px 11px; font-size: 10px; }
	.drh-copy h1 { font-size: clamp(42px, 13.5vw, 58px); line-height: .98; }
	.drh-lead { margin-top: 19px; font-size: 15px; line-height: 1.48; }
	.drh-benefits { gap: 8px; margin-top: 21px; }
	.drh-benefit { flex: 1; flex-direction: column; align-items: flex-start; gap: 7px; padding: 0 8px; }
	.drh-benefit:first-child { padding-left: 0; }
	.drh-benefit__icon { flex-basis: 34px; width: 34px; height: 34px; border-radius: 9px; }
	.drh-benefit svg { width: 18px; height: 18px; }
	.drh-benefit strong { font-size: 9px; }
	.drh-actions { gap: 9px; margin-top: 22px; }
	.drh-btn { min-height: 48px; padding: 0 16px; font-size: 10px; }
	.drh-btn--primary { flex: 1 1 100%; }
	.drh-btn--ghost { flex: 1 1 100%; }
	.drh-media { inset: 46% -28% 8% -22%; }
	.drh-media img { object-position: 66% center; }
	.drh-stage { inset: 440px 0 118px; }
	.drh-hotspot--chair { left: 34%; top: 37%; }
	.drh-hotspot--desk { right: 8%; top: 58%; }
	.drh-hotspot__dot { width: 31px; height: 31px; border-width: 4px; font-size: 18px; }
	.drh-trust { min-height: 88px; padding: 12px 8px; }
	.drh-trust__item { padding: 0 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.drh-media, .drh-copy, .drh-stage, .drh-hotspot { transform: none !important; transition: none !important; }
	.drh-hotspot__dot::after, .drh-scroll-cue span::after { animation: none !important; }
}
