.popup-engine-root {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
	font-family: "Segoe UI Variable Display", "Aptos", "Segoe UI", sans-serif;
}

.popup-engine-root *,
.popup-engine-root *::before,
.popup-engine-root *::after {
	box-sizing: border-box;
}

.pe-runtime-frame {
	position: absolute;
	inset: 0;
	display: flex;
	padding:
		max(18px, env(safe-area-inset-top))
		max(18px, env(safe-area-inset-right))
		max(18px, env(safe-area-inset-bottom))
		max(18px, env(safe-area-inset-left));
	pointer-events: none;
}

.pe-runtime-frame.is-modal {
	align-items: center;
	justify-content: center;
}

.pe-runtime-frame.is-slidein {
	align-items: flex-end;
	justify-content: flex-end;
}

.pe-runtime-frame.is-bar {
	align-items: flex-end;
	justify-content: center;
}

.pe-runtime-frame.is-top {
	align-items: flex-start;
}

.pe-runtime-frame.is-fullscreen {
	align-items: stretch;
	justify-content: stretch;
	padding: 18px;
}

.pe-runtime-frame.is-bottom-left {
	justify-content: flex-start;
}

.pe-runtime-frame.is-center {
	align-items: center;
	justify-content: center;
}

.pe-runtime-overlay {
	position: absolute;
	inset: 0;
	background: var(--pe-overlay, rgba(8, 15, 30, 0.72));
	backdrop-filter: blur(6px);
	opacity: 1;
	pointer-events: auto;
}

.pe-runtime-card {
	position: relative;
	width: min(100%, var(--pe-width, 560px));
	max-width: 100%;
	max-height: calc(100dvh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	padding: 28px;
	border-radius: var(--pe-radius, 28px);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 40%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		var(--pe-panel, #101828);
	color: var(--pe-text, #f8fafc);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 80px rgba(2, 8, 23, 0.35);
	pointer-events: auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	isolation: isolate;
}

.pe-runtime-card.is-poster-mode {
	width: min(100%, calc(100vw - 16px - env(safe-area-inset-left) - env(safe-area-inset-right)));
	max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	padding: 0;
}

.pe-runtime-card.is-slidein {
	max-width: min(100%, 390px);
}

.pe-runtime-card.is-bar {
	width: min(100%, 1080px);
	border-radius: 24px;
	padding: 20px 22px;
}

.pe-runtime-card.is-fullscreen {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	max-height: none;
}

.pe-runtime-inner {
	width: 100%;
	max-width: min(100%, 720px);
	max-height: 100%;
	overflow-y: auto;
	padding-right: 4px;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.pe-runtime-inner::-webkit-scrollbar {
	width: 8px;
}

.pe-runtime-inner::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.3);
}

.pe-runtime-poster-shell {
	display: grid;
	gap: 10px;
	height: 100%;
	grid-template-rows: minmax(0, 1fr) auto;
}

.pe-runtime-poster-stage {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-height: 0;
	height: 100%;
	border-radius: calc(var(--pe-radius, 28px) - 6px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		rgba(6, 12, 24, 0.52);
}

.pe-runtime-poster-panel {
	display: grid;
	gap: 8px;
}

.pe-runtime-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.06);
	color: inherit;
	cursor: pointer;
	z-index: 6;
	pointer-events: auto;
	line-height: 1;
}

.pe-runtime-close:hover {
	background: rgba(255, 255, 255, 0.12);
}

.pe-runtime-close:focus-visible,
.pe-runtime-button:focus-visible,
.pe-runtime-teaser:focus-visible,
.pe-runtime-form input:focus-visible {
	outline: 2px solid rgba(255, 179, 71, 0.88);
	outline-offset: 2px;
}

.pe-runtime-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(248, 250, 252, 0.88);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.pe-runtime-copy.is-poster {
	display: grid;
	gap: 10px;
}

.pe-runtime-builder-stack {
	display: grid;
	gap: 16px;
}

.pe-runtime-builder-block {
	display: grid;
	gap: 10px;
}

.pe-runtime-builder-block .pe-runtime-eyebrow,
.pe-runtime-builder-block .pe-runtime-heading,
.pe-runtime-builder-block .pe-runtime-body,
.pe-runtime-builder-block .pe-runtime-media,
.pe-runtime-builder-block .pe-runtime-bullets,
.pe-runtime-builder-block .pe-runtime-actions,
.pe-runtime-builder-block .pe-runtime-form,
.pe-runtime-builder-block .pe-runtime-countdown {
	margin-top: 0;
}

.pe-runtime-builder-block .pe-runtime-heading {
	margin: 0;
}

.pe-runtime-builder-block .pe-runtime-body {
	margin: 0;
}

.pe-runtime-builder-block.is-actions,
.pe-runtime-builder-block.is-spacer {
	gap: 0;
}

.pe-runtime-media-caption {
	font-size: 12px;
	line-height: 1.55;
	color: rgba(248, 250, 252, 0.68);
}

.pe-runtime-note {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	line-height: 1.6;
	color: rgba(248, 250, 252, 0.84);
	background: rgba(255, 255, 255, 0.05);
}

.pe-runtime-note.is-soft {
	background: rgba(255, 255, 255, 0.05);
}

.pe-runtime-note.is-accent {
	background: linear-gradient(135deg, rgba(255, 107, 74, 0.16), rgba(255, 179, 71, 0.1));
	border-color: rgba(255, 179, 71, 0.22);
}

.pe-runtime-note.is-success {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(74, 222, 128, 0.08));
	border-color: rgba(74, 222, 128, 0.22);
}

.pe-runtime-note.is-warning {
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(249, 115, 22, 0.08));
	border-color: rgba(251, 191, 36, 0.24);
}

.pe-runtime-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pe-runtime-badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(248, 250, 252, 0.92);
	font-size: 12px;
	font-weight: 700;
}

.pe-runtime-trust-strip {
	display: grid;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
}

.pe-runtime-trust-strip.is-accent {
	background: linear-gradient(135deg, rgba(255, 107, 74, 0.16), rgba(255, 179, 71, 0.1));
	border-color: rgba(255, 179, 71, 0.22);
}

.pe-runtime-trust-strip.is-success {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(74, 222, 128, 0.08));
	border-color: rgba(74, 222, 128, 0.22);
}

.pe-runtime-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(248, 250, 252, 0.84);
}

.pe-runtime-trust-item strong {
	color: var(--pe-accent, #ffb347);
}

.pe-runtime-proof-card {
	display: grid;
	gap: 12px;
	padding: 16px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
}

.pe-runtime-proof-card.is-accent {
	background: linear-gradient(135deg, rgba(255, 107, 74, 0.16), rgba(255, 179, 71, 0.1));
	border-color: rgba(255, 179, 71, 0.22);
}

.pe-runtime-proof-card.is-success {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(74, 222, 128, 0.08));
	border-color: rgba(74, 222, 128, 0.22);
}

.pe-runtime-proof-card blockquote {
	margin: 0;
	font-size: 14px;
	line-height: 1.72;
	color: rgba(248, 250, 252, 0.94);
}

.pe-runtime-proof-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: rgba(226, 232, 240, 0.72);
}

.pe-runtime-proof-meta strong {
	color: rgba(248, 250, 252, 0.94);
}

.pe-runtime-video-frame {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(3, 10, 20, 0.58);
}

.pe-runtime-video-frame::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.pe-runtime-video-frame.is-square::before {
	padding-top: 100%;
}

.pe-runtime-video-frame.is-portrait::before {
	padding-top: 140%;
}

.pe-runtime-video-frame.is-widescreen::before {
	padding-top: 42.85%;
}

.pe-runtime-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pe-runtime-html-block {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(248, 250, 252, 0.88);
}

.pe-runtime-html-block > *:first-child {
	margin-top: 0;
}

.pe-runtime-html-block > *:last-child {
	margin-bottom: 0;
}

.pe-runtime-spacer {
	width: 100%;
}

.pe-runtime-card.is-poster-mode .pe-runtime-eyebrow {
	margin-bottom: 0;
}

.pe-runtime-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.pe-runtime-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(248, 250, 252, 0.88);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pe-runtime-pill.is-muted {
	color: rgba(248, 250, 252, 0.72);
}

.pe-runtime-heading {
	margin: 16px 0 10px;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 0.98;
	letter-spacing: -0.05em;
	font-weight: 800;
}

.pe-runtime-body {
	margin: 0;
	color: rgba(248, 250, 252, 0.8);
	font-size: 15px;
	line-height: 1.75;
}

.pe-runtime-eyebrow .pe-rich-accent,
.pe-runtime-heading .pe-rich-accent,
.pe-runtime-body .pe-rich-accent,
.pe-runtime-note .pe-rich-accent {
	color: var(--pe-accent, #ffb347);
}

.pe-runtime-eyebrow .pe-rich-strike,
.pe-runtime-heading .pe-rich-strike,
.pe-runtime-body .pe-rich-strike,
.pe-runtime-note .pe-rich-strike {
	text-decoration: line-through;
	text-decoration-thickness: 0.08em;
	opacity: 0.86;
}

.pe-runtime-eyebrow .pe-rich-highlight,
.pe-runtime-heading .pe-rich-highlight,
.pe-runtime-body .pe-rich-highlight,
.pe-runtime-note .pe-rich-highlight {
	color: #fff7ed;
	background: linear-gradient(135deg, rgba(255, 107, 74, 0.28), rgba(255, 179, 71, 0.24));
	padding: 0.08em 0.34em;
	border-radius: 0.5em;
}

.pe-runtime-eyebrow .pe-rich-success,
.pe-runtime-heading .pe-rich-success,
.pe-runtime-body .pe-rich-success,
.pe-runtime-note .pe-rich-success {
	color: #86efac;
}

.pe-runtime-eyebrow .pe-rich-warning,
.pe-runtime-heading .pe-rich-warning,
.pe-runtime-body .pe-rich-warning,
.pe-runtime-note .pe-rich-warning {
	color: #fdba74;
}

.pe-runtime-eyebrow .pe-rich-muted,
.pe-runtime-heading .pe-rich-muted,
.pe-runtime-body .pe-rich-muted,
.pe-runtime-note .pe-rich-muted {
	color: rgba(226, 232, 240, 0.74);
}

.pe-runtime-eyebrow .pe-rich-small,
.pe-runtime-heading .pe-rich-small,
.pe-runtime-body .pe-rich-small,
.pe-runtime-note .pe-rich-small {
	font-size: 0.84em;
	letter-spacing: 0;
}

.pe-runtime-eyebrow .pe-rich-size-xs,
.pe-runtime-heading .pe-rich-size-xs,
.pe-runtime-body .pe-rich-size-xs,
.pe-runtime-note .pe-rich-size-xs {
	font-size: 0.72em;
}

.pe-runtime-eyebrow .pe-rich-size-sm,
.pe-runtime-heading .pe-rich-size-sm,
.pe-runtime-body .pe-rich-size-sm,
.pe-runtime-note .pe-rich-size-sm {
	font-size: 0.84em;
}

.pe-runtime-eyebrow .pe-rich-size-md,
.pe-runtime-heading .pe-rich-size-md,
.pe-runtime-body .pe-rich-size-md,
.pe-runtime-note .pe-rich-size-md {
	font-size: 1em;
}

.pe-runtime-eyebrow .pe-rich-size-lg,
.pe-runtime-heading .pe-rich-size-lg,
.pe-runtime-body .pe-rich-size-lg,
.pe-runtime-note .pe-rich-size-lg {
	font-size: 1.16em;
}

.pe-runtime-eyebrow .pe-rich-size-xl,
.pe-runtime-heading .pe-rich-size-xl,
.pe-runtime-body .pe-rich-size-xl,
.pe-runtime-note .pe-rich-size-xl {
	font-size: 1.28em;
}

.pe-runtime-eyebrow .pe-rich-color-accent,
.pe-runtime-heading .pe-rich-color-accent,
.pe-runtime-body .pe-rich-color-accent,
.pe-runtime-note .pe-rich-color-accent {
	color: #ffb347;
}

.pe-runtime-eyebrow .pe-rich-color-white,
.pe-runtime-heading .pe-rich-color-white,
.pe-runtime-body .pe-rich-color-white,
.pe-runtime-note .pe-rich-color-white {
	color: #f8fafc;
}

.pe-runtime-eyebrow .pe-rich-color-success,
.pe-runtime-heading .pe-rich-color-success,
.pe-runtime-body .pe-rich-color-success,
.pe-runtime-note .pe-rich-color-success {
	color: #86efac;
}

.pe-runtime-eyebrow .pe-rich-color-warning,
.pe-runtime-heading .pe-rich-color-warning,
.pe-runtime-body .pe-rich-color-warning,
.pe-runtime-note .pe-rich-color-warning {
	color: #fdba74;
}

.pe-runtime-eyebrow .pe-rich-color-danger,
.pe-runtime-heading .pe-rich-color-danger,
.pe-runtime-body .pe-rich-color-danger,
.pe-runtime-note .pe-rich-color-danger {
	color: #fca5a5;
}

.pe-runtime-eyebrow .pe-rich-color-sky,
.pe-runtime-heading .pe-rich-color-sky,
.pe-runtime-body .pe-rich-color-sky,
.pe-runtime-note .pe-rich-color-sky {
	color: #7dd3fc;
}

.pe-runtime-eyebrow .pe-rich-color-pink,
.pe-runtime-heading .pe-rich-color-pink,
.pe-runtime-body .pe-rich-color-pink,
.pe-runtime-note .pe-rich-color-pink {
	color: #f9a8d4;
}

.pe-runtime-eyebrow .pe-rich-color-muted,
.pe-runtime-heading .pe-rich-color-muted,
.pe-runtime-body .pe-rich-color-muted,
.pe-runtime-note .pe-rich-color-muted {
	color: rgba(226, 232, 240, 0.74);
}

.pe-runtime-eyebrow .pe-rich-pill,
.pe-runtime-heading .pe-rich-pill,
.pe-runtime-body .pe-rich-pill,
.pe-runtime-note .pe-rich-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.12em 0.48em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fffdf9;
}

.pe-runtime-card.is-poster-mode .pe-runtime-heading {
	margin: 0;
	font-size: clamp(18px, 4vw, 26px);
	line-height: 1.06;
}

.pe-runtime-card.is-poster-mode .pe-runtime-body {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
}

.pe-runtime-card.is-poster-mode .pe-runtime-countdown,
.pe-runtime-card.is-poster-mode .pe-runtime-reassurance {
	margin-top: 0;
}

.pe-runtime-countdown {
	margin-top: 16px;
	padding: 14px;
	border-radius: 18px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 42%),
		linear-gradient(135deg, rgba(255, 107, 74, 0.16), rgba(255, 179, 71, 0.1)),
		rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 179, 71, 0.22);
}

.pe-runtime-countdown.is-expired {
	border-color: rgba(248, 113, 113, 0.28);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 42%),
		linear-gradient(135deg, rgba(248, 113, 113, 0.14), rgba(244, 114, 182, 0.08)),
		rgba(255, 255, 255, 0.04);
}

.pe-runtime-countdown-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(248, 250, 252, 0.82);
}

.pe-runtime-countdown-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.pe-runtime-countdown-unit {
	padding: 10px 8px;
	border-radius: 14px;
	background: rgba(3, 10, 20, 0.36);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.pe-runtime-countdown-unit strong {
	display: block;
	font-size: 21px;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fffdf9;
}

.pe-runtime-countdown-unit span {
	display: block;
	margin-top: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(248, 250, 252, 0.68);
}

.pe-runtime-countdown-expired {
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.55;
	color: #fecaca;
}

.pe-runtime-reassurance {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(248, 250, 252, 0.78);
	font-size: 13px;
	line-height: 1.65;
}

.pe-runtime-media {
	margin: 18px 0 0;
}

.pe-runtime-media.is-poster {
	margin: 0;
	flex: 1 1 auto;
	min-height: 0;
}

.pe-runtime-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--pe-radius, 28px) - 10px);
}

.pe-runtime-media.is-poster img {
	border-radius: 0;
	border: 0;
	box-shadow: none;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
	background: rgba(3, 10, 20, 0.34);
}

.pe-runtime-media-placeholder {
	display: grid;
	gap: 8px;
	padding: 22px 18px;
	border-radius: calc(var(--pe-radius, 28px) - 6px);
	border: 1px dashed rgba(255, 255, 255, 0.18);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
		rgba(6, 12, 24, 0.42);
	color: rgba(248, 250, 252, 0.82);
}

.pe-runtime-media-placeholder strong {
	font-size: 16px;
	letter-spacing: -0.02em;
}

.pe-runtime-media-placeholder span {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(248, 250, 252, 0.7);
}

.pe-runtime-slider {
	display: grid;
	gap: 10px;
	margin-top: 0;
	position: relative;
	--pe-slider-image-percent: 74;
	--pe-slider-media-size: min(100%, calc(var(--pe-slider-image-percent) * 1%));
}

.pe-runtime-slider-track {
	position: relative;
	min-height: 0;
}

.pe-runtime-slide {
	display: none;
	gap: 12px;
	align-content: start;
}

.pe-runtime-slide.is-active {
	display: grid;
}

.pe-runtime-slide-media {
	margin: 0;
	border-radius: calc(var(--pe-radius, 28px) - 8px);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	width: min(100%, var(--pe-slider-media-size));
	margin-inline: auto;
}

.pe-runtime-slide-media img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	max-height: var(--pe-slider-media-size);
}

.pe-runtime-slide-copy {
	display: grid;
	gap: 8px;
	align-content: start;
}

.pe-runtime-heading.is-slider {
	margin: 0;
	font-size: clamp(24px, 3.6vw, 34px);
	line-height: 1.02;
}

.pe-runtime-slider-nav,
.pe-runtime-slider-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pe-runtime-slider-nav {
	position: absolute;
	top: calc((var(--pe-slider-media-size) / 2) - 20px);
	left: 50%;
	width: min(calc(100% - 12px), calc(var(--pe-slider-media-size) + 28px));
	transform: translate(-50%, -50%);
	justify-content: space-between;
	pointer-events: none;
	z-index: 3;
}

.pe-runtime-slider-dots {
	justify-content: center;
}

.pe-runtime-slider-arrow,
.pe-runtime-slider-dot {
	border: 0;
	cursor: pointer;
}

.pe-runtime-slider-arrow {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(3, 10, 20, 0.74);
	color: var(--pe-text, #f8fafc);
	font-size: 20px;
	line-height: 1;
	pointer-events: auto;
	box-shadow: 0 12px 24px rgba(2, 8, 23, 0.24);
	backdrop-filter: blur(8px);
}

.pe-runtime-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.32);
}

.pe-runtime-slider-dot.is-active {
	width: 28px;
	background: linear-gradient(90deg, var(--pe-accent, #ff6b4a), #ffb347);
}

.pe-runtime-actions.is-slider {
	margin-top: 0;
}

.pe-runtime-bullets {
	margin: 14px 0 0;
	padding: 0 0 0 18px;
	list-style: disc;
	display: grid;
	gap: 8px;
	color: rgba(248, 250, 252, 0.82);
}

.pe-runtime-bullets li {
	padding-left: 2px;
	color: inherit;
	font-size: 14px;
	line-height: 1.55;
}

.pe-runtime-bullets li::marker {
	color: rgba(191, 219, 254, 0.82);
}

.pe-runtime-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.pe-runtime-actions.is-poster {
	margin-top: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.pe-runtime-actions.is-poster-shelf {
	position: relative;
	z-index: 2;
	padding: 12px;
	background:
		linear-gradient(180deg, rgba(3, 10, 20, 0.06), rgba(3, 10, 20, 0.94) 28%),
		rgba(3, 10, 20, 0.88);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pe-runtime-actions.is-inline {
	display: flex;
	flex-wrap: wrap;
}

.pe-runtime-actions.is-stacked {
	display: grid;
	grid-template-columns: 1fr;
}

.pe-runtime-contact-note {
	margin-top: 2px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
	line-height: 1.5;
	color: rgba(248, 250, 252, 0.82);
}

.pe-runtime-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 14px;
	border: 1px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.pe-runtime-button:hover {
	transform: translateY(-1px);
}

.pe-runtime-button.is-primary {
	background: linear-gradient(135deg, var(--pe-accent, #ff6b4a), #ff946e);
	color: #fffdf9;
	box-shadow: 0 15px 30px rgba(255, 107, 74, 0.26);
}

.pe-runtime-button.is-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--pe-text, #f8fafc);
}

.pe-runtime-card.is-mobile-stack .pe-runtime-actions {
	display: grid;
	grid-template-columns: 1fr;
}

.pe-runtime-card.is-mobile-stack .pe-runtime-button {
	width: 100%;
}

.pe-runtime-frame.is-mobile {
	padding:
		max(12px, calc(env(safe-area-inset-top) + 10dvh))
		max(10px, env(safe-area-inset-right))
		max(10px, calc(env(safe-area-inset-bottom) + 5dvh))
		max(10px, env(safe-area-inset-left));
}

.pe-runtime-frame.is-mobile .pe-runtime-card {
	width: min(100%, var(--pe-mobile-width, 360px));
	max-height: calc(85dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	padding: 12px 11px;
	border-radius: min(var(--pe-radius, 28px), 20px);
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-poster-mode {
	width: min(100%, calc(100vw - 8px - env(safe-area-inset-left) - env(safe-area-inset-right)));
	max-height: calc(85dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	padding: 0;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-slidein,
.pe-runtime-frame.is-mobile .pe-runtime-card.is-bar {
	padding: 12px;
	border-radius: 17px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-fullscreen,
.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-fullheight {
	width: 100%;
	height: 100%;
	max-height: 100%;
	padding: 14px 12px;
	border-radius: 18px;
}

.pe-runtime-frame.is-mobile .pe-runtime-inner {
	padding-right: 0;
}

.pe-runtime-frame.is-mobile .pe-runtime-poster-shell {
	gap: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-close {
	top: 9px;
	right: 9px;
	width: 32px;
	height: 32px;
}

.pe-runtime-frame.is-mobile .pe-runtime-eyebrow {
	padding: 6px 10px;
	font-size: 10px;
	letter-spacing: 0.08em;
}

.pe-runtime-frame.is-mobile .pe-runtime-heading {
	margin: 6px 0 4px;
	font-size: clamp(17px, 4.9vw, 21px);
	line-height: 1.05;
}

.pe-runtime-frame.is-mobile .pe-runtime-body {
	font-size: 12.5px;
	line-height: 1.38;
}

.pe-runtime-frame.is-mobile .pe-runtime-builder-stack {
	gap: 12px;
}

.pe-runtime-frame.is-mobile .pe-runtime-note {
	padding: 10px 11px;
	border-radius: 13px;
	font-size: 11.5px;
	line-height: 1.42;
}

.pe-runtime-frame.is-mobile .pe-runtime-badge-row {
	gap: 6px;
}

.pe-runtime-frame.is-mobile .pe-runtime-badge {
	min-height: 28px;
	padding: 0 10px;
	font-size: 10.5px;
}

.pe-runtime-frame.is-mobile .pe-runtime-trust-strip,
.pe-runtime-frame.is-mobile .pe-runtime-proof-card,
.pe-runtime-frame.is-mobile .pe-runtime-html-block {
	padding: 10px 11px;
	border-radius: 14px;
}

.pe-runtime-frame.is-mobile .pe-runtime-trust-item,
.pe-runtime-frame.is-mobile .pe-runtime-proof-card blockquote {
	font-size: 11.5px;
	line-height: 1.5;
}

.pe-runtime-frame.is-mobile .pe-runtime-proof-meta {
	font-size: 10.5px;
}

.pe-runtime-frame.is-mobile .pe-runtime-media-caption {
	font-size: 11px;
	line-height: 1.45;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown {
	margin-top: 10px;
	padding: 10px;
	border-radius: 14px;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown-grid {
	gap: 7px;
	margin-top: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown-unit {
	padding: 9px 6px;
	border-radius: 12px;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown-unit strong {
	font-size: 18px;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown-unit span {
	margin-top: 4px;
	font-size: 9px;
}

.pe-runtime-frame.is-mobile .pe-runtime-countdown-expired {
	margin-top: 8px;
	font-size: 11px;
	line-height: 1.45;
}

.pe-runtime-frame.is-mobile .pe-runtime-reassurance {
	margin-top: 9px;
	padding: 9px 10px;
	border-radius: 12px;
	font-size: 11.5px;
	line-height: 1.42;
}

.pe-runtime-frame.is-mobile .pe-runtime-media,
.pe-runtime-frame.is-mobile .pe-runtime-bullets {
	margin-top: 10px;
}

.pe-runtime-frame.is-mobile .pe-runtime-media.is-poster {
	margin-top: 0;
}

.pe-runtime-frame.is-mobile .pe-runtime-media.is-poster img,
.pe-runtime-frame.is-mobile .pe-runtime-media-placeholder {
	border-radius: 16px;
}

.pe-runtime-frame.is-mobile .pe-runtime-slide {
	gap: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-slide-media {
	border-radius: 14px;
	width: min(100%, var(--pe-slider-media-size));
}

.pe-runtime-frame.is-mobile .pe-runtime-slide-media img {
	aspect-ratio: 1 / 1;
	max-height: var(--pe-slider-media-size);
}

.pe-runtime-frame.is-mobile .pe-runtime-slider {
	--pe-slider-media-size: min(100%, calc(var(--pe-slider-image-percent) * 1%));
	gap: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-slider-nav {
	top: calc((var(--pe-slider-media-size) / 2) - 17px);
	width: min(calc(100% - 4px), calc(var(--pe-slider-media-size) + 34px));
}

.pe-runtime-frame.is-mobile .pe-runtime-slider-arrow {
	width: 32px;
	height: 32px;
	font-size: 17px;
}

.pe-runtime-frame.is-mobile .pe-runtime-slider-dot.is-active {
	width: 22px;
}

.pe-runtime-frame.is-mobile .pe-runtime-media.is-poster img {
	height: 100%;
	max-height: none;
}

.pe-runtime-frame.is-mobile .pe-runtime-bullets {
	margin-top: 10px;
	padding-left: 16px;
	gap: 6px;
}

.pe-runtime-frame.is-mobile .pe-runtime-bullets li {
	padding-left: 1px;
	font-size: 13px;
	line-height: 1.45;
}

.pe-runtime-frame.is-mobile .pe-runtime-bullets li::marker {
	font-size: 0.9em;
}

.pe-runtime-frame.is-mobile .pe-runtime-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7px;
	margin-top: 7px;
}

.pe-runtime-frame.is-mobile .pe-runtime-button {
	width: 100%;
	min-height: 38px;
	padding: 0 11px;
	border-radius: 11px;
	font-size: 12.5px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-poster-mode .pe-runtime-heading {
	font-size: clamp(17px, 5vw, 22px);
}

.pe-runtime-frame.is-mobile .pe-runtime-actions.is-poster-shelf {
	padding: 9px;
}

.pe-runtime-frame.is-mobile .pe-runtime-contact-note {
	font-size: 10.5px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form {
	margin-top: 8px;
	gap: 7px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-grid {
	grid-template-columns: 1fr;
	gap: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-row {
	gap: 9px;
}

.pe-runtime-frame.is-mobile .pe-runtime-phone-stack {
	grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
	gap: 8px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-step {
	padding: 10px;
	border-radius: 13px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-progress span {
	width: 26px;
	height: 26px;
	font-size: 11px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-step-actions {
	display: grid;
	grid-template-columns: 1fr;
}

.pe-runtime-frame.is-mobile .pe-runtime-callback {
	gap: 4px;
	padding: 9px 10px;
	border-radius: 13px;
}

.pe-runtime-frame.is-mobile .pe-runtime-callback strong {
	font-size: 13px;
}

.pe-runtime-frame.is-mobile .pe-runtime-callback span,
.pe-runtime-frame.is-mobile .pe-runtime-consent,
.pe-runtime-frame.is-mobile .pe-runtime-status {
	font-size: 11.5px;
	line-height: 1.42;
}

.pe-runtime-frame.is-mobile .pe-runtime-form-label {
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1.25;
}

.pe-runtime-frame.is-mobile .pe-runtime-slide-copy .pe-runtime-body {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.pe-runtime-frame.is-mobile .pe-runtime-slide-copy .pe-runtime-heading.is-slider {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.pe-runtime-frame.is-mobile .pe-runtime-form input[type="text"],
.pe-runtime-frame.is-mobile .pe-runtime-form input[type="email"],
.pe-runtime-frame.is-mobile .pe-runtime-form input[type="tel"],
.pe-runtime-frame.is-mobile .pe-runtime-form textarea,
.pe-runtime-frame.is-mobile .pe-runtime-form select {
	min-height: 40px;
	padding: 0 11px;
	border-radius: 11px;
	font-size: 13px;
}

.pe-runtime-frame.is-mobile .pe-runtime-form textarea {
	min-height: 82px;
	padding: 10px 11px;
}

.pe-runtime-frame.is-mobile .pe-runtime-field-help,
.pe-runtime-frame.is-mobile .pe-runtime-field-error {
	margin-top: 5px;
	font-size: 10.5px;
	line-height: 1.38;
}

.pe-runtime-frame.is-mobile .pe-runtime-success-card {
	padding: 14px;
	border-radius: 14px;
}

.pe-runtime-frame.is-mobile .pe-runtime-success-card strong {
	font-size: 16px;
}

.pe-runtime-frame.is-mobile .pe-runtime-teaser {
	right: 10px;
	left: 10px;
	bottom: max(10px, env(safe-area-inset-bottom));
	padding: 12px 14px;
	border-radius: 16px;
}

.pe-runtime-frame.is-mobile .pe-runtime-teaser-title {
	font-size: 13px;
	line-height: 1.25;
}

.pe-runtime-card.is-mobile-compact {
	padding: 22px 18px;
}

.pe-runtime-card.is-mobile-compact .pe-runtime-heading {
	font-size: clamp(24px, 7vw, 32px);
}

.pe-runtime-card.is-mobile-compact .pe-runtime-body {
	font-size: 14px;
	line-height: 1.65;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact {
	padding: 13px 11px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-heading {
	font-size: clamp(17px, 5vw, 20px);
	margin: 6px 0 4px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-body {
	font-size: 12px;
	line-height: 1.38;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-actions {
	margin-top: 8px;
	gap: 6px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-button {
	min-height: 37px;
	font-size: 12.5px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-form {
	margin-top: 8px;
	gap: 7px;
}

.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-form input[type="text"],
.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-form input[type="email"],
.pe-runtime-frame.is-mobile .pe-runtime-card.is-mobile-compact .pe-runtime-form input[type="tel"] {
	min-height: 38px;
}

.pe-runtime-card.is-mobile-fullheight {
	width: min(100%, var(--pe-mobile-width, 360px));
	height: 100%;
	max-height: 100%;
}

.pe-runtime-form {
	margin-top: 20px;
	display: grid;
	gap: 12px;
}

.pe-runtime-form.is-poster {
	margin-top: 0;
}

.pe-runtime-form-progress {
	display: inline-grid;
	grid-auto-flow: column;
	gap: 8px;
}

.pe-runtime-form-progress span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
	font-size: 12px;
	font-weight: 800;
}

.pe-runtime-form-progress span.is-active {
	background: linear-gradient(135deg, var(--pe-accent, #ff6b4a), #ff946e);
	color: #fffdf9;
}

.pe-runtime-form-step {
	display: none;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
}

.pe-runtime-form-step.is-active {
	display: grid;
}

.pe-runtime-form-step-head strong {
	font-size: 14px;
	letter-spacing: -0.01em;
	color: var(--pe-text, #f8fafc);
}

.pe-runtime-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.pe-runtime-form-row {
	display: grid;
	gap: 8px;
}

.pe-runtime-form-row.is-hidden {
	display: none;
}

.pe-runtime-form-row.is-full {
	grid-column: 1 / -1;
}

.pe-runtime-form-row.is-half {
	grid-column: span 1;
}

.pe-runtime-form-step-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pe-runtime-callback {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pe-runtime-callback strong {
	font-size: 15px;
	letter-spacing: -0.02em;
	color: var(--pe-text, #f8fafc);
}

.pe-runtime-callback span {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(248, 250, 252, 0.78);
}

.pe-runtime-phone-stack {
	display: grid;
	grid-template-columns: minmax(132px, 40%) minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
}

.pe-runtime-phone-country {
	display: block;
}

.pe-runtime-phone-country select {
	padding-right: 12px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pe-runtime-form-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(248, 250, 252, 0.7);
}

.pe-runtime-form input[type="text"],
.pe-runtime-form input[type="email"],
.pe-runtime-form input[type="tel"],
.pe-runtime-form textarea,
.pe-runtime-form select {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(3, 10, 20, 0.48);
	color: var(--pe-text, #f8fafc);
}

.pe-runtime-form textarea {
	min-height: 96px;
	padding: 12px 14px;
	resize: vertical;
}

.pe-runtime-form select {
	appearance: none;
}

.pe-runtime-honeypot {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.pe-runtime-form input:focus {
	outline: none;
	border-color: rgba(255, 179, 71, 0.55);
	box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.12);
}

.pe-runtime-form textarea:focus,
.pe-runtime-form select:focus {
	outline: none;
	border-color: rgba(255, 179, 71, 0.55);
	box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.12);
}

.pe-runtime-form input.is-invalid {
	border-color: rgba(248, 113, 113, 0.85);
	box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.14);
}

.pe-runtime-field-help {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(248, 250, 252, 0.66);
	text-transform: none;
	letter-spacing: 0;
}

.pe-runtime-field-error {
	display: block;
	margin-top: 8px;
	min-height: 18px;
	font-size: 12px;
	line-height: 1.5;
	color: #fda4af;
	text-transform: none;
	letter-spacing: 0;
}

.pe-runtime-success-card {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 18px;
	border: 1px solid rgba(74, 222, 128, 0.22);
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(16, 185, 129, 0.08));
}

.pe-runtime-success-card strong {
	font-size: 18px;
	letter-spacing: -0.02em;
	color: #ecfdf5;
}

.pe-runtime-success-card p,
.pe-runtime-success-card span {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(236, 253, 245, 0.88);
}

.pe-runtime-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(248, 250, 252, 0.76);
}

.pe-runtime-status {
	margin-top: 8px;
	font-size: 13px;
	color: #d1fae5;
}

.pe-runtime-status.is-error {
	color: #fecaca;
}

.pe-runtime-status.is-success {
	color: #d1fae5;
}

.pe-runtime-teaser {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 45%),
		linear-gradient(135deg, rgba(255, 107, 74, 0.92), rgba(255, 179, 71, 0.88));
	color: #fffdf9;
	box-shadow: 0 24px 50px rgba(2, 8, 23, 0.28);
	cursor: pointer;
	pointer-events: auto;
	text-align: left;
}

.pe-runtime-teaser-kicker {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.85;
}

.pe-runtime-teaser-title {
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.pe-animate-rise {
	animation: peRise 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pe-animate-fade {
	animation: peFade 220ms ease;
}

.pe-animate-scale {
	animation: peScale 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pe-animate-slide {
	animation: peSlide 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes peRise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes peFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes peScale {
	from {
		opacity: 0;
		transform: scale(0.96);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes peSlide {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (max-width: 767px) {
	.pe-runtime-frame {
		padding:
			max(12px, calc(env(safe-area-inset-top) + 10dvh))
			max(12px, env(safe-area-inset-right))
			max(12px, calc(env(safe-area-inset-bottom) + 5dvh))
			max(12px, env(safe-area-inset-left));
	}

	.pe-runtime-card {
		width: min(100%, var(--pe-mobile-width, 360px));
		max-height: calc(85dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
		padding: 18px 14px;
	}

	.pe-runtime-heading {
		font-size: clamp(22px, 7vw, 30px);
	}

	.pe-runtime-frame.is-slidein,
	.pe-runtime-frame.is-bottom-right {
		align-items: flex-end;
		justify-content: center;
	}

	.pe-runtime-card.is-bar {
		border-radius: 18px;
		width: 100%;
	}

	.pe-runtime-card.is-fullscreen,
	.pe-runtime-card.is-mobile-fullheight {
		width: 100%;
		border-radius: 22px;
	}

	.pe-runtime-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.pe-runtime-button {
		width: 100%;
	}

	.pe-runtime-inner {
		padding-right: 0;
	}

	.pe-runtime-teaser {
		right: 10px;
		left: 10px;
		bottom: max(10px, env(safe-area-inset-bottom));
	}
}
