.hbr-social-prompt {
	position: fixed;
	left: max(18px, env(safe-area-inset-left));
	bottom: max(100px, calc(82px + env(safe-area-inset-bottom)));
	z-index: 89;
	color: var(--hbr-ink, #0a0a0a);
	font-family: var(--hbr-body, Inter, ui-sans-serif, system-ui, sans-serif);
}

.hbr-social-prompt__compact,
.hbr-social-prompt__card {
	border: 2px solid var(--hbr-ink, #0a0a0a);
	box-shadow: 5px 5px 0 var(--hbr-ink, #0a0a0a);
}

.hbr-social-prompt__compact {
	display: none;
	width: 58px;
	height: 58px;
	padding: 0;
	place-items: center;
	border-radius: 50%;
	background: var(--hbr-lime, #dfff45);
	color: inherit;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease;
}

.hbr-social-prompt__compact:hover,
.hbr-social-prompt__compact:focus-visible {
	transform: translateY(-3px) rotate(-3deg);
	background: var(--hbr-orange, #ff5b22);
}

.hbr-social-prompt__compact svg {
	width: 26px;
}

.hbr-social-prompt__card {
	position: relative;
	display: grid;
	width: min(350px, calc(100vw - 36px));
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 14px;
	padding: 18px;
	border-radius: 16px;
	background: var(--hbr-paper, #f2eadb);
	animation: hbr-social-enter .3s ease-out both;
}

.hbr-social-prompt__icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 2px solid currentColor;
	border-radius: 14px;
	background: var(--hbr-orange, #ff5b22);
}

.hbr-social-prompt svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.hbr-social-prompt__icon svg {
	width: 32px;
}

.hbr-social-prompt__card p {
	margin: 0 28px 4px 0;
	font-size: .6rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hbr-social-prompt__card strong,
.hbr-social-prompt__card span {
	display: block;
}

.hbr-social-prompt__card strong {
	font: 900 1.28rem/.95 var(--hbr-display, "Arial Black", Impact, sans-serif);
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.hbr-social-prompt__card span {
	margin-top: 7px;
	color: rgba(10, 10, 10, .7);
	font-size: .72rem;
	line-height: 1.35;
}

.hbr-social-prompt__card a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
	padding: 10px 12px;
	background: var(--hbr-ink, #0a0a0a);
	color: var(--hbr-paper, #f2eadb) !important;
	font-size: .72rem;
	font-weight: 900;
	text-decoration: none !important;
}

.hbr-social-prompt__card a:hover,
.hbr-social-prompt__card a:focus-visible {
	background: var(--hbr-orange, #ff5b22);
	color: var(--hbr-ink, #0a0a0a) !important;
}

.hbr-social-prompt__close {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	width: 30px;
	height: 30px;
	padding: 0;
	place-items: center;
	border: 0 !important;
	border-radius: 50%;
	background: transparent !important;
	color: inherit !important;
	cursor: pointer;
}

.hbr-social-prompt__close svg {
	width: 17px;
}

.hbr-social-prompt button:focus-visible,
.hbr-social-prompt a:focus-visible {
	outline: 3px solid var(--hbr-orange, #ff5b22);
	outline-offset: 3px;
}

.hbr-social-prompt.is-compact .hbr-social-prompt__card {
	display: none;
}

.hbr-social-prompt.is-compact .hbr-social-prompt__compact {
	display: grid;
}

@keyframes hbr-social-enter {
	from { opacity: 0; transform: translateY(12px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
	.hbr-social-prompt {
		left: 12px;
		bottom: max(84px, calc(72px + env(safe-area-inset-bottom)));
	}

	.hbr-social-prompt__card {
		width: min(340px, calc(100vw - 24px));
		grid-template-columns: 48px minmax(0, 1fr);
		padding: 15px;
	}

	.hbr-social-prompt__icon {
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hbr-social-prompt * {
		animation: none !important;
		transition: none !important;
	}
}
