/* Agency Launchpad */

.dte-launchpad-intro {
	margin: 0 0 22px;
	color: var(--dte-agency-muted, #6b7280);
	font-size: 15px;
	line-height: 1.5;
	max-width: 62ch;
}

.dte-launchpad-progress {
	margin-bottom: 18px;
	padding: 16px 18px;
	background: var(--dte-agency-card, #fff);
	border: 1px solid var(--dte-agency-line, #e5e7eb);
	border-radius: 14px;
}

.dte-launchpad-progress-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 14px;
}

.dte-launchpad-progress-top span {
	color: var(--dte-agency-primary, #4f46e5);
	font-weight: 700;
}

.dte-launchpad-progress-bar {
	height: 8px;
	border-radius: 999px;
	background: #eef2ff;
	overflow: hidden;
}

.dte-launchpad-progress-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #818cf8, #4f46e5);
	transition: width .25s ease;
}

.dte-launchpad-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.dte-launchpad-card {
	position: relative;
	padding: 20px;
	background: var(--dte-agency-card, #fff);
	border: 1px solid var(--dte-agency-line, #e5e7eb);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dte-launchpad-card.is-done {
	border-color: #c7d2fe;
	background: linear-gradient(180deg, #fafafe 0%, #fff 40%);
}

.dte-launchpad-card.is-tour-focus {
	z-index: 100002;
	border-color: #4f46e5;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, .28), 0 18px 40px rgba(15, 23, 42, .18);
	transform: translateY(-2px);
}

.dte-launchpad-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.dte-launchpad-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #eef2ff;
	color: #4338ca;
	font-size: 13px;
	font-weight: 800;
}

.dte-launchpad-card.is-done .dte-launchpad-num {
	background: #4f46e5;
	color: #fff;
}

.dte-launchpad-check {
	position: relative;
	display: inline-flex;
	cursor: pointer;
}

.dte-launchpad-check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dte-launchpad-check-ui {
	width: 22px;
	height: 22px;
	border: 2px solid #cbd5e1;
	border-radius: 6px;
	background: #fff;
	transition: background .15s ease, border-color .15s ease;
}

.dte-launchpad-check input:checked + .dte-launchpad-check-ui {
	border-color: #4f46e5;
	background: #4f46e5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/14px no-repeat;
}

.dte-launchpad-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	letter-spacing: -.02em;
}

.dte-launchpad-card p {
	margin: 0 0 16px;
	color: var(--dte-agency-muted, #6b7280);
	font-size: 14px;
	line-height: 1.45;
}

.dte-launchpad-cta {
	display: inline-flex;
}

.dte-agency-btn--ghost {
	background: transparent !important;
	color: #4338ca !important;
	border: 1px solid #c7d2fe !important;
	box-shadow: none !important;
}

.dte-launchpad-tour {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 24px;
}

.dte-launchpad-tour[hidden] {
	display: none !important;
}

.dte-launchpad-tour-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .55);
}

.dte-launchpad-tour-card {
	position: relative;
	z-index: 1;
	width: min(440px, 100%);
	padding: 22px 22px 18px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.dte-launchpad-tour-eyebrow {
	margin: 0 0 6px;
	color: #4f46e5;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.dte-launchpad-tour-card h2 {
	margin: 0 0 8px;
	font-size: 20px;
	letter-spacing: -.02em;
}

.dte-launchpad-tour-card p#dte-launchpad-tour-body {
	margin: 0 0 18px;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
}

.dte-launchpad-tour-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.dte-launchpad-tour-nav {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.dte-agency-nav--launchpad {
	position: relative;
}

@media (max-width: 900px) {
	.dte-launchpad-grid {
		grid-template-columns: 1fr;
	}
}
