


.kp {
	--kp-ink:        #16273d;
	--kp-ink-2:      #33445c;
	--kp-muted:      #66748a;
	--kp-faint:      #8a95a6;

	--kp-pink:       #e5116e;
	--kp-pink-600:   #c60d5e;
	--kp-pink-wash:  #fdeef5;
	--kp-pink-line:  #f7cfe0;

	--kp-paper:      #ffffff;
	--kp-ivory:      #fcf9f3;
	--kp-blue-wash:  #edf4fb;
	--kp-blue-line:  #dbe7f4;
	--kp-line:       #e4eaf1;
	--kp-line-soft:  #eef2f7;

	--kp-pastel-1:   #fce4ee;
	--kp-pastel-2:   #dfecfa;
	--kp-pastel-3:   #ddf0e5;
	--kp-pastel-4:   #fbe7d8;
	--kp-pastel-5:   #e8e3f8;

	--kp-shadow-sm:  0 1px 2px rgba(22, 39, 61, .05);
	--kp-shadow:     0 6px 24px rgba(22, 39, 61, .07);
	--kp-shadow-lg:  0 22px 60px rgba(22, 39, 61, .12);
	--kp-shadow-book: 10px 14px 30px rgba(22, 39, 61, .22);

	--kp-vw:         1vw;

	--kp-maxw:       1240px;
	--kp-gutter:     clamp(18px, calc(4 * var(--kp-vw)), 40px);
	--kp-section-y:  clamp(56px, calc(7 * var(--kp-vw)), 96px);
	--kp-radius:     14px;
	--kp-radius-lg:  22px;

	--kp-display:    "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
	--kp-body:       "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
	--kp-script:     "Caveat", "Segoe Script", cursive;

	--kp-fs-display: clamp(2.4rem, calc(4.4 * var(--kp-vw)), 3.85rem);
	--kp-fs-h2:      clamp(1.9rem, calc(3.1 * var(--kp-vw)), 2.7rem);
	--kp-fs-h3:      clamp(1.12rem, calc(1.45 * var(--kp-vw)), 1.3rem);
	--kp-fs-lead:    clamp(1.06rem, calc(1.3 * var(--kp-vw)), 1.22rem);
	--kp-fs-body:    1.0625rem;
	--kp-fs-sm:      .9375rem;
	--kp-fs-xs:      .8125rem;
}



.kp,
.kp *,
.kp *::before,
.kp *::after {
	box-sizing: border-box;
}

.kp {
	position: relative;
	float: none;
	clear: both;
	width: 100%;
	color: var(--kp-ink-2);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-body);
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}


@media (min-width: 1280px) {
	.kp {
		zoom: 1.25;
		--kp-vw: calc(1vw / 1.25);
	}
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
	.kp {
		zoom: 1.12;
		--kp-vw: calc(1vw / 1.12);
	}
}



.kp :where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote) {
	float: none;
	margin: 0;
	padding: 0;
	text-transform: none;
}

.kp :where(h1, h2, h3, h4, h5, h6) {
	color: var(--kp-ink);
	font-family: var(--kp-display);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.015em;
}

.kp :where(ul, ol, li) {
	list-style: none;
	line-height: inherit;
}

.kp :where(ul li)::before,
.kp :where(ul li)::after {
	display: none;
}

.kp :where(blockquote) {
	font: inherit;
	color: inherit;
	text-align: inherit;
	quotes: none;
}

.kp :where(svg) {
	display: block;
	flex: none;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kp :where(img) {
	display: block;
	max-width: 100%;
	height: auto;
}

.kp :where(a) {
	color: inherit;
	text-decoration: none;
	transition: color .18s ease;
}

.kp p a,
.kp p a:hover {
	text-decoration: none;
}

.kp :where(button) {
	font: inherit;
	color: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

.kp a:focus-visible,
.kp button:focus-visible,
.kp select:focus-visible {
	outline: 3px solid rgba(229, 17, 110, .4);
	outline-offset: 3px;
	border-radius: 4px;
}



.kp-section {
	position: relative;
	float: none;
	clear: both;
	width: 100%;
	padding: var(--kp-section-y) 0;
	background: var(--kp-paper);
}

.kp-section--ivory { background: var(--kp-ivory); }
.kp-section--wash  { background: var(--kp-blue-wash); }
.kp-section--tight { padding-block: clamp(40px, calc(5 * var(--kp-vw)), 64px); }

.kp-section--ruled { border-top: 1px solid var(--kp-line-soft); }

.kp-shell {
	width: 100%;
	max-width: var(--kp-maxw);
	margin: 0 auto;
	padding: 0 var(--kp-gutter);
}


.kp-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto clamp(32px, calc(4 * var(--kp-vw)), 52px);
	text-align: center;
}

.kp-head__title {
	margin: 0;
	font-size: var(--kp-fs-h2);
}

.kp-head__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: 18px auto 0;
	border-radius: 3px;
	background: var(--kp-pink);
}

.kp-head__title em {
	display: block;
	color: var(--kp-pink);
	font-style: italic;
	font-weight: 500;
}

.kp-head__sub {
	max-width: 56ch;
	margin: 16px auto 0;
	color: var(--kp-muted);
	font-size: var(--kp-fs-lead);
	line-height: 1.6;
}

.kp-more {
	display: flex;
	justify-content: center;
	margin-top: clamp(28px, calc(3.4 * var(--kp-vw)), 40px);
}

.kp-eyebrow {
	display: block;
	margin: 0 0 14px;
	color: var(--kp-pink);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-xs);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.kp-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.kp-script {
	display: block;
	color: var(--kp-ink);
	font-family: var(--kp-script);
	font-size: clamp(1.5rem, calc(2.4 * var(--kp-vw)), 2.1rem);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: 0;
}

.kp-script--pink { color: var(--kp-pink); }

.kp-script__rule {
	display: block;
	width: 104px;
	height: 7px;
	margin-top: 4px;
	border-radius: 50%;
	background: none;
	border-bottom: 2px solid var(--kp-pink);
}


.kp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--kp-body);
	font-size: var(--kp-fs-sm);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .05em;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease,
	            border-color .2s ease, transform .2s ease,
	            box-shadow .2s ease;
}

.kp-btn svg {
	width: 16px;
	height: 16px;
	stroke-width: 1.8;
}

.kp-btn--primary {
	color: #fff;
	background: var(--kp-pink);
	box-shadow: 0 10px 26px rgba(229, 17, 110, .26);
}

.kp-btn--primary:hover,
.kp-btn--primary:focus {
	color: #fff;
	background: var(--kp-pink-600);
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(229, 17, 110, .32);
}

.kp-btn--ghost {
	color: var(--kp-ink);
	background: transparent;
	border-color: var(--kp-ink);
}

.kp-btn--ghost:hover,
.kp-btn--ghost:focus {
	color: #fff;
	background: var(--kp-ink);
	transform: translateY(-2px);
}

.kp-btn--outline {
	color: var(--kp-pink);
	background: var(--kp-paper);
	border-color: var(--kp-pink-line);
}

.kp-btn--outline:hover,
.kp-btn--outline:focus {
	color: #fff;
	background: var(--kp-pink);
	border-color: var(--kp-pink);
}

.kp-btn--sm {
	padding: 10px 18px;
	font-size: var(--kp-fs-xs);
}

.kp-btn--block {
	display: flex;
	width: 100%;
}

.kp-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--kp-pink);
	font-size: var(--kp-fs-sm);
	font-weight: 600;
	white-space: nowrap;
}

.kp-link svg {
	width: 16px;
	height: 16px;
	stroke-width: 1.8;
	transition: transform .2s ease;
}

.kp-link:hover {
	color: var(--kp-pink-600);
}

.kp-link:hover svg {
	transform: translateX(4px);
}


.kp-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: var(--kp-pink);
}

.kp-ico svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}



.kp-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, calc(3 * var(--kp-vw)), 40px) 0 clamp(44px, calc(4.4 * var(--kp-vw)), 56px);
	background: var(--kp-ivory);
}

.kp-hero::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: -18%;
	right: -8%;
	width: min(760px, calc(72 * var(--kp-vw)));
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(229, 17, 110, .07), transparent 68%);
	pointer-events: none;
}

.kp-hero .kp-eyebrow {
	font-size: .9rem;
}

.kp-hero__shell {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	align-items: center;
	gap: clamp(24px, calc(3 * var(--kp-vw)), 40px);
	max-width: 1080px;
}

.kp-hero__title {
	margin: 0 0 22px;
	font-size: clamp(2.7rem, calc(5.2 * var(--kp-vw)), 4.5rem);
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -.035em;
}

.kp-hero__title span {
	display: block;
}

.kp-hero__title em {
	color: var(--kp-pink);
	font-style: normal;
}

.kp-hero__lead {
	max-width: 40ch;
	margin: 0 0 10px;
	color: var(--kp-ink-2);
	font-size: clamp(1.14rem, calc(1.55 * var(--kp-vw)), 1.38rem);
	font-weight: 500;
	line-height: 1.6;
}

.kp-hero__note {
	margin: 0 0 30px;
	color: var(--kp-muted);
	font-size: 1.15rem;
}

.kp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 32px;
}

.kp-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 30px;
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid rgba(22, 39, 61, .1);
}

.kp-hero__trust li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--kp-ink-2);
	font-size: 1rem;
	font-weight: 600;
}

.kp-hero__trust .kp-ico {
	width: 20px;
	height: 20px;
}


.kp-hero__art {
	position: relative;
	margin: 0;
}

.kp-hero__art::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 92%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(229, 17, 110, .16), rgba(80, 120, 220, .1) 45%, transparent 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.kp-hero__stage {
	position: relative;
	z-index: 1;
	width: min(100%, 272px);
	margin-inline: auto;
	border-radius: 5px 16px 16px 5px;
	box-shadow:
		0 42px 70px -24px rgba(22, 39, 61, .55),
		0 18px 30px -16px rgba(22, 39, 61, .4);
	aspect-ratio: 1027 / 1600;
	perspective: 1600px;
	animation: kp-hero-float 6s ease-in-out infinite;
}

.kp-hero__stage::after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 1.6%;
	bottom: 1.6%;
	right: -9px;
	width: 12px;
	border-radius: 0 6px 6px 0;
	background: repeating-linear-gradient(to right, #fbf8f2 0 2px, #e2d9cb 2px 3px);
	box-shadow: 5px 8px 16px -8px rgba(22, 39, 61, .4);
}

.kp-hero__slide {
	position: absolute;
	z-index: 0;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	background: #e9edf4;
	opacity: 0;
	transform-origin: left center;
	backface-visibility: hidden;
	pointer-events: none;
}

.kp-hero__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-hero__slide::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0 auto 0 0;
	width: 6%;
	background: linear-gradient(to right, rgba(0, 0, 0, .34), rgba(255, 255, 255, .24) 55%, transparent);
	pointer-events: none;
}

.kp-hero__slide::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .3) 48%, transparent 60%);
	transform: translateX(-130%);
	pointer-events: none;
}

.kp-hero__slide.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
	animation: kp-hero-settle .9s cubic-bezier(.22, .9, .3, 1) both;
}

.kp-hero__slide.is-active::after {
	animation: kp-hero-shine 1.4s .5s ease-out both;
}

.kp-hero__slide.is-leaving {
	z-index: 3;
	opacity: 1;
	animation: kp-hero-flip-out .9s cubic-bezier(.55, .05, .35, 1) forwards;
}

.kp-hero__art.is-back .kp-hero__slide.is-active {
	z-index: 3;
	animation: kp-hero-flip-in .9s cubic-bezier(.22, .9, .3, 1) both;
}

.kp-hero__art.is-back .kp-hero__slide.is-leaving {
	z-index: 2;
	animation: kp-hero-fade-out .9s ease forwards;
}

.kp-hero__art.is-paused .kp-hero__stage {
	animation-play-state: paused;
}

.kp .kp-hero__nav {
	position: absolute;
	z-index: 5;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 50%;
	background: rgba(255, 255, 255, .8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 10px 24px -10px rgba(22, 39, 61, .45);
	color: var(--kp-ink);
	cursor: pointer;
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease, background-color .2s ease, color .2s ease;
}

.kp-hero__nav--prev {
	left: -23px;
	transform: translateX(-8px);
}

.kp-hero__nav--next {
	right: -23px;
	transform: translateX(8px);
}

.kp-hero__nav svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kp-hero__art:hover .kp-hero__nav,
.kp-hero__art:focus-within .kp-hero__nav {
	opacity: 1;
	transform: none;
}

.kp .kp-hero__nav:hover {
	background: var(--kp-pink);
	color: #fff;
}

@keyframes kp-hero-settle {
	from { transform: scale(.94); filter: brightness(.75); }
	to { transform: none; filter: none; }
}

@keyframes kp-hero-flip-out {
	0% { transform: rotateY(0deg); filter: brightness(1); opacity: 1; }
	70% { opacity: 1; }
	100% { transform: rotateY(-115deg); filter: brightness(.6); opacity: 0; }
}

@keyframes kp-hero-flip-in {
	0% { transform: rotateY(-115deg); filter: brightness(.6); opacity: 0; }
	30% { opacity: 1; }
	100% { transform: rotateY(0deg); filter: none; opacity: 1; }
}

@keyframes kp-hero-fade-out {
	to { transform: scale(.94); opacity: 0; }
}

@keyframes kp-hero-float {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -10px; }
}

@keyframes kp-hero-shine {
	from { transform: translateX(-130%); }
	to { transform: translateX(130%); }
}

@media (max-width: 940px) {
	.kp-hero__stage {
		width: min(72%, 300px);
	}
}

@media (hover: none) {
	.kp .kp-hero__nav {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 640px) {
	.kp-hero__nav--prev {
		left: -18px;
	}

	.kp-hero__nav--next {
		right: -18px;
	}

	.kp .kp-hero__nav {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kp-hero__stage,
	.kp-hero__slide.is-active::after {
		animation: none;
	}

	.kp-hero__slide.is-active,
	.kp-hero__art.is-back .kp-hero__slide.is-active {
		animation: none;
	}

	.kp-hero__slide.is-leaving,
	.kp-hero__art.is-back .kp-hero__slide.is-leaving {
		animation: kp-hero-fade-out .5s ease forwards;
	}
}


.kp-hero__caption {
	position: absolute;
	right: 6px;
	bottom: -40px;
	max-width: 230px;
	text-align: right;
	transform: rotate(-5deg);
	pointer-events: none;
}



.kp-proof {
	float: none;
	clear: both;
	width: 100%;
	padding: clamp(26px, calc(3 * var(--kp-vw)), 38px) 0;
	background: var(--kp-blue-wash);
	border-block: 1px solid var(--kp-blue-line);
}

.kp-proof__shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 250px);
	align-items: center;
	gap: clamp(20px, calc(3 * var(--kp-vw)), 44px);
}

.kp-proof__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, calc(2.4 * var(--kp-vw)), 34px);
	margin: 0;
}

.kp-proof__stat {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.kp-proof__stat .kp-ico {
	width: 34px;
	height: 34px;
	color: var(--kp-ink);
	opacity: .85;
}

.kp-proof__value {
	display: block;
	margin: 0;
	color: var(--kp-ink);
	font-family: var(--kp-display);
	font-size: clamp(1.35rem, calc(2.1 * var(--kp-vw)), 1.85rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
}

.kp-proof__label {
	display: block;
	margin: 2px 0 0;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.4;
}

.kp-proof__quote {
	margin: 0;
	padding-left: clamp(18px, calc(2 * var(--kp-vw)), 28px);
	border-left: 1px solid var(--kp-blue-line);
	text-align: left;
}

.kp-proof__quote q {
	display: block;
	color: var(--kp-ink);
	font-family: var(--kp-display);
	font-size: .98rem;
	font-style: italic;
	line-height: 1.5;
	quotes: "\201C" "\201D";
}

.kp-proof__quote footer {
	margin-top: 8px;
	color: var(--kp-muted);
	font-size: var(--kp-fs-xs);
}

.kp-proof__quote footer::before {
	content: none;
}



.kp-flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(18px, calc(2.2 * var(--kp-vw)), 30px);
	margin: 0;
}

.kp-flow__step {
	position: relative;
	display: flex;
}

.kp-flow__step + .kp-flow__step::before {
	content: "";
	position: absolute;
	top: 62px;
	right: 100%;
	width: clamp(18px, calc(2.2 * var(--kp-vw)), 30px);
	border-top: 2px dashed var(--kp-pink-line);
}

.kp-flow__step + .kp-flow__step::after {
	content: "";
	position: absolute;
	top: 57px;
	right: calc(100% - 5px);
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--kp-pink);
	border-right: 2px solid var(--kp-pink);
	transform: rotate(45deg);
}

.kp-flow__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 30px 20px 26px;
	border: 1px solid var(--kp-line);
	border-radius: var(--kp-radius-lg);
	background: var(--kp-paper);
	text-align: center;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kp-flow__step:hover .kp-flow__card {
	transform: translateY(-5px);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-flow__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--kp-step-tint, var(--kp-pastel-2));
}

.kp-flow__icon svg {
	width: 32px;
	height: 32px;
	color: var(--kp-ink);
	stroke-width: 1.5;
}

.kp-flow__num {
	position: absolute;
	top: 26px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-left: 12px;
	border-radius: 50%;
	border: 3px solid var(--kp-paper);
	background: var(--kp-pink);
	color: #fff;
	font-family: var(--kp-body);
	font-size: .875rem;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.kp-flow__card h3 {
	margin: 0 0 8px;
	font-family: var(--kp-body);
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -.005em;
}

.kp-flow__card p {
	margin: 0;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.55;
}

.kp-reasons__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(14px, calc(1.6 * var(--kp-vw)), 20px);
	margin: 0;
}

.kp-reason {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 24px 20px 26px;
	border: 1px solid var(--kp-line);
	border-radius: var(--kp-radius);
	background: var(--kp-paper);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kp-reason:hover {
	transform: translateY(-4px);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-reason .kp-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 12px;
	background: var(--kp-pink-wash);
	color: var(--kp-pink);
}

.kp-reason .kp-ico svg {
	width: 24px;
	height: 24px;
}

.kp-reason h3 {
	margin: 0 0 8px;
	font-family: var(--kp-body);
	font-size: var(--kp-fs-h3);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: -.005em;
}

.kp-reason p {
	margin: 0;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.6;
}


.kp-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, calc(1.6 * var(--kp-vw)), 20px);
	margin: 0;
}

.kp-service {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 28px 24px 30px;
	border: 1px solid var(--kp-blue-line);
	border-radius: var(--kp-radius);
	background: var(--kp-blue-wash);
	transition: transform .22s ease, box-shadow .22s ease,
	            background-color .22s ease, border-color .22s ease;
}

.kp-service:hover {
	transform: translateY(-4px);
	background: var(--kp-paper);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-service .kp-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 12px;
	background: var(--kp-paper);
	color: var(--kp-ink);
	transition: color .22s ease, background-color .22s ease;
}

.kp-service .kp-ico svg {
	width: 24px;
	height: 24px;
}

.kp-service:hover .kp-ico {
	background: var(--kp-pink-wash);
}

.kp-service:hover .kp-ico {
	color: var(--kp-pink);
}

.kp-service h3 {
	margin: 0 0 6px;
	font-family: var(--kp-body);
	font-size: var(--kp-fs-h3);
	font-weight: 700;
}

.kp-service p {
	margin: 0;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.6;
}

.kp-service__hit {
	position: absolute;
	inset: 0;
	border-radius: inherit;
}



.kp-formats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 22px 0 0;
}

.kp-formats a {
	display: inline-flex;
	padding: 7px 14px;
	border: 1px solid var(--kp-line);
	border-radius: 999px;
	color: var(--kp-ink-2);
	font-size: var(--kp-fs-xs);
	font-weight: 600;
	transition: all .18s ease;
}

.kp-formats a:hover {
	color: #fff;
	background: var(--kp-ink);
	border-color: var(--kp-ink);
}

.kp-packages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, calc(1.6 * var(--kp-vw)), 20px);
	margin: 0;
	align-items: stretch;
}

.kp-pack {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 30px 24px 26px;
	border: 1px solid var(--kp-line);
	border-radius: var(--kp-radius);
	background: var(--kp-paper);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kp-pack:hover {
	transform: translateY(-4px);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-pack--featured {
	background: var(--kp-pink-wash);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-pack__flag {
	position: absolute;
	top: -15px;
	left: 50%;
	padding: 5px 16px;
	border-radius: 999px;
	color: #fff;
	background: var(--kp-pink);
	font-size: var(--kp-fs-xs);
	font-weight: 700;
	letter-spacing: .04em;
	white-space: nowrap;
	transform: translateX(-50%);
	box-shadow: 0 6px 16px rgba(229, 17, 110, .3);
}

.kp-pack h3 {
	margin: 0 0 6px;
	font-size: 1.28rem;
	font-weight: 600;
}

.kp-pack__for {
	min-height: 3em;
	margin: 0 0 20px;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.5;
}

.kp-pack__price {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 0 0 22px;
	color: var(--kp-pink);
	font-family: var(--kp-display);
	font-size: 1.72rem;
	font-weight: 600;
	letter-spacing: -.02em;
}

.kp-pack__price small {
	color: var(--kp-muted);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-xs);
	font-weight: 500;
	letter-spacing: 0;
}

.kp-pack__cta {
	margin-top: auto;
}

.kp-pack--advice {
	background: var(--kp-blue-wash);
	border-color: var(--kp-blue-line);
}

.kp-pack--advice h3 {
	font-family: var(--kp-display);
	font-size: 1.16rem;
	line-height: 1.35;
}

.kp-pack--advice p {
	margin: 10px 0 22px;
	color: var(--kp-muted);
	font-size: var(--kp-fs-sm);
	line-height: 1.55;
}



.kp-ghost {
	position: relative;
	float: none;
	clear: both;
	width: 100%;
	overflow: hidden;
	background: var(--kp-ivory);
}

.kp-ghost__shell {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	align-items: stretch;
	width: 100%;
	max-width: none;
	padding: 0;
	gap: 0;
}

.kp-ghost__media {
	position: relative;
	min-height: 300px;
	margin: 0;
	background: #ddd3c6;
}

.kp-ghost__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-ghost__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(36px, calc(5 * var(--kp-vw)), 66px) var(--kp-gutter);
}

.kp-ghost__inner {
	width: 100%;
	max-width: 760px;
}

.kp-ghost__body h2 {
	margin: 0 0 12px;
	font-size: clamp(1.55rem, calc(2.7 * var(--kp-vw)), 2.2rem);
}

.kp-ghost__body h2 em {
	display: block;
	color: var(--kp-pink);
	font-style: italic;
	font-weight: 500;
}

.kp-ghost__body > .kp-ghost__inner > p {
	max-width: 52ch;
	margin: 0 0 24px;
	color: var(--kp-muted);
	font-size: var(--kp-fs-lead);
}

.kp-genres {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 0 0 28px;
	padding: 20px 0 0;
	border-top: 1px solid rgba(22, 39, 61, .1);
}

.kp-genres li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--kp-ink-2);
	font-size: var(--kp-fs-sm);
	font-weight: 600;
}

.kp-genres .kp-ico {
	width: 18px;
	height: 18px;
	color: var(--kp-pink);
}



.kp-voices__rail {
	position: relative;
	min-width: 0;
}

.kp-voices__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 2 * clamp(14px, calc(1.6 * var(--kp-vw)), 20px)) / 3);
	gap: clamp(14px, calc(1.6 * var(--kp-vw)), 20px);
	margin: 0;
	padding: 4px 0 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.kp-voices__track::-webkit-scrollbar { display: none; }

.kp-voice {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	padding: 24px 22px;
	border: 1px solid var(--kp-line);
	border-radius: var(--kp-radius);
	background: var(--kp-paper);
	scroll-snap-align: start;
	transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.kp-voice:hover {
	transform: translateY(-3px);
	border-color: var(--kp-pink-line);
	box-shadow: var(--kp-shadow);
}

.kp-voice__quote {
	flex: 1 1 auto;
	margin: 0;
	color: var(--kp-ink-2);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-sm);
	font-style: normal;
	line-height: 1.66;
	text-align: left;
}

.kp-voice__quote q {
	quotes: "\201C" "\201D";
}

.kp-voice__who {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-top: 16px;
	border-top: 1px solid var(--kp-line-soft);
}

.kp-voice__avatar {
	flex: none;
	width: 46px;
	height: 46px;
	margin: 0;
	overflow: hidden;
	border-radius: 50%;
	background: var(--kp-pink-wash);
}

.kp-voice__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-voice__name {
	min-width: 0;
}

.kp-voice__name h3 {
	margin: 0;
	font-family: var(--kp-body);
	font-size: .93rem;
	font-weight: 700;
	line-height: 1.3;
}

.kp-voice__name span {
	display: block;
	margin-top: 2px;
	color: var(--kp-muted);
	font-size: var(--kp-fs-xs);
	line-height: 1.4;
}

.kp-stars {
	display: flex;
	gap: 3px;
	color: #f0a92b;
}

.kp-stars svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	stroke: none;
}

.kp-voices__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 6px;
}

.kp-nav {
	display: flex;
	gap: 9px;
}

.kp-nav button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--kp-line);
	border-radius: 50%;
	background: var(--kp-paper);
	color: var(--kp-ink);
	transition: all .18s ease;
}

.kp-nav button:hover {
	color: #fff;
	background: var(--kp-pink);
	border-color: var(--kp-pink);
}

.kp-nav svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}



.kp-cat__rail {
	min-width: 0;
}

.kp-cat__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 5 * 14px) / 6);
	gap: 14px;
	margin: 0;
	padding: 4px 0 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.kp-cat__track::-webkit-scrollbar { display: none; }

.kp-book {
	display: flex;
	flex-direction: column;
	min-width: 0;
	scroll-snap-align: start;
}

.kp-book__cover {
	position: relative;
	display: block;
	margin: 0 0 10px;
	overflow: hidden;
	border-radius: 4px 8px 8px 4px;
	background: var(--kp-blue-wash);
	aspect-ratio: 2 / 3;
	box-shadow: var(--kp-shadow-book);
	transition: transform .28s cubic-bezier(.22, .61, .36, 1), box-shadow .28s ease;
}

.kp-book__cover::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 9px;
	background: linear-gradient(to right, rgba(0, 0, 0, .28), rgba(255, 255, 255, .18) 62%, transparent);
	pointer-events: none;
}

.kp-book__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-book:hover .kp-book__cover {
	transform: translateY(-6px) rotate(-1.2deg);
	box-shadow: 14px 20px 38px rgba(22, 39, 61, .28);
}

.kp-book__title {
	display: -webkit-box;
	min-height: 2.7em;
	margin: 0 0 2px;
	overflow: hidden;
	color: var(--kp-ink);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-xs);
	font-weight: 700;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.kp-book__title a:hover { color: var(--kp-pink); }

.kp-book__by {
	display: block;
	margin-bottom: 6px;
	overflow: hidden;
	color: var(--kp-muted);
	font-size: var(--kp-fs-xs);
	line-height: 1.4;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.kp-book__buy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.kp-book__price {
	color: var(--kp-ink);
	font-size: var(--kp-fs-sm);
	font-weight: 700;
	white-space: nowrap;
}

.kp-book__price del {
	margin-left: 5px;
	color: var(--kp-faint);
	font-size: var(--kp-fs-xs);
	font-weight: 500;
}

.kp-book__type {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	height: 30px;
	margin-bottom: 8px;
	padding: 0 8px;
	border: 1px solid var(--kp-line);
	border-radius: 7px;
	background: var(--kp-paper);
	color: var(--kp-ink-2);
	font-family: var(--kp-body);
	font-size: var(--kp-fs-xs);
	line-height: 28px;
}

.kp-book__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: var(--kp-pink);
	background: var(--kp-pink-wash);
	transition: all .18s ease;
}

.kp-book__cart:hover {
	color: #fff;
	background: var(--kp-pink);
}

.kp-book__cart svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kp-book__price ins {
	text-decoration: none;
}



.kp-closing {
	position: relative;
	float: none;
	clear: both;
	width: 100%;
	overflow: hidden;
	padding: clamp(52px, calc(6.5 * var(--kp-vw)), 96px) 0;
	background: var(--kp-ink);
	color: #fff;
	text-align: center;
	isolation: isolate;
}

.kp-closing__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-closing::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg, rgba(22, 39, 61, .86), rgba(22, 39, 61, .58) 55%, rgba(22, 39, 61, .8));
}

.kp-closing__shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 250px);
	align-items: center;
	gap: clamp(22px, calc(3 * var(--kp-vw)), 48px);
	text-align: left;
}

.kp-closing h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.6rem, calc(3 * var(--kp-vw)), 2.35rem);
}

.kp-closing p {
	max-width: 52ch;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .86);
	font-size: var(--kp-fs-lead);
}

.kp-closing__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.kp-closing .kp-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, .6);
}

.kp-closing .kp-btn--ghost:hover {
	color: var(--kp-ink);
	background: #fff;
	border-color: #fff;
}

.kp-closing__script {
	margin: 0;
	text-align: right;
}

.kp-closing__script .kp-script {
	color: #fff;
}

.kp-book__more {
	font-size: var(--kp-fs-xs);
}



.kp-marquee {
	width: 100%;
	padding: 22px 0;
	overflow: hidden;
	border-block: 1px solid var(--kp-line-soft);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
	        mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.kp-marquee__track {
	display: flex;
	width: max-content;
	animation: kp-marquee 42s linear infinite;
}

.kp-marquee:hover .kp-marquee__track,
.kp-marquee:focus-within .kp-marquee__track {
	animation-play-state: paused;
}

.kp-marquee__group {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding-right: 18px;
}

.kp-marquee__group li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 190px;
	height: 92px;
	padding: 16px 22px;
	border: 1px solid transparent;
	border-radius: var(--kp-radius);
	background: var(--kp-ink);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kp-marquee__group li:hover {
	transform: translateY(-3px);
	border-color: var(--kp-pink);
	box-shadow: var(--kp-shadow);
}

.kp-marquee__group img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: .88;
	transition: opacity .25s ease;
}

.kp-marquee__group li:hover img {
	opacity: 1;
}

@keyframes kp-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.kp-authors {
	background: linear-gradient(180deg, var(--kp-paper) 0%, var(--kp-ivory) 100%);
}

.kp-fbooks {
	background:
		radial-gradient(ellipse 45% 70% at 0% 50%, rgba(229, 17, 110, .07), transparent 70%),
		radial-gradient(ellipse 45% 70% at 100% 50%, rgba(122, 140, 255, .08), transparent 70%),
		var(--kp-paper);
}

.kp-marquee--books {
	padding: 26px 0 34px;
	border-block: 0;
}

.kp-marquee__group.kp-bookrow {
	align-items: stretch;
	gap: 22px;
	padding-right: 22px;
}

.kp-marquee__group.kp-bookrow li {
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.kp-marquee__group.kp-bookrow li:hover {
	transform: none;
	box-shadow: none;
}

.kp-fbcard {
	display: flex;
	flex-direction: column;
	width: 220px;
	height: 100%;
	padding: 16px 16px 18px;
	border: 1px solid var(--kp-line);
	border-radius: 22px;
	background: var(--kp-paper);
	box-shadow: 0 10px 30px rgba(22, 39, 61, .07);
	transition: transform .3s cubic-bezier(.22, .9, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.kp-fbcard:hover {
	border-color: var(--kp-pink-line);
	box-shadow: 0 24px 46px -14px rgba(229, 17, 110, .3);
	transform: translateY(-6px);
}

.kp-fbcard__cover {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px 12px 12px 4px;
	background: var(--kp-blue-wash);
	box-shadow: 0 18px 30px -14px rgba(22, 39, 61, .55);
	aspect-ratio: 2 / 3;
}

.kp-fbcard__cover::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0 auto 0 0;
	width: 6%;
	background: linear-gradient(to right, rgba(0, 0, 0, .3), rgba(255, 255, 255, .2) 55%, transparent);
	pointer-events: none;
}

.kp-fbcard__cover::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .3) 48%, transparent 60%);
	transform: translateX(-130%);
	transition: transform .9s ease;
	pointer-events: none;
}

.kp-fbcard:hover .kp-fbcard__cover::after {
	transform: translateX(130%);
}

.kp-marquee__group .kp-fbcard img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	opacity: 1;
	transition: transform .6s ease;
}

.kp-fbcard:hover img {
	transform: scale(1.04);
}

.kp-fbcard__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 5px;
	margin-top: 14px;
	min-width: 0;
}

.kp-fbcard__cat {
	align-self: flex-start;
	max-width: 100%;
	overflow: hidden;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--kp-pink-wash);
	color: var(--kp-pink);
	font-size: .7rem;
	font-weight: 700;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.kp-fbcard__title {
	display: -webkit-box;
	min-height: 2.6em;
	overflow: hidden;
	color: var(--kp-ink);
	font-family: var(--kp-display);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.kp-fbcard__by {
	overflow: hidden;
	color: var(--kp-muted);
	font-size: .8rem;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.kp-fbcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px dashed var(--kp-line);
}

.kp-fbcard__price {
	color: var(--kp-ink);
	font-size: 1.1rem;
	font-weight: 700;
}

.kp-fbcard__go {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--kp-pink-wash);
	color: var(--kp-pink);
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.kp-fbcard__go svg {
	width: 16px;
	height: 16px;
}

.kp-fbcard:hover .kp-fbcard__go {
	background: var(--kp-pink);
	color: #fff;
	transform: translateX(3px);
}

.kp-fbcard:hover .kp-fbcard__title {
	color: var(--kp-pink);
}

.kp-fbooks .kp-more {
	margin-top: 10px;
}

@media (max-width: 640px) {
	.kp-marquee__group.kp-bookrow {
		gap: 16px;
		padding-right: 16px;
	}

	.kp-fbcard {
		width: 180px;
		padding: 12px 12px 14px;
	}
}

.kp-marquee--authors {
	padding: 26px 0 34px;
	border-block: 0;
}

.kp-marquee__group.kp-authorrow {
	align-items: stretch;
	gap: 22px;
	padding-right: 22px;
}

.kp-marquee__group.kp-authorrow li {
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}

.kp-marquee__group.kp-authorrow li:hover {
	transform: none;
	box-shadow: none;
}

.kp-authorcard {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 230px;
	height: 100%;
	padding: 30px 20px 22px;
	overflow: hidden;
	border: 1px solid var(--kp-line);
	border-radius: 24px;
	background: var(--kp-paper);
	box-shadow: 0 10px 30px rgba(22, 39, 61, .07);
	text-align: center;
	transition: transform .3s cubic-bezier(.22, .9, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.kp-authorcard::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 92px;
	background:
		radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .55), transparent 55%),
		linear-gradient(135deg, var(--kp-pastel-1), var(--kp-pastel-5) 55%, var(--kp-pastel-2));
	pointer-events: none;
}

.kp-authorcard:hover {
	border-color: var(--kp-pink-line);
	box-shadow: 0 22px 44px -12px rgba(229, 17, 110, .28);
	transform: translateY(-6px);
}

.kp-authorcard__photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 122px;
	height: 122px;
	padding: 4px;
	border-radius: 50%;
	background: conic-gradient(from 210deg, var(--kp-pink), #ff8fbf, #7a8cff, var(--kp-pink));
	box-shadow: 0 12px 26px -8px rgba(22, 39, 61, .35);
	transition: transform .4s ease;
}

.kp-authorcard:hover .kp-authorcard__photo {
	transform: scale(1.05) rotate(-2deg);
}

.kp-marquee__group .kp-authorcard img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	border: 3px solid #fff;
	border-radius: 50%;
	object-fit: cover;
	opacity: 1;
	background: var(--kp-blue-wash);
}

.kp-authorcard__text {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 8px;
	width: 100%;
	margin-top: 16px;
	line-height: 1.25;
}

.kp-authorcard__text strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--kp-ink);
	font-family: var(--kp-display);
	font-size: 1.18rem;
	font-weight: 600;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.kp-authorcard__text span {
	max-width: 100%;
	overflow: hidden;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--kp-pink-wash);
	color: var(--kp-pink);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.kp-authorcard__more {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 16px;
	color: var(--kp-muted);
	font-size: .8rem;
	font-weight: 600;
	transition: color .2s ease, gap .2s ease;
}

.kp-authorcard__more svg {
	width: 14px;
	height: 14px;
}

.kp-authorcard:hover .kp-authorcard__more {
	gap: 10px;
	color: var(--kp-pink);
}

.kp-authorcard:hover .kp-authorcard__text strong {
	color: var(--kp-pink);
}

.kp-authors .kp-more {
	margin-top: 10px;
}

@media (max-width: 640px) {
	.kp-marquee__group.kp-authorrow {
		gap: 16px;
		padding-right: 16px;
	}

	.kp-authorcard {
		width: 200px;
		padding: 24px 16px 18px;
	}

	.kp-authorcard::before {
		height: 78px;
	}

	.kp-authorcard__photo {
		width: 104px;
		height: 104px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kp-marquee__track {
		animation-duration: 160s !important;
	}
}



@media (max-width: 1200px) {
	.kp-cat__track { grid-auto-columns: calc((100% - 4 * 14px) / 5); }
}

@media (max-width: 1080px) {
	.kp-reasons__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.kp-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.kp-packages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.kp-proof__shell { grid-template-columns: minmax(0, 1fr); }
	.kp-proof__quote {
		padding: 16px 0 0;
		border-left: 0;
		border-top: 1px solid var(--kp-blue-line);
	}
}

@media (max-width: 940px) {
	.kp-hero__shell { grid-template-columns: minmax(0, 1fr); }

	.kp-hero__caption {
		right: 6px;
		bottom: -22px;
		max-width: 180px;
	}

	.kp-ghost__shell { grid-template-columns: minmax(0, 1fr); }
	.kp-ghost__media { min-height: 220px; }

	.kp-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.kp-flow__step + .kp-flow__step::before,
	.kp-flow__step + .kp-flow__step::after { display: none; }

	.kp-voices__track { grid-auto-columns: calc((100% - 14px) / 2); }
	.kp-cat__track { grid-auto-columns: calc((100% - 3 * 14px) / 4); }

	.kp-closing__shell { grid-template-columns: minmax(0, 1fr); }
	.kp-closing__script { text-align: left; }
}

@media (max-width: 720px) {
	.kp-proof__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.kp-reasons__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.kp-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.kp-voices__track { grid-auto-columns: 84%; }
	.kp-cat__track { grid-auto-columns: calc((100% - 2 * 14px) / 3); }

	.kp-voices__controls { flex-wrap: wrap; }
}

@media (max-width: 520px) {
	.kp-hero__actions .kp-btn,
	.kp-closing__actions .kp-btn { flex: 1 1 100%; }

	.kp-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.kp-packages__grid { grid-template-columns: minmax(0, 1fr); }
	.kp-services__grid { grid-template-columns: minmax(0, 1fr); }
	.kp-reasons__grid { grid-template-columns: minmax(0, 1fr); }

	.kp-voices__track { grid-auto-columns: 88%; }
	.kp-cat__track { grid-auto-columns: calc((100% - 14px) / 2); }
}

@media (prefers-reduced-motion: reduce) {
	.kp *,
	.kp *::before,
	.kp *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
