/**
 * 40歳からの自分発見塾 LP — Figma ワイヤーフレーム準拠
 * プレフィックス: lp40-
 */

/* ===== Tokens (Figma) ===== */
.lp40-page {
	--lp40-primary: #00b5bd;
	--lp40-accent: #f87171;
	--lp40-consult: #60a5fa;
	--lp40-text: #1a1a1a;
	--lp40-text-sub: #4a4a4a;
	--lp40-muted: #6b7280;
	--lp40-gray: #99a1af;
	--lp40-bg: #f8f8f8;
	--lp40-bg-alt: #ffffff;
	--lp40-card: #f9fafb;
	--lp40-border: #e5e7eb;
	--lp40-tag-bg: #d1edee;
	--lp40-font: "Noto Sans JP", sans-serif;
	--lp40-w: min(1200px, calc(100% - 48px));
	--lp40-header-h: 72px;
	--lp40-radius: 14px;
	--lp40-radius-lg: 24px;
	--lp40-radius-xl: 51px;
	--lp40-shadow-sm: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
	--lp40-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--lp40-shadow-text: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lp40-page,
.lp40-page * { box-sizing: border-box; }

.lp40-page {
	margin: 0;
	font-family: var(--lp40-font);
	font-size: 16px;
	line-height: 1.75;
	color: var(--lp40-text-sub);
	background: var(--lp40-bg);
	-webkit-font-smoothing: antialiased;
}

.lp40-page small {
	font-size: 1em; /* Prevent browser from shrinking <small> tags further unless explicitly styled */
}

.lp40-page #header,
.lp40-page #footer,
.lp40-page #return_top,
.lp40-page #header_message { display: none !important; }

.lp40 { overflow-x: hidden; }
.lp40-container { width: var(--lp40-w); margin-inline: auto; }
.lp40-main { padding-top: var(--lp40-header-h); }

/* Utilities */
.lp40-text-primary { color: var(--lp40-primary); }
.required { color: #FB2C36; }
.optional { color: #99A1AF; }

/* ===== Section heading (Figma: 48px center) ===== */
.lp40-section-head {
	margin-bottom: 3rem;
	text-align: center;
}

.lp40-section-head__title {
	margin: 0;
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--lp40-text);
}

.lp40-section-head__accent {
	display: block;
	width: 48px;
	height: 6px;
	margin: 1rem auto 0;
	border-radius: 999px;
	background: var(--lp40-primary);
}

/* ===== Header ===== */
.lp40-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--lp40-header-h);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lp40-border);
}

.lp40-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1rem;
}

.lp40-header__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--lp40-text);
}

.lp40-header__logo-img { display: block; height: 32px; width: auto; }

.lp40-header__logo-text {
	font-weight: 700;
	font-size: 1rem;
}

.lp40-header__nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.lp40-header__nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp40-text-sub);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}

.lp40-header__nav-link:hover { color: var(--lp40-primary); }

.lp40-header__nav-link--cta {
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	background: var(--lp40-primary);
	color: #fff !important;
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-hamburger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 101;
}

.lp40-hamburger__line {
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--lp40-text);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.lp40-hamburger__line:nth-child(1) { top: 14px; }
.lp40-hamburger__line:nth-child(2) { top: 21px; }
.lp40-hamburger__line:nth-child(3) { top: 28px; }

.lp40-hamburger[aria-expanded="true"] .lp40-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp40-hamburger[aria-expanded="true"] .lp40-hamburger__line:nth-child(2) { opacity: 0; }
.lp40-hamburger[aria-expanded="true"] .lp40-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp40-mobile-menu {
	display: none;
	position: fixed;
	top: var(--lp40-header-h);
	left: 0;
	width: 100%;
	height: calc(100vh - var(--lp40-header-h));
	background: #fff;
	z-index: 99;
	overflow-y: auto;
	padding: 2rem 1.5rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.lp40-mobile-menu.is-active {
	opacity: 1;
	visibility: visible;
}

.lp40-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.lp40-mobile-menu__link {
	font-size: 1rem;
	font-weight: 700;
	color: var(--lp40-text);
	text-decoration: none;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--lp40-border);
}

/* ===== Buttons (Figma: 372×88, radius 14) ===== */
.lp40-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: min(372px, 100%);
	min-height: 88px;
	padding: 20px 32px 16px;
	border-radius: var(--lp40-radius);
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	box-shadow: var(--lp40-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp40-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15);
}

.lp40-btn__label { font-size: 1.25rem; line-height: 1.4; color: #fff; }
.lp40-btn__sub { font-size: 0.875rem; font-weight: 500; line-height: 1.33; opacity: 0.9; color: #fff; }
.lp40-btn--primary { background: var(--lp40-primary); }
.lp40-btn--accent { background: var(--lp40-accent); }
.lp40-btn--consult { background: var(--lp40-consult); }
.lp40-btn--block { display: flex; width: 100%; min-width: 0; }
.lp40-btn--lg { min-height: 64px; padding: 1rem 2.5rem; }
.lp40-btn--lg .lp40-btn__label { font-size: 1.125rem; }

.lp40-btn--inline {
	min-width: auto;
	min-height: 48px;
	padding: 12px 28px;
}

.lp40-btn--outline {
	background: #fff;
	border: 2px solid var(--lp40-primary);
	border-radius: 999px;
	box-shadow: none;
}

.lp40-btn--outline .lp40-btn__label {
	color: var(--lp40-primary);
}

.lp40-btn--outline:hover {
	background: rgba(0, 181, 189, 0.05);
	box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.lp40-btn--inline .lp40-btn__label { font-size: 1rem; }

.lp40-btn--disabled {
	background: #c5c9d0;
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
}

.lp40-btn--disabled:hover {
	transform: none;
	box-shadow: none;
}

.lp40-link { color: var(--lp40-primary); font-weight: 600; text-underline-offset: 3px; }

/* ===== Hero (Figma KV) ===== */
.lp40-hero {
	position: relative;
	min-height: min(1200px, 65vh);
	background: #69b9b6;
	overflow: hidden;
}

.lp40-hero__visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
}

.lp40-hero__visual-img,
.lp40-hero__visual-placeholder {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 0;
}

.lp40-hero__visual-placeholder {
	background: linear-gradient(135deg, #d9d9d9 0%, #eef7f7 100%);
}

.lp40-hero__wave {
	position: absolute;
	bottom: -1px; /* Avoid 1px gap rendering issue */
	left: 0;
	width: 100%;
	height: auto;
	max-height: 100px;
	display: block;
	z-index: 1;
}

.lp40-hero__grid {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: min(1009px, 100vh);
	padding-block: 6rem 4rem;
}

.lp40-hero__panel {
	width: min(920px, 100%);
	padding: clamp(2rem, 5vw, 3.5rem);
	background: rgba(255, 255, 255, 0.76);
	border-radius: var(--lp40-radius-xl);
	box-shadow: var(--lp40-shadow-sm);
	text-align: center;
}

.lp40-hero__badge {
	display: inline-block;
	margin: 0 0 1rem;
	color: var(--lp40-text-sub);
	font-size: clamp(1.25rem, 4vw, 30px);
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.43;
}

.lp40-hero__title {
	margin: 0 0 1.5rem;
	font-size: clamp(3.5rem, 7vw, 6.0rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--lp40-text-sub);
	text-shadow: var(--lp40-shadow-text);
}

.lp40-hero__mid-badge {
	display: inline-block;
	margin: 0 auto 1.5rem;
	padding: 0.5rem 1.5rem;
	background: var(--lp40-text-sub);
	color: #fff;
	font-size: clamp(1rem, 3vw, 1.25rem);
	font-weight: 700;
	line-height: 1.5;
}

.lp40-hero__mid-badge small {
	font-size: 0.85em;
	font-weight: 500;
}

.lp40-hero__lead {
	margin: 0 auto 2.5rem;
	max-width: 768px;
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	line-height: 1.625;
	color: var(--lp40-text-sub);
}

.lp40-hero__cta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	justify-content: center;
}

.lp40-hero__cta .lp40-btn {
	min-width: 0;
	width: 100%;
}

.lp40-hero__cta-main {
	grid-column: 1 / -1;
}

.lp40-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.lp40-hero__scroll-icon {
	display: block;
	width: 40px;
	height: 24px;
	border: 2px solid var(--lp40-primary);
	border-radius: 20px;
	position: relative;
	opacity: 0.8;
}

.lp40-hero__scroll-icon::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: var(--lp40-primary);
	animation: lp40-bounce 1.5s infinite;
}

@keyframes lp40-bounce {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50% { transform: translateY(6px); opacity: 0.5; }
}

/* ===== Sections ===== */
.lp40-section {
	padding: clamp(4rem, 8vw, 6rem) 0;
}

.lp40-section:nth-child(even) { background: var(--lp40-bg-alt); }

.lp40-prose p + p { margin-top: 1em; }

/* Intro */
.lp40-intro__body {
	max-width: 768px;
	margin-inline: auto;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625;
	color: var(--lp40-text-sub);
}

.lp40-intro__video {
	margin-top: 2.5rem;
	text-align: center;
}

.lp40-intro__video-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	border-radius: var(--lp40-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp40-shadow);
	background: #000;
}

.lp40-intro__video-element {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.lp40-intro__video-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 10;
}

.lp40-intro__video-overlay:hover {
	background: rgba(0, 0, 0, 0.4);
}

.lp40-intro__video-overlay.is-hidden {
	display: none;
}

.lp40-intro__video-play {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s;
}

.lp40-intro__video-overlay:hover .lp40-intro__video-play {
	transform: scale(1.05);
}

.lp40-intro__video-play::after {
	content: "";
	display: block;
	margin-left: 6px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid var(--lp40-primary);
}

.lp40-intro__video-caption {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--lp40-muted);
}

/* Worries */
.lp40-worries__list {
	display: grid;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto 4rem;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.lp40-worries__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

.lp40-worries__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 1.25rem 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-worries__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-top: 0.15em;
	color: var(--lp40-primary);
	display: flex;
}

.lp40-worries__text { flex: 1; font-size: 1rem; line-height: 1.7; }

/* Crisis */
.lp40-crisis {
	margin-top: 4rem;
	padding: clamp(2rem, 5vw, 4rem);
	background: #d1edee;
	border-radius: var(--lp40-radius-lg);
}

.lp40-crisis__heading {
	margin: 0 0 1rem;
	font-size: 1.375rem;
	font-weight: 700;
	text-align: center;
	color: var(--lp40-text);
}

.lp40-crisis__lead {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.lp40-crisis__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 2.5rem 0;
}

.lp40-crisis__card {
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius);
	border: 1px solid var(--lp40-border);
}

.lp40-crisis__card-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--lp40-primary);
}

.lp40-crisis__card-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: var(--lp40-accent);
	border-radius: 50%;
}

.lp40-crisis__card-desc { margin: 0; font-size: 0.9375rem; line-height: 1.6; }

.lp40-crisis__prescription-label { 
	margin: 3.5rem 0 1.5rem; 
	font-size: 1.125rem; 
	font-weight: 700;
	text-align: center;
	color: var(--lp40-text);
}

.lp40-crisis__prescription-box {
	margin: 0 auto 1.5rem;
	padding: 3rem 2rem;
	max-width: 840px;
	text-align: center;
	background: var(--lp40-primary);
	color: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: 0 8px 24px rgba(0, 181, 189, 0.2);
}

.lp40-crisis__prescription-list {
	margin: 0 0 2rem;
	font-size: clamp(1.25rem, 4vw, 1.75rem);
	line-height: 1.8;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.lp40-crisis__prescription-list--left {
	display: inline-block;
	text-align: left;
}

.lp40-crisis__prescription-summary { 
	margin: 0; 
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.8; 
}

.lp40-stats {
	margin-top: 3rem;
	padding: 2.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow);
}

.lp40-stats__heading {
	margin: 0 0 2rem;
	font-weight: 700;
	font-size: 1.125rem;
	text-align: center;
	color: var(--lp40-text);
}

.lp40-stats__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.lp40-stats__num {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--lp40-primary);
	text-align: center;
}

.lp40-stats__label { margin: 0.5rem 0 0; font-size: 0.875rem; text-align: center; }
.lp40-stats__note { font-size: 0.9375rem; line-height: 1.8; color: var(--lp40-muted); }
.lp40-stats__source { margin-top: 1rem; font-size: 0.875rem; color: var(--lp40-gray); }

/* Recommend */
.lp40-recommend__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.lp40-recommend__card {
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius);
	border: 1px solid var(--lp40-border);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-recommend__card-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 0 1.25rem;
}

.lp40-recommend__card-icon {
	display: inline-flex;
	max-width: 48px;
}

.lp40-recommend__card-icon img {
	width: 100%;
	height: auto;
}

.lp40-recommend__card-title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--lp40-text);
}

.lp40-recommend__list { 
	margin: 0; 
	padding: 0; 
	list-style: none;
	font-size: 0.9375rem; 
}
.lp40-recommend__list li {
	position: relative;
	padding-left: 1rem;
}
.lp40-recommend__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--lp40-accent);
}
.lp40-recommend__list li + li { margin-top: 0.625rem; }

.lp40-recommend__note {
	margin-top: 2.5rem;
	padding: 1.75rem;
	text-align: center;
	background: #d1edee;
	border-radius: var(--lp40-radius-lg);
	border: none;
}

.lp40-recommend__note-title { margin: 0 0 0.5rem; font-weight: 700; color: var(--lp40-text); }

/* Results */
.lp40-results__image-wrap {
	margin: 0 auto 3rem;
	text-align: center;
}

.lp40-results__image {
	width: 100%;
	height: auto;
	max-height: 760px;
	object-fit: cover;
	object-position: center;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
	display: block;
	margin: 0 auto;
}

.lp40-results__blocks { display: grid; gap: 2rem; }

.lp40-results__block {
	padding: 2rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow);
}

.lp40-results__block--green {
	background: #f4f9f9;
	box-shadow: none;
}

/* Block Head */
.lp40-results__block-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

.lp40-results__block-head-left .lp40-results__block-title {
	margin-bottom: 0.5rem;
}
.lp40-results__block-head-left .lp40-results__highlight {
	margin-bottom: 0;
}

.lp40-results__score-box {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.25rem 2rem;
	background: #fff;
	border-radius: var(--lp40-radius);
	border: 1px solid var(--lp40-border);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-results__score-item {
	text-align: center;
}
.lp40-results__box-label {
	display: block;
	font-size: 0.875rem;
	color: var(--lp40-muted);
	margin-bottom: 0.25rem;
}
.lp40-results__box-num {
	font-size: 2rem;
	font-weight: 700;
	color: #9ca3af;
	line-height: 1;
}
.lp40-results__box-num small {
	font-size: 0.875rem;
	font-weight: 500;
}
.lp40-results__box-num--primary {
	color: var(--lp40-primary);
}
.lp40-results__score-arrow {
	display: flex;
	color: var(--lp40-primary);
	opacity: 0.7;
}

/* Histograms */
.lp40-histograms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.lp40-histogram {
	background: #fff;
	border: 1px solid var(--lp40-border);
	border-radius: var(--lp40-radius);
	padding: 1.5rem;
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-histogram__title {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
	color: var(--lp40-text);
}
.lp40-histogram__title small {
	font-weight: 500;
	color: var(--lp40-text);
}
.lp40-histogram__title--primary {
	color: var(--lp40-primary);
}
.lp40-histogram__title--primary small {
	color: var(--lp40-primary);
}
.lp40-histogram__title--blue {
	color: #60a5fa;
}
.lp40-histogram__title--blue small {
	color: #60a5fa;
}

.lp40-histogram__chart {
	position: relative;
	height: 180px;
	margin-left: 24px;
	margin-bottom: 24px;
}

.lp40-histogram__grid {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.lp40-histogram__grid-line {
	position: relative;
	width: 100%;
	border-top: 1px dashed var(--lp40-border);
}
.lp40-histogram__grid-line:last-child {
	border-top: 1px solid var(--lp40-border);
}

.lp40-histogram__y-label {
	position: absolute;
	left: -24px;
	top: -8px;
	font-size: 0.875rem;
	color: var(--lp40-muted);
	width: 20px;
	text-align: right;
}

.lp40-histogram__bars {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 4px;
}

.lp40-histogram__bar-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
	position: relative;
	padding: 0 2px;
}

.lp40-histogram__bar {
	width: 100%;
	max-width: 24px;
	border-radius: 4px 4px 0 0;
}

.lp40-histogram__x-label {
	position: absolute;
	bottom: -24px;
	font-size: 0.875rem;
	color: var(--lp40-muted);
}

.lp40-histograms__notes {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	align-items: flex-start;
	color: var(--lp40-muted);
}
.lp40-histograms__note-left,
.lp40-histograms__note-right {
	text-align: left;
	line-height: 1.4;
}
.lp40-histograms__note-center {
	text-align: center;
	max-width: 600px;
	margin: 0 1rem;
}

.lp40-results__block-title {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--lp40-text);
}

.lp40-results__highlight { margin: 0 0 1.5rem; font-size: 1.0625rem; }
.lp40-results__highlight strong { color: var(--lp40-primary); font-weight: 700; }

.lp40-results__scores {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.lp40-results__score {
	flex: 1;
	padding: 1.25rem;
	text-align: center;
	background: var(--lp40-card);
	border-radius: var(--lp40-radius);
}

.lp40-results__score--after { background: var(--lp40-tag-bg); }

.lp40-results__score-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	color: var(--lp40-muted);
}

.lp40-results__score-num {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--lp40-primary);
}

.lp40-results__score-num small { font-size: 0.5em; font-weight: 500; }

.lp40-results__bars { margin-bottom: 1.5rem; }
.lp40-results__bar-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.lp40-results__bar-row-label { width: 64px; flex-shrink: 0; font-size: 0.875rem; font-weight: 700; color: var(--lp40-text); }
.lp40-results__bar-row-value { width: 48px; flex-shrink: 0; font-size: 1rem; font-weight: 700; color: var(--lp40-text); text-align: right; }
.lp40-results__bar-row-value--primary { color: var(--lp40-primary); }
.lp40-results__bar-row-value--accent { color: var(--lp40-accent); }

.lp40-results__chart { width: 100%; height: auto; border-radius: var(--lp40-radius); }

.lp40-results__scale,
.lp40-results__moyamoya-note,
.lp40-results__footnote {
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--lp40-muted);
	text-align: center;
}

/* CSS for new blocks ③ and ④ */
.lp40-results__grid-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.lp40-results__block-title--center {
	text-align: center;
	margin-bottom: 2.5rem;
}

.lp40-results__pie-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lp40-results__pie-chart-wrap--lg {
	width: 220px;
	height: 220px;
	margin-bottom: 2rem;
}

/* Change pie: 28% Salmon (0-28%), 5% Black (28-33%), 27% Teal (33-60%), 40% Purple (60-100%) */
.lp40-participants__pie--change {
	background: conic-gradient(var(--lp40-accent) 0% 28%, #4a4a4a 28% 33%, var(--lp40-primary) 33% 60%, #8884d8 60% 100%);
}
.lp40-participants__pie--change .lp40-pie-label--c1 { top: 25%; left: 75%; }
.lp40-participants__pie--change .lp40-pie-label--c2 { top: 75%; left: 55%; }
.lp40-participants__pie--change .lp40-pie-label--c3 { top: 50%; left: 20%; }

.lp40-results__legend-bottom {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
	font-size: 0.875rem;
	color: var(--lp40-text-sub);
}
.lp40-results__legend-bottom li {
	display: flex;
	align-items: center;
	gap: 6px;
}
.lp40-results__legend-last {
	width: 100%;
	justify-content: center;
	margin-top: -0.5rem;
}

.lp40-results__challenge-container {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1rem;
	position: relative;
}

.lp40-results__challenge-container::after {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 0;
	right: 0;
	border-bottom: 1px dashed var(--lp40-border);
}

.lp40-results__challenge-row {
	display: flex;
	align-items: center;
}

.lp40-results__challenge-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lp40-results__challenge-fill {
	background: var(--lp40-accent);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 4px;
	min-height: 48px;
	display: flex;
	align-items: center;
}

.lp40-results__challenge-text {
	font-size: 0.9375rem;
	font-weight: 700;
	white-space: nowrap;
}

.lp40-results__challenge-num {
	margin-left: 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--lp40-text-sub);
}

@media (max-width: 1024px) {
	.lp40-results__grid-2col {
		grid-template-columns: 1fr;
	}
}

/* Program */
.lp40-program__lead {
	margin: 0 auto 1.5rem;
	text-align: center;
	font-size: clamp(1.5rem, 4vw, 36px);
	font-weight: 700;
	color: var(--lp40-primary);
	line-height: 1.4;
}

.lp40-program__sub {
	margin: 0 auto 1rem;
	text-align: center;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.lp40-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 3rem 0;
}

.lp40-steps__item {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	border: 1px solid #e5e7eb;
	box-shadow: var(--lp40-shadow);
}

.lp40-steps__img-wrap {
	margin-bottom: 1.5rem;
	text-align: center;
}

.lp40-steps__img {
	max-width: 100%;
	height: auto;
}

.lp40-steps__num {
	align-self: flex-start;
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.25rem 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	background: var(--lp40-primary);
	border-radius: 9999px;
}

.lp40-steps__title {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--lp40-text);
	line-height: 1.4;
}

.lp40-steps__desc { margin: 0; font-size: 0.875rem; line-height: 1.7; }

.lp40-curriculum {
	margin-top: 3rem;
}

.lp40-curriculum__summary {
	margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 500;
	font-size: 1.0625rem;
}

.lp40-curriculum__num { color: var(--lp40-primary); font-weight: 700; }
.lp40-curriculum__tags { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.lp40-curriculum__note { margin-top: 1rem; text-align: center; color: var(--lp40-muted); font-size: 0.875rem; }

.lp40-peer {
	margin-top: 3rem;
	padding: 2rem;
	background: #fff;
	border: 2px solid var(--lp40-tag-bg);
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-peer__title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--lp40-primary);
}

.lp40-peer__highlight,
.lp40-prose .lp40-peer__highlight {
	margin-top: 1.25rem !important;
	padding: 1rem 1.25rem;
	font-weight: 700;
	text-align: center;
	color: var(--lp40-primary);
	background: var(--lp40-tag-bg);
	border-radius: var(--lp40-radius);
}

/* Compare table */
.lp40-compare { margin-top: 3rem; }

.lp40-compare__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.5rem, 4vw, 36px);
	font-weight: 700;
	text-align: center;
	color: var(--lp40-primary);
}

/* Tables */
.lp40-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 1rem;
}

.lp40-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 0.9375rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp40-shadow-sm);
	border: 1px solid var(--lp40-border);
}

.lp40-table th,
.lp40-table td {
	padding: 1rem 2rem;
	border-bottom: 1px solid var(--lp40-border);
	text-align: left;
	vertical-align: top;
	line-height: 1.6;
}

.lp40-table thead th {
	background: var(--lp40-tag-bg);
	font-weight: 700;
	color: var(--lp40-text);
	font-size: 0.875rem;
}

.lp40-table__highlight,
.lp40-table thead .lp40-table__highlight {
	background: rgba(0, 181, 189, 0.08);
	color: var(--lp40-primary);
	color: #fff;
	font-weight: 700;
	border-left: 2px solid var(--lp40-primary);
	border-right: 2px solid var(--lp40-primary);
}

.lp40-table--compare thead .lp40-table__highlight {
	background: var(--lp40-primary);
	border-radius: var(--lp40-radius) var(--lp40-radius) 0 0;
	text-align: center;
}

.lp40-table--compare tbody .lp40-table__highlight {
	font-weight: 600;
	color: var(--lp40-text);
}

.lp40-table--compare thead th,
.lp40-table--compare td {
	text-align: center;
}

.lp40-table--compare tbody th {
	background: var(--lp40-card);
	font-weight: 600;
	color: var(--lp40-text);
	text-align: left;
	width: 12%;
	min-width: 120px;
}

.lp40-table--compare th, .lp40-table--compare td {
	min-width: 140px;
	vertical-align: middle;
}

.lp40-mark {
	display: block;
	font-size: 1.75rem;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.lp40-mark-text {
	display: block;
	font-size: 0.875rem;
	line-height: 1.6;
}

.lp40-table--spec th {
	width: 28%;
	background: var(--lp40-card);
	font-weight: 700;
	color: var(--lp40-text);
	white-space: nowrap;
}

.lp40-table--spec tr:last-child td,
.lp40-table--spec tr:last-child th { border-bottom: none; }

.lp40-table--curriculum th:nth-child(1) { width: 10%; }
.lp40-table--curriculum th:nth-child(2) { width: 25%; }
.lp40-table--curriculum th:nth-child(3) { width: 50%; }
.lp40-table--curriculum th:nth-child(4) { width: 15%; min-width: 100px; }

.lp40-table__discount-row td {
	color: var(--lp40-accent);
	font-weight: 600;
}

.lp40-tag {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--lp40-tag-bg);
	color: var(--lp40-primary);
	font-size: 0.875rem;
	font-weight: 600;
}

.lp40-tag--accent { background: #fee2e2; color: var(--lp40-accent); }
.lp40-tag--white { background: #fff; color: var(--lp40-primary); }

/* Participants */
.lp40-participants__lead {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.125rem;
	font-weight: 500;
}

.lp40-participants__lead-num {
	color: #00B5BD;
	font-size: 30px;
	font-weight: 700;
}

.lp40-participants__chart { width: 100%; height: auto; border-radius: var(--lp40-radius-lg); }

.lp40-participants__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.lp40-participants__stat {
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-participants__stat-title {
	margin: 0 0 1.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--lp40-text);
	text-align: center;
}

.lp40-participants__pie-wrap {
	position: relative;
	width: 160px;
	height: 160px;
	margin: 0 auto 1.5rem;
}

.lp40-participants__pie {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
}

.lp40-pie-label {
	position: absolute;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0,0,0,0.3);
	transform: translate(-50%, -50%);
}

/* Gender pie: 60% Teal (0-60%), 40% Salmon (60-100%) */
.lp40-participants__pie--gender {
	background: conic-gradient(var(--lp40-primary) 0% 60%, var(--lp40-accent) 60% 100%);
}
.lp40-participants__pie--gender .lp40-pie-label--g1 { top: 60%; left: 80%; }
.lp40-participants__pie--gender .lp40-pie-label--g2 { top: 40%; left: 20%; }

/* Age pie: 39.6% Teal, 47.6% Salmon, 9.5% Dark, 3.3% Purple */
.lp40-participants__pie--age {
	background: conic-gradient(var(--lp40-primary) 0% 39.6%, var(--lp40-accent) 39.6% 87.2%, #4a4a4a 87.2% 96.7%, #8b85d9 96.7% 100%);
}
.lp40-participants__pie--age .lp40-pie-label--a1 { top: 40%; left: 80%; }
.lp40-participants__pie--age .lp40-pie-label--a2 { top: 71%; left: 26%; }
.lp40-participants__pie--age .lp40-pie-label--a3 { top: 17%; left: 32%; }

/* Size pie: 15.9% Teal, 28.6% Salmon, 11.1% Dark, 44.4% Purple */
.lp40-participants__pie--size {
	background: conic-gradient(var(--lp40-primary) 0% 15.9%, var(--lp40-accent) 15.9% 44.5%, #4a4a4a 44.5% 55.6%, #8b85d9 55.6% 100%);
}
.lp40-participants__pie--size .lp40-pie-label--s1 { top: 22%; left: 65%; }
.lp40-participants__pie--size .lp40-pie-label--s2 { top: 60%; left: 80%; }
.lp40-participants__pie--size .lp40-pie-label--s3 { top: 82%; left: 50%; }
.lp40-participants__pie--size .lp40-pie-label--s4 { top: 44%; left: 19%; }

.lp40-participants__legend {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.875rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1rem;
}
.lp40-participants__legend li {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 !important;
}

/* Clouds */
.lp40-participants__clouds {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1rem;
}
.lp40-participants__cloud {
	padding: 2rem 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
}
.lp40-participants__cloud-title {
	margin: 0 0 1.5rem;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--lp40-text);
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}
.lp40-participants__cloud-title::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #d1edee;
}
.lp40-participants__cloud--occupation .lp40-participants__cloud-title::after {
	background: #fee2e2;
}

.lp40-participants__cloud-words {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: center;
}
.lp40-cloud-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.25rem;
}
.lp40-cloud-line--right {
	justify-content: flex-end;
	padding-right: 2rem;
}
.lp40-participants__cloud--industry .lp40-cloud-line { color: var(--lp40-primary); }
.lp40-participants__cloud--occupation .lp40-cloud-line { color: var(--lp40-accent); }

.lp40-cloud-lg { font-size: 1.5rem; font-weight: 700; }
.lp40-cloud-md { font-size: 1.125rem; font-weight: 600; opacity: 0.9; }
.lp40-cloud-sm { font-size: 0.875rem; opacity: 0.75; }

@media (max-width: 1024px) {
	.lp40-participants__clouds { grid-template-columns: 1fr; }
}

.lp40-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.lp40-participants__summary { margin-top: 2rem; text-align: center; font-weight: 500; font-size: 1.0625rem; }

/* Instructors */
.lp40-instructors__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.lp40-instructor-card {
	display: flex;
	gap: 2rem;
	padding: 2.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
	border: 1px solid var(--lp40-border);
}

.lp40-instructor-card__photo-col {
	flex-shrink: 0;
	width: 240px;
}

.lp40-instructor-card__info-col {
	flex: 1;
}

.lp40-instructor-card__photo {
	width: 100%;
	height: auto;
	border-radius: var(--lp40-radius);
	object-fit: cover;
}

.lp40-instructor-card__role {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 4px 16px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--lp40-primary);
	background: var(--lp40-tag-bg);
	border-radius: 999px;
}

.lp40-instructor-card__name {
	margin: 0 0 1.25rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lp40-text);
}

.lp40-instructor-card__profile-wrap {
	margin-bottom: 1.5rem;
}

.lp40-instructor-card__profile-label {
	margin: 0 0 0.5rem;
	padding-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--lp40-muted);
	border-bottom: 1px solid var(--lp40-border);
}

.lp40-instructor-card__profile { margin: 0; font-size: 0.875rem; line-height: 1.7; color: var(--lp40-text-sub); }

.lp40-instructor-card__message {
	margin: 0;
	padding: 1.5rem 1.75rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--lp40-text-sub);
	background: #f8fafc;
	border-radius: 12px;
	border-left: 4px solid var(--lp40-primary);
}

.lp40-instructors__subheading {
	margin: 3rem 0 1.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	color: var(--lp40-text);
}

.lp40-staff__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.lp40-staff-card {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	border: 1px solid var(--lp40-border);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-staff-card__photo-col {
	flex-shrink: 0;
	width: 100px;
}

.lp40-staff-card__info-col {
	flex: 1;
}

.lp40-staff-card__photo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 0;
}

.lp40-staff-card__name { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 700; color: var(--lp40-text); }

.lp40-staff-card__meta-box {
	background: var(--lp40-card);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.lp40-staff-card__meta { margin: 0; padding: 0; list-style: none; font-size: 0.875rem; color: var(--lp40-text-sub); line-height: 1.8; }
.lp40-staff-card__meta-label { color: var(--lp40-gray); margin-right: 0.25rem; }

.lp40-staff-card__message { margin: 0; font-size: 0.9375rem; color: var(--lp40-primary); font-weight: 700; }

.lp40-org {
	margin-top: 3rem;
	padding: 2rem;
	background: #d1edee;
	border-radius: var(--lp40-radius-lg);
	text-align: center;
}

.lp40-org__title { margin: 0 0 0.75rem; font-size: 1.125rem; font-weight: 700; }
.lp40-org__name { margin: 0 0 1rem; font-weight: 700; color: var(--lp40-text); }

/* Voices */
.lp40-voices__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.lp40-voice-card {
	margin: 0;
	padding: 2rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
	border: 1px solid var(--lp40-border);
}

.lp40-voice-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}

.lp40-voice-card__text { margin: 0 0 1rem; font-size: 0.9375rem; line-height: 1.85; }
.lp40-voice-card__meta { display: block; font-size: 0.875rem; font-style: normal; color: var(--lp40-muted); }
.lp40-voices__more { margin-top: 2rem; text-align: center; }

/* Events */
.lp40-events__subheading {
	text-align: center;
	font-weight: 600;
	font-size: 1.0625rem;
	color: var(--lp40-primary);
	margin: -1.5rem 0 0.5rem;
}

.lp40-events__coming-soon {
	text-align: center;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--lp40-text);
	margin-bottom: 2rem;
}

.lp40-events__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lp40-event-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow);
	border: 1px solid var(--lp40-tag-bg);
}

.lp40-event-card__head {
	position: relative;
	padding: 1.5rem;
	background: var(--lp40-primary);
	color: #fff;
	min-height: 140px;
	z-index: 1;
}

.lp40-event-card__head::before {
	content: "";
	position: absolute;
	top: 0rem;
	right: 0rem;
	width: 80px;
	height: 80px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}

.lp40-event-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
}

.lp40-event-card__head .lp40-tag--white {
	display: inline-block;
	margin-bottom: 1rem;
	font-size: 0.75rem;
	padding: 2px 10px;
	border-radius: 999px;
}

.lp40-event-card__details {
	flex: 1;
	margin: 0;
	padding: 1.5rem;
	list-style: none;
	font-size: 0.9375rem;
}

.lp40-event-card__details li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.lp40-event-card__details li + li { margin-top: 0.875rem; }

.lp40-event-card__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	margin-top: 2px;
}

.lp40-event-card .lp40-btn {
	margin: 0 1.5rem 1.5rem;
	width: calc(100% - 3rem);
	min-height: 56px;
	padding: 14px 24px;
	color: #fff;
}

.lp40-event-card .lp40-btn__label { font-size: 1rem; }

.lp40-events__video { margin-top: 4rem; }
.lp40-events__video-heading { margin: 0 0 2rem; font-size: 1.5rem; font-weight: 700; text-align: center; }

.lp40-archive-card {
	display: flex;
	overflow: hidden;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow);
	border: 1px solid var(--lp40-border);
}

.lp40-archive-card__left {
	position: relative;
	width: 40%;
	padding: 3rem 2.5rem;
	background: #1a1a1a;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.lp40-archive-card__icon {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.lp40-archive-card__sub {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--lp40-primary);
}

.lp40-archive-card__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
}

.lp40-archive-card__right {
	width: 60%;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lp40-archive-card__text {
	margin: 0 0 2rem;
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--lp40-text-sub);
}

.lp40-archive-card__btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	min-height: 56px;
	padding: 14px 24px;
	font-size: 1.125rem;
	border: 2px solid var(--lp40-text);
	border-radius: 999px;
	color: var(--lp40-text);
	background: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s;
}

.lp40-archive-card__btn:hover {
	background: var(--lp40-text);
	color: #fff;
}

/* Application */
.lp40-application__form {
	margin-top: 2.5rem;
	padding: 2.5rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow);
	border: 1px solid var(--lp40-border);
}

.lp40-application__form-title {
	margin: 0 0 1.5rem;
	font-size: 1.375rem;
	font-weight: 700;
	text-align: center;
	color: var(--lp40-text);
}

.lp40-application__form-placeholder {
	padding: 2rem;
	text-align: center;
	background: var(--lp40-card);
	border-radius: var(--lp40-radius);
	color: var(--lp40-muted);
	font-size: 0.9375rem;
}

.lp40-application__form input[type="text"],
.lp40-application__form input[type="email"],
.lp40-application__form input[type="tel"],
.lp40-application__form textarea,
.lp40-application__form select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--lp40-border);
	border-radius: 10px;
	font-family: inherit;
	font-size: 1rem;
}

.lp40-application__form input[type="submit"] {
	background: var(--lp40-accent);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: var(--lp40-shadow-sm);
	transition: background 0.2s, transform 0.2s;
	display: block;
	margin: 2rem auto 0;
	width: 100%;
	max-width: 372px;
}

.lp40-application__form input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15);
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.5rem;
}

.lp40-application__form p {
	margin-bottom: 1.5rem;
}

.lp40-application__cta { margin-top: 2rem; text-align: center; }

.lp40-application__consult {
	margin-top: 2.5rem;
	text-align: center;
}

.lp40-application__consult-catch {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--lp40-consult);
}

.lp40-table--spec td:nth-child(2) { line-height: 1.8; }

/* FAQ */
.lp40-faq__group + .lp40-faq__group { margin-top: 2.5rem; }

.lp40-faq__category {
	margin: 0 0 1rem;
	padding-bottom: 0.625rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--lp40-primary);
	border-bottom: 2px solid var(--lp40-border);
}

.lp40-faq__list { display: grid; gap: 0.75rem; }

.lp40-faq__item {
	background: #fff;
	border: 1px solid var(--lp40-border);
	border-radius: var(--lp40-radius);
	overflow: hidden;
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-faq__question {
	padding: 1rem 1.25rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--lp40-text);
	cursor: pointer;
	list-style: none;
}

.lp40-faq__question::-webkit-details-marker { display: none; }

.lp40-faq__question::after {
	content: "+";
	float: right;
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--lp40-primary);
}

.lp40-faq__item[open] .lp40-faq__question::after { content: "−"; }

.lp40-faq__answer {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.8;
}

/* Footer */
.lp40-footer {
	padding: 3.5rem 0 calc(var(--lp40-floating-cta-h, 0px) + var(--lp40-floating-cta-offset, 1.5rem) + 1.5rem);
	background: #f8f8f8;
	color: var(--lp40-text-sub);
}

.lp40-footer__inner { text-align: center; }
.lp40-footer__org { margin: 0 0 0.5rem; font-weight: 700; color: var(--lp40-text); font-size: 0.9375rem; }
.lp40-footer__office { margin: 0; font-size: 0.875rem; }

.lp40-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	margin: 1.75rem 0;
}

.lp40-footer__nav a { color: var(--lp40-text-sub); text-decoration: none; font-size: 0.875rem; }
.lp40-footer__nav a:hover { color: var(--lp40-primary); }
.lp40-footer__copy { margin: 1.5rem 0 0; font-size: 0.875rem; }

/* Floating CTA */
.lp40-floating-cta {
	display: none;
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	width: min(400px, calc(100% - 2rem));
	z-index: 200;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--lp40-border);
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	gap: 0.5rem;
}

.lp40-floating-cta.is-visible {
	display: flex;
	flex-direction: column;
}

.lp40-floating-cta.is-measuring {
	display: flex !important;
	flex-direction: column;
	visibility: hidden;
	pointer-events: none;
}

.lp40-floating-cta__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 0.625rem 1rem;
	border-radius: var(--lp40-radius);
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition: opacity 0.2s;
}

.lp40-floating-cta__btn:hover { opacity: 0.9; }

.lp40-floating-cta__label {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}
.lp40-floating-cta__sub { font-size: 0.6875rem; font-weight: 500; opacity: 0.9; line-height: 1.2; margin-top: 2px; }

.lp40-floating-cta__btn--pre { background: var(--lp40-primary); }
.lp40-floating-cta__btn--consult { background: var(--lp40-consult); }
.lp40-floating-cta__btn--main { background: var(--lp40-accent); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.lp40-header__nav { display: none; }
	.lp40-hamburger { display: block; }
	.lp40-mobile-menu { display: block; }

	.lp40-crisis__grid,
	.lp40-steps,
	.lp40-recommend__grid,
	.lp40-staff__grid,
	.lp40-events__grid,
	.lp40-participants__stats { grid-template-columns: repeat(2, 1fr); }
	
	.lp40-archive-card {
		flex-direction: column;
	}
	.lp40-archive-card__left,
	.lp40-archive-card__right {
		width: 100%;
		padding: 2rem;
	}
	.lp40-archive-card__icon {
		opacity: 0.2;
	}
}

@media (max-width: 768px) {
	.lp40-hero__grid {
		width: calc(100% - 4px);
		min-height: auto;
		padding-block: 12rem 4rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.lp40-hero__panel {
		border-radius: var(--lp40-radius-lg);
		padding: 1.5rem 1rem;
	}

	.lp40-hero__cta {
		grid-template-columns: 1fr;
	}

	.lp40-hero__cta-main {
		grid-column: auto;
	}

	.lp40-crisis__grid,
	.lp40-steps,
	.lp40-recommend__grid,
	.lp40-instructors__grid,
	.lp40-staff__grid,
	.lp40-participants__stats,
	.lp40-voices__grid,
	.lp40-events__grid,
	.lp40-stats__grid { grid-template-columns: 1fr; }

	.lp40-instructor-card,
	.lp40-staff-card {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.5rem;
	}
	
	.lp40-instructor-card__photo-col,
	.lp40-staff-card__photo-col {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
		text-align: center;
	}

	.lp40-staff-card__photo {
		width: 120px;
		height: 120px;
	}

	.lp40-results__scores { flex-direction: column; }
	.lp40-results__pie-grid { flex-direction: column; text-align: center; gap: 1.5rem; }

	.lp40-table:not(.lp40-table--compare) thead { display: none; }

	.lp40-table:not(.lp40-table--compare) tr {
		display: block;
		padding: 1rem;
		border-bottom: 1px solid var(--lp40-border);
	}

	.lp40-table:not(.lp40-table--compare) td,
	.lp40-table:not(.lp40-table--compare) tbody th {
		display: block;
		padding: 0.25rem 0;
		border: none;
	}

	.lp40-table:not(.lp40-table--compare) td::before {
		content: attr(data-label) ": ";
		font-weight: 700;
		color: var(--lp40-text);
	}

	.lp40-table--spec th,
	.lp40-table--spec td { display: block; width: 100%; }

	.lp40-table--compare { min-width: 840px; }

	.lp40-floating-cta {
		top: auto;
		right: auto;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: 100%;
		max-width: 100%;
		padding: 0.5rem;
		gap: 0.25rem;
		border-radius: 16px 16px 0 0;
		border-bottom: none;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
	}

	.lp40-floating-cta.is-visible {
		display: flex;
		flex-direction: column;
	}

	.lp40-floating-cta__label { font-size: 0.9375rem; }
	.lp40-floating-cta__sub { font-size: 0.65rem; }

	.lp40-page { --lp40-floating-cta-offset: 0px; }
}

@media (prefers-reduced-motion: reduce) {
	.lp40-btn:hover { transform: none; }
	.lp40-hero__scroll-icon::after { animation: none; }
	html { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; }

/* Features (Other experiences) */
.lp40-features {
	margin-top: 5rem;
	padding: 3rem 2rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
}
.lp40-features__title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2.5rem;
}
.lp40-features__grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.lp40-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.lp40-features__item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 1.5rem;
	background: #f8fafc;
	border-radius: var(--lp40-radius);
	border: 1px solid var(--lp40-border);
}
.lp40-features__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: var(--lp40-primary);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
}
.lp40-features__content {
	flex: 1;
}
.lp40-features__name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--lp40-text);
}
.lp40-features__desc {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--lp40-text-sub);
}

/* Bar Charts */
.lp40-participants__bars-group {
	display: grid;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.lp40-participants__bars-card {
	padding: 2rem;
	background: #fff;
	border-radius: var(--lp40-radius-lg);
	box-shadow: var(--lp40-shadow-sm);
}

.lp40-participants__bars-title {
	margin: 0 0 1.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--lp40-text);
}

.lp40-participants__bars-title small {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp40-muted);
	margin-left: 0.5rem;
}

.lp40-participants__bars-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.lp40-participants__bar-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.lp40-participants__bar-label {
	width: 280px;
	flex-shrink: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--lp40-text);
	font-weight: 500;
}

.lp40-participants__bar-track-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.lp40-participants__bar-track {
	height: 23px;
	border-radius: 2px;
}

.lp40-participants__bar-value {
	font-size: 0.875rem;
	font-weight: 700;
	width: 24px;
}

.lp40-participants__bars-list--primary .lp40-participants__bar-track { background: #51cdd1; }
.lp40-participants__bars-list--primary .lp40-participants__bar-value { color: #51cdd1; }

.lp40-participants__bars-list--accent .lp40-participants__bar-track { background: #f18c8e; }
.lp40-participants__bars-list--accent .lp40-participants__bar-value { color: #f18c8e; }

.lp40-participants__bars-list--purple .lp40-participants__bar-track { background: #9b91df; }
.lp40-participants__bars-list--purple .lp40-participants__bar-value { color: #9b91df; }

@media (max-width: 768px) {
	.lp40-participants__bar-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	.lp40-participants__bar-label {
		width: 100%;
	}
	.lp40-participants__bar-track-wrap {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.lp40-results__block-head {
		flex-direction: column;
	}
	.lp40-results__score-box {
		width: 100%;
		justify-content: center;
	}
	.lp40-histograms {
		grid-template-columns: 1fr;
	}
}
