@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600&family=Inter:wght@400;600;700&display=swap');

/* PLUS Funnel — design tokens
   Ink:    #2B2622  (warm near-black)
   Paper:  #FBF9F5  (soft warm white)
   Accent: #2B4A52  (deep teal-ink — single accent, no per-stage hue shift in v2)
   Gold:   #C9A227  (used sparingly — quote/score highlights)
   Taupe:  #8C8375  (secondary text)
*/

.pf-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 40px 20px;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pf-card {
	position: relative;
	width: 100%;
	max-width: 560px;
	padding: 10px 6px 6px;
}

.pf-thread {
	height: 3px;
	width: 100%;
	background: #E9E3D8;
	border-radius: 2px;
	margin-bottom: 40px;
	overflow: hidden;
}
.pf-thread-fill {
	height: 100%;
	width: 4%;
	background: #2B4A52;
	border-radius: 2px;
	transition: width 0.4s ease;
}

.pf-step { animation: pf-fade-in 0.4s ease; }
@keyframes pf-fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.pf-step { animation: none; }
	.pf-thread-fill { transition: none; }
}

.pf-display {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 500;
	color: #2B2622;
	margin: 0 0 14px;
}

.pf-sub {
	font-size: 16px;
	line-height: 1.65;
	color: #4A443D;
	margin: 0 0 18px;
}

.pf-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.pf-option {
	background: #ffffff;
	border: 1.5px solid #E4DED2;
	color: #2B2622;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.pf-option:hover { border-color: #C9A227; }
.pf-option.pf-selected {
	border-color: #2B4A52;
	background: #EEF3F2;
	font-weight: 600;
}

.pf-btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 22px;
	margin: 8px 0;
	border-radius: 10px;
	border: none;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.pf-btn:hover { transform: translateY(-1px); }

.pf-btn-primary { background: #2B2622; color: #FBF9F5; }
.pf-btn-link { display: block; }

.pf-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 18px;
	margin-bottom: 12px;
	border-radius: 10px;
	border: 1.5px solid #E4DED2;
	font-family: inherit;
	font-size: 15px;
}

.pf-step-plain { padding-top: 20px; }

@media (max-width: 480px) {
	.pf-display { font-size: 22px; }
}
