.ppa-lp {
	--ppa-bg: #f7f0ff;
	--ppa-primary: #754ff0;
	--ppa-primary-2: #9b6ff0;
	--ppa-orange: #fb923c;
	--ppa-yellow: #facc15;
	--ppa-ink: #1a1028;
	--ppa-mute: #6b7280;
	--ppa-card: #ffffff;
	--ppa-line: #e5e7eb;
	--ppa-radius: 24px;
	--ppa-font: "Space Grotesk", Roboto, sans-serif;
	position: relative;
	color: var(--ppa-ink);
	font-family: var(--ppa-font);
	background-color: var(--ppa-bg);
	line-height: 1.55;
	overflow: hidden;
	isolation: isolate;
}

.ppa-lp *,
.ppa-lp *::before,
.ppa-lp *::after {
	box-sizing: border-box;
}

.ppa-lp img,
.ppa-lp video {
	max-width: 100%;
	display: block;
}

.ppa-lp h2,
.ppa-lp h3,
.ppa-lp p {
	margin: 0;
	font-family: var(--ppa-font);
}

.ppa-lp a {
	text-decoration: none !important;
}

.ppa-lp--bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.ppa-lp::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-color: var(--ppa-bg);
	background-image:
		repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.08) 0 1px, transparent 1px 8px),
		repeating-linear-gradient(-45deg, rgba(124, 58, 237, 0.06) 0 1px, transparent 1px 10px),
		radial-gradient(900px 420px at 8% -10%, rgba(155, 111, 240, 0.28), transparent 55%);
	background-size: 14px 14px, 18px 18px, auto;
}

.ppa-shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.ppa-doodles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.ppa-doodle {
	position: absolute;
	opacity: 0.9;
}

.ppa-doodle--star {
	width: 42px;
	height: 42px;
	right: 22%;
	top: 120px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 4l7.4 18.5L59 24l-15 12.2L48.7 56 32 44.9 15.3 56 20 36.2 5 24l19.6-1.5L32 4z' fill='%23facc15' stroke='%237c3aed' stroke-width='3'/></svg>") center / contain no-repeat;
	animation: ppa-float 8s ease-in-out infinite alternate;
}

.ppa-doodle--squiggle {
	width: 72px;
	height: 40px;
	right: 8%;
	top: 70px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'><path d='M10 35c18-28 34 28 52 0s34 28 48 0' stroke='%232563eb' stroke-width='10' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
	animation: ppa-float 11s ease-in-out infinite alternate;
}

.ppa-doodle--confetti {
	width: 70px;
	height: 70px;
	left: 6%;
	top: 420px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect x='10' y='18' width='10' height='34' rx='5' fill='%23ef4444'/><rect x='36' y='8' width='10' height='48' rx='5' fill='%23f59e0b'/><rect x='62' y='22' width='10' height='40' rx='5' fill='%2310b981'/><rect x='80' y='10' width='8' height='30' rx='4' fill='%237c3aed'/></svg>") center / contain no-repeat;
	animation: ppa-float 10s ease-in-out infinite alternate-reverse;
}

.ppa-doodle--blob {
	width: 180px;
	height: 180px;
	right: -40px;
	top: 280px;
	border-radius: 50%;
	background: rgba(250, 204, 21, 0.18);
	filter: blur(8px);
}

@keyframes ppa-float {
	from { transform: translateY(0) rotate(-6deg); }
	to { transform: translateY(-16px) rotate(8deg); }
}

.ppa-badge {
	display: inline-flex;
	align-items: center;
	background: #efe7ff;
	color: var(--ppa-primary);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.ppa-kicker {
	color: var(--ppa-orange);
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 8px;
}

.ppa-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.ppa-lp h2.ppa-hero__title,
.ppa-lp .ppa-head h2,
.ppa-lp .ppa-stats__copy h2,
.ppa-lp .ppa-cta__inner h2 {
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: var(--ppa-ink);
}

.ppa-head h2 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.ppa-head p {
	margin-top: 10px;
	color: var(--ppa-mute);
	font-size: 1.05rem;
}

.ppa-head--light h2,
.ppa-lp .ppa-head--light h2 {
	color: #fff;
}

.ppa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 28px;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.ppa-btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.ppa-btn--primary {
	background: var(--ppa-primary);
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(117, 79, 240, 0.28);
}

.ppa-btn--ghost {
	background: #f9fafb;
	color: #1f2937 !important;
	border: 1px solid var(--ppa-line);
}

.ppa-btn--yellow {
	background: var(--ppa-yellow);
	color: var(--ppa-ink) !important;
	font-weight: 800;
}

.ppa-btn--wa {
	background: #25d366;
	color: #fff !important;
	gap: 8px;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}

.ppa-wa-ico,
.ppa-btn--wa svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.ppa-wa-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 28px;
	padding: 18px 22px;
	background: #ecfdf3;
	border: 1px solid #bbf7d0;
	border-radius: 20px;
}

.ppa-wa-strip p {
	margin: 0;
	font-weight: 800;
	color: #14532d;
}

.ppa-skills .ppa-wa-strip {
	position: relative;
	z-index: 2;
	margin-top: 22px;
}

.ppa-wa-fab {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 99999;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
	transition: transform 0.2s ease;
}

.ppa-wa-fab:hover {
	transform: translateY(-3px);
	color: #fff;
}

.ppa-wa-fab svg {
	width: 32px;
	height: 32px;
}

[data-ppa-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-ppa-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* Hero */
.ppa-hero {
	padding: 56px 0 40px;
}

.ppa-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.ppa-hero__title {
	font-size: clamp(2.4rem, 6vw, 3.75rem);
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.05;
}

.ppa-hero__orange {
	color: var(--ppa-orange);
	display: inline;
}

.ppa-hero__grad {
	display: inline;
	background: linear-gradient(135deg, #754ff0 0%, #9b6ff0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ppa-hero__lead {
	margin: 18px 0 26px;
	max-width: 34rem;
	color: var(--ppa-mute);
	font-size: 1.08rem;
}

.ppa-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ppa-hero__proof {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
	color: var(--ppa-mute);
	font-size: 0.92rem;
	font-weight: 600;
}

.ppa-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--ppa-yellow);
}

.ppa-stars svg {
	width: 16px;
	height: 16px;
}

.ppa-hero__visual {
	position: relative;
}

.ppa-hero__card {
	background: #fff;
	border-radius: 28px;
	padding: 12px;
	box-shadow: 0 24px 50px rgba(26, 16, 40, 0.1);
}

.ppa-hero__card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #f4ecff;
	border-radius: 20px;
}

.ppa-float {
	position: absolute;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(26, 16, 40, 0.12);
	padding: 10px 14px;
	font-weight: 800;
	font-size: 0.82rem;
}

.ppa-float--left {
	left: -18px;
	bottom: 48px;
	background: var(--ppa-primary);
	color: #fff;
}

.ppa-float--left span {
	display: block;
	font-size: 0.68rem;
	font-weight: 600;
	opacity: 0.9;
}

.ppa-float--right {
	right: -10px;
	top: 28px;
	background: var(--ppa-yellow);
	color: var(--ppa-ink);
}

/* Courses */
.ppa-courses {
	padding: 28px 0 56px;
}

.ppa-course-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ppa-course {
	background: #fff;
	border-radius: var(--ppa-radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(26, 16, 40, 0.06);
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ppa-course:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(117, 79, 240, 0.16);
}

.ppa-course__img {
	display: block;
	background: #f5f3ff;
}

.ppa-course__img img {
	width: 100%;
	height: 168px;
	object-fit: cover;
}

.ppa-course__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
}

.ppa-course__title {
	font-weight: 800;
	font-size: 1rem;
	line-height: 1.25;
	color: var(--ppa-ink);
}

.ppa-course__go {
	color: var(--ppa-primary);
	font-weight: 700;
	font-size: 0.85rem;
}

/* Stats */
.ppa-stats {
	padding: 20px 0 64px;
}

.ppa-stats__inner {
	background: var(--ppa-primary);
	color: #fff;
	border-radius: 36px;
	padding: 42px 40px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: center;
}

.ppa-lp .ppa-stats__copy h2 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 18px;
}

.ppa-stats__copy .ppa-kicker {
	color: #fde68a;
}

.ppa-stats__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ppa-stat {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	padding: 18px 14px;
	text-align: center;
}

.ppa-stat__icon svg {
	width: 28px;
	height: 28px;
	color: var(--ppa-yellow);
}

.ppa-stat__n {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 800;
	line-height: 1.1;
	margin-top: 6px;
}

.ppa-stat__l {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	opacity: 0.9;
	margin-top: 4px;
}

/* Philosophy */
.ppa-philo {
	padding: 10px 0 56px;
}

.ppa-philo__card {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 36px;
	align-items: center;
	background: #fff;
	border-radius: 32px;
	padding: 22px;
	box-shadow: 0 16px 40px rgba(26, 16, 40, 0.06);
}

.ppa-philo__card img {
	width: 100%;
	height: 340px;
	object-fit: contain;
	background: #f5f3ff;
	border-radius: 24px;
}

.ppa-philo__text {
	margin: 10px 0 22px;
	font-size: 1.08rem;
	color: #374151;
}

/* Reviews */
.ppa-reviews {
	padding: 56px 0;
	background: var(--ppa-ink);
	border-radius: 40px;
	margin: 0 16px 40px;
}

.ppa-reviews__box {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
}

.ppa-reviews__empty {
	text-align: center;
	padding: 36px 16px;
	color: #6b7280;
	border: 2px dashed #d1d5db;
	border-radius: 16px;
}

.ppa-reviews__empty p + p {
	margin-top: 8px;
	font-size: 0.92rem;
}

/* Online CTA */
.ppa-cta {
	padding: 10px 0 48px;
}

.ppa-cta__inner {
	text-align: center;
	padding: 48px 24px;
}

.ppa-lp .ppa-cta__inner h2 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	text-transform: uppercase;
}

.ppa-cta__inner p {
	margin: 12px 0 22px;
	color: var(--ppa-mute);
}

.ppa-cta__inner .ppa-btn {
	margin: 6px;
}

/* Media */
.ppa-stage {
	padding: 0 0 40px;
}

.ppa-stage__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.ppa-stage__card {
	background: #fff;
	border-radius: 24px;
	padding: 10px;
	box-shadow: 0 12px 30px rgba(26, 16, 40, 0.06);
}

.ppa-stage__card video {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 18px;
	background: #000;
}

.ppa-stage__card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: contain;
	background: #eef2ff;
	border-radius: 18px;
}

.ppa-banner {
	padding: 0 0 48px;
}

.ppa-banner__card {
	display: block;
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(26, 16, 40, 0.06);
}

.ppa-banner img {
	width: 100%;
	max-height: 360px;
	object-fit: cover;
}

/* Skills */
.ppa-skills {
	padding: 10px 0 48px;
}

.ppa-skills__board {
	position: relative;
	background: #fff;
	border-radius: 36px;
	padding: 48px 36px 40px;
	box-shadow: 0 18px 50px rgba(26, 16, 40, 0.07);
	overflow: hidden;
}

.ppa-skills__board::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(420px 180px at 8% 0%, rgba(117, 79, 240, 0.12), transparent 60%),
		radial-gradient(380px 160px at 100% 100%, rgba(250, 204, 21, 0.18), transparent 55%);
}

.ppa-skills__spark {
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.ppa-skills__spark--a {
	width: 28px;
	height: 28px;
	top: 28px;
	right: 48px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 2l3 9 9 3-9 3-3 9-3-9-9-3 9-3z' fill='%23facc15'/></svg>") center / contain no-repeat;
}

.ppa-skills__spark--b {
	width: 56px;
	height: 22px;
	left: 36px;
	bottom: 28px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28'><path d='M4 18c12-16 20 12 32 0s20 12 40 0' stroke='%23754ff0' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") center / contain no-repeat;
}

.ppa-skills .ppa-head,
.ppa-skills .ppa-skill-grid {
	position: relative;
	z-index: 2;
}

.ppa-skills .ppa-head .ppa-badge {
	margin-bottom: 12px;
}

.ppa-skill-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.ppa-skill {
	position: relative;
	background: #f8f5ff;
	border: 1px solid #eee7ff;
	border-radius: 24px;
	padding: 26px 18px 22px;
	text-align: left;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ppa-skill:hover {
	transform: translateY(-6px);
	background: #fff;
	box-shadow: 0 16px 32px rgba(117, 79, 240, 0.14);
}

.ppa-skill__orb {
	position: absolute;
	width: 88px;
	height: 88px;
	right: -18px;
	top: -18px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--accent) 18%, white);
}

.ppa-skill__icon {
	position: relative;
	width: 64px;
	height: 64px;
	margin: 0 0 16px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	background: #fff;
	color: var(--accent);
	box-shadow: 0 10px 20px color-mix(in srgb, var(--accent) 22%, transparent);
}

.ppa-skill__icon svg {
	width: 42px;
	height: 42px;
}

.ppa-lp .ppa-skill h3 {
	position: relative;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--ppa-ink);
	margin-bottom: 8px;
}

.ppa-skill p {
	position: relative;
	margin: 0;
	color: var(--ppa-mute);
	font-size: 0.88rem;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.ppa-lp--bleed {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.ppa-shell {
		width: min(1180px, calc(100% - 28px));
	}

	.ppa-doodles {
		display: none;
	}

	.ppa-hero {
		padding-top: 28px;
		padding-bottom: 24px;
	}

	.ppa-hero__grid,
	.ppa-stats__inner,
	.ppa-philo__card,
	.ppa-stage__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ppa-course-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.ppa-skill-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ppa-stats__cards {
		grid-template-columns: 1fr;
	}

	.ppa-stats__inner {
		padding: 28px 20px;
		border-radius: 24px;
	}

	.ppa-hero__actions .ppa-btn {
		width: 100%;
	}

	.ppa-hero__proof {
		flex-wrap: wrap;
	}

	.ppa-float--left,
	.ppa-float--right {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: inline-block;
		margin: 10px 8px 0 0;
	}

	.ppa-reviews {
		margin: 0 0 32px;
		border-radius: 24px;
	}

	.ppa-skills__board {
		padding: 32px 18px 22px;
		border-radius: 28px;
	}

	.ppa-hero__card img,
	.ppa-philo__card img,
	.ppa-stage__card img,
	.ppa-banner img,
	.ppa-course__img img {
		width: 100% !important;
		max-width: 100%;
		height: auto !important;
		max-height: 280px;
		object-fit: cover;
	}

	.ppa-course__img img {
		max-height: 200px;
	}
}

@media (max-width: 640px) {
	.ppa-course-grid,
	.ppa-stage__grid,
	.ppa-skill-grid {
		grid-template-columns: 1fr;
	}

	.ppa-hero {
		padding-top: 20px;
	}

	.ppa-hero__title {
		font-size: clamp(1.85rem, 9vw, 2.6rem);
	}

	.ppa-head h2 {
		font-size: clamp(1.5rem, 7vw, 2rem);
	}

	.ppa-btn {
		width: 100%;
	}

	.ppa-philo__card,
	.ppa-stats__inner,
	.ppa-reviews {
		border-radius: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ppa-doodle,
	[data-ppa-reveal] {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

.elementor-top-section:has(.ppa-lp),
.elementor-inner-section:has(.ppa-lp),
.elementor-column:has(.ppa-lp),
.elementor-widget-shortcode:has(.ppa-lp),
.elementor-shortcode:has(.ppa-lp),
.elementor-widget:has(.ppa-lp),
.site-content:has(.ppa-lp),
#content:has(.ppa-lp),
#primary:has(.ppa-lp),
.content-area:has(.ppa-lp),
.site-main:has(.ppa-lp),
.entry-content:has(.ppa-lp),
article:has(.ppa-lp),
.container:has(.ppa-lp) {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

article:has(.ppa-lp) > .entry-header {
	display: none !important;
}

body.ppa-lp-page .page-header,
body.ppa-lp-page .page-title-wrap,
body.ppa-lp-page .page-title-section,
body.ppa-lp-page .breadcrumb-area,
body.ppa-lp-page .edu-page-title {
	display: none !important;
}

body.ppa-lp-page #masthead,
body.ppa-lp-page .site-header {
	margin-bottom: 0 !important;
}
