/*
 * Power Up WP — modern overlay
 * Loaded after style.css/responsive.css: refines the Comixo base theme with
 * design tokens, softer surfaces, fluid type, and modern motion without
 * touching the template's layout or responsive breakpoints.
 */

/* Nunito (variable, self-hosted) — warm rounded body type that suits the
   comic display faces better than the system/Arial fallbacks */
@font-face {
	font-family: 'Nunito';
	src: url(../fonts/Nunito-Variable.woff2) format('woff2');
	font-weight: 200 1000;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nunito';
	src: url(../fonts/Nunito-Italic-Variable.woff2) format('woff2');
	font-weight: 200 1000;
	font-style: italic;
	font-display: swap;
}

:root {
	--pwp-ink: #16181d;
	--pwp-muted: #5f6673;
	--pwp-paper: #faf9f7;
	--pwp-surface: #ffffff;
	--pwp-red: #d71515;
	--pwp-red-deep: #a80f0f;
	--pwp-line: rgba(22, 24, 29, 0.10);
	--pwp-shadow-sm: 0 1px 2px rgba(22, 24, 29, 0.06), 0 4px 12px rgba(22, 24, 29, 0.06);
	--pwp-shadow-md: 0 2px 4px rgba(22, 24, 29, 0.06), 0 12px 32px rgba(22, 24, 29, 0.10);
	--pwp-shadow-red: 0 8px 24px rgba(215, 21, 21, 0.32);
	--pwp-radius: 16px;
	--pwp-radius-lg: 24px;
	--pwp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	background:
		radial-gradient(1100px 520px at 85% -80px, rgba(215, 21, 21, 0.07), transparent 60%),
		radial-gradient(900px 480px at -10% 30%, rgba(22, 24, 29, 0.05), transparent 55%),
		var(--pwp-paper);
	color: var(--pwp-ink);
	font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: var(--pwp-red);
	color: #fff;
}

a,
button {
	transition: all 0.25s var(--pwp-ease);
}

:focus-visible {
	outline: 2px solid var(--pwp-red);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ---------------------------------------------------------------------
   Navbar: frosted glass
--------------------------------------------------------------------- */
.navbar,
.navbar.nav-bg {
	background: rgba(250, 249, 247, 0.78);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid var(--pwp-line);
	padding: 14px 0;
}

.navbar .navbar-nav .nav-link {
	font-size: 15px;
	letter-spacing: 0.06em;
	color: var(--pwp-muted);
	position: relative;
}

.navbar .navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: var(--pwp-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--pwp-ease);
}

.navbar .navbar-nav .nav-link:hover {
	color: var(--pwp-ink);
}

.navbar .navbar-nav .nav-link:hover::after {
	transform: scaleX(1);
}

/* ---------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------- */
.button-primary {
	background: linear-gradient(135deg, #ef2d2d, var(--pwp-red) 55%, var(--pwp-red-deep));
	padding: 16px 34px;
	font-size: 17px;
	letter-spacing: 0.04em;
	box-shadow: var(--pwp-shadow-red);
	border: 0;
}

.button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(215, 21, 21, 0.42);
}

.button-secondary {
	background: var(--pwp-ink);
	padding: 12px 24px;
	font-size: 15px;
	letter-spacing: 0.04em;
	box-shadow: var(--pwp-shadow-sm);
}

.button-secondary:hover {
	background: var(--pwp-red);
	transform: translateY(-2px);
	box-shadow: var(--pwp-shadow-red);
}

/* The old icon container renders as an empty white pill — remove it */
.menu-action .action-icon {
	display: none;
}

/* ---------------------------------------------------------------------
   Hero
--------------------------------------------------------------------- */
.banner-txt .hero-title {
	display: block;
	font-family: cb;
	font-size: clamp(44px, 6vw, 76px);
	line-height: 1.02;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	color: var(--pwp-ink);
}

.banner-txt .hero-title em {
	font-style: normal;
	background: linear-gradient(120deg, #ef2d2d, var(--pwp-red-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--pwp-red);
}

.banner-txt .hero-sub {
	display: block;
	font-family: cr;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.65;
	text-transform: none;
	color: var(--pwp-muted);
	margin-top: 18px;
	max-width: 46ch;
}

.banner-txt hr {
	display: none;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 30px;
}

.hero-trust {
	font-size: 15px;
	color: var(--pwp-muted);
}

.banner-img {
	-webkit-filter: none;
	filter: none;
	border: 6px solid #fff;
	border-radius: var(--pwp-radius);
	box-shadow: var(--pwp-shadow-md);
}

.banner-review {
	padding-top: 45px;
}

/* Marquee: slim ink ribbon instead of a loud fixed red bar */
.marquee {
	height: 46px;
	background: var(--pwp-ink);
}

.marquee .text {
	font-family: cm;
	font-size: 16px;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.85);
}

.marquee img {
	height: 18px;
	padding-left: 40px;
	top: -1px;
	opacity: 0.7;
}

.marquee.marquee-white {
	background: var(--pwp-ink);
}

.marquee.marquee-white .text {
	color: rgba(255, 255, 255, 0.85);
}

/* ---------------------------------------------------------------------
   Section titles
--------------------------------------------------------------------- */
.section-title span {
	font-size: 15px;
	letter-spacing: 0.22em;
}

.section-title h3 {
	font-size: clamp(32px, 4.4vw, 52px);
	letter-spacing: -0.01em;
	line-height: 1.08;
	margin-top: 6px;
}

/* ---------------------------------------------------------------------
   Core feature cards (red band)
--------------------------------------------------------------------- */
#new-comics {
	background: linear-gradient(160deg, #e01b1b, var(--pwp-red) 45%, var(--pwp-red-deep));
}

/* One-at-a-time rotator: each 800px artwork gets the full stage. The
   active slide keeps normal flow (it defines the height — all art shares
   the same 800x533 ratio so nothing jumps); the rest stack behind it. */
.feature-rotator {
	position: relative;
	max-width: 860px;
	margin: 45px auto 0;
}

.rotator-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s var(--pwp-ease);
}

.rotator-slide.is-active {
	position: relative;
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
}

.feature-rotator .comic-card,
.feature-rotator .comic-card.is-mid {
	margin-top: 0;
}

/* Labeled tabs under the stage — all three features stay visible even
   while one card holds the spotlight */
.rotator-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.rotator-tabs button {
	font-family: cm, Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--pwp-ink);
	border: 2px solid var(--pwp-ink);
	border-radius: 50px;
	padding: 10px 22px;
	cursor: pointer;
	box-shadow: 3px 3px 0 rgba(22, 24, 29, 0.35);
	transition: all 0.25s var(--pwp-ease);
}

.rotator-tabs button i {
	padding-right: 6px;
}

.rotator-tabs button:hover {
	transform: translateY(-2px);
}

.rotator-tabs button.is-active {
	color: var(--pwp-ink);
	background: var(--pwp-yellow);
	border-color: var(--pwp-ink);
	box-shadow: 3px 3px 0 rgba(22, 24, 29, 0.85);
}

/* Feature cards: the 800px comic art bleeds edge-to-edge, whole card is
   the link, title bar sits under an ink divider */
.comic-card {
	display: block;
	background: #fff;
	border: 3px solid var(--pwp-ink);
	border-radius: var(--pwp-radius);
	box-shadow: 7px 7px 0 rgba(22, 24, 29, 0.85);
	overflow: hidden;
	margin-top: 50px;
	color: var(--pwp-ink);
	transition: transform 0.3s var(--pwp-ease), box-shadow 0.3s var(--pwp-ease);
}

.comic-card.is-mid {
	margin-top: 10px;
}

.comic-card:hover {
	transform: translateY(-6px);
	box-shadow: 9px 12px 0 rgba(22, 24, 29, 0.85);
	color: var(--pwp-ink);
}

.comic-card-art {
	display: block;
	border-bottom: 3px solid var(--pwp-ink);
	overflow: hidden;
	background: #04070a;
}

.comic-card-art img {
	width: 100%;
	display: block;
	transition: transform 0.5s var(--pwp-ease);
}

.comic-card:hover .comic-card-art img {
	transform: scale(1.045);
}

.comic-card-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 18px 15px 20px;
}

.comic-card-txt {
	display: block;
	min-width: 0;
}

.comic-card-bar h3 {
	font-family: cb, Arial, sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 2px;
	padding: 0;
	color: var(--pwp-ink);
}

.comic-card-bar p {
	font-family: 'Nunito', Arial, sans-serif;
	font-size: 14px;
	color: var(--pwp-muted);
	margin: 0;
}

.comic-card-bar .go {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 2px solid var(--pwp-ink);
	background: var(--pwp-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: var(--pwp-ink);
	box-shadow: 2px 2px 0 var(--pwp-ink);
	transition: transform 0.25s var(--pwp-ease), background 0.25s var(--pwp-ease), color 0.25s var(--pwp-ease);
}

.comic-card:hover .go {
	transform: translateX(4px);
	background: var(--pwp-red);
	color: #fff;
}

@media (max-width: 991px) {
	.comic-card,
	.comic-card.is-mid {
		margin-top: 26px;
	}
}

/* ---------------------------------------------------------------------
   Pricing
--------------------------------------------------------------------- */
#price-plan {
	background: transparent;
}

.price-main {
	background: var(--pwp-surface);
	border: 1px solid var(--pwp-line);
	border-radius: var(--pwp-radius-lg);
	box-shadow: var(--pwp-shadow-md);
	overflow: visible;
	padding: 10px;
}

.price-item {
	border-radius: var(--pwp-radius);
	transition: background 0.3s var(--pwp-ease);
}

.price-item:hover {
	background: rgba(22, 24, 29, 0.025);
}

.price-item h3 {
	font-size: 40px;
	letter-spacing: -0.01em;
}

.price-item p {
	font-size: 15.5px;
	padding-bottom: 6px;
}

.price-item p .fa-check {
	color: var(--pwp-red);
	padding-right: 4px;
}

.price-item.active {
	background: linear-gradient(165deg, #e01b1b, var(--pwp-red) 50%, var(--pwp-red-deep));
	border-radius: var(--pwp-radius);
	box-shadow: var(--pwp-shadow-red);
}

.price-item.active:hover {
	background: linear-gradient(165deg, #e01b1b, var(--pwp-red) 50%, var(--pwp-red-deep));
}

.price-item.active::before {
	content: 'Most Popular';
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pwp-ink);
	color: #fff;
	font-family: cm;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	white-space: nowrap;
}

.price-item.active p .fa-check {
	color: #fff;
}

.price-item a {
	border-radius: 50px;
}

/* Below the plans: trial + agency callouts, then a centered trust line */
.pricing-extras {
	margin-top: 40px;
	row-gap: 20px;
}

.pricing-extra-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	background: var(--pwp-surface);
	border: 1px solid var(--pwp-line);
	border-radius: var(--pwp-radius);
	box-shadow: var(--pwp-shadow-sm);
	padding: 28px 30px;
	transition: transform 0.35s var(--pwp-ease), box-shadow 0.35s var(--pwp-ease);
}

.pricing-extra-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pwp-shadow-md);
}

.pricing-extra-icon {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(215, 21, 21, 0.08);
	border: 1px solid rgba(215, 21, 21, 0.18);
	color: var(--pwp-red);
	font-size: 19px;
}

.pricing-extra-card h4 {
	font-family: cm;
	font-size: 22px;
	color: var(--pwp-ink);
}

.pricing-extra-card p {
	font-family: cr;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--pwp-muted);
	margin-bottom: 8px;
}

.pricing-extra-card .button-primary,
.pricing-extra-card .button-secondary {
	margin-top: auto;
	padding: 12px 26px;
	font-size: 15px;
}

.pricing-trust {
	margin-top: 30px;
}

.pricing-trust p {
	font-family: cr;
	font-size: 14.5px;
	color: var(--pwp-muted);
}

.pricing-trust i {
	padding-right: 5px;
}

/* ---------------------------------------------------------------------
   Feature list (numbered rows)
--------------------------------------------------------------------- */
.blog-item {
	border-color: var(--pwp-line);
	border-width: 1px;
}

.blog-item h4 {
	font-size: 96px;
	-webkit-text-stroke-width: 1.5px;
	-webkit-text-stroke-color: rgba(215, 21, 21, 0.55);
}

.blog-item img {
	border-radius: var(--pwp-radius);
	box-shadow: var(--pwp-shadow-sm);
}

.blog-item h3 {
	font-size: clamp(24px, 2.6vw, 31px);
	line-height: 1.15;
	padding-right: 40px;
}

.blog-item p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--pwp-muted);
	padding-right: 40px;
}

/* Tag links become pill badges */
.blog-txt > a:not(.round-btn) {
	display: inline-block;
	font-family: cm;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--pwp-red);
	background: rgba(215, 21, 21, 0.07);
	border: 1px solid rgba(215, 21, 21, 0.22);
	border-radius: 50px;
	padding: 6px 14px;
	margin: 0 8px 12px 0;
}

.blog-txt > a:not(.round-btn):hover {
	background: var(--pwp-red);
	color: #fff;
}

.round-btn i {
	width: 46px;
	height: 46px;
	line-height: 44px;
	font-size: 18px;
}

/* ---------------------------------------------------------------------
   Sub-pages (trial, docs, faq, account, support, legal)
--------------------------------------------------------------------- */
div.pwp-page {
	padding-top: 160px;
}

div.pwp-page h1,
div.pwp-page h2 {
	font-family: cb;
	letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------------
   Footer
--------------------------------------------------------------------- */
#footer {
	background: #141519;
	border-radius: var(--pwp-radius-lg) var(--pwp-radius-lg) 0 0;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.55);
}

.footer-menu a:hover {
	color: #fff;
}

#copy_right {
	background: #141519;
}

/* ---------------------------------------------------------------------
   Small screens: keep the ribbon subtle, give the hero air
--------------------------------------------------------------------- */
@media (max-width: 991px) {
	#banner {
		padding-top: 150px;
	}

	.banner-txt .hero-title {
		font-size: clamp(36px, 9vw, 56px);
	}

	.hero-cta {
		justify-content: center;
	}

	.blog-item h3,
	.blog-item p {
		padding-right: 0;
	}
}

/* =====================================================================
   COMIC LAYER — superhero energy on top of the modern base
===================================================================== */
:root {
	--pwp-yellow: #ffc21a;
	--pwp-pow: 5px 5px 0 var(--pwp-ink);
	--pwp-pow-sm: 3px 3px 0 var(--pwp-ink);
}

/* Ink frame under the glass navbar */
.navbar,
.navbar.nav-bg {
	border-bottom: 3px solid var(--pwp-ink);
}

/* Buttons: inked comic panels that physically press */
.button-primary,
.button-secondary {
	border: 3px solid var(--pwp-ink);
	box-shadow: var(--pwp-pow);
}

.button-primary:hover,
.button-secondary:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 var(--pwp-ink);
}

.button-primary:active,
.button-secondary:active {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--pwp-ink);
}

/* Halftone dot fields behind the hero and features */
#banner::after,
#blog::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	background-image: radial-gradient(rgba(215, 21, 21, 0.16) 2px, transparent 2px);
	background-size: 18px 18px;
	-webkit-mask-image: radial-gradient(closest-side, #000, transparent);
	mask-image: radial-gradient(closest-side, #000, transparent);
}

#banner::after {
	top: 90px;
	left: -140px;
	width: 480px;
	height: 480px;
}

#blog::after {
	top: 40px;
	right: -160px;
	width: 520px;
	height: 520px;
}

/* Hero sticker badge */
.comic-sticker {
	display: inline-block;
	font-family: cb;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pwp-ink);
	background: var(--pwp-yellow);
	border: 3px solid var(--pwp-ink);
	border-radius: 8px;
	box-shadow: var(--pwp-pow-sm);
	padding: 8px 16px;
	transform: rotate(-2deg);
	margin-bottom: 22px;
}

/* Action bursts around the hero art */
.pow-burst {
	position: absolute;
	z-index: 3;
	font-family: cb;
	text-transform: uppercase;
	color: var(--pwp-ink);
	background: var(--pwp-yellow);
	border: 3px solid var(--pwp-ink);
	padding: 18px 22px;
	clip-path: polygon(50% 0%, 61% 12%, 76% 5%, 79% 21%, 95% 20%, 89% 35%, 100% 44%, 89% 55%, 97% 70%, 81% 72%, 81% 89%, 65% 84%, 56% 100%, 45% 87%, 30% 96%, 27% 79%, 10% 81%, 17% 65%, 0% 57%, 12% 45%, 3% 31%, 20% 29%, 18% 12%, 34% 16%);
	animation: pow-wiggle 3.2s ease-in-out infinite;
}

.pow-one {
	font-size: 22px;
	top: -18px;
	left: -10px;
	transform: rotate(-10deg);
}

.pow-two {
	font-size: 17px;
	bottom: 40px;
	right: -14px;
	transform: rotate(8deg);
	background: #fff;
	animation-delay: 1.6s;
}

@keyframes pow-wiggle {
	0%, 100% { scale: 1; }
	50% { scale: 1.08; }
}

/* Hero art: inked panel with a hard shadow */
.banner-img.one {
	border: 4px solid var(--pwp-ink);
	box-shadow: 10px 10px 0 rgba(22, 24, 29, 0.85);
}

/* Section titles get a marker swipe */
.section-title h3 {
	display: inline;
	background-image: linear-gradient(transparent 58%, rgba(255, 194, 26, 0.65) 58%, rgba(255, 194, 26, 0.65) 92%, transparent 92%);
	background-repeat: no-repeat;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* On the red band the marker swipe muddies white text — drop it there */
.t-white.section-title h3,
.section-title.t-white h3,
.t-white .section-title h3,
.section-title .t-white h3 {
	background-image: none;
	display: block;
}

/* Cards become inked comic panels */
.comic-item,
.pricing-extra-card,
.price-main {
	border: 3px solid var(--pwp-ink);
	box-shadow: 8px 8px 0 rgba(22, 24, 29, 0.85);
}

.comic-item:hover,
.pricing-extra-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: 12px 12px 0 rgba(22, 24, 29, 0.85);
}

.price-item.active {
	border: 3px solid var(--pwp-ink);
	box-shadow: 6px 6px 0 var(--pwp-ink);
}

.price-item.active::before {
	background: var(--pwp-yellow);
	color: var(--pwp-ink);
	border: 3px solid var(--pwp-ink);
	box-shadow: var(--pwp-pow-sm);
	transform: translateX(-50%) rotate(-3deg);
	font-family: cb;
}

/* Feature rows: tilted sticker art + inked pills */
.blog-item img {
	border: 3px solid var(--pwp-ink);
	box-shadow: 7px 7px 0 rgba(22, 24, 29, 0.85);
	transform: rotate(-1.5deg);
	transition: transform 0.35s var(--pwp-ease);
}

.blog-item:nth-child(even) img {
	transform: rotate(1.5deg);
}

.blog-item:hover img {
	transform: rotate(0deg) scale(1.02);
}

.blog-txt > a:not(.round-btn) {
	border: 2px solid var(--pwp-ink);
	color: var(--pwp-ink);
	background: #fff;
	box-shadow: 2px 2px 0 var(--pwp-ink);
}

.blog-txt > a:not(.round-btn):hover {
	background: var(--pwp-yellow);
	color: var(--pwp-ink);
	transform: translate(-1px, -1px);
	box-shadow: 3px 3px 0 var(--pwp-ink);
}

.blog-item h4 {
	-webkit-text-stroke-width: 2.5px;
	-webkit-text-stroke-color: var(--pwp-red);
	transform: translateY(-50%) rotate(-4deg);
}

.round-btn i {
	border-width: 3px;
	box-shadow: var(--pwp-pow-sm);
}

/* Icon chips in the callout cards */
.pricing-extra-icon {
	border: 3px solid var(--pwp-ink);
	background: var(--pwp-yellow);
	color: var(--pwp-ink);
	box-shadow: var(--pwp-pow-sm);
	transform: rotate(-3deg);
}

/* Ticker: back to hero red, framed in ink */
.marquee,
.marquee.marquee-white {
	height: 54px;
	background: linear-gradient(90deg, #e01b1b, var(--pwp-red-deep));
	border-top: 3px solid var(--pwp-ink);
}

.marquee .text,
.marquee.marquee-white .text {
	font-family: cb;
	font-size: 19px;
	letter-spacing: 0.1em;
	color: #fff;
}

.marquee img {
	height: 22px;
	opacity: 1;
}

@media (max-width: 991px) {
	.pow-burst {
		display: none;
	}

	#banner::after,
	#blog::after {
		display: none;
	}
}

/* =====================================================================
   COMIC LAYER 2 — Bangers lettering, fixed bursts, zigzag edges,
   speech bubble, and the overflow fix
===================================================================== */

/* Off-canvas decorations (halftone fields, tilted art) must never
   create a horizontal scrollbar */
html,
body {
	overflow-x: hidden;
}

/* Comic display lettering (self-hosted) */
@font-face {
	src: url(../fonts/Bangers-Regular.woff2) format('woff2');
	font-family: 'Bangers';
	font-display: swap;
}

.banner-txt .hero-title {
	font-family: 'Bangers', cb, cursive;
	font-size: clamp(52px, 6.2vw, 88px);
	letter-spacing: 0.025em;
	line-height: 0.98;
}

.section-title h3 {
	font-family: 'Bangers', cb, cursive;
	letter-spacing: 0.035em;
	font-size: clamp(38px, 4.8vw, 58px);
}

.marquee .text,
.marquee.marquee-white .text {
	font-family: 'Bangers', cb, cursive;
	font-size: 23px;
	letter-spacing: 0.12em;
}

.comic-sticker,
.price-item.active::before {
	font-family: 'Bangers', cb, cursive;
	letter-spacing: 0.09em;
}

.comic-sticker {
	font-size: 19px;
}

.blog-item h4 {
	font-family: 'Bangers', cb, cursive;
	-webkit-text-stroke-width: 2px;
}

/* Action bursts, rebuilt: clip-path swallows borders, so the ink
   outline comes from stacked drop-shadows instead */
.pow-burst {
	border: 0;
	font-family: 'Bangers', cb, cursive;
	letter-spacing: 0.06em;
	padding: 26px 30px;
	filter:
		drop-shadow(2.5px 0 0 var(--pwp-ink))
		drop-shadow(-2.5px 0 0 var(--pwp-ink))
		drop-shadow(0 2.5px 0 var(--pwp-ink))
		drop-shadow(0 -2.5px 0 var(--pwp-ink))
		drop-shadow(5px 6px 0 rgba(22, 24, 29, 0.9));
}

.pow-one {
	font-size: 27px;
	top: -24px;
	left: -16px;
}

.pow-two {
	font-size: 21px;
	bottom: 64px;
	right: 34px;
	background: var(--pwp-yellow);
	color: var(--pwp-ink);
}

/* Red band: halftone texture + torn zigzag top and bottom edges */
#new-comics {
	position: relative;
	background:
		radial-gradient(rgba(255, 255, 255, 0.14) 2px, transparent 2px) 0 0 / 22px 22px,
		linear-gradient(160deg, #e01b1b, var(--pwp-red) 45%, var(--pwp-red-deep));
}

#new-comics::before,
#new-comics::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 22px;
	background-image:
		linear-gradient(135deg, var(--pwp-paper) 50%, transparent 50%),
		linear-gradient(225deg, var(--pwp-paper) 50%, transparent 50%);
	background-size: 26px 22px;
	background-repeat: repeat-x;
}

#new-comics::before {
	top: 0;
}

#new-comics::after {
	bottom: 0;
	transform: scaleY(-1);
	background-image:
		linear-gradient(135deg, var(--pwp-paper) 50%, transparent 50%),
		linear-gradient(225deg, var(--pwp-paper) 50%, transparent 50%);
}

/* Bio paragraph becomes a speech bubble pointing at Nick */
.about-txt > p {
	position: relative;
	background: #fff;
	border: 3px solid var(--pwp-ink);
	border-radius: var(--pwp-radius);
	box-shadow: 5px 5px 0 var(--pwp-ink);
	padding: 20px 22px !important;
	margin: 14px 0 26px;
	font-family: cr;
	color: var(--pwp-ink);
}

.about-txt > p::after {
	content: '';
	position: absolute;
	left: -14px;
	top: 42px;
	width: 22px;
	height: 22px;
	background: #fff;
	border-left: 3px solid var(--pwp-ink);
	border-bottom: 3px solid var(--pwp-ink);
	transform: rotate(45deg);
}

@media (max-width: 991px) {
	.about-txt > p::after {
		display: none;
	}
}

/* =====================================================================
   COMIC LAYER 3 — floating pill nav + section fixes
===================================================================== */

/* Nav: floating inked pill */
.navbar,
.navbar.nav-bg {
	position: fixed;
	top: 14px;
	left: 16px;
	right: 16px;
	width: auto;
	background: rgba(255, 255, 255, 0.88);
	border: 3px solid var(--pwp-ink);
	border-radius: 999px;
	box-shadow: 6px 6px 0 rgba(22, 24, 29, 0.85);
	padding: 6px 12px;
}

/* Logo bursts out of the pill — bigger than the bar, breaking its lines */
.navbar-brand {
	position: relative;
	z-index: 3;
}

.navbar-brand img {
	width: 112px;
	margin: -18px 4px -26px 0;
	transform: rotate(-5deg);
	filter: drop-shadow(3px 3px 0 rgba(22, 24, 29, 0.45));
	transition: transform 0.25s ease;
}

.navbar-brand:hover img {
	transform: rotate(2deg) scale(1.06);
}

@media (max-width: 991px) {
	.navbar-brand img {
		width: 92px;
		margin: -12px 0 -18px;
	}
}

.navbar .navbar-nav .nav-link {
	font-size: 14.5px;
	color: var(--pwp-ink);
	font-weight: 600;
}

.menu-action .nav-cta {
	padding: 11px 22px;
	font-size: 14px;
	margin-right: 10px;
}

.menu-action .button-secondary {
	margin-right: 0;
}

/* The links are already in the bar on desktop — the hamburger is noise */
@media (min-width: 992px) {
	.ham-button {
		display: none;
	}
}

/* Room for the floating pill on top; trim the dead space below the hero */
#banner {
	padding: 170px 0 35px;
}

html {
	scroll-padding-top: 130px;
}

div.pwp-page {
	padding-top: 140px;
}

/* Eyebrow labels sit on their own line above the title (the marker-swipe
   inline display was pulling the h3 up beside them) */
.section-title span {
	display: block;
	margin-bottom: 10px;
}

/* Core feature cards ride above the band's zigzag edges */
#new-comics .container {
	position: relative;
	z-index: 2;
}

#new-comics::before,
#new-comics::after {
	z-index: 0;
	pointer-events: none;
}

@media (max-width: 991px) {
	.navbar,
	.navbar.nav-bg {
		top: 10px;
		left: 10px;
		right: 10px;
		border-radius: 24px;
	}

	/* Open menu lives inside the pill: no beige slab, roomy tap targets,
	   and a centered trial CTA */
	#navbarSupportedContent,
	.nav-bg #navbarSupportedContent {
		background: transparent;
		padding: 6px 0 14px;
	}

	.navbar .navbar-nav .nav-link {
		padding: 9px 0;
		font-size: 16px;
	}

	.menu-action {
		justify-content: center;
	}

	.menu-action .nav-cta {
		display: inline-block;
		margin: 8px 0 2px;
	}

	#banner {
		padding: 140px 0 30px;
	}
}

/* =====================================================================
   HERO v3 — transparent burst illustration + trust row
===================================================================== */
.banner-images {
	text-align: center;
}

/* The illustration brings its own bursts and halftones — no frame */
.hero-art {
	border: 0;
	background: none;
	box-shadow: none;
	width: 100%;
	max-width: 660px;
	filter: drop-shadow(0 20px 32px rgba(22, 24, 29, 0.20));
	animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-art {
		animation: none;
	}
}

.banner-txt span.hero-trust-item {
	display: inline-block;
	font-family: cr;
	font-size: 15px;
	text-transform: none;
	color: var(--pwp-muted);
	margin-right: 20px;
	white-space: nowrap;
}

.banner-txt span.hero-trust-item i {
	color: #1a9c46;
	padding-right: 5px;
}

@media (max-width: 991px) {
	.banner-txt span.hero-trust-item {
		display: block;
		white-space: normal;
		margin: 0 0 6px;
	}
}

/* Breathing room above the Stripe note under the big CTA
   (margin, because Bootstrap's pt-2 wins the padding fight) */
#blog p.small.text-muted {
	margin-top: 18px;
}

/* =====================================================================
   SHOWCASE — dark command-center band (image edges blend into #04070a)
===================================================================== */
#showcase {
	background: #04070a;
	padding: 90px 0 80px;
	position: relative;
}

.showcase-eyebrow {
	display: block;
	font-family: cm;
	font-size: 15px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pwp-red);
}

.showcase-eyebrow::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 2px;
	background: var(--pwp-red);
	vertical-align: middle;
	margin-right: 12px;
}

.showcase-title {
	font-family: 'Bangers', cb, cursive;
	font-size: clamp(36px, 4.8vw, 58px);
	letter-spacing: 0.035em;
	color: #fff;
	margin-top: 8px;
}

.showcase-art {
	display: block;
	margin: 34px auto 38px;
	max-width: 1150px;
	width: 100%;
	border-radius: var(--pwp-radius);
}

.showcase-cta {
	margin: 0;
}

@media (max-width: 991px) {
	#showcase {
		padding: 60px 0 55px;
	}
}

/* =====================================================================
   TRUST BAND — full-bleed before/after slider under the hero
===================================================================== */
#trust-band {
	padding: 65px 0 0;
}

.trust-slider {
	position: relative;
	min-height: clamp(440px, 42vw, 640px);
	border-top: 3px solid var(--pwp-ink);
	border-bottom: 3px solid var(--pwp-ink);
	overflow: hidden;
	background: #04070a;
}

/* Slides render as cover backgrounds with a slow Ken Burns settle — the
   crop + motion + overlay keep the ~1500px art crisp at full width */
.trust-slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.07);
	filter: saturate(1.06) contrast(1.02);
	transition: opacity 1.1s var(--pwp-ease);
}

.trust-slide.is-active {
	opacity: 1;
	transform: scale(1);
	transition: opacity 1.1s var(--pwp-ease), transform 7s ease-out;
}

.trust-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 7, 10, 0.32), rgba(4, 7, 10, 0) 38%, rgba(4, 7, 10, 0.82) 92%);
}

.trust-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	text-align: center;
	padding: 0 20px 40px;
}

.trust-eyebrow {
	display: block;
	font-family: cm, Arial, sans-serif;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pwp-yellow);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
	margin-bottom: 6px;
}

.trust-overlay h3 {
	font-family: cb, Arial, sans-serif;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.05;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
	margin-bottom: 8px;
}

.trust-overlay .button-primary {
	font-size: 16px;
	padding: 15px 30px;
}

.trust-nav {
	position: absolute;
	right: 26px;
	bottom: 24px;
	z-index: 3;
	display: flex;
	gap: 9px;
}

.trust-nav button {
	width: 15px;
	height: 15px;
	padding: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	opacity: 0.75;
}

.trust-nav button.is-active {
	background: var(--pwp-yellow);
	border-color: var(--pwp-ink);
	box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.6);
	opacity: 1;
}

@media (max-width: 991px) {
	#trust-band {
		padding-top: 45px;
	}

	.trust-slider {
		min-height: 420px;
	}

	.trust-nav {
		right: 16px;
		bottom: 16px;
	}
}

/* Partner logos (PeakKR in the agencies block, SEO Locale in About) */
.partner-row {
	margin-top: 16px;
}

.partner-logo {
	height: 44px;
	width: auto;
	opacity: 0.92;
	transition: opacity 0.25s var(--pwp-ease), transform 0.25s var(--pwp-ease);
}

.partner-logo-sm {
	height: 30px;
}

.partner-logo:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* Partner logos must not inherit panel/bubble treatments */
.blog-item img.partner-logo,
.blog-item:hover img.partner-logo {
	border: 0;
	box-shadow: none;
	transform: none;
}

.about-txt > p.partner-row {
	background: none;
	border: 0;
	box-shadow: none;
	padding: 0 !important;
	margin: 20px 0 0;
}

.about-txt > p.partner-row::after {
	display: none;
}

/* =====================================================================
   ECOSYSTEM — Built by SEO Locale / Integrates with PeakKR
===================================================================== */
#ecosystem {
	position: relative;
	padding: 65px 0 85px;
	margin-top: 55px;
	background: #fff;
	border-top: 3px solid var(--pwp-ink);
}

/* Halftone strip under the ink rule — a clear comic-style break from About */
#ecosystem::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 110px;
	background: radial-gradient(rgba(215, 21, 21, 0.10) 1.6px, transparent 1.6px) 0 0/16px 16px;
	pointer-events: none;
}

#ecosystem .container {
	position: relative;
}

.eco-label {
	font-family: cm;
	font-size: 12.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pwp-muted);
}

.eco-logo {
	height: 42px;
	width: auto;
	margin: 2px 0 4px;
	transition: transform 0.25s var(--pwp-ease);
}

.eco-logo:hover {
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	#ecosystem {
		padding-bottom: 60px;
	}

	.eco-logo {
		height: 36px;
	}
}

/* Crawlable text version of the trust-band stats (the artwork is invisible
   to search engines and screen readers) — styled for the dark overlay */
.trust-stats {
	margin: 4px 0 18px;
	font-family: cr, Arial, sans-serif;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.55);
}

.trust-stats strong {
	font-family: cb, Arial, sans-serif;
	font-size: 19px;
	color: #fff;
	padding-right: 4px;
}

.trust-stats .trust-dot {
	padding: 0 12px;
	color: var(--pwp-yellow);
}

/* Mid-width screens: keep the pill nav on one line */
.menu-action .nav-cta,
.menu-action .button-secondary {
	white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1220px) {
	.navbar .navbar-nav .nav-link {
		margin: 0 4px;
		font-size: 13.5px;
	}

	.menu-action .nav-cta {
		padding: 10px 16px;
		font-size: 13px;
	}
}

/* =====================================================================
   COMIC LAYER 4 — hero band for interior pages (docs, support, faq, ...)
===================================================================== */

.page-hero {
	position: relative;
	padding: 165px 20px 55px;
	border-bottom: 3px solid var(--pwp-ink);
	overflow: hidden;
	background: var(--pwp-paper);
	text-align: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(rgba(215, 21, 21, 0.18) 2px, transparent 2px) 0 0/22px 22px,
		linear-gradient(140deg, rgba(224, 27, 27, 0.25), rgba(168, 15, 15, 0.15));
}

.page-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(250, 249, 247, 0.55), rgba(250, 249, 247, 0.25) 55%, rgba(250, 249, 247, 0.75));
}

.page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 860px;
	margin: 0 auto;
}

.page-hero .hero-pill {
	display: inline-block;
	font-family: cm, Arial, sans-serif;
	font-size: 12.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pwp-ink);
	background: var(--pwp-yellow);
	border: 2px solid var(--pwp-ink);
	border-radius: 50px;
	box-shadow: 2px 2px 0 var(--pwp-ink);
	padding: 4px 14px;
	margin-bottom: 18px;
}

.page-hero h1 {
	margin: 0;
	font-family: cb, Arial, sans-serif;
	font-size: clamp(36px, 4.6vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--pwp-ink);
}

.page-hero .hero-sub {
	max-width: 60ch;
	margin: 18px auto 0;
	font-family: cm, Arial, sans-serif;
	color: var(--pwp-ink);
	font-size: 18px;
	line-height: 1.7;
}

.pwp-page.after-hero {
	padding-top: 45px;
}
