/**
 * 製造業・次の一手AI診断 — スタイル
 * プラリンク公式サイトの配色（#156FBF / #34538F / #5389B2）に合わせた BtoB デザイン。
 * すべて .pnsd 配下にスコープし、テーマのスタイルと干渉しないようにしている。
 */

.pnsd {
	--pnsd-primary: #156fbf;
	--pnsd-primary-hover: #0f5a9e;
	--pnsd-navy: #1d3557;
	--pnsd-navy-2: #34538f;
	--pnsd-steel: #5389b2;
	--pnsd-ink: #1b2633;
	--pnsd-text: #333d48;
	--pnsd-muted: #66727f;
	--pnsd-line: #d9e3f0;
	--pnsd-line-strong: #b9cbe0;
	--pnsd-soft: #f4f8fc;
	--pnsd-soft-2: #e8f1fa;
	--pnsd-selected: #eaf3fc;
	--pnsd-warn: #b4632a;
	--pnsd-radius: 6px;
	--pnsd-shadow: 0 1px 2px rgba(29, 53, 87, 0.06), 0 8px 24px rgba(29, 53, 87, 0.06);
	--pnsd-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Meiryo", "Yu Gothic", sans-serif;
	--pnsd-num: "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
	--pnsd-scroll-offset: 96px;

	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	color: var(--pnsd-text);
	font-family: var(--pnsd-font);
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
	-webkit-font-smoothing: antialiased;
	scroll-margin-top: var(--pnsd-scroll-offset);
}

/* ------------------------------------------------------------------ Reset */

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

.pnsd [class*="pnsd-"] {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	font-family: inherit;
	color: inherit;
	float: none;
}

.pnsd [class*="pnsd-"] > li {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	list-style: none;
}

.pnsd h2[class*="pnsd-"]::before,
.pnsd h2[class*="pnsd-"]::after,
.pnsd h3[class*="pnsd-"]::before,
.pnsd h3[class*="pnsd-"]::after,
.pnsd h4[class*="pnsd-"]::before,
.pnsd h4[class*="pnsd-"]::after,
.pnsd [class*="pnsd-"] > li::before,
.pnsd [class*="pnsd-"] > li::after {
	content: none;
	display: none;
}

.pnsd [hidden] {
	display: none !important;
}

/* 日本語を文節で改行（対応ブラウザのみ）。 */
.pnsd h2[class*="pnsd-"],
.pnsd h3[class*="pnsd-"],
.pnsd h4[class*="pnsd-"],
.pnsd .pnsd-intro__catch,
.pnsd .pnsd-intro__outputs span,
.pnsd .pnsd-themes__title,
.pnsd .pnsd-r-hero__tagline,
.pnsd .pnsd-related__tagline,
.pnsd .pnsd-cta__text {
	word-break: auto-phrase;
}

.pnsd button {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	font: inherit;
}

.pnsd :focus-visible {
	outline: 3px solid rgba(21, 111, 191, 0.45);
	outline-offset: 2px;
}

.pnsd [tabindex="-1"]:focus {
	outline: none;
}

/* ---------------------------------------------------------------- Buttons */

.pnsd .pnsd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--pnsd-radius);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.pnsd .pnsd-btn__arrow {
	font-family: var(--pnsd-num);
	font-weight: 400;
	transition: transform 0.2s;
}

.pnsd .pnsd-btn--primary {
	background: var(--pnsd-primary);
	border-color: var(--pnsd-primary);
	color: #fff;
}

.pnsd .pnsd-btn--primary:hover:not(:disabled) {
	background: var(--pnsd-primary-hover);
	border-color: var(--pnsd-primary-hover);
}

.pnsd .pnsd-btn--primary:hover:not(:disabled) .pnsd-btn__arrow {
	transform: translateX(3px);
}

.pnsd .pnsd-btn--primary:disabled {
	background: #c7d3e0;
	border-color: #c7d3e0;
	cursor: not-allowed;
}

.pnsd .pnsd-btn--ghost {
	background: #fff;
	border-color: var(--pnsd-line-strong);
	color: var(--pnsd-navy);
	font-weight: 500;
}

.pnsd .pnsd-btn--ghost:hover {
	border-color: var(--pnsd-primary);
	color: var(--pnsd-primary);
}

.pnsd .pnsd-btn--large {
	min-height: 60px;
	padding: 16px 40px;
	font-size: 17px;
}

.pnsd .pnsd-badge {
	display: inline-block;
	padding: 1px 8px;
	border: 1px solid var(--pnsd-line-strong);
	border-radius: 3px;
	background: #fff;
	color: var(--pnsd-navy-2);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.7;
	white-space: nowrap;
	vertical-align: middle;
}

.pnsd .pnsd-badge--primary {
	background: var(--pnsd-primary);
	border-color: var(--pnsd-primary);
	color: #fff;
}

/* ----------------------------------------------------------------- Screens */

.pnsd .pnsd-screen {
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: #fff;
	box-shadow: var(--pnsd-shadow);
}

.pnsd .pnsd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--pnsd-primary);
	font-family: var(--pnsd-num);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.pnsd .pnsd-eyebrow::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 2px;
	background: var(--pnsd-primary);
}

/* ------------------------------------------------------------------- Intro */

.pnsd .pnsd-intro {
	overflow: hidden;
	background-color: #fff;
	background-image:
		linear-gradient(rgba(21, 111, 191, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(21, 111, 191, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
}

.pnsd .pnsd-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: 48px;
	padding: 56px 56px 40px;
}

.pnsd .pnsd-intro__title {
	margin-top: 20px;
	color: var(--pnsd-ink);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	font-feature-settings: "palt";
	letter-spacing: 0.02em;
}

.pnsd .pnsd-intro__catch {
	margin-top: 20px;
	color: var(--pnsd-navy);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	font-feature-settings: "palt";
}

.pnsd .pnsd-intro__catch em {
	font-style: normal;
	color: var(--pnsd-primary);
}

.pnsd .pnsd-intro__lead {
	margin-top: 20px;
	color: var(--pnsd-text);
	font-size: 15px;
	line-height: 1.9;
}

.pnsd .pnsd-intro__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 28px;
	padding: 14px 0;
	border-top: 1px solid var(--pnsd-line);
	border-bottom: 1px solid var(--pnsd-line);
	font-size: 14px;
}

.pnsd .pnsd-intro__meta > li {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.pnsd .pnsd-intro__meta-label {
	color: var(--pnsd-muted);
	font-size: 12px;
}

.pnsd .pnsd-intro__meta strong {
	color: var(--pnsd-ink);
	font-weight: 700;
}

.pnsd .pnsd-intro__actions {
	margin-top: 32px;
}

.pnsd .pnsd-resume {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid var(--pnsd-line);
	border-left: 3px solid var(--pnsd-steel);
	border-radius: var(--pnsd-radius);
	background: var(--pnsd-soft);
	font-size: 14px;
}

.pnsd .pnsd-link-btn {
	color: var(--pnsd-primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pnsd .pnsd-link-btn:hover {
	color: var(--pnsd-primary-hover);
}

.pnsd .pnsd-intro__panel {
	align-self: start;
	padding: 28px;
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: rgba(255, 255, 255, 0.92);
}

.pnsd .pnsd-intro__panel-title {
	color: var(--pnsd-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.pnsd .pnsd-intro__outputs {
	margin-top: 16px;
	counter-reset: pnsd-out;
}

.pnsd .pnsd-intro__outputs > li {
	position: relative;
	padding: 12px 0 12px 40px;
	border-top: 1px dashed var(--pnsd-line);
	font-size: 14px;
	line-height: 1.6;
	counter-increment: pnsd-out;
}

.pnsd .pnsd-intro__outputs > li:first-child {
	border-top: 0;
}

.pnsd .pnsd-intro__outputs > li::before {
	content: counter(pnsd-out, decimal-leading-zero);
	display: block;
	position: absolute;
	left: 0;
	top: 12px;
	color: var(--pnsd-primary);
	font-family: var(--pnsd-num);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.pnsd .pnsd-intro__outputs strong {
	display: block;
	color: var(--pnsd-ink);
	font-weight: 700;
}

.pnsd .pnsd-intro__outputs span {
	display: block;
	color: var(--pnsd-muted);
	font-size: 13px;
}

.pnsd .pnsd-intro__themes {
	padding: 28px 56px 44px;
	border-top: 1px solid var(--pnsd-line);
	background: rgba(244, 248, 252, 0.85);
}

.pnsd .pnsd-intro__themes-title {
	color: var(--pnsd-muted);
	font-size: 13px;
	font-weight: 700;
}

.pnsd .pnsd-themes {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.pnsd .pnsd-themes > li {
	padding: 14px 14px 16px;
	border: 1px solid var(--pnsd-line);
	border-top: 3px solid var(--pnsd-steel);
	border-radius: 4px;
	background: #fff;
}

.pnsd .pnsd-themes__key {
	display: block;
	color: var(--pnsd-steel);
	font-family: var(--pnsd-num);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.pnsd .pnsd-themes__title {
	display: block;
	margin-top: 4px;
	color: var(--pnsd-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.pnsd .pnsd-noscript {
	margin-top: 16px;
	padding: 16px;
	border: 1px solid var(--pnsd-warn);
	border-radius: var(--pnsd-radius);
	color: var(--pnsd-warn);
	font-size: 14px;
}

/* -------------------------------------------------------------- Question */

.pnsd .pnsd-question {
	padding: 0;
}

.pnsd .pnsd-q__head {
	padding: 24px 48px 0;
}

.pnsd .pnsd-q__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}

.pnsd .pnsd-q__count {
	color: var(--pnsd-muted);
	font-feature-settings: "tnum";
}

.pnsd .pnsd-q__count strong {
	color: var(--pnsd-primary);
	font-family: var(--pnsd-num);
	font-size: 20px;
	font-weight: 700;
}

.pnsd .pnsd-q__topic {
	padding: 2px 10px;
	border: 1px solid var(--pnsd-line);
	border-radius: 3px;
	background: var(--pnsd-soft);
	color: var(--pnsd-navy-2);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.8;
}

.pnsd .pnsd-progress {
	position: relative;
	height: 4px;
	margin-top: 12px;
	overflow: hidden;
	border-radius: 2px;
	background: var(--pnsd-soft-2);
}

.pnsd .pnsd-progress__bar {
	display: block;
	height: 100%;
	border-radius: 2px;
	background: var(--pnsd-primary);
	transition: width 0.35s ease;
}

.pnsd .pnsd-q__body {
	padding: 36px 48px 28px;
}

.pnsd .pnsd-q__body.is-entering {
	animation: pnsd-enter 0.35s ease both;
}

.pnsd .pnsd-q__num {
	color: var(--pnsd-steel);
	font-family: var(--pnsd-num);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.pnsd .pnsd-q__text {
	margin-top: 6px;
	color: var(--pnsd-ink);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.55;
	font-feature-settings: "palt";
}

.pnsd .pnsd-q__help {
	margin-top: 10px;
	color: var(--pnsd-muted);
	font-size: 14px;
}

.pnsd .pnsd-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.pnsd .pnsd-option {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 60px;
	padding: 14px 18px;
	border: 1px solid var(--pnsd-line-strong);
	border-radius: var(--pnsd-radius);
	background: #fff;
	color: var(--pnsd-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.pnsd .pnsd-options--dense .pnsd-option {
	min-height: 54px;
	padding: 12px 16px;
}

.pnsd .pnsd-option:hover {
	border-color: var(--pnsd-primary);
	background: var(--pnsd-soft);
}

.pnsd .pnsd-option.is-selected {
	border-color: var(--pnsd-primary);
	background: var(--pnsd-selected);
	box-shadow: inset 0 0 0 1px var(--pnsd-primary);
	color: var(--pnsd-navy);
	font-weight: 700;
}

.pnsd .pnsd-option__mark {
	position: relative;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border: 1.5px solid var(--pnsd-line-strong);
	border-radius: 50%;
	background: #fff;
	transition: border-color 0.15s, background-color 0.15s;
}

.pnsd .pnsd-option--multi .pnsd-option__mark {
	border-radius: 4px;
}

.pnsd .pnsd-option.is-selected .pnsd-option__mark {
	border-color: var(--pnsd-primary);
	background: var(--pnsd-primary);
}

.pnsd .pnsd-option.is-selected .pnsd-option__mark::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.pnsd .pnsd-q__notice {
	min-height: 1.8em;
	margin-top: 12px;
	color: var(--pnsd-warn);
	font-size: 13px;
}

.pnsd .pnsd-q__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 48px;
	border-top: 1px solid var(--pnsd-line);
	background: var(--pnsd-soft);
	border-radius: 0 0 var(--pnsd-radius) var(--pnsd-radius);
}

.pnsd .pnsd-q__nav .pnsd-btn--primary {
	margin-left: auto;
	min-width: 180px;
}

.pnsd .pnsd-q__count-selected {
	margin-left: auto;
	color: var(--pnsd-muted);
	font-size: 13px;
	font-feature-settings: "tnum";
}

.pnsd .pnsd-q__count-selected + .pnsd-btn--primary {
	margin-left: 0;
}

/* ------------------------------------------------------------------- Lead */

.pnsd .pnsd-lead__head {
	padding: 36px 48px 0;
}

.pnsd .pnsd-lead__title {
	margin-top: 10px;
	color: var(--pnsd-ink);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	font-feature-settings: "palt";
}

.pnsd .pnsd-lead__intro {
	margin-top: 10px;
	color: var(--pnsd-muted);
	font-size: 14px;
	line-height: 1.8;
}

.pnsd .pnsd-lead__form {
	padding: 28px 48px 36px;
}

.pnsd .pnsd-field__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 16px;
}

.pnsd .pnsd-field {
	grid-column: 1 / -1;
}

.pnsd .pnsd-field--half {
	grid-column: span 1;
}

.pnsd .pnsd-field__label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pnsd-ink);
	font-size: 13px;
	font-weight: 700;
}

.pnsd .pnsd-field__required {
	padding: 1px 6px;
	border-radius: 3px;
	background: var(--pnsd-warn);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.6;
}

.pnsd .pnsd-field input[type="text"],
.pnsd .pnsd-field input[type="email"],
.pnsd .pnsd-field input[type="tel"] {
	display: block;
	width: 100%;
	min-height: 48px;
	margin-top: 8px;
	padding: 10px 14px;
	border: 1px solid var(--pnsd-line-strong);
	border-radius: var(--pnsd-radius);
	background: #fff;
	color: var(--pnsd-ink);
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.pnsd .pnsd-field input[type="text"]:focus,
.pnsd .pnsd-field input[type="email"]:focus,
.pnsd .pnsd-field input[type="tel"]:focus {
	border-color: var(--pnsd-primary);
	box-shadow: 0 0 0 3px rgba(21, 111, 191, 0.12);
}

.pnsd .pnsd-field--consent {
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px dashed var(--pnsd-line);
}

.pnsd .pnsd-field__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--pnsd-text);
	font-size: 13px;
	line-height: 1.8;
}

.pnsd .pnsd-field__checkbox input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--pnsd-primary);
}

.pnsd .pnsd-field__checkbox .pnsd-link-btn {
	margin-left: 4px;
	font-size: 13px;
	white-space: nowrap;
}

.pnsd .pnsd-hp {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.pnsd .pnsd-lead__notice {
	min-height: 1.8em;
	margin-top: 16px;
	color: var(--pnsd-warn);
	font-size: 13px;
}

.pnsd .pnsd-lead__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--pnsd-line);
}

.pnsd .pnsd-lead__nav .pnsd-btn--primary {
	min-width: 200px;
}

/* ------------------------------------------------------------- Analyzing */

.pnsd .pnsd-analyzing {
	padding: 72px 32px;
	text-align: center;
}

.pnsd .pnsd-analyzing__scan {
	display: inline-flex;
	align-items: flex-end;
	gap: 6px;
	height: 40px;
}

.pnsd .pnsd-analyzing__scan span {
	display: block;
	width: 8px;
	height: 100%;
	border-radius: 1px;
	background: var(--pnsd-primary);
	opacity: 0.25;
	transform-origin: bottom;
	animation: pnsd-bar 1.2s ease-in-out infinite;
}

.pnsd .pnsd-analyzing__scan span:nth-child(2) { animation-delay: 0.12s; }
.pnsd .pnsd-analyzing__scan span:nth-child(3) { animation-delay: 0.24s; }
.pnsd .pnsd-analyzing__scan span:nth-child(4) { animation-delay: 0.36s; }
.pnsd .pnsd-analyzing__scan span:nth-child(5) { animation-delay: 0.48s; }

.pnsd .pnsd-analyzing__title {
	margin-top: 24px;
	color: var(--pnsd-ink);
	font-size: 20px;
	font-weight: 700;
}

.pnsd .pnsd-analyzing__steps {
	display: inline-block;
	margin-top: 20px;
	text-align: left;
}

.pnsd .pnsd-analyzing__steps > li {
	position: relative;
	padding: 4px 0 4px 28px;
	color: var(--pnsd-muted);
	font-size: 14px;
	opacity: 0;
	animation: pnsd-fade 0.4s ease forwards;
}

.pnsd .pnsd-analyzing__steps > li::before {
	content: "";
	display: block;
	position: absolute;
	left: 4px;
	top: 11px;
	width: 10px;
	height: 5px;
	border: solid var(--pnsd-primary);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
}

/* ---------------------------------------------------------------- Result */

.pnsd .pnsd-result {
	overflow: hidden;
}

.pnsd .pnsd-r-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 48px 56px;
	background-color: var(--pnsd-navy);
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	color: #fff;
}

.pnsd .pnsd-r-hero__label {
	display: inline-block;
	padding: 2px 12px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.pnsd .pnsd-r-hero__pre {
	margin-top: 20px;
	font-size: 16px;
	opacity: 0.9;
}

.pnsd .pnsd-r-hero__title {
	margin-top: 6px;
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.35;
	font-feature-settings: "palt";
}

.pnsd .pnsd-r-hero__bracket {
	color: #8fc0ec;
	font-weight: 400;
}

.pnsd .pnsd-r-hero__post {
	margin-top: 4px;
	font-size: 16px;
	opacity: 0.9;
}

.pnsd .pnsd-r-hero__tagline {
	margin-top: 20px;
	padding-left: 14px;
	border-left: 2px solid #8fc0ec;
	font-size: 15px;
	line-height: 1.7;
}

.pnsd .pnsd-r-hero__summary {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.8;
	opacity: 0.92;
}

.pnsd .pnsd-r-hero__score {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 168px;
	height: 168px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.05);
}

.pnsd .pnsd-r-hero__score-label {
	font-size: 12px;
	letter-spacing: 0.08em;
	opacity: 0.85;
}

.pnsd .pnsd-r-hero__score-num {
	font-family: var(--pnsd-num);
	line-height: 1.1;
}

.pnsd .pnsd-r-hero__score-num strong {
	font-size: 56px;
	font-weight: 700;
}

.pnsd .pnsd-r-hero__score-num small {
	margin-left: 2px;
	font-size: 14px;
	opacity: 0.75;
}

.pnsd .pnsd-r-section {
	padding: 48px 56px;
	border-top: 1px solid var(--pnsd-line);
}

.pnsd .pnsd-r-section--accent {
	background: var(--pnsd-soft);
}

.pnsd .pnsd-r-section__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--pnsd-primary);
	font-family: var(--pnsd-num);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.pnsd .pnsd-r-section__no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 22px;
	padding: 0 6px;
	border-radius: 3px;
	background: var(--pnsd-primary);
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.pnsd .pnsd-r-section__title {
	margin-top: 10px;
	color: var(--pnsd-ink);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	font-feature-settings: "palt";
}

.pnsd .pnsd-r-section__lead {
	margin-top: 8px;
	color: var(--pnsd-muted);
	font-size: 14px;
}

.pnsd .pnsd-r-section__body {
	margin-top: 28px;
}

.pnsd .pnsd-text {
	font-size: 15px;
	line-height: 1.9;
}

/* Overview */

.pnsd .pnsd-overview {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 40px;
	align-items: center;
}

.pnsd .pnsd-overview__chart {
	max-width: 360px;
	margin: 0 auto;
	width: 100%;
}

.pnsd .pnsd-radar {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.pnsd .pnsd-radar__grid {
	fill: none;
	stroke: var(--pnsd-line);
	stroke-width: 1;
}

.pnsd .pnsd-radar__grid.is-outer {
	stroke: var(--pnsd-line-strong);
}

.pnsd .pnsd-radar__axis {
	stroke: var(--pnsd-line);
	stroke-width: 1;
}

.pnsd .pnsd-radar__area {
	fill: rgba(21, 111, 191, 0.14);
	stroke: var(--pnsd-primary);
	stroke-width: 2;
	stroke-linejoin: round;
}

.pnsd .pnsd-radar__dot {
	fill: #fff;
	stroke: var(--pnsd-primary);
	stroke-width: 2;
}

.pnsd .pnsd-radar__dot.is-top {
	fill: var(--pnsd-primary);
}

.pnsd .pnsd-radar__label {
	fill: var(--pnsd-muted);
	font-size: 12px;
	font-weight: 700;
}

.pnsd .pnsd-radar__label.is-top {
	fill: var(--pnsd-primary);
}

.pnsd .pnsd-radar__value {
	font-family: var(--pnsd-num);
	font-size: 13px;
}

.pnsd .pnsd-bars > li {
	padding: 12px 0;
	border-bottom: 1px solid var(--pnsd-line);
}

.pnsd .pnsd-bars > li:first-child {
	padding-top: 0;
}

.pnsd .pnsd-bars__label {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pnsd .pnsd-bars__title {
	color: var(--pnsd-ink);
	font-size: 15px;
	font-weight: 500;
}

.pnsd li.pnsd-bars__item.is-top .pnsd-bars__title {
	font-weight: 700;
}

.pnsd .pnsd-bars__score {
	margin-left: auto;
	color: var(--pnsd-ink);
	font-family: var(--pnsd-num);
	white-space: nowrap;
}

.pnsd .pnsd-bars__score strong {
	font-size: 22px;
	font-weight: 700;
}

.pnsd li.pnsd-bars__item.is-top .pnsd-bars__score strong {
	color: var(--pnsd-primary);
}

.pnsd .pnsd-bars__score small {
	margin-left: 2px;
	color: var(--pnsd-muted);
	font-family: var(--pnsd-font);
	font-size: 12px;
}

.pnsd .pnsd-bars__track {
	height: 8px;
	margin-top: 6px;
	overflow: hidden;
	border-radius: 4px;
	background: var(--pnsd-soft-2);
}

.pnsd .pnsd-bars__fill {
	display: block;
	height: 100%;
	border-radius: 4px;
	background: var(--pnsd-steel);
	opacity: 0.55;
	transform-origin: left center;
	animation: pnsd-grow 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.pnsd li.pnsd-bars__item.is-top .pnsd-bars__fill {
	background: var(--pnsd-primary);
	opacity: 1;
}

.pnsd .pnsd-related {
	margin-top: 36px;
}

.pnsd .pnsd-related__head {
	color: var(--pnsd-ink);
	font-size: 16px;
	font-weight: 700;
}

.pnsd .pnsd-related__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 14px;
}

.pnsd .pnsd-related__card {
	padding: 20px 22px;
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: #fff;
}

.pnsd .pnsd-related__rank {
	color: var(--pnsd-steel);
	font-size: 12px;
	font-weight: 700;
	font-feature-settings: "tnum";
}

.pnsd .pnsd-related__title {
	margin-top: 4px;
	color: var(--pnsd-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.pnsd .pnsd-related__tagline {
	margin-top: 6px;
	color: var(--pnsd-muted);
	font-size: 13px;
	line-height: 1.7;
}

.pnsd .pnsd-related__action {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--pnsd-line);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.6;
}

.pnsd .pnsd-related__action span {
	display: block;
	color: var(--pnsd-muted);
	font-size: 11px;
	font-weight: 500;
}

/* Why */

.pnsd .pnsd-why__lead {
	color: var(--pnsd-ink);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	font-feature-settings: "palt";
}

.pnsd .pnsd-why__points {
	margin-top: 24px;
	padding: 24px 28px;
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: #fff;
}

.pnsd .pnsd-why__points-head {
	color: var(--pnsd-navy-2);
	font-size: 13px;
	font-weight: 700;
}

.pnsd .pnsd-why__note,
.pnsd .pnsd-why__closing {
	margin-top: 20px;
	font-size: 15px;
	line-height: 1.9;
}

.pnsd .pnsd-why__note {
	padding: 12px 16px;
	border-left: 3px solid var(--pnsd-steel);
	background: #fff;
	font-size: 14px;
}

/* Lists */

.pnsd .pnsd-list {
	margin-top: 10px;
}

.pnsd .pnsd-list > li {
	position: relative;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	line-height: 1.8;
}

.pnsd .pnsd-list > li + li {
	border-top: 1px dashed var(--pnsd-line);
}

.pnsd .pnsd-list--check > li::before {
	content: "";
	display: block;
	position: absolute;
	left: 4px;
	top: 19px;
	width: 12px;
	height: 6px;
	border: solid var(--pnsd-primary);
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
}

.pnsd .pnsd-list--issue {
	margin-top: 0;
}

.pnsd .pnsd-list--issue > li {
	padding: 16px 20px 16px 52px;
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: #fff;
}

.pnsd .pnsd-list--issue > li + li {
	margin-top: 10px;
	border-top: 1px solid var(--pnsd-line);
}

.pnsd .pnsd-list--issue > li::before {
	content: "!";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 18px;
	top: 18px;
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--pnsd-warn);
	border-radius: 50%;
	color: var(--pnsd-warn);
	font-family: var(--pnsd-num);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

/* Facts */

.pnsd .pnsd-facts {
	margin-top: 24px;
	border-top: 1px solid var(--pnsd-line);
}

.pnsd .pnsd-facts__row {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--pnsd-line);
	font-size: 14px;
}

.pnsd .pnsd-facts dt {
	color: var(--pnsd-muted);
	font-weight: 500;
}

.pnsd .pnsd-facts dd {
	margin: 0;
	color: var(--pnsd-ink);
	font-weight: 700;
}

/* Potentials */

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

.pnsd li.pnsd-potentials__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid var(--pnsd-line);
	border-left: 3px solid var(--pnsd-primary);
	border-radius: var(--pnsd-radius);
	background: #fff;
	color: var(--pnsd-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}

.pnsd .pnsd-potentials__no {
	flex: 0 0 auto;
	color: var(--pnsd-steel);
	font-family: var(--pnsd-num);
	font-size: 13px;
	line-height: 1.85;
}

/* Steps */

.pnsd .pnsd-steps {
	position: relative;
}

.pnsd li.pnsd-steps__item {
	position: relative;
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 24px;
	padding-bottom: 28px;
}

.pnsd li.pnsd-steps__item:last-child {
	padding-bottom: 0;
}

.pnsd li.pnsd-steps__item:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	left: 47px;
	top: 48px;
	bottom: 4px;
	width: 1px;
	background: var(--pnsd-line-strong);
}

.pnsd .pnsd-steps__label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 96px;
	height: 44px;
	border-radius: var(--pnsd-radius);
	background: var(--pnsd-navy);
	color: #fff;
	font-family: var(--pnsd-num);
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1;
}

.pnsd .pnsd-steps__label strong {
	font-size: 18px;
}

.pnsd .pnsd-steps__body {
	padding: 4px 0 0;
}

.pnsd .pnsd-steps__title {
	color: var(--pnsd-ink);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

.pnsd .pnsd-steps__detail {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.9;
}

/* Experts */

.pnsd .pnsd-experts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pnsd li.pnsd-experts__item {
	padding: 18px 20px;
	border: 1px solid var(--pnsd-line);
	border-radius: var(--pnsd-radius);
	background: var(--pnsd-soft);
}

.pnsd .pnsd-experts__label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--pnsd-navy);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.pnsd .pnsd-experts__desc {
	margin-top: 6px;
	color: var(--pnsd-muted);
	font-size: 13px;
	line-height: 1.7;
}

/* CTA */

.pnsd .pnsd-cta {
	padding: 56px;
	background-color: var(--pnsd-navy);
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	color: #fff;
	text-align: center;
}

.pnsd .pnsd-cta__eyebrow {
	color: #8fc0ec;
	font-family: var(--pnsd-num);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.pnsd .pnsd-cta__title {
	margin-top: 8px;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
}

.pnsd .pnsd-cta__text {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.9;
	opacity: 0.92;
}

.pnsd .pnsd-cta__theme {
	display: inline-block;
	margin-top: 20px;
	padding: 6px 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	font-size: 13px;
}

.pnsd .pnsd-cta__theme strong {
	font-weight: 700;
}

.pnsd .pnsd-btn--cta {
	display: flex;
	width: 100%;
	max-width: 400px;
	min-height: 64px;
	margin: 24px auto 0;
	background: #fff;
	border-color: #fff;
	color: var(--pnsd-navy);
	font-size: 17px;
}

.pnsd .pnsd-btn--cta:hover,
.pnsd .pnsd-btn--cta:focus {
	background: var(--pnsd-soft-2);
	border-color: var(--pnsd-soft-2);
	color: var(--pnsd-navy);
}

.pnsd .pnsd-btn--cta:hover .pnsd-btn__arrow {
	transform: translateX(3px);
}

.pnsd .pnsd-cta__note {
	margin-top: 12px;
	font-size: 12px;
	opacity: 0.8;
}

.pnsd .pnsd-r-footer {
	padding: 28px 56px 36px;
	border-top: 1px solid var(--pnsd-line);
	background: var(--pnsd-soft);
}

.pnsd .pnsd-r-footer__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.pnsd .pnsd-r-footer__note {
	margin-top: 16px;
	color: var(--pnsd-muted);
	font-size: 12px;
	line-height: 1.7;
	text-align: center;
}

.pnsd .pnsd-r-footer__note + .pnsd-r-footer__note {
	margin-top: 4px;
}

/* ------------------------------------------------------------ Animations */

@keyframes pnsd-enter {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

@keyframes pnsd-fade {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: none; }
}

@keyframes pnsd-grow {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

@keyframes pnsd-bar {
	0%, 100% { opacity: 0.25; transform: scaleY(0.35); }
	50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
	.pnsd *,
	.pnsd *::before,
	.pnsd *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ------------------------------------------------------------ Responsive */

@media (max-width: 900px) {
	.pnsd .pnsd-intro__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
		padding: 40px 32px 32px;
	}

	.pnsd .pnsd-intro__themes {
		padding: 24px 32px 32px;
	}

	.pnsd .pnsd-themes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pnsd .pnsd-overview {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.pnsd .pnsd-experts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pnsd .pnsd-r-hero,
	.pnsd .pnsd-r-section,
	.pnsd .pnsd-cta {
		padding-left: 32px;
		padding-right: 32px;
	}

	.pnsd .pnsd-q__head,
	.pnsd .pnsd-q__body,
	.pnsd .pnsd-q__nav {
		padding-left: 32px;
		padding-right: 32px;
	}

	.pnsd .pnsd-lead__head,
	.pnsd .pnsd-lead__form {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (max-width: 640px) {
	.pnsd {
		font-size: 15px;
		--pnsd-scroll-offset: 72px;
	}

	.pnsd .pnsd-screen {
		border-radius: 4px;
	}

	.pnsd .pnsd-intro__grid {
		padding: 32px 20px 24px;
	}

	.pnsd .pnsd-intro__title {
		font-size: 24px;
	}

	.pnsd .pnsd-intro__catch {
		font-size: 19px;
	}

	.pnsd .pnsd-intro__panel {
		padding: 20px;
	}

	.pnsd .pnsd-intro__actions .pnsd-btn {
		width: 100%;
	}

	.pnsd .pnsd-intro__themes {
		padding: 20px 20px 28px;
	}

	.pnsd .pnsd-themes {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
	}

	.pnsd .pnsd-themes > li {
		display: flex;
		align-items: baseline;
		gap: 12px;
		padding: 10px 14px;
		border-top-width: 1px;
		border-left: 3px solid var(--pnsd-steel);
	}

	.pnsd .pnsd-themes__title {
		margin-top: 0;
	}

	.pnsd .pnsd-q__head {
		padding: 18px 20px 0;
	}

	.pnsd .pnsd-q__body {
		padding: 24px 20px 16px;
	}

	.pnsd .pnsd-q__text {
		font-size: 19px;
	}

	.pnsd .pnsd-options {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		margin-top: 20px;
	}

	.pnsd .pnsd-option,
	.pnsd .pnsd-options--dense .pnsd-option {
		min-height: 52px;
		padding: 12px 14px;
	}

	.pnsd .pnsd-q__nav {
		padding: 14px 20px;
		gap: 10px;
	}

	.pnsd .pnsd-q__nav .pnsd-btn {
		padding-left: 16px;
		padding-right: 16px;
	}

	.pnsd .pnsd-q__nav .pnsd-btn--primary {
		min-width: 0;
		flex: 1 1 auto;
		max-width: 60%;
	}

	.pnsd .pnsd-q__count-selected {
		display: none;
	}

	.pnsd .pnsd-lead__head {
		padding: 24px 20px 0;
	}

	.pnsd .pnsd-lead__title {
		font-size: 20px;
	}

	.pnsd .pnsd-lead__form {
		padding: 20px 20px 28px;
	}

	.pnsd .pnsd-field__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.pnsd .pnsd-field--half {
		grid-column: 1 / -1;
	}

	.pnsd .pnsd-lead__nav {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.pnsd .pnsd-lead__nav .pnsd-btn {
		width: 100%;
		min-width: 0;
	}

	.pnsd .pnsd-analyzing {
		padding: 56px 20px;
	}

	.pnsd .pnsd-r-hero {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding: 36px 20px;
	}

	.pnsd .pnsd-r-hero__title {
		font-size: 26px;
	}

	.pnsd .pnsd-r-hero__score {
		flex-direction: row;
		align-items: baseline;
		gap: 12px;
		width: auto;
		height: auto;
		padding: 10px 18px;
		border-radius: var(--pnsd-radius);
		box-shadow: none;
	}

	.pnsd .pnsd-r-hero__score-num strong {
		font-size: 36px;
	}

	.pnsd .pnsd-r-section {
		padding: 36px 20px;
	}

	.pnsd .pnsd-r-section__title {
		font-size: 20px;
	}

	.pnsd .pnsd-r-section__body {
		margin-top: 20px;
	}

	.pnsd .pnsd-why__lead {
		font-size: 16px;
	}

	.pnsd .pnsd-why__points {
		padding: 18px 18px;
	}

	.pnsd .pnsd-related__list,
	.pnsd .pnsd-potentials,
	.pnsd .pnsd-experts {
		grid-template-columns: minmax(0, 1fr);
	}

	.pnsd .pnsd-facts__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 2px;
	}

	.pnsd li.pnsd-steps__item {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		padding-left: 0;
	}

	.pnsd li.pnsd-steps__item:not(:last-child)::after {
		display: none;
	}

	.pnsd .pnsd-steps__label {
		width: auto;
		height: 30px;
		justify-self: start;
		padding: 0 12px;
	}

	.pnsd .pnsd-steps__label strong {
		font-size: 15px;
	}

	.pnsd li.pnsd-steps__item + .pnsd-steps__item {
		padding-top: 24px;
		border-top: 1px dashed var(--pnsd-line);
	}

	.pnsd .pnsd-cta {
		padding: 40px 20px;
	}

	.pnsd .pnsd-cta__title {
		font-size: 22px;
	}

	.pnsd .pnsd-r-footer {
		padding: 24px 20px 28px;
	}

	.pnsd .pnsd-r-footer__actions .pnsd-btn {
		width: 100%;
	}
}

/* ------------------------------------------------------------------ Print */

@media print {
	.pnsd {
		max-width: none;
		font-size: 11pt;
	}

	.pnsd .pnsd-screen {
		border: 0;
		box-shadow: none;
	}

	.pnsd .pnsd-r-hero,
	.pnsd .pnsd-cta {
		background: #fff !important;
		color: var(--pnsd-ink) !important;
		border: 1px solid var(--pnsd-line);
	}

	.pnsd .pnsd-r-hero__title,
	.pnsd .pnsd-cta__title {
		color: var(--pnsd-ink) !important;
	}

	.pnsd .pnsd-r-hero__score {
		border-color: var(--pnsd-line-strong);
	}

	.pnsd .pnsd-r-footer__actions,
	.pnsd .pnsd-btn--cta .pnsd-btn__arrow {
		display: none !important;
	}

	.pnsd .pnsd-btn--cta {
		border: 1px solid var(--pnsd-line-strong);
	}

	.pnsd .pnsd-r-section,
	.pnsd li.pnsd-steps__item,
	.pnsd .pnsd-related__card {
		break-inside: avoid;
	}

	.pnsd .pnsd-bars__fill {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
