/* Agency Launchpad — choose-your-own checklist */

.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-accordions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dte-launchpad-accordion {
	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);
	overflow: hidden;
}

.dte-launchpad-accordion[open] {
	border-color: #c7d2fe;
}

.dte-launchpad-accordion-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.dte-launchpad-accordion-summary::-webkit-details-marker {
	display: none;
}

.dte-launchpad-accordion-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.dte-launchpad-accordion-title {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: #111827;
}

.dte-launchpad-accordion-desc {
	font-size: 13px;
	line-height: 1.4;
	color: var(--dte-agency-muted, #6b7280);
}

.dte-launchpad-accordion-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.dte-launchpad-accordion-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eef2ff;
	color: #4338ca;
	font-size: 12px;
	font-weight: 800;
}

.dte-launchpad-accordion-chevron {
	width: 10px;
	height: 10px;
	border-right: 2px solid #64748b;
	border-bottom: 2px solid #64748b;
	transform: rotate(45deg);
	transition: transform .2s ease;
	margin-top: -4px;
}

.dte-launchpad-accordion[open] .dte-launchpad-accordion-chevron {
	transform: rotate(-135deg);
	margin-top: 4px;
}

.dte-launchpad-accordion-body {
	padding: 0 16px 16px;
	border-top: 1px solid #eef2ff;
}

.dte-launchpad-list {
	list-style: none;
	margin: 0;
	padding: 12px 0 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dte-launchpad-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 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);
}

.dte-launchpad-card.is-done {
	border-color: #c7d2fe;
	background: linear-gradient(90deg, #f8f9ff 0%, #fff 55%);
}

.dte-launchpad-card-main {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-width: 0;
	flex: 1;
}

.dte-launchpad-copy {
	min-width: 0;
}

.dte-launchpad-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-bottom: 6px;
	border-radius: 999px;
	background: #eef2ff;
	color: #4338ca;
	font-size: 12px;
	font-weight: 800;
}

.dte-launchpad-card.is-done .dte-launchpad-num {
	background: #4f46e5;
	color: #fff;
}

.dte-launchpad-check {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: 2px;
	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 6px;
	font-size: 17px;
	letter-spacing: -.02em;
}

.dte-launchpad-card p {
	margin: 0 0 14px;
	color: var(--dte-agency-muted, #6b7280);
	font-size: 14px;
	line-height: 1.45;
}

.dte-launchpad-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.dte-launchpad-cta,
.dte-launchpad-watch {
	flex: 0 0 auto;
}

.dte-launchpad-video-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.dte-launchpad-video-modal[hidden] {
	display: none !important;
}

.dte-launchpad-video-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .72);
}

.dte-launchpad-video-panel {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	padding: 18px 18px 16px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.dte-launchpad-video-panel h2 {
	margin: 0 40px 12px 0;
	font-size: 18px;
	letter-spacing: -.02em;
}

.dte-launchpad-video-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.dte-launchpad-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
	background: #000;
}

.dte-launchpad-video-frame iframe,
.dte-launchpad-video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #000;
}

@media (max-width: 720px) {
	.dte-launchpad-card {
		flex-direction: column;
		align-items: stretch;
	}
}
