/* ===========================
	ROOT VARIABLES
	=========================== */
:root {
	--color-page-bg: #fafaf9;
	--color-body: #0A0A0A;

	--color-y: #f4d261;

	--font-heading: 'Fraunces', serif;
	--font-body: 'Source Sans 3', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	--section-padding-x: 80px;
	--section-padding-y: 120px;
}

/* ===========================
	RESET & BASE
	=========================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	background-color: var(--color-page-bg);
	color: var(--color-body);
	line-height: 1.5;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

p {text-wrap: pretty;}

/* ===========================
	OTHER COMMON RULES
	=========================== */

.pl-h2 {
	font-family: "Fraunces", serif;
	font-optical-sizing: auto;
	font-variation-settings:
	"SOFT" 100,
	"WONK" 1;
	color: rgb(35, 36, 37);
	font-weight: 400;
	font-size: 44px;
	line-height: 44px;
	letter-spacing: -0.04em;
}

.pl-h3 {
	font-family: "Fraunces", serif;
	font-optical-sizing: auto;
	font-variation-settings:
	"SOFT" 100,
	"WONK" 1;
	color: rgb(35, 36, 37);
	font-weight: 400;
	font-size: 32px;
	line-height: 44px;
	letter-spacing: -0.04em;
}

.pl-h4 {
	font-family: "Fraunces", serif;
	font-optical-sizing: auto;
	font-variation-settings:
	"SOFT" 100,
	"WONK" 1;
	color: rgb(35, 36, 37);
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -0.03em;
}

.pl-body {
	font-size: 16px;
	line-height: 1.5em;
}

.equiwidth-cards {
	display: flex;
}

.equiwidth-cards .equiwidth-card {
	flex: 1;
	max-width: 480px;
}

.color-y {color: var(--color-y); }

/* ===========================
	FUTURE VISION
	=========================== */

#agentProcess {
	padding: 72px 0;
	background: color(srgb 0.985 0.9613 0.9013);
}

.agentProcessScroll {
	width: 100%;
	margin-top: 32px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.agentProcessScroll img {
	display: block;
	width: auto;
	max-width: none;
	height: 480px;
	padding: 0 48px;
}

#preflections {
	padding: 120px 32px;
}

#preflections-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: calc(100% - 32px);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding: 32px;
	list-style: none;
	text-align: left;
	margin-top: 40px;
}

#preflections-wrapper li {
	display: flex;
	flex-direction: column;
	justify-content: start;
	padding: 16px;
	border: 0.5px solid #e1e1e1;
}

#preflections-wrapper li:last-child {
	grid-column: 1 / -1;
}

.preflections-title {
	font-weight: 600;
}

@media (max-width: 768px) {
	#preflections-wrapper {
		grid-template-columns: 1fr;
	}

	#preflections-wrapper li {
		justify-content: flex-start;
		gap: 16px;
	}

	#preflections-wrapper li:last-child {
		grid-column: auto;
	}
}

/* ===========================
	HEADER
	=========================== */
#h {
	font-family: var(--font-body);
	background: rgba(255, 255, 255, 0.2);
	padding: 32px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	display: flex;
	justify-content: space-between;
	gap: 32px;
	border-bottom: 1px solid rgba(62, 47, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	backdrop-filter: blur(32px);
	-webkit-backdrop-filter: blur(32px);
}

#h a {
	text-decoration: none;
	color: var(--color-body);
	line-height: 24px;
}

#h #n {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0;
	text-transform: none;
}

#heroHeader {
	padding-top: 89px;
}

@media (max-width: 768px) {
	#heroHeader { padding-top: 65px; }
}

/* ===========================
	FOOTER
	=========================== */
.footer {
	position: relative;
	min-height: 240px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	background: #181818;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: center;
	padding: 16px;
}

.footer .next-project {
	position: absolute;
	left: 0;
	right: 0;
	color: rgba(255, 255, 255, 0.7);
	font-weight: bold;
}

.pl-secHeading {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 32px;
}

.pl-blockWidth_small {
	width: 100%;
	max-width: 320px;
}

.pl-blockWidth_medium {
	width: 100%;
	max-width: 480px;
}

/* ===========================
	HERO
	=========================== */
.pl-hero {
	background: #f5d653;
	background: rgb(225, 223, 218);
	background: rgb(244, 241, 216);
	background: rgb(241, 240, 235);
	width: 100%;
	min-height: 800px;
	display: flex;
	align-items: center;
	padding-top: 88px; /* offset fixed header */
	box-sizing: border-box;
}

.pl-hero__inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 48px;
	padding-top: 48px;
	padding-bottom: 48px;
}

.pl-hero__left {
	flex: 1;
}

.pl-hero__icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	margin-bottom: 24px;
}

.pl-hero__title {
	font-size: 85px;
	font-weight: 800;
	line-height: 1;
	color: var(--color-body);
	color: #513015;
	margin-bottom: 16px;
}

.pl-hero__subtitle {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: #513015;
	margin-bottom: 24px;
}

.pl-hero__tags {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: rgb(72, 28, 1);
	color: #513015;
	padding-bottom: 16px;
}

.pl-hero__right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pl-hero__video video {
	width: 100%;
	max-width: 100vw;
	background: rgba(26, 10, 0, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pl-hero__video-label {
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(26, 10, 0, 0.3);
}

#pl-goal, #pl-sol {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	margin-top: 24px;
	margin: 0 auto;
	background: rgb(241, 240, 235);
	padding: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 480px;
	align-items: center;
}

#pl-goal p, #pl-sol > p {
	width: 100%;
	max-width: 720px;
	padding: 0 32px;
}

@media (max-width: 768px) {
	#pl-goal {
		text-align: left;
		font-size: 24px;
		align-items: start;
	}

	#pl-goal p {
		padding: 0;
	}

	#pl-sol {
		padding: 64px 0;
	}
}

/* ===========================
	OBSERVATIONS
	=========================== */
.pl-obs {
	width: 100%;
	padding: 72px 0;
}

.pl-obs__inner {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.pl-obs__heading {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 32px;
}

.pl-obs__diagram {
	width: 100%;
	height: auto;
}

.pl-obs__closing {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	max-width: 640px;
	margin-top: 24px;
}



/* ===========================
	MARK: TARGET USER
	=========================== */
#targetUser {
	padding: 120px 0;
	border-top: 1px solid #eaeae9;
	border-bottom: 1px solid #eaeae9;
}

#targetUserParallelBiz {
	margin-bottom: 40px;
	margin-top: 32px;
	padding-top: 16px;
}

#targetUserParallelBiz ul {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding-bottom: 16px;
	margin-top: 16px;
}

@media (max-width: 768px) {
	#targetUserParallelBiz ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

.biz {
	border: 1px solid rgba(238, 238, 238, 0.61);
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 16px;
}

.bizEmoji {
	font-size: 24px;
}

.tuReasons {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	border: 0.5px solid rgba(160, 160, 160);
}

.tuReasons > div {
	border: 0.5px solid rgba(160, 160, 160);
	padding: 24px;
	padding-top: 48px;
}

.tuReasons p {
	text-wrap: pretty;
}

.tuReasons p:nth-child(2) {
	opacity: 0.5;
	font-size: 14px;
}

.tuReasons > div:nth-child(1),
.tuReasons > div:nth-child(2),
.tuReasons > div:nth-child(3) {
	grid-column: span 2; /* 3 items in first row */
}

.tuReasons > div:nth-child(4),
.tuReasons > div:nth-child(5) {
	grid-column: span 3; /* 2 items in second row */
}

@media (max-width: 768px) {

	.tuReasons {
		grid-template-columns: repeat(2, 1fr);
	}
	.tuReasons > div {
		grid-column: span 1;
	}
	.tuReasons > div:last-child {
		grid-column: 1 / -1;
	}

}


/* ===========================
	PROBLEMS
	=========================== */
#problems {
	background: #222425;
	background: #161300;
	color: #E6E6E6;
	padding-top: 64px;
	padding-bottom: 64px;
}
#problems .flexWrapper, #imageTypes .flexWrapper, #existingAI .flexWrapper {
	display: flex;
	justify-content: space-between;
}

.problem-cquote {
	margin-top: 1em;
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	#problems .flexWrapper, #imageTypes .flexWrapper, #existingAI .flexWrapper {
		flex-direction: column;
		gap: 32px;
	}
	.equiwidth-cards {
		flex-direction: column;
		justify-content: left;
		gap: 32px;
	}

	.equiwidth-cards .equiwidth-card {
		padding: 0!important;
	}
}

#problems .equiwidth-card, #imageTypes .equiwidth-card {
	width: 100%;
	max-width: 480px;
	padding: 0 32px;
}

#problems ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1em;
	padding-left: 1em;
}

#imageTypes {
	padding-top: 64px;
	padding-bottom: 64px;
}

#imageTypes .equiwidth-card {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.toi-usage {
	border-top: 1px solid #eaeae9;
	border-bottom: 1px solid #eaeae9;
	min-height: 5em;
	padding: 10px 0;
}

#existingAI {
	padding-top: 64px;
	padding-bottom: 64px;
	border-top: 1px solid #eaeae9;
	border-bottom: 1px solid #eaeae9;
}

#existingAI .thumbsDown {
	background: url("images/p/thumbsDown.svg") no-repeat 0 50%;
	background-size: 16px;
	padding-left: 24px;
}

#existingAI .equiwidth-card {
	width: 100%;
	max-width: 360px;
	padding: 0;
}

/* ===========================
	MARK: SOLUTIONS
	=========================== */

.solutionOverviewCards {
	display: flex;
	gap: 32px;
	max-width: 960px;
	padding-left: 32px;
	padding-right: 32px;
}

@media (max-width: 768px) {
	.solutionOverviewCards {
		flex-direction: column;
	}
}

.solutionOverviewCard {	
	display: flex;
	flex-direction: column;
	justify-content: start;
	text-align: left;
	gap: 16px;
	background: rgba(251, 248, 245, 0.19);
	border: 1px solid rgba(223, 220, 214, 0.64);
	transition: all 0.3s cubic-bezier(0.73, 0.04, 0.78, 1.05);
	cursor: default;
}

/* #socBVA { background: #ebe3dd; }
#socTTS { background: #ebe3dd; } */

.solutionOverviewCard:hover {
	transform: translateY(2px);
}

.solutionOverviewCardText {
	padding: 24px;
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: start;
	cursor: default;
}

.intervention {
	display: grid;
	gap: 24px
}	

.interventionTitle {
	font-size: 74px;
	font-weight: 400;
	letter-spacing: -0.04em;
	text-wrap: pretty;
	font-family: "Fraunces", serif;
	font-optical-sizing: auto;
	font-variation-settings:
	"SOFT" 100,
	"WONK" 1;
	color: rgb(35, 36, 37);
	color: #FF1A8A;
	padding-left: 32px;
	padding-right: 32px;
}

.groundingProblems {
	margin: 0;
	padding-left: 32px;
	padding-right: 32px;
	list-style-type: none;
	font-size: 14px;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	max-width: 1200px;
	text-wrap: balance;
	opacity: 0.75;
	border-top: 1px solid rgba(193, 193, 193, 0.26);
	border-bottom: 1px solid rgba(193, 193, 193, 0.26);
	padding: 32px;
}

.interventionIntro {
	display: flex;
	flex-direction: row;
	gap: 32px;
	justify-content: space-between;
	padding-left: 32px;
	padding-right: 32px;
	padding-top: 24px;
}

.interventionIntroHeadline {
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 24px;
	font-size: 24px;
	width: 100%;
	max-width: 480px
}

.ttsBenefits {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 8px;
	row-gap: 8px;
	margin: 0;
	padding: 0;
}

.ttsBenefits span {
	font-size: 6px;
	padding-top: 8px;
}

.intervention .videoWrapper {
	padding-left: 32px;
	padding-right: 32px;
}

#tts.intervention .videoWrapper {
	padding-top: 0;
	padding-bottom: 72px;
}


#bva {
	border-top: 1px solid #eaeae9;
}

@media (max-width: 768px) {

	.groundingProblems {
		grid-template-columns: 1fr;
	}

	.interventionIntro {
		flex-direction: column;
	}	
	#bva .videoWrapper, #tts .videoWrapper {
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

#bva video, #tts video {
	width: 100%;
	max-width: 720px;
}

.alert {
	color: #FF1A8A;
	font-style: italic;
}

.hscroll {

	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 1rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;

}

.bva-example .hscroll {
	padding-left: 24px;
	padding-right: 24px;
}

.bvx-cell {

	flex: 0 0 auto;

}

.bvx-cell img {

	display: block;
	width: auto;
	height: 45vh;
	max-height: 765px;
	margin-bottom: 24px;

}

.lp24 {padding-left: 24px;}

#tts {
	border-top: 1px solid #eaeae9;
	padding-bottom: 0;
}


#ttsStyleFirstDemo {
	padding: 72px 32px;
	padding-bottom: 24px;
	background: #f7f6f5;
}

.ttsStyleGrid {
	display: grid;
	grid-template-columns: 2fr 3fr 2fr;
	gap: 4px;
	height: auto;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 32px;
	aspect-ratio: 525 / 225;
}

@media (max-width: 768px) {
	.ttsStyleTextGrid .tac,
	.ttsStyleTextGrid .tal,
	.ttsStyleTextGrid .tar {
		text-align: left;
	}
}

.ttsStyleGridL,
.ttsStyleGridR {
	background: #ccc;
}

.ttsStyleGridC {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 4px;
}

.ttsStyleGridC > div {
	background: #ccc;
	box-shadow: inset 0 0 0 0 rgba(255, 0, 138, 0);
	transition: box-shadow 0.4s ease;
}

.ttsStyleGridC > div.is-active {
	box-shadow: inset 0 0 0 4px #ff008a;
}

.tsfdLabel {
	font-size: 12px;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.45) 0 0 8px;
	backdrop-filter: blur(20px);
	padding: 4px 8px;
	display: inline-block;
}

.ttsStyleGridText {
	padding: 24px 32px;
}

.ttsStyleTextGrid {
	display: grid;
	grid-template-columns: 2fr 3fr 2fr;
	gap: 4px;
	width: 100%;
	max-width: 1200px;
	max-height: 64px;
	margin-inline: auto;
}

@media (max-width: 768px) {
	.ttsStyleGrid {
		grid-template-columns: 1fr;
		aspect-ratio: auto;
	}

	.ttsStyleTextGrid {
		grid-template-columns: 1fr;
		max-height: none;
	}

	.ttsStyleGridL,
	.ttsStyleGridR {
		min-height: 300px;
	}

	.ttsStyleGridC {
		grid-template-columns: repeat(3, 1fr);
		aspect-ratio: 1;
	}
}

#tsfdS1,
#tsfdS2,
#tsfdS3,
#tsfdS4,
#tsfdS5,
#tsfdS6,
#tsfdS7,
#tsfdS8,
#tsfdS9 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

#tsfdS1 {
	background-image: url("images/p/tsfdS1.jpg");
}

#tsfdS2 {
	background-image: url("images/p/tsfdS2.jpg");
}

#tsfdS3 {
	background-image: url("images/p/tsfdS3.jpg");
}

#tsfdS4 {
	background-image: url("images/p/tsfdS4.jpg");
}

#tsfdS5 {
	background-image: url("images/p/tsfdS5.jpg");
}

#tsfdS6 {
	background-image: url("images/p/tsfdS6.jpg");
}

#tsfdS7 {
	background-image: url("images/p/tsfdS7.jpg");
}

#tsfdS8 {
	background-image: url("images/p/tsfdS8.jpg");
}

#tsfdS9 {
	background-image: url("images/p/tsfdS9.jpg");
}

#tsfdInput {
	background-image: url("images/p/shirtMannequinBasic.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#tsfdOutput {
	position: relative;
	overflow: hidden;
}

.tsfdOutputImage {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.24s ease;
}

.tsfdOutputImage.is-active {
	opacity: 1;
}

#ttsScreens {
	height: calc(70vh + 96px);
	padding: 48px 32px;
	box-sizing: border-box;
	background: #593a48;
	color: #fff;
	display: grid;
	grid-auto-flow: column;
	grid-template-columns: repeat(4, min(320px, calc(100vw - 64px)));
	grid-template-rows: auto minmax(0, 1fr) auto;
	grid-auto-columns: min(320px, calc(100vw - 64px));
	column-gap: 48px;
	row-gap: 16px;
	justify-content: center;
	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

@media (max-width: 768px) {
	#ttsScreens {
		height: calc(90vh + 96px);
		justify-content: start;
		scroll-padding-left: 32px;
	}

	.ttsSMedia {
		height: 60vh;
		width: auto;
	}

	.ttsSMedia > * {
		width: auto;
		max-width: none;
	}
}

.ttsScreenWrapper {
	display: contents;
}

.ttsScreenIntro {
	grid-column: 1 / -1;
	padding-top: 40px;
	padding-bottom: 40px;
	color: #fff;
}

.ttsScreenIntro p {
	color: #fff;
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	.ttsScreenIntro p {
		text-align: left !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

.ttsSMedia {
	height: 100%;
	min-height: 0;
	text-align: center;
	display: flex;
	justify-content: space-around;
}

.ttsSMedia > * {
	height: 100%;
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

.ttsSCaption {
	width: 100%;
	max-width: 320px;
	justify-self: center;
	text-align: center;
}

.ttsSCaption p {
	text-align: center;
	padding-left: 32px;
	padding-right: 32px;
}

#ttsChallenges {
	padding: 64px 0;
	padding-bottom: 0;
}

.ttsChallengeW {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.ttsChallenge {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cQuote {
	font-size: 24px;
	font-weight: 400;
	font-style: italic;
}

.fixOrDefer {
	width: calc(100% - 64px);
	/* margin: 80px auto 32px; */
	margin: 48px auto 32px;
	padding: 72px 0;
	padding-bottom: 16px;
	background: color(srgb 0.97 0.9457 0.9473);
	border-radius: 32px;
	overflow: hidden;
}

.fixOrDeferIntro {
	display: grid;
	gap: 16px;
	width: calc(100% - 64px);
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.fixOrDefer ul {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 32px 64px 16px calc(50% - (351px / 2));
	scroll-padding-left: calc(50% - (351px / 2));
	overflow-x: auto;
	overflow-y: hidden;
	list-style: none;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.fixOrDefer li {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.fixOrDefer img {
	width: auto;
	max-width: none;
	max-height: min(70vh, 480px);
}

.ttsChallengeImages {
	height: 480px;
	padding-top: 40px;
	padding-bottom: 20px;
	box-sizing: content-box;
}

#segue {
	background: rgba(0, 0, 0, 0.05);
	color: #000000;
	padding: 160px 32px;
}

/* ===========================
	COMPARISON BUBBLES
	=========================== */
.pl-compare {
	width: 100%;
	padding: 80px 0;
}

.pl-compare__inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

.pl-compare__bubbles {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 56px;
}

.pl-compare__bubble {
	border-radius: 50%;
	background: #e0ddd8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pl-compare__bubble span {
	text-align: center;
	padding: 24px;
	font-size: 18px;
	line-height: 1.3;
}

.pl-compare__bubble--big {
	width: 260px;
	height: 260px;
}

.pl-compare__bubble--small {
	width: 130px;
	height: 130px;
}

.pl-compare__bubble--small span {
	font-size: 16px;
}

.pl-compare__text {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.pl-compare__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pl-compare__list li {
	font-size: 18px;
	line-height: 1.7;
}

.pl-compare__list--big {
	text-align: right;
}

.pl-compare__list--small {
	text-align: left;
	padding-left: 32px;
}

/* ===========================
	SEGMENTS
	=========================== */
.pl-seg {
	width: 100%;
	padding: 80px 0;
}

.pl-seg__inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

.pl-seg__heading {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 64px;
}

.pl-seg__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px;
}

.pl-seg__col {
	font-size: 17px;
	line-height: 1.6;
}

.pl-seg__col p {
	margin-bottom: 16px;
}

.pl-seg__col-title {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 12px;
}

.pl-seg__col--left {
	text-align: right;
}

.pl-seg__col--right {
	text-align: left;
}

.pl-seg__primary-goal {
	color: rgba(0, 0, 0, 0.45);
	font-size: 15px;
}

.pl-seg__bubbles {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: center;
	margin-bottom: 56px;
}

.pl-seg__bubble {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #e0ddd8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pl-seg__bubble span {
	text-align: center;
	padding: 24px;
	font-size: 17px;
	line-height: 1.35;
}

.pl-seg__goal {
	padding-top: 80px;
	text-align: center;
}

.pl-seg__goal-title {
	font-size: 64px;
	font-weight: 700;
	margin-bottom: 32px;
}

.pl-seg__goal-body {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.55;
	max-width: 720px;
	margin: 0 auto;
}

/* ===========================
	PROBLEMS
	=========================== */
/*.pl-prob {
	width: 100%;
	padding: 80px 0;
}

.pl-prob__inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

.pl-prob__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.pl-prob__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.35);
	margin-bottom: 12px;
}

.pl-prob__subtitle {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 20px;
}

.pl-prob__reasons {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pl-prob__reasons li {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
} */

/* ===========================
	RESPONSIVE — MOBILE
	=========================== */
@media (max-width: 768px) {
	:root {
		--section-padding-x: 24px;
		--section-padding-y: 60px;
	}

	#h {
		padding: 20px 24px;
	}

	.footer {
		min-height: 400px;
	}

	.pl-hero {
		min-height: 480px;
	}

	.pl-hero__inner {
		flex-direction: column;
		gap: 32px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.pl-hero__left {
		text-align: center;
		width: 100%;
	}

	.pl-hero__icon {
		margin-left: auto;
		margin-right: auto;
	}

	.pl-hero__title {
		font-size: 48px;
	}

	.pl-hero__right {
		width: 100%;
	}

	.pl-prob__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.pl-seg__cols {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pl-seg__col--left {
		text-align: left;
	}

	.pl-seg__bubbles {
		flex-direction: column;
	}

	.pl-seg__goal-title {
		font-size: 40px;
	}

	.pl-seg__goal-body {
		font-size: 18px;
	}

	.pl-compare__bubbles {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 40px;
	}

	.pl-compare__bubble--big {
		width: 180px;
		height: 180px;
	}

	.pl-compare__bubble--small {
		width: 100px;
		height: 100px;
	}

	.pl-compare__text {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pl-compare__list--big {
		text-align: left;
	}

	.pl-compare__list--small {
		padding-left: 0;
	}

	.pl-obs {
		padding: 72px 0;
	}

	.pl-obs__heading {
		font-size: 28px;
		margin-bottom: 48px;
	}

	.pl-obs__closing {
		font-size: 28px;
	}
}


#prs-title {
	color: #FF1A8A;
}
