:root {
	--cptu-primary: #705df2;
	--cptu-primary-dark: #5b46ec;
	--cptu-secondary: #ff8d5c;
	--cptu-text: #151728;
	--cptu-muted: #65718c;
	--cptu-border: #e6e9f2;
	--cptu-bg: #f3f5fb;
	--cptu-card-bg: #fff;
	--cptu-radius: 20px;
	--cptu-shadow: 0 30px 80px rgba(50, 49, 105, 0.1);
	font-family: "Inter", "PingFang SC", "HarmonyOS Sans", "Helvetica Neue", sans-serif;
}

.cptu-landing {
	background: var(--cptu-bg);
	color: var(--cptu-text);
	padding: 20px 12px 100px;
}

body.cptu-lock {
	overflow: hidden;
}

.cptu-muted {
	color: var(--cptu-muted);
}

.cptu-landing section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 12px;
}

.cptu-landing section + section {
	margin-top: 140px;
	padding-top: 80px;
	border-top: 1px solid rgba(21, 23, 40, 0.08);
}

.cptu-hero {
	text-align: center;
	padding: 60px 0 70px;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	position: relative;
	overflow: visible;
}

.cptu-hero::after {
	content: none;
}

.cptu-trust-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 auto 32px;
	text-align: center;
}

.cptu-trust-top {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.cptu-avatar-stack {
	display: inline-flex;
}

.cptu-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8c77ff, #c174ff);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	border: 3px solid #fff;
	box-shadow: 0 10px 20px rgba(20, 24, 55, 0.15);
}

.cptu-avatar + .cptu-avatar {
	margin-left: -14px;
}

.cptu-trust-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.cptu-trust-subtitle {
	color: var(--cptu-muted);
	font-size: 15px;
	margin: 0;
}

.cptu-live-feed {
	width: 100%;
	position: relative;
	min-height: 34px;
	margin-top: 4px;
}

.cptu-live-item {
	position: absolute;
	top: 0;
	left: 50%;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	color: var(--cptu-text);
	font-weight: 600;
	opacity: 0;
	transform: translate(-50%, 6px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.cptu-live-item.active {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.cptu-live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.cptu-live-item.status-flash .cptu-live-dot {
	background: #ffd55f;
	box-shadow: 0 0 0 4px rgba(255, 213, 95, 0.25);
}

.cptu-live-symbol {
	color: #ffb347;
	font-size: 16px;
}

.cptu-hero h1 {
	font-size: clamp(36px, 6vw, 66px);
	font-weight: 700;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	color: var(--cptu-text);
}

.cptu-hero h1 span:last-child,
.cptu-hero h1 span {
	background: linear-gradient(120deg, var(--cptu-primary), var(--cptu-secondary));
	-webkit-background-clip: text;
	color: transparent;
}

.cptu-subtitle {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--cptu-text);
}

.cptu-lead {
	font-size: 18px;
	color: var(--cptu-muted);
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.cptu-hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 32px;
}

.cptu-btn {
	border: none;
	border-radius: 999px;
	padding: 14px 36px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cptu-btn.primary {
	background: linear-gradient(110deg, var(--cptu-primary), var(--cptu-secondary));
	color: #fff;
	box-shadow: 0 15px 30px rgba(112, 93, 242, 0.35);
}

.cptu-btn.secondary {
	background: #f2ecff;
	color: var(--cptu-primary);
}

.cptu-btn.ghost {
	background: transparent;
	color: var(--cptu-primary);
	border: 1px solid rgba(112, 93, 242, 0.4);
}

.cptu-btn.block {
	width: 100%;
}

.cptu-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 35px rgba(112, 93, 242, 0.25);
}

.cptu-hero-pricing {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.cptu-price-card {
	min-width: 160px;
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 20px 40px rgba(112, 93, 242, 0.15);
	text-align: center;
}

.cptu-price-label {
	font-size: 14px;
	color: var(--cptu-muted);
	margin-bottom: 8px;
}

.cptu-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--cptu-primary);
}

.cptu-price span {
	font-size: 16px;
	font-weight: 500;
	color: var(--cptu-muted);
	margin-left: 4px;
}

.cptu-price.highlight {
	color: var(--cptu-secondary);
}

.cptu-eyebrow {
	color: var(--cptu-secondary);
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

.cptu-feature-grid {
	margin-top: 0;
	text-align: center;
}

.cptu-feature-grid h3,
.cptu-flow h3,
.cptu-plans h3,
.cptu-testimonials h3,
.cptu-faq h3,
.cptu-video h3 {
	font-size: clamp(30px, 5vw, 44px);
	margin: 12px 0 40px;
}

.cptu-feature-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.cptu-feature-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 28px;
	background: var(--cptu-card-bg);
	border-radius: 28px;
	box-shadow: 0 20px 50px rgba(22, 26, 55, 0.08);
}

.cptu-feature-icon {
	width: 72px;
	height: 72px;
	border-radius: 24px;
	background: linear-gradient(145deg, #d7d8ff, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.cptu-feature-card h4 {
	font-size: 20px;
	margin-bottom: 8px;
}

.cptu-feature-card p {
	color: var(--cptu-muted);
	line-height: 1.6;
}

.cptu-flow {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	align-items: center;
}

.cptu-flow-text {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
}

.cptu-flow-text h3 {
	width: 100%;
	text-align: center;
	font-size: clamp(34px, 6vw, 46px);
	margin: 0 0 44px;
}

.cptu-flow-step {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--cptu-border);
}

.cptu-flow-step:last-child {
	border-bottom: none;
}

.cptu-step-index {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(112, 93, 242, 0.12);
	color: var(--cptu-primary);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.cptu-step-title {
	font-weight: 600;
	margin-bottom: 4px;
}

.cptu-step-cta {
	margin-top: 8px;
	font-size: 13px;
	color: var(--cptu-muted);
}

.cptu-step-cta a {
	color: var(--cptu-primary);
	text-decoration: underline;
	font-weight: 600;
}

.cptu-flow-media {
	display: flex;
	justify-content: center;
}

.cptu-video-frame {
	width: min(720px, 100%);
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--cptu-shadow);
	background: #000;
}

.cptu-video-frame iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	min-height: 405px;
	border: none;
	display: block;
}

.cptu-video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.cptu-video-overlay:hover {
	background: rgba(0, 0, 0, 0.75);
}

.cptu-video-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.cptu-video-frame.playing .cptu-video-overlay {
	opacity: 0;
	pointer-events: none;
}

.cptu-video-placeholder {
	width: min(560px, 100%);
	background: #151728;
	border-radius: 32px;
	box-shadow: var(--cptu-shadow);
	padding: 28px;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 360px;
}

.cptu-video-placeholder p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
}

.cptu-play-button {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
	position: relative;
}

.cptu-play-button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 18px;
	border-color: transparent transparent transparent #fff;
}

.cptu-plans {
	margin-top: 0;
	text-align: center;
}

.cptu-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	margin-top: 24px;
}

.cptu-plan-card {
	background: #fff;
	border-radius: calc(var(--cptu-radius) * 1.2);
	padding: 32px;
	box-shadow: var(--cptu-shadow);
	text-align: left;
	position: relative;
}

.cptu-plan-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}

.cptu-plan-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.cptu-plan-tag {
	background: rgba(112, 93, 242, 0.12);
	color: var(--cptu-primary);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.cptu-plan-price {
	text-align: right;
}

.cptu-plan-price strong {
	font-size: 32px;
}

.cptu-plan-price span {
	display: block;
	color: var(--cptu-muted);
	text-decoration: line-through;
	font-size: 14px;
}

.cptu-plan-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cptu-plan-card li {
	display: flex;
	gap: 8px;
	color: var(--cptu-muted);
}

.cptu-plan-card li::before {
	content: "✓";
	color: var(--cptu-primary);
	font-weight: 700;
}

.cptu-testimonials {
	margin-top: 0;
}

.cptu-testimonials-head {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 20px;
}

.cptu-testimonials h3 {
	margin-bottom: 0;
}

.cptu-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.cptu-testimonial-card {
	background: var(--cptu-card-bg);
	border-radius: calc(var(--cptu-radius) * 1.1);
	padding: 24px;
	box-shadow: var(--cptu-shadow);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cptu-stars {
	color: #f6aa44;
	font-size: 20px;
	letter-spacing: 4px;
}

.cptu-t-text {
	color: var(--cptu-muted);
	line-height: 1.7;
	font-size: 16px;
}

.cptu-client {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cptu-client-avatar {
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: linear-gradient(150deg, var(--cptu-primary), var(--cptu-secondary));
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
}

.cptu-t-name {
	font-weight: 700;
}

.cptu-t-title {
	font-size: 14px;
	color: var(--cptu-muted);
}

.cptu-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.cptu-stat-card {
	background: rgba(255, 255, 255, 0.9);
	padding: 22px;
	border-radius: var(--cptu-radius);
	box-shadow: var(--cptu-shadow);
	text-align: center;
}

.cptu-stat-card strong {
	display: block;
	font-size: 32px;
	color: var(--cptu-primary);
}

.cptu-stat-card span {
	color: var(--cptu-muted);
	font-weight: 600;
}

.cptu-faq {
	margin-top: 0;
}

.cptu-faq-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

.cptu-faq-content {
	background: #fff;
	border-radius: calc(var(--cptu-radius) * 1.2);
	box-shadow: var(--cptu-shadow);
	padding: 48px;
}

.cptu-faq-contact {
	margin-top: 28px;
	padding: 18px;
	background: var(--cptu-bg);
	border-radius: var(--cptu-radius);
	font-weight: 600;
}

.cptu-faq-item {
	border-bottom: 1px solid var(--cptu-border);
}

.cptu-faq-item:last-child {
	border-bottom: none;
}

.cptu-faq-question {
	width: 100%;
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 600;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.cptu-faq-toggle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(112, 93, 242, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--cptu-primary);
}

.cptu-faq-item.active .cptu-faq-toggle {
	background: var(--cptu-primary);
	color: #fff;
	transform: rotate(45deg);
}

.cptu-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.cptu-faq-item.active .cptu-faq-answer {
	max-height: 200px;
}

.cptu-faq-answer p {
	color: var(--cptu-muted);
	padding-bottom: 20px;
	line-height: 1.6;
}

.cptu-video {
	text-align: center;
	margin-top: 0;
}

.cptu-video-wrapper {
	display: flex;
	justify-content: center;
}

.cptu-cta {
	margin-top: 0;
}

.cptu-cta-card {
	padding: 60px 20px 40px;
	text-align: center;
}

.cptu-cta-card h3 {
	font-size: clamp(32px, 6vw, 44px);
	margin-bottom: 20px;
}

.cptu-cta-card p {
	color: var(--cptu-muted);
	margin-bottom: 28px;
	font-size: 18px;
}

.cptu-cta-actions {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.cptu-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 16, 26, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 99;
}

.cptu-modal.active {
	opacity: 1;
	pointer-events: auto;
}

.cptu-modal-dialog {
	background: #fff;
	border-radius: calc(var(--cptu-radius) * 1.2);
	padding: 40px;
	width: min(900px, 100%);
	box-shadow: var(--cptu-shadow);
	position: relative;
	text-align: left;
}

.cptu-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(112, 93, 242, 0.12);
	cursor: pointer;
}

.cptu-modal-close::before,
.cptu-modal-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: var(--cptu-primary);
	transform-origin: center;
}

.cptu-modal-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.cptu-modal-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.cptu-modal-options {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.cptu-modal-card {
	border: 1px solid var(--cptu-border);
	border-radius: var(--cptu-radius);
	padding: 24px;
	position: relative;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cptu-modal-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--cptu-primary);
	color: #fff;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
}

.cptu-modal-card h5 {
	font-size: 18px;
	margin-bottom: 4px;
}

.cptu-modal-card ul {
	padding-left: 16px;
	margin: 8px 0 20px;
	color: var(--cptu-muted);
}

.cptu-modal-card li {
	margin-bottom: 6px;
}

.cptu-support-btn {
	position: fixed;
	right: 32px;
	bottom: 32px;
	background: linear-gradient(120deg, var(--cptu-primary), var(--cptu-secondary));
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	box-shadow: 0 14px 40px rgba(20, 24, 54, 0.35);
	z-index: 90;
}

.cptu-support-btn span {
	font-size: 18px;
}

.cptu-support-modal {
	position: fixed;
	inset: 0;
	background: rgba(10, 12, 22, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 100;
}

.cptu-support-modal.active {
	opacity: 1;
	pointer-events: auto;
}

.cptu-support-dialog {
	background: #fff;
	border-radius: calc(var(--cptu-radius) * 1.2);
	padding: 40px 36px;
	width: min(420px, 100%);
	box-shadow: var(--cptu-shadow);
	position: relative;
	text-align: center;
}

.cptu-support-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(112, 93, 242, 0.1);
	cursor: pointer;
}

.cptu-support-close::before,
.cptu-support-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--cptu-primary);
	transform-origin: center;
}

.cptu-support-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.cptu-support-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.cptu-support-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 20px 0;
}

.cptu-support-tags span {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(112, 93, 242, 0.12);
	color: var(--cptu-primary);
	font-weight: 600;
	font-size: 12px;
}

.cptu-support-qrcode {
	background: var(--cptu-bg);
	border-radius: 24px;
	padding: 24px;
}

.cptu-qrcode-placeholder {
	width: 200px;
	height: 200px;
	border-radius: 24px;
	background: #fff;
	margin: 16px auto;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cptu-qrcode-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

@media (max-width: 768px) {
	.cptu-landing {
		padding: 40px 16px 70px;
	}

	.cptu-hero {
		padding: 40px 10px 50px;
	}

	.cptu-landing section {
		padding: 0;
	}

	.cptu-landing section + section {
		margin-top: 80px;
		padding-top: 50px;
	}

	.cptu-live-item {
		position: relative;
		left: 0;
		transform: translate(0, 4px);
	}

	.cptu-live-item.active {
		transform: translate(0, 0);
	}

	.cptu-faq-content {
		padding: 32px;
	}

	.cptu-modal-dialog {
		padding: 28px;
	}
}
