/*
Theme Name: BLP
Theme URI: https://example.com
Author: BLP
Description: BLP合同会社 コーポレートサイト用カスタムテーマ
Version: 1.0.12
Requires PHP: 8.0
Text Domain: blp-ma
*/

:root {
	--color-navy: #0c1829;
	--color-navy-dark: #060d17;
	--color-charcoal: #1e2630;
	--color-accent: #1e3a5f;
	--color-white: #ffffff;
	--color-off-white: #f4f5f7;
	--color-gray: #5f6772;
	/* WCAG AA (4.5:1 vs #fff) を満たす明度に調整済み。これより明るくしないこと。 */
	--color-muted: #667180;
	--color-border: #dde1e6;
	/* 和のアクセント（焦茶・金茶）。白/オフホワイト上で 4.5:1 以上を確保済み（実測 6.18:1 / 5.67:1）。 */
	--color-accent-warm: #7a5c2e;
	/* ネイビー系の暗背景専用。ネイビー上で実測 7.9:1 以上を確保済み。白背景の文字色には使わない。 */
	--color-accent-warm-bright: #c9a876;
	--color-accent-warm-tint: #f4ede0;
	--font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--max-width: 1040px;
	--header-height: 64px;
	--button-radius: 8px;
	--button-shadow: 0 4px 14px rgba(12, 24, 41, 0.16);
	--button-shadow-hover: 0 8px 22px rgba(12, 24, 41, 0.22);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--color-charcoal);
	background: var(--color-white);
	line-height: 1.75;
	font-size: 15px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.02em;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

/* Eyebrow（和アクセントの短い罫線を伴うラベル。全セクションで共通の合図として使う） */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-accent-warm);
}

.eyebrow::before {
	content: '';
	width: 20px;
	height: 1px;
	flex-shrink: 0;
	background: var(--color-accent-warm);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 12px 24px -18px rgba(12, 24, 41, 0.35);
	backdrop-filter: blur(8px);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	height: var(--header-height);
}

.site-branding a,
.site-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-navy);
	text-decoration: none;
}

.site-logo {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
}

.site-logo-text {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.2;
}

.site-logo-name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.site-logo-tagline {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	opacity: 0.65;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--color-gray);
	transition: color 0.15s ease;
	white-space: nowrap;
}

.main-navigation a:hover {
	color: var(--color-navy);
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--color-white);
	color: var(--color-navy);
	padding: 96px 0 88px;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

.hero--has-bg,
.hero--has-video {
	padding: 0;
	min-height: clamp(560px, 78vh, 760px);
	display: flex;
	align-items: center;
	background-color: var(--color-off-white);
	background-image: url('assets/img/hero-bg.png');
	background-size: cover;
	background-position: 72% center;
	background-repeat: no-repeat;
}

.hero--has-video {
	background-image: none;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% center;
	display: block;
}

.hero-video--sp {
	display: none;
}

.hero-media-fade,
.hero--has-bg::before,
.hero--has-video::before {
	display: block;
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.88) 0%,
		rgba(255, 255, 255, 0.78) 28%,
		rgba(255, 255, 255, 0.42) 50%,
		rgba(255, 255, 255, 0.10) 70%,
		rgba(255, 255, 255, 0) 100%
	);
}

.hero--has-video::before {
	display: none;
}

.hero-media-fade {
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.hero-video,
	.hero-video--pc,
	.hero-video--sp {
		display: none !important;
	}

	.hero--has-video {
		background-image: url('assets/img/hero-bg.png');
		background-size: cover;
		background-position: 72% center;
		background-repeat: no-repeat;
	}
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 96px 32px 88px;
}

.hero--split .hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.hero.hero--has-bg .hero-inner,
.hero.hero--has-video .hero-inner {
	display: block;
}

.hero--has-bg .hero-content,
.hero--has-video .hero-content {
	max-width: none;
}

.hero-visual img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 1px solid var(--color-border);
}

/* Editorial hero title — SOMPO recruiting–inspired scale & layering */
.hero--editorial .hero-title {
	margin: 0 0 32px;
	max-width: min(920px, 92vw);
	font-size: clamp(28px, 4.2vw, 48px);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.04em;
}

.hero--editorial .hero-title-line {
	display: block;
	color: var(--color-navy);
}

.hero--editorial .hero-title-line--accent {
	color: var(--color-accent-warm);
	margin-bottom: 0.08em;
}

.hero--editorial .hero-title-line--main {
	position: relative;
	z-index: 1;
	max-width: 14em;
	/* Bleed slightly into the photo area for layered dynamism */
	padding-right: clamp(0px, 4vw, 48px);
}

.hero--editorial .hero-body {
	max-width: 34em;
}

.hero--editorial .hero-body > p {
	margin: 0 0 28px;
	max-width: 28em;
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-gray);
	text-shadow: 0 1px 10px rgba(255, 255, 255, 0.75);
}

.hero--has-bg .hero-content h1,
.hero--has-video .hero-content h1 {
	text-shadow: 0 0 18px rgba(255, 255, 255, 0.9), 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-headline-line {
	display: inline-block;
	white-space: nowrap;
}

.hero .eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--color-accent-warm);
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-accent-warm);
}

.hero .eyebrow::before {
	content: none;
}

.hero h1 {
	font-size: 38px;
	line-height: 1.42;
	font-weight: 700;
	margin: 0 0 28px;
	letter-spacing: 0.01em;
	max-width: 640px;
}

.hero p {
	font-size: 15px;
	color: var(--color-gray);
	max-width: 560px;
	margin: 0 0 32px;
	line-height: 1.9;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-chips {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 20px 0 0;
	padding: 0;
}

.hero-chip {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-navy);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.3;
	white-space: nowrap;
}

.hero-chip:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
	color: var(--color-accent-warm-bright);
	font-weight: 700;
}

.hero-note {
	margin: 18px 0 0;
	font-size: 12px;
	color: var(--color-muted);
	letter-spacing: 0.02em;
}

.hero-note .sep {
	margin: 0 8px;
	color: var(--color-accent-warm);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: var(--color-navy);
	color: var(--color-white);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--color-navy);
	border-radius: var(--button-radius);
	box-shadow: var(--button-shadow);
	cursor: pointer;
	appearance: none;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.button:hover {
	background: var(--color-accent-warm);
	border-color: var(--color-accent-warm);
	color: var(--color-white);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(122, 92, 46, 0.28);
}

.button:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(12, 24, 41, 0.16);
}

.button--outline {
	background: var(--color-white);
	color: var(--color-navy);
	border-color: rgba(12, 24, 41, 0.22);
	box-shadow: 0 2px 8px rgba(12, 24, 41, 0.08);
}

.button--outline:hover {
	background: var(--color-navy);
	color: var(--color-white);
	border-color: var(--color-navy);
	box-shadow: var(--button-shadow-hover);
}

@media (prefers-reduced-motion: reduce) {
	.button {
		transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	}

	.button:hover,
	.button:active {
		transform: none;
	}
}

/* Section */
.section {
	padding: 88px 0;
}

.section--alt {
	background: var(--color-off-white);
}

.section--dark {
	background: var(--color-navy-dark);
	color: var(--color-white);
}

.section--dark .section-header h2,
.section--dark .section-header .lead,
.section--dark .section-header p {
	color: var(--color-white);
}

.section--dark .section-header .lead,
.section--dark .section-header p {
	color: rgba(255, 255, 255, 0.72);
}

.section--dark .eyebrow {
	color: var(--color-accent-warm-bright);
}

.section--dark .eyebrow::before {
	background: var(--color-accent-warm-bright);
}

.section-header {
	max-width: var(--max-width);
	margin: 0 auto 56px;
	padding: 0 32px;
	text-align: left;
}

.section-header .eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	margin-bottom: 14px;
}

.section-header h2 {
	font-size: 25px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--color-navy);
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.section-header p {
	color: var(--color-gray);
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
}

.lead {
	font-size: 14px;
	color: var(--color-gray);
	max-width: 640px;
	margin: 0;
	text-align: left;
	line-height: 1.9;
}

#pillars .section-header .lead {
	max-width: none;
}

/* Stats band */
.stats-band {
	background: var(--color-navy);
	padding: 64px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.stat-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px 40px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:first-child {
	border-left: none;
}

.stat-item-inner {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 22px;
	text-align: left;
}

.stat-icon-wrap {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: var(--color-accent-warm-bright);
	background: none;
	border: none;
}

.stat-icon {
	display: block;
	width: 56px;
	height: 56px;
}

.stat-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.stat-item .stat-number {
	position: relative;
	display: inline-block;
	font-size: 64px;
	font-weight: 700;
	color: var(--color-accent-warm-bright);
	line-height: 0.95;
	margin-bottom: 14px;
	letter-spacing: -0.03em;
	text-shadow:
		0 0 28px rgba(201, 168, 118, 0.28),
		0 2px 0 rgba(0, 0, 0, 0.2);
}

.stat-item .stat-number::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 14px;
	background: linear-gradient(
		90deg,
		var(--color-accent-warm-bright) 0%,
		rgba(201, 168, 118, 0.2) 75%,
		transparent 100%
	);
}

.stat-item .stat-number .stat-unit {
	font-size: 17px;
	font-weight: 600;
	margin-left: 8px;
	color: rgba(201, 168, 118, 0.85);
	letter-spacing: 0.04em;
	vertical-align: 0.55em;
	text-shadow: none;
}

.stat-item .stat-label {
	width: 100%;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-align: left;
}

.stats-grid--two {
	grid-template-columns: repeat(2, 1fr);
	max-width: 960px;
}

.stats-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
	.stats-band {
		padding: 48px 0;
	}

	.stats-grid--two,
	.stats-grid--three {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.stats-grid--two .stat-item,
	.stats-grid--three .stat-item {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding: 28px 0 0;
	}

	.stats-grid--two .stat-item:first-child,
	.stats-grid--three .stat-item:first-child {
		border-top: none;
		padding-top: 0;
	}

	.stat-item-inner {
		gap: 16px;
	}

	.stat-icon-wrap {
		width: 48px;
		height: 48px;
	}

	.stat-icon {
		width: 48px;
		height: 48px;
	}

	.stat-item .stat-number {
		font-size: 48px;
	}

	.stat-item .stat-number .stat-unit {
		font-size: 15px;
	}
}

/* Acquisition teaser */
#acquisition-teaser {
	padding-left: 32px;
	padding-right: 32px;
}

.acquisition-teaser {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 48px 40px;
	background: var(--color-off-white);
	border: 1px solid var(--color-border);
}

.acquisition-teaser-inner {
	max-width: 720px;
}

.acquisition-teaser .eyebrow {
	margin-bottom: 16px;
}

.acquisition-teaser h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 16px;
	letter-spacing: 0.04em;
}

.acquisition-teaser p {
	font-size: 14px;
	color: var(--color-gray);
	margin: 0 0 20px;
	line-height: 1.9;
}

.acquisition-teaser-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.acquisition-teaser-list li {
	position: relative;
	padding-left: 16px;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--color-charcoal);
	line-height: 1.7;
}

.acquisition-teaser-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 6px;
	height: 6px;
	background: var(--color-navy);
}

/* Acquisition detail (about page) */
.acquisition-detail {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.acquisition-detail-intro {
	max-width: 720px;
	margin: 0 auto 40px;
}

.acquisition-detail-intro p {
	font-size: 14px;
	color: var(--color-gray);
	line-height: 1.9;
	margin: 0 0 16px;
}

.acquisition-detail-note {
	font-size: 15px;
	color: var(--color-navy);
	margin-top: 20px;
}

.acquisition-detail-faq {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--color-border);
}

.acquisition-detail-faq h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 24px;
	letter-spacing: 0.04em;
}

.acquisition-detail-actions {
	margin-top: 32px;
}

.merit-grid--compact {
	margin-bottom: 0;
}

#flow .flow-track {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

/* Pillar cards */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
}

.pillar-card {
	background: var(--color-white);
	padding: 48px 40px;
	position: relative;
}

.pillar-card.is-primary {
	background: var(--color-white);
	color: inherit;
	border-color: transparent;
}

.pillar-card .pillar-index {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-navy);
	display: block;
	margin-bottom: 16px;
	line-height: 1;
}

.pillar-card .icon-badge {
	margin-bottom: 20px;
}

.pillar-card-media {
	margin: 0 0 24px;
	width: 100%;
}

.pillar-card-media img {
	width: 100%;
	max-width: none;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center;
	display: block;
	border: 1px solid var(--color-border);
}

.pillar-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--color-navy);
	letter-spacing: 0.04em;
	padding-left: 16px;
	border-left: 3px solid var(--color-navy);
}

.pillar-card.is-primary h3 {
	color: var(--color-navy);
}

.pillar-card p {
	color: var(--color-gray);
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.9;
}

.pillar-card ul {
	margin: 0;
	padding-left: 18px;
	font-size: 13px;
	color: var(--color-charcoal);
}

.pillar-card li {
	margin-bottom: 8px;
}

.pillar-card .button {
	font-size: 12px;
	padding: 12px 24px;
}

.pillar-card .button--outline {
	border-color: var(--color-navy);
	color: var(--color-navy);
}

.pillar-card:not(.is-primary) .button {
	background: var(--color-navy);
}

/* Feature split */
.feature-split {
	display: flex;
	align-items: stretch;
	gap: 56px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.feature-split.is-reverse {
	flex-direction: row-reverse;
}

.feature-split-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-split-media {
	flex: 0 0 42%;
	max-width: 440px;
	align-self: stretch;
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
}

.feature-split-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
	display: block;
	border: none;
}

.feature-split-graphic {
	flex: 0 0 360px;
	max-width: 360px;
	opacity: 0.85;
}

.feature-split-graphic svg {
	width: 100%;
	height: auto;
}

.feature-split-text .eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	margin-bottom: 14px;
}

.feature-split-text h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 20px;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.feature-split-text p {
	color: var(--color-gray);
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.9;
}

.feature-split-text ul {
	margin: 0 0 32px;
	padding-left: 18px;
}

.feature-split-text li {
	margin-bottom: 8px;
	color: var(--color-charcoal);
	font-size: 13px;
}

/* Strength grid */
.strength-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
}

.strength-item {
	background: var(--color-white);
	padding: 40px 32px;
	text-align: left;
}

.strength-item .strength-index {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-muted);
	margin-bottom: 12px;
}

.strength-item .icon-badge {
	margin-bottom: 16px;
}

.strength-item h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 12px;
	letter-spacing: 0.03em;
}

.strength-item p {
	color: var(--color-gray);
	font-size: 13px;
	margin: 0;
	line-height: 1.85;
}

/* Testimonials */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.testimonial-card {
	background: var(--color-off-white);
	border: 1px solid var(--color-border);
	padding: 32px;
}

.testimonial-card .quote-mark {
	display: none;
}

.testimonial-card p.quote {
	font-size: 13px;
	color: var(--color-charcoal);
	line-height: 1.9;
	margin: 0 0 20px;
}

.testimonial-card .attribution {
	font-size: 12px;
	color: var(--color-muted);
	border-top: 1px solid var(--color-border);
	padding-top: 16px;
}

.testimonial-card .attribution strong {
	display: block;
	color: var(--color-navy);
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 13px;
}

/* Domain grid */
.domain-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.domain-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	background-color: var(--color-navy);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.domain-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(6, 13, 23, 0.48);
	z-index: 0;
}

.domain-item-caption {
	position: relative;
	z-index: 1;
	padding: 0 24px;
	text-align: center;
}

.domain-item-caption h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: 0.06em;
	line-height: 1.5;
}

/* Flow timeline */
#flow {
	padding-bottom: 104px;
}

#flow .section-header {
	margin-bottom: 64px;
}

.flow-block {
	max-width: var(--max-width);
	margin: 0 auto 88px;
	padding: 52px 44px 60px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.flow-block:last-child {
	margin-bottom: 0;
}

.flow-block-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--color-navy);
}

.flow-block-tag {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-white);
	background: var(--color-navy);
	padding: 8px 14px;
	line-height: 1;
}

.flow-block-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: 0.04em;
}

.flow-track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.flow-track--six {
	grid-template-columns: repeat(6, 1fr);
}

.flow-track--four {
	grid-template-columns: repeat(4, 1fr);
}

.flow-step {
	min-width: 0;
}

.flow-step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 20px 12px 18px;
	text-align: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--color-border);
}

.flow-step-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-accent-warm);
	margin-bottom: 12px;
	line-height: 1;
}

.flow-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	background: transparent;
	color: var(--color-navy);
	border: 1px solid var(--color-navy);
}

.flow-step-icon .icon {
	width: 20px;
	height: 20px;
	stroke-width: 1.3;
}

.flow-step-content h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 8px;
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.flow-step-content p {
	font-size: 11px;
	color: var(--color-gray);
	margin: 0;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.flow-track--six {
		grid-template-columns: repeat(3, 1fr);
	}

	.flow-track--four {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	#flow {
		padding-bottom: 72px;
	}

	.flow-block {
		padding: 32px 24px 40px;
		margin-bottom: 64px;
	}

	.flow-block-head {
		margin-bottom: 28px;
	}

	.flow-track,
	.flow-track--four,
	.flow-track--six {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.flow-step-card {
		flex-direction: row;
		align-items: flex-start;
	 gap: 16px;
		padding: 16px;
		text-align: left;
	}

	.flow-step-num {
		flex-shrink: 0;
		width: 28px;
		margin: 14px 0 0;
		font-size: 11px;
	}

	.flow-step-icon {
		flex-shrink: 0;
		width: 44px;
		height: 44px;
		margin: 0;
	}

	.flow-step-icon .icon {
		width: 20px;
		height: 20px;
	}

	.flow-step-content {
		flex: 1;
		min-width: 0;
		padding-top: 4px;
	}

	.flow-step-content h4 {
		font-size: 14px;
	}

	.flow-step-content p {
		font-size: 12px;
	}
}

/* FAQ */
.faq-list {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	border-top: 1px solid var(--color-border);
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 28px 22px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-navy);
	position: relative;
	letter-spacing: 0.02em;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 20px;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-muted);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0 0 22px;
	color: var(--color-gray);
	font-size: 13px;
	line-height: 1.9;
}

/* CTA */
.cta {
	background: var(--color-navy);
	color: var(--color-white);
	text-align: left;
	padding: 72px 0;
}

.cta .container,
.cta-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.cta h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px;
	letter-spacing: 0.04em;
}

.cta p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 32px;
	font-size: 14px;
}

.cta .button {
	background: var(--color-white);
	color: var(--color-navy);
	border-color: var(--color-white);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.cta .button:hover {
	background: var(--color-accent-warm);
	color: var(--color-white);
	border-color: var(--color-accent-warm);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

@media (max-width: 900px) {
	.cta {
		text-align: center;
		padding: 56px 0;
	}

	.cta h2 {
		font-size: 18px;
		letter-spacing: 0.02em;
		white-space: nowrap;
	}

	.cta .button {
		padding: 16px;
	}
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cta--emphasis .cta-inner {
	text-align: center;
}

.cta--emphasis h2,
.cta--emphasis p {
	text-align: center;
}

.cta--emphasis .cta-actions {
	justify-content: center;
}

.cta--emphasis .button--outline {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta--emphasis .button--outline:hover {
	background: var(--color-white);
	color: var(--color-navy);
	border-color: var(--color-white);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.cta .eyebrow,
.cta-band .eyebrow {
	color: var(--color-accent-warm-bright);
}

.cta .eyebrow::before,
.cta-band .eyebrow::before {
	background: var(--color-accent-warm-bright);
}

.cta--emphasis .eyebrow {
	justify-content: center;
}

.cta-meta {
	margin: 20px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.02em;
}

.cta-meta .sep {
	margin: 0 8px;
	color: var(--color-accent-warm-bright);
}

.section-lead-center {
	max-width: 640px;
	margin: 32px auto 0;
	padding: 0 32px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 1.8;
}

/* Page header */
.page-header {
	background: var(--color-off-white);
	color: var(--color-navy);
	padding: 64px 32px;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
	font-size: 26px;
	font-weight: 700;
	margin: 0;
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
	letter-spacing: 0.01em;
	line-height: 1.4;
}

.page-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 72px 32px;
}

.page-content h2 {
	color: var(--color-navy);
	font-size: 18px;
	font-weight: 700;
	margin: 48px 0 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-border);
	letter-spacing: 0.04em;
}

.page-content h2:first-child {
	margin-top: 0;
}

.page-content p {
	color: var(--color-charcoal);
	font-size: 14px;
	line-height: 1.9;
}

/* Info table */
.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.info-table th,
.info-table td {
	text-align: left;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
	vertical-align: top;
	font-size: 14px;
}

.info-table th {
	width: 160px;
	color: var(--color-muted);
	font-weight: 500;
}

/* Contact form */
.contact-form {
	max-width: 560px;
	margin: 0 auto;
}

.contact-form p {
	margin: 0 0 20px;
}

.contact-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-navy);
	letter-spacing: 0.02em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	font-family: var(--font-base);
	font-size: 14px;
	border-radius: 0;
	background: var(--color-white);
}

.contact-form textarea {
	min-height: 160px;
	resize: vertical;
}

.contact-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	font-family: var(--font-base);
	font-size: 14px;
	border-radius: 0;
	background: var(--color-white);
}

.contact-form .form-group {
	margin-bottom: 20px;
}

.contact-form .CF7_req,
.contact-form .CF7_unreq {
	display: inline-block;
	padding: 2px 6px;
	margin-right: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	vertical-align: middle;
}

.contact-form .CF7_req {
	background: var(--color-navy);
	color: var(--color-white);
}

.contact-form .CF7_unreq {
	background: var(--color-off-white);
	color: var(--color-muted);
	border: 1px solid var(--color-border);
}

.contact-form .form-submit {
	margin: 28px 0 0;
}

.contact-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: var(--color-navy);
	color: var(--color-white);
	font-family: var(--font-base);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.4;
	border: 1px solid var(--color-navy);
	border-radius: var(--button-radius);
	box-shadow: var(--button-shadow);
	cursor: pointer;
}

.contact-form .wpcf7-submit:hover {
	background: var(--color-accent-warm);
	border-color: var(--color-accent-warm);
	color: var(--color-white);
}

.contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #8a2a2a;
}

.contact-form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 18px;
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
	font-size: 14px;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #c9a0a0;
	background: #fdf6f6;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--color-border);
	background: var(--color-accent-warm-tint);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: var(--color-navy);
}

/* Footer */
.site-footer {
	background: var(--color-navy-dark);
	color: rgba(255, 255, 255, 0.55);
	padding: 56px 32px 36px;
}

.site-footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.footer-brand {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-logo-link--footer {
	color: var(--color-white);
	gap: 14px;
}

.site-logo--footer {
	width: 52px;
	height: 52px;
}

.site-logo-link--footer .site-logo-name {
	font-size: 16px;
	letter-spacing: 0.14em;
}

.site-logo-link--footer .site-logo-tagline {
	color: var(--color-accent-warm-bright);
	opacity: 0.9;
	letter-spacing: 0.1em;
}

.footer-navigation ul {
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0 0 28px;
	padding: 0;
}

.footer-navigation a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 12px;
	letter-spacing: 0.04em;
}

.footer-navigation a:hover {
	color: var(--color-white);
}

.site-info {
	margin: 0;
	font-size: 11px;
	letter-spacing: 0.04em;
}

/* Service cards (sub pages) */
.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
}

.service-card {
	border: none;
	padding: 40px;
	background: var(--color-white);
}

.service-card .service-number {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-muted);
	letter-spacing: 0.12em;
	margin-bottom: 16px;
	display: block;
}

.service-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 12px;
}

.service-card p {
	color: var(--color-gray);
	margin: 0 0 20px;
	font-size: 13px;
}

.service-card ul {
	margin: 0;
	padding-left: 18px;
	color: var(--color-charcoal);
	font-size: 13px;
}

.service-card li {
	margin-bottom: 6px;
}

.service-card .icon-badge {
	margin-bottom: 16px;
}

.service-card .button--outline {
	border-color: var(--color-navy);
	color: var(--color-navy);
}

/* Compare table */
.compare-table {
	width: 100%;
	border-collapse: collapse;
	max-width: var(--max-width);
	margin: 0 auto;
}

.compare-table th,
.compare-table td {
	border: 1px solid var(--color-border);
	padding: 16px 20px;
	text-align: left;
	font-size: 13px;
	vertical-align: top;
}

.compare-table thead th {
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 600;
}

.compare-table tbody th {
	background: var(--color-off-white);
	color: var(--color-navy);
	font-weight: 600;
	width: 140px;
}

.compare-table thead th:nth-child(4) {
	background: var(--color-accent);
	font-weight: 700;
}

.compare-table tbody td:nth-child(4) {
	background: rgba(12, 24, 41, 0.07);
	color: var(--color-navy);
	font-weight: 700;
}

.compare-table--two thead th:nth-child(3) {
	background: var(--color-accent);
	font-weight: 700;
}

.compare-table--two tbody td:nth-child(3) {
	background: rgba(12, 24, 41, 0.07);
	color: var(--color-navy);
	font-weight: 700;
}

/* Case studies */
.case-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.case-story {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	box-shadow: 0 12px 32px rgba(12, 24, 41, 0.08);
}

.case-story-visual {
	position: relative;
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0a1422;
}

.case-story-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: saturate(0.86) contrast(1.03) brightness(0.97);
}

.case-story:nth-child(1) .case-story-visual img {
	object-position: center 42%;
}

.case-story:nth-child(2) .case-story-visual img {
	object-position: center 40%;
}

.case-story:nth-child(3) .case-story-visual img {
	object-position: center 48%;
}

.case-story-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 13, 23, 0.72) 0%, rgba(6, 13, 23, 0.12) 42%, transparent 65%);
	pointer-events: none;
}

.case-showcase--cinematic .case-story-visual::after {
	background: linear-gradient(to top, rgba(6, 13, 23, 0.66) 0%, rgba(6, 13, 23, 0.1) 40%, transparent 62%);
}

.case-story-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 22px;
}

.case-story-no {
	font-size: 42px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.22);
	line-height: 1;
	letter-spacing: 0.02em;
}

.case-story-sector {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: 0.08em;
	line-height: 1.3;
}

.case-story-content {
	padding: 24px 24px 28px;
}

.case-story-service {
	margin: 0 0 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--color-accent-warm);
	text-transform: uppercase;
}

.case-story-content h3 {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.case-story-details {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 10px;
	align-items: stretch;
	margin: 0;
}

.case-story-detail {
	margin: 0;
	padding: 14px 12px;
	background: var(--color-off-white);
}

.case-story-detail--issue {
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.case-story-detail--outcome {
	background: var(--color-navy);
	border-top: 2px solid var(--color-accent-warm-bright);
}

.case-story-detail dt {
	margin: 0 0 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.case-story-detail--issue dt {
	color: var(--color-muted);
}

.case-story-detail--outcome dt {
	color: rgba(255, 255, 255, 0.65);
}

.case-story-detail dd {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
}

.case-story-detail--issue dd {
	color: var(--color-charcoal);
}

.case-story-detail--outcome dd {
	color: var(--color-white);
	font-weight: 600;
}

.case-story-arrow {
	position: relative;
	width: 20px;
	align-self: center;
}

.case-story-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--color-accent-warm);
	border-right: 2px solid var(--color-accent-warm);
	transform: translate(-60%, -50%) rotate(45deg);
}

@media (max-width: 900px) {
	.case-showcase {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.case-story-details {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.case-story-arrow {
		display: none;
	}

	.case-story-detail--outcome {
		margin-top: 4px;
	}
}

/* Icons */
.icon {
	width: 24px;
	height: 24px;
	display: block;
	flex-shrink: 0;
}

.icon-badge {
	width: 52px;
	height: 52px;
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-navy);
	background: var(--color-off-white);
}

.icon-badge--sm {
	width: 40px;
	height: 40px;
}

.icon-badge .icon {
	width: 22px;
	height: 22px;
}

.icon-badge--sm .icon {
	width: 18px;
	height: 18px;
}

/* Hero graphic motion */
.hero-graphic .layer-bg {
	animation: blpFadeIn 1.4s ease both;
}

.hero-graphic .layer-rings {
	animation: blpFadeScale 1.4s 0.1s ease both;
	transform-origin: 660px 150px;
}

.hero-graphic .layer-path {
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	animation: blpDrawPath 1.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-graphic .layer-merge circle,
.hero-graphic .layer-grid-result rect {
	animation: blpFadeScale 0.8s ease both;
	transform-box: fill-box;
	transform-origin: center;
}

.hero-graphic .layer-merge circle:nth-child(1) { animation-delay: 0.4s; }
.hero-graphic .layer-merge circle:nth-child(2) { animation-delay: 0.55s; }

.hero-graphic .layer-grid-result rect:nth-child(1) { animation-delay: 1.5s; }
.hero-graphic .layer-grid-result rect:nth-child(2) { animation-delay: 1.6s; }
.hero-graphic .layer-grid-result rect:nth-child(3) { animation-delay: 1.7s; }
.hero-graphic .layer-grid-result rect:nth-child(4) { animation-delay: 1.8s; }

.hero-graphic .layer-node {
	animation: blpFadeScale 0.6s 1.9s ease both;
	transform-box: fill-box;
	transform-origin: center;
}

.hero-graphic .layer-particles circle {
	animation: blpFloat 4s ease-in-out infinite;
}

.hero-graphic .layer-particles circle:nth-child(odd) {
	animation-duration: 5s;
	animation-delay: 0.5s;
}

.hero-graphic .layer-labels {
	animation: blpFadeIn 1s 2.1s ease both;
}

.hero-graphic .layer-labels text {
	font-family: var(--font-base);
}

.graphic-band .hero-graphic .layer-labels text {
	text-rendering: geometricPrecision;
}

@keyframes blpFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes blpFadeScale {
	from { opacity: 0; transform: scale(0.8); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes blpDrawPath {
	to { stroke-dashoffset: 0; }
}

@keyframes blpFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Client logos */
.client-logos {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	padding: 36px 0 32px;
}

.client-logos-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.client-logos-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
	color: var(--color-navy);
	text-align: center;
}

.client-logos-label::before,
.client-logos-label::after {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--color-accent-warm);
	flex-shrink: 0;
}

.client-logos-media {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	align-items: stretch;
}

.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 88px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--color-border);
	overflow: hidden;
	min-width: 0;
}

.client-logo img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 48px;
	object-fit: contain;
	object-position: center;
	min-width: 0;
}

@media (max-width: 900px) {
	.client-logos-media {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.client-logo {
		height: 72px;
		padding: 8px 10px;
	}

	.client-logo img {
		max-height: 40px;
	}
}

@media (max-width: 640px) {
	.client-logos {
		padding: 28px 0 24px;
	}

	.client-logos-inner {
		padding: 0 24px;
	}

	.client-logos-media {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Concerns — cinematic panels */
.concerns-block {
	background: var(--color-navy-dark);
	color: var(--color-white);
	overflow: hidden;
}

.concerns-hero {
	position: relative;
	min-height: clamp(300px, 36vh, 400px);
	display: flex;
	align-items: flex-end;
}

.concerns-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	-webkit-mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.55) 5%,
		#000 12%,
		#000 78%,
		rgba(0, 0, 0, 0.5) 90%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.55) 5%,
		#000 12%,
		#000 78%,
		rgba(0, 0, 0, 0.5) 90%,
		transparent 100%
	);
}

.concerns-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% 18%;
	display: block;
	filter: saturate(0.74) contrast(1.02) brightness(0.88);
	transform: scale(1.06);
}

.concerns-hero-fade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			115deg,
			rgba(6, 13, 23, 0.96) 0%,
			rgba(6, 13, 23, 0.82) 28%,
			rgba(6, 13, 23, 0.32) 54%,
			rgba(6, 13, 23, 0.12) 74%,
			rgba(6, 13, 23, 0.4) 100%
		),
		linear-gradient(
			to bottom,
			rgba(6, 13, 23, 0.95) 0%,
			rgba(6, 13, 23, 0.45) 8%,
			rgba(6, 13, 23, 0.12) 18%,
			transparent 30%
		),
		linear-gradient(
			to top,
			rgba(6, 13, 23, 0.98) 0%,
			rgba(6, 13, 23, 0.55) 10%,
			rgba(6, 13, 23, 0.18) 24%,
			transparent 40%
		);
	pointer-events: none;
}

.concerns-hero-grain {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.12;
	pointer-events: none;
	background:
		repeating-linear-gradient(
			-18deg,
			transparent 0,
			transparent 11px,
			rgba(255, 255, 255, 0.035) 11px,
			rgba(255, 255, 255, 0.035) 12px
		);
	mix-blend-mode: soft-light;
	-webkit-mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		#000 10%,
		#000 82%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		#000 10%,
		#000 82%,
		transparent 100%
	);
}

.concerns-hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
	padding: 112px 32px 36px;
}

.eyebrow--light {
	color: var(--color-accent-warm-bright);
}

.eyebrow--light::before {
	background: var(--color-accent-warm-bright);
}

.concerns-hero-content h2 {
	margin: 12px 0 16px;
	font-size: clamp(26px, 3.8vw, 40px);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.35;
	color: var(--color-white);
}

.concerns-hero-kicker {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.62);
}

.concerns-hero-content p {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.72);
	white-space: nowrap;
}

.sp-br {
	display: none;
}

.concerns-panels {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 96px 32px 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.concern-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	min-height: 320px;
	background: transparent;
	border: none;
	overflow: visible;
	isolation: isolate;
}

.concern-panel--media-right {
	grid-template-columns: 0.95fr 1.05fr;
}

.concern-panel--media-right .concern-panel-media {
	order: 2;
}

.concern-panel--media-right .concern-panel-body {
	order: 1;
}

.concern-panel-media {
	position: relative;
	min-height: 280px;
	overflow: hidden;
}

.concern-panel-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.82) contrast(1.04);
}

.concern-panel-slash {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.concern-panel--media-left .concern-panel-slash {
	background:
		linear-gradient(
			105deg,
			transparent 0%,
			transparent 48%,
			rgba(6, 13, 23, 0.35) 62%,
			rgba(6, 13, 23, 0.92) 78%,
			rgba(6, 13, 23, 0.98) 100%
		),
		linear-gradient(
			to top,
			rgba(6, 13, 23, 0.55) 0%,
			transparent 45%
		);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.concern-panel--media-right .concern-panel-slash {
	background:
		linear-gradient(
			-105deg,
			transparent 0%,
			transparent 48%,
			rgba(6, 13, 23, 0.35) 62%,
			rgba(6, 13, 23, 0.92) 78%,
			rgba(6, 13, 23, 0.98) 100%
		),
		linear-gradient(
			to top,
			rgba(6, 13, 23, 0.55) 0%,
			transparent 45%
		);
	clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.concern-panel--media-left .concern-panel-media {
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.concern-panel--media-right .concern-panel-media {
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.concern-panel-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 36px 40px 28px;
	background: transparent;
}

.concern-panel--media-right .concern-panel-body {
	padding: 40px 28px 40px 36px;
	text-align: left;
}

.concern-panel-num {
	display: block;
	margin-bottom: 10px;
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 168, 118, 0.55);
	text-stroke: 1px rgba(201, 168, 118, 0.55);
}

.concern-panel-label {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--color-accent-warm-bright);
	text-transform: none;
}

.concern-panel-body h3 {
	margin: 0 0 14px;
	font-size: clamp(17px, 1.7vw, 20px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.65;
	color: var(--color-white);
}

.concern-panel-body > p:last-child {
	margin: 0;
	font-size: 13px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.68);
	max-width: 32em;
}

.concerns-bridge {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 20px 32px 72px;
	text-align: center;
}

.concerns-bridge-arrows {
	display: flex;
	justify-content: center;
	margin: 0 0 28px;
	color: var(--color-accent-warm-bright);
}

.concerns-bridge-arrows svg {
	display: block;
	width: min(320px, 72vw);
	height: auto;
}

.concerns-bridge-arrow--1 {
	opacity: 0.35;
}

.concerns-bridge-arrow--2 {
	opacity: 0.65;
}

.concerns-bridge-arrow--3 {
	opacity: 1;
}

.concerns-bridge p {
	margin: 0;
	font-size: clamp(17px, 2vw, 20px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.85;
	color: var(--color-accent-warm-bright);
	white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
	.concern-panel-media img {
		transform: none;
	}
}

/* Concern list (legacy / other pages) */
#concerns .feature-split {
	gap: 48px;
}

#concerns .feature-split-media {
	flex: 0 0 38%;
	max-width: 400px;
}

#concerns .feature-split-media img {
	object-position: center 18%;
}

#concerns .feature-split-text {
	justify-content: flex-start;
}

.concern-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.concern-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 14px;
	color: var(--color-charcoal);
}

.concern-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-navy);
}

.concern-icon .icon {
	width: 18px;
	height: 18px;
}

.feature-split-text p.concern-note {
	margin: 0;
	padding: 18px 20px;
	background: var(--color-off-white);
	border-left: 3px solid var(--color-accent);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--color-accent);
}

/* Concern cards (legacy) */
.concern-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.concern-card {
	padding: 32px 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	text-align: center;
}

.concern-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	color: var(--color-navy);
}

.concern-card-icon .icon {
	width: 30px;
	height: 30px;
	stroke-width: 1.2;
}

.concern-card p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 1.75;
}

/* Section head — Algo Artis / Uniform editorial */
.section-head {
	max-width: var(--max-width);
	margin: 0 auto 48px;
	position: relative;
}

.section-head--pad {
	padding: 0 32px;
}

.section-head-en {
	display: block;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-accent-warm);
}

.section-head-ja {
	margin: 0 0 18px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.35;
	color: var(--color-navy);
}

.section-head-lead {
	margin: 0;
	max-width: 34em;
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-gray);
}

.section-head--light .section-head-en {
	color: var(--color-accent-warm-bright);
}

.section-head--light .section-head-ja {
	color: var(--color-white);
}

.section-head--light .section-head-lead {
	color: rgba(255, 255, 255, 0.72);
}

/* Business — photo stage + editorial body */
.business-block {
	background: var(--color-white);
	color: var(--color-navy);
	padding: 0 0 88px;
	overflow: hidden;
}

.business-stage {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 320px;
	margin-bottom: 48px;
}

.business-stage-copy {
	padding: 72px 32px 40px;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.business-stage-copy .section-head {
	margin-bottom: 20px;
}

.business-lead {
	margin: 0;
	max-width: 34em;
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-gray);
}

.business-stage-visual {
	position: relative;
	margin: 0;
	min-height: 280px;
	overflow: hidden;
}

.business-stage-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 48%;
	display: block;
	filter: saturate(0.8) contrast(1.03);
}

.business-stage-visual-fade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.35) 42%, transparent 70%),
		linear-gradient(to top, rgba(255, 255, 255, 0.55) 0%, transparent 40%);
	pointer-events: none;
	z-index: 1;
}

.business-body {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.business-kicker {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--color-accent-warm);
}

.business-main h3,
.business-side h3 {
	margin: 0 0 14px;
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	color: var(--color-navy);
}

.business-main > p,
.business-side > p {
	margin: 0 0 28px;
	max-width: 40em;
	font-size: 14px;
	line-height: 1.9;
	color: var(--color-gray);
}

.business-side {
	position: relative;
	background: var(--color-navy);
	color: var(--color-white);
	padding: 36px 32px;
	border: none;
}

.business-side .business-kicker {
	color: var(--color-accent-warm-bright);
}

.business-side h3 {
	color: var(--color-white);
}

.business-side > p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.business-side::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--color-accent-warm-bright);
}

.business-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	counter-reset: none;
}

.business-step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	padding: 28px 0;
	border-top: 1px solid var(--color-border);
	align-items: center;
}

.business-step:last-child {
	border-bottom: 1px solid var(--color-border);
}

.business-step-num {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(12, 24, 41, 0.35);
}

.business-step-body h4 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--color-navy);
}

.business-step-body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.85;
	color: var(--color-gray);
}

@media (min-width: 960px) {
	.business-stage {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		align-items: stretch;
		min-height: 420px;
		margin-bottom: 56px;
	}

	.business-stage-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 80px 48px 80px max(32px, calc((100vw - var(--max-width)) / 2 + 32px));
		max-width: none;
		margin: 0;
	}

	.business-stage-visual {
		min-height: 100%;
		clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
	}

	.business-stage-visual-fade {
		background:
			linear-gradient(105deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 28%, transparent 55%);
	}

	.business-body {
		grid-template-columns: 1fr;
	}
}

/* Outcomes board — equal 4-up grid */
.outcome-board {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	border: none;
}

.outcome-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	border: none;
	background: transparent;
}

.outcome-tile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.outcome-tile-num {
	display: block;
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 168, 118, 0.7);
}

.outcome-tile-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--color-accent-warm-bright);
}

.outcome-icon {
	display: block;
	width: 44px;
	height: 44px;
}

.outcome-tile-body h3 {
	margin: 0 0 12px;
	font-size: clamp(17px, 1.8vw, 20px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	color: var(--color-white);
}

.outcome-tile-body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 900px) {
	.outcome-board {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 40px 48px;
		border: none;
		padding-top: 8px;
	}

	.outcome-tile {
		padding: 0;
		border: none;
		min-height: 0;
	}

	.outcome-tile:last-child,
	.outcome-tile:first-child {
		padding: 0;
	}
}

@media (max-width: 899px) {
	.outcome-board {
		grid-template-columns: 1fr 1fr;
		gap: 36px 32px;
		border: none;
	}

	.outcome-tile {
		padding: 0;
	}

	.outcome-tile:nth-child(odd),
	.outcome-tile:nth-child(even) {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 560px) {
	.outcome-board {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.outcome-tile:nth-child(odd),
	.outcome-tile:nth-child(even) {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Strengths — photo + stack continuity */
.section--split-visual {
	display: grid;
	grid-template-columns: 1fr;
	padding: 0;
	overflow: hidden;
}

.split-visual-media {
	position: relative;
	min-height: 280px;
	margin: 0;
	overflow: hidden;
}

.split-visual-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.78) contrast(1.04);
}

.split-visual-media-fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, transparent 45%);
	pointer-events: none;
}

.split-visual-copy {
	padding: 56px 32px 72px;
	background: var(--color-white);
}

.strength-stack {
	display: grid;
	gap: 0;
	margin-top: 8px;
}

.strength-stack-item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	padding: 26px 0;
	border-top: 1px solid var(--color-border);
	align-items: start;
}

.strength-stack-item:last-child {
	border-bottom: 1px solid var(--color-border);
}

.strength-stack-num {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.1;
	color: var(--color-accent-warm);
}

.strength-stack-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--color-navy);
}

.strength-stack-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.85;
	color: var(--color-gray);
}

@media (min-width: 960px) {
	.section--split-visual {
		grid-template-columns: 0.9fr 1.1fr;
		min-height: 640px;
	}

	.split-visual-media {
		min-height: 100%;
		clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
	}

	.split-visual-media-fade {
		background: linear-gradient(95deg, transparent 40%, rgba(255, 255, 255, 0.55) 78%, rgba(255, 255, 255, 0.95) 100%);
	}

	.split-visual-copy {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 72px 48px 72px 40px;
	}
}

#strengths .split-visual-media img {
	object-position: 50% 42%;
	filter: saturate(0.9) contrast(1.04) brightness(0.98);
}

@media (min-width: 900px) {
	#strengths .split-visual-media-fade {
		background: linear-gradient(95deg, transparent 48%, rgba(255, 255, 255, 0.35) 82%, rgba(255, 255, 255, 0.92) 100%);
	}
}

@media (max-width: 959px) {
	#strengths.section--split-visual {
		display: flex;
		flex-direction: column;
		padding: 48px 0 56px;
	}

	#strengths .split-visual-copy,
	#strengths .section-head {
		display: contents;
	}

	#strengths .section-head-en {
		order: 1;
		padding: 0 32px;
		margin-bottom: 10px;
	}

	#strengths .section-head-ja {
		order: 2;
		padding: 0 32px;
		margin-bottom: 20px;
	}

	#strengths .split-visual-media {
		order: 3;
		min-height: 0;
		height: auto;
		aspect-ratio: 2 / 1;
		max-height: 180px;
		margin: 0 0 24px;
	}

	#strengths .split-visual-media img {
		object-position: 50% 38%;
	}

	#strengths .split-visual-media-fade {
		display: none;
	}

	#strengths .section-head-lead {
		order: 4;
		padding: 0 32px;
		margin: 0 0 8px;
	}

	#strengths .strength-stack {
		order: 5;
		padding: 0 32px;
		margin-top: 0;
	}
}

/* Process flow — connected node timeline */
.process-flow {
	list-style: none;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 8px 32px 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	position: relative;
}

.process-flow-step {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 0 20px;
	align-items: start;
	padding: 0 0 36px;
}

.process-flow-step:last-child {
	padding-bottom: 0;
}

/* Vertical connector (mobile) */
.process-flow-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 48px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		rgba(201, 168, 118, 0.8) 0%,
		rgba(255, 255, 255, 0.16) 100%
	);
}

.process-flow-marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(201, 168, 118, 0.9);
	background: #060d17;
	box-sizing: border-box;
}

.process-flow-marker--goal {
	border-color: var(--color-accent-warm-bright);
	background: #0f1520;
}

.process-flow-num {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	color: var(--color-accent-warm-bright);
}

.process-flow-body {
	padding-top: 4px;
	min-width: 0;
}

.process-flow-body h3 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	color: var(--color-white);
}

.process-flow-body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 900px) {
	.process-flow {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0;
		padding: 20px 32px 0;
		align-items: start;
	}

	/*
	 * Continuous spine from 01 center to the left edge of 04
	 * (do not run the line into the final node).
	 */
	.process-flow::before {
		content: "";
		position: absolute;
		top: 43px; /* padding-top 20 + half of 48px marker */
		left: calc(32px + (100% - 64px) / 8);
		right: calc(32px + (100% - 64px) / 8 + 24px);
		height: 2px;
		background: linear-gradient(
			to right,
			rgba(201, 168, 118, 0.95) 0%,
			rgba(201, 168, 118, 0.55) 70%,
			rgba(201, 168, 118, 0.35) 100%
		);
		z-index: 0;
		pointer-events: none;
	}

	.process-flow-step {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0 20px;
		gap: 0;
	}

	.process-flow-step:not(:last-child)::before {
		display: none;
	}

	/* Direction chevron midway between nodes */
	.process-flow-step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 20px;
		right: -6px;
		width: 10px;
		height: 10px;
		border-top: 2px solid rgba(201, 168, 118, 0.85);
		border-right: 2px solid rgba(201, 168, 118, 0.85);
		transform: rotate(45deg);
		background: #060d17;
		z-index: 2;
		pointer-events: none;
		box-sizing: border-box;
	}

	.process-flow-marker {
		margin-bottom: 28px;
	}

	.process-flow-body {
		padding-top: 0;
		max-width: 18em;
	}

	.process-flow-body h3 {
		font-size: 15px;
		margin-bottom: 12px;
	}

	.process-flow-body p {
		font-size: 13px;
	}
}

@media (max-width: 899px) {
	.process-flow {
		padding-left: 28px;
		padding-right: 28px;
	}
}

/* Cases cinematic rhythm — full-bleed editorial rows */
.section--cases {
	padding-top: 96px;
	padding-bottom: 72px;
	background: var(--color-off-white);
}

.section--bleed {
	padding-left: 0;
	padding-right: 0;
}

.case-showcase--cinematic {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	max-width: none;
	padding: 0;
}

.case-showcase--cinematic .case-story {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	background: transparent;
	box-shadow: none;
	border-top: 1px solid var(--color-border);
}

.case-showcase--cinematic .case-story:last-child {
	border-bottom: 1px solid var(--color-border);
}

.case-showcase--cinematic .case-story-visual {
	aspect-ratio: 16 / 10;
	clip-path: none;
}

.case-showcase--cinematic .case-story-content {
	padding: 36px 32px 44px;
	max-width: 640px;
}

.case-showcase--cinematic .case-story-content h3 {
	font-size: clamp(20px, 2.2vw, 28px);
	margin-bottom: 18px;
}

@media (min-width: 900px) {
	.case-showcase--cinematic .case-story {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		min-height: 380px;
	}

	.case-showcase--cinematic .case-story:nth-child(even) {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}

	.case-showcase--cinematic .case-story:nth-child(even) .case-story-visual {
		order: 2;
		clip-path: none;
	}

	.case-showcase--cinematic .case-story-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		padding: 36px 48px;
	}

	.case-showcase--cinematic .case-story:nth-child(even) .case-story-content {
		order: 1;
	}

	.case-showcase--cinematic .case-story-visual {
		aspect-ratio: auto;
		min-height: 100%;
		height: 100%;
	}
}

@media (max-width: 860px) {
	.business-block {
		padding-bottom: 64px;
	}

	.business-stage-copy,
	.business-body,
	.outcome-board,
	.business-stage-copy,
	.business-body,
	.outcome-board,
	.split-visual-copy,
	.process-flow,
	.section-head--pad {
		padding-left: 24px;
		padding-right: 24px;
	}

	#strengths .section-head-en,
	#strengths .section-head-ja,
	#strengths .section-head-lead,
	#strengths .strength-stack {
		padding-left: 24px;
		padding-right: 24px;
	}

	.case-showcase--cinematic .case-story-visual,
	.case-showcase--cinematic .case-story:nth-child(even) .case-story-visual {
		clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
	}

	.case-showcase--cinematic .case-story-content {
		padding: 28px 24px 36px;
	}
}

/* Legacy rails kept for compatibility */
.outcome-rail,
.strength-rail {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.outcome-row,
.strength-row {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 24px;
	padding: 28px 0;
	border-top: 1px solid var(--color-border);
	align-items: start;
}

.outcome-row:last-child,
.strength-row:last-child {
	border-bottom: 1px solid var(--color-border);
}

.outcome-row-num,
.strength-row-num {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.1;
	color: var(--color-accent-warm);
}

.outcome-row-text h3,
.strength-row h3 {
	margin: 0 0 8px;
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.55;
	color: var(--color-navy);
}

.outcome-row-text p,
.strength-row p {
	margin: 0;
	max-width: 40em;
	font-size: 14px;
	line-height: 1.85;
	color: var(--color-gray);
}

.section--dark .outcome-row,
.section--dark .strength-row {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.section--dark .outcome-row:last-child,
.section--dark .strength-row:last-child {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--dark .outcome-row-num,
.section--dark .strength-row-num {
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 168, 118, 0.7);
}

.section--dark .outcome-row-text h3,
.section--dark .strength-row h3 {
	color: var(--color-white);
}

.section--dark .outcome-row-text p,
.section--dark .strength-row p {
	color: rgba(255, 255, 255, 0.68);
}

.process-rail {
	list-style: none;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.process-rail-item {
	padding: 32px 24px 36px 0;
	border-right: 1px solid var(--color-border);
}

.process-rail-item:last-child {
	border-right: none;
	padding-right: 0;
}

.process-rail-num {
	display: block;
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-accent-warm);
}

.process-rail-item h3 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.55;
	color: var(--color-navy);
}

.process-rail-item p {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	color: var(--color-gray);
}

.section--dark .process-rail {
	border-top-color: rgba(255, 255, 255, 0.12);
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--dark .process-rail-item {
	border-right-color: rgba(255, 255, 255, 0.12);
}

.section--dark .process-rail-num {
	color: transparent;
	-webkit-text-stroke: 1px rgba(201, 168, 118, 0.7);
}

.section--dark .process-rail-item h3 {
	color: var(--color-white);
}

.section--dark .process-rail-item p {
	color: rgba(255, 255, 255, 0.68);
}

.section--dark .faq-list {
	border-top-color: rgba(255, 255, 255, 0.12);
}

.section--dark .faq-item {
	border-color: rgba(255, 255, 255, 0.12);
	background: transparent;
}

.section--dark .faq-item summary {
	color: var(--color-white);
}

.section--dark .faq-item summary::after {
	color: rgba(255, 255, 255, 0.55);
}

.section--dark .faq-item p {
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
	.business-step {
		grid-template-columns: 40px 1fr;
		gap: 14px;
	}

	.outcome-rail,
	.strength-rail,
	.process-rail {
		padding-left: 24px;
		padding-right: 24px;
	}

	.process-rail {
		grid-template-columns: 1fr;
	}

	.process-rail-item {
		border-right: none;
		border-bottom: 1px solid var(--color-border);
		padding: 24px 0;
	}

	.process-rail-item:last-child {
		border-bottom: none;
	}

	.section--dark .process-rail-item {
		border-bottom-color: rgba(255, 255, 255, 0.12);
	}
}

/* Feature card grid */
.feature-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.feature-card {
	padding: 32px 28px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.feature-card-icon {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
	color: var(--color-navy);
}

.feature-card-icon .icon {
	width: 26px;
	height: 26px;
	stroke-width: 1.2;
}

.feature-card h3 {
	margin: 0 0 12px;
	padding-left: 14px;
	border-left: 3px solid var(--color-navy);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.5;
}

.feature-card p {
	margin: 0;
	font-size: 13px;
	color: var(--color-gray);
	line-height: 1.85;
}

/* Mechanism list */
.mechanism-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
}

.mechanism-item {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	align-items: start;
	padding: 18px 16px;
	background: var(--color-off-white);
	border-left: 2px solid var(--color-border);
}

.mechanism-item-icon {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 40px;
	padding-top: 2px;
	color: var(--color-navy);
}

.mechanism-item-icon .icon {
	width: 24px;
	height: 24px;
	stroke-width: 1.2;
}

.mechanism-item h3 {
	margin: 0 0 6px;
	padding-left: 12px;
	border-left: 3px solid var(--color-navy);
	font-size: 14px;
	font-weight: 700;
	color: var(--color-navy);
}

.mechanism-item p {
	margin: 0;
	font-size: 13px;
	color: var(--color-gray);
	line-height: 1.75;
}

/* Plan grid */
.plan-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.plan-card {
	padding: 28px 24px 32px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.plan-card--featured {
	border-color: var(--color-navy);
	border-width: 2px;
}

.plan-card--muted {
	background: var(--color-off-white);
}

.plan-num {
	display: block;
	margin-bottom: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--color-muted);
}

.plan-badge {
	display: inline-block;
	margin-bottom: 14px;
	padding: 5px 12px;
	background: var(--color-accent-warm);
	color: var(--color-white);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.plan-card h3 {
	margin: 0 0 16px;
	padding-left: 14px;
	border-left: 3px solid var(--color-navy);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.5;
}

.plan-card--featured h3 {
	border-left-color: var(--color-accent-warm);
}

.plan-price {
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--color-muted);
}

.plan-price strong {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: 0.02em;
}

.plan-price--text strong,
.plan-price--text {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
}

.plan-features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.plan-features li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--color-charcoal);
	line-height: 1.7;
}

.plan-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	background: var(--color-navy);
}

.plan-note {
	margin: 16px 0 0;
	font-size: 11px;
	color: var(--color-muted);
	line-height: 1.6;
}

.plan-note--alert {
	color: var(--color-navy);
	font-weight: 600;
}

.plan-section-note {
	max-width: var(--max-width);
	margin: 24px auto 0;
	padding: 0 32px;
	text-align: center;
}

.case-story-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin: 0 0 16px;
	padding: 0;
}

.case-story-meta div {
	display: flex;
	gap: 8px;
	font-size: 12px;
}

.case-story-meta dt {
	margin: 0;
	color: var(--color-muted);
	font-weight: 600;
}

.case-story-meta dd {
	margin: 0;
	color: var(--color-charcoal);
	font-weight: 600;
}

/* Contact page */
.contact-page-content {
	max-width: 640px;
}

.contact-intro {
	margin-bottom: 40px;
	padding: 32px 28px;
	background: var(--color-accent-warm-tint);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-accent-warm);
}

.contact-intro-tag {
	display: inline-block;
	margin-bottom: 14px;
	padding: 4px 10px;
	background: var(--color-accent-warm);
	color: var(--color-white);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.contact-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 40px;
	font-size: 12px;
	color: var(--color-muted);
	letter-spacing: 0.04em;
}

.contact-divider::before,
.contact-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--color-border);
}

.contact-intro h2 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color-navy);
}

.contact-intro p {
	margin: 0 0 24px;
	font-size: 14px;
	color: var(--color-gray);
	line-height: 1.85;
}

.contact-channels {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.contact-email {
	margin: 0;
	font-size: 14px;
	color: var(--color-charcoal);
}

.contact-email a {
	color: var(--color-navy);
	font-weight: 600;
}

/* CTA band */
.cta-band {
	background: var(--color-navy);
	padding: 32px 0;
}

.cta-band--dark {
	background: var(--color-navy-dark);
}

.cta-band-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cta-band-text {
	padding-left: 16px;
	border-left: 2px solid var(--color-accent-warm-bright);
}

.cta-band-text strong {
	display: block;
	color: var(--color-white);
	font-size: 16px;
	margin-bottom: 4px;
}

.cta-band-text span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

.cta-band .button {
	background: var(--color-white);
	color: var(--color-navy);
	border-color: var(--color-white);
	flex-shrink: 0;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.cta-band .button:hover {
	background: var(--color-accent-warm);
	color: var(--color-white);
	border-color: var(--color-accent-warm);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

/* Reason list */
.reason-list {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
}

.reason-item {
	display: grid;
	grid-template-columns: 96px 1fr;
	background: var(--color-white);
}

.reason-num {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0;
	background: var(--color-navy);
	border-right: none;
}

.reason-num span {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-accent-warm-bright);
	letter-spacing: 0.04em;
	line-height: 1;
}

.reason-body {
	padding: 32px 36px 32px 32px;
	border-left: 1px solid var(--color-border);
}

.reason-label {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--color-muted);
	text-transform: uppercase;
}

.reason-body h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 12px;
	padding-left: 16px;
	border-left: 3px solid var(--color-navy);
	letter-spacing: 0.03em;
	line-height: 1.5;
}

.reason-body p {
	font-size: 14px;
	color: var(--color-gray);
	margin: 0;
	padding-left: 19px;
	line-height: 1.85;
}

/* Merit grid */
.merit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
}

.merit-card {
	border: 1px solid var(--color-border);
	padding: 28px 24px 32px;
	background: var(--color-white);
	position: relative;
}

.merit-card-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
	text-align: center;
}

.merit-num {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: 0.06em;
	line-height: 1;
}

.merit-visual {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	color: var(--color-navy);
}

.merit-icon {
	width: 72px;
	height: 72px;
	display: block;
}

.merit-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 10px;
	padding-left: 14px;
	border-left: 3px solid var(--color-navy);
	line-height: 1.5;
}

.merit-card p {
	font-size: 13px;
	color: var(--color-gray);
	margin: 0;
	padding-left: 17px;
	line-height: 1.85;
}

/* Table wrap */
.table-wrap {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	overflow: visible;
}

.section-link {
	text-align: center;
	margin: 32px 0 0;
}

.section-link a {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-navy);
	letter-spacing: 0.04em;
}

/* Testimonial wide */
.testimonial-grid--wide {
	grid-template-columns: repeat(3, 1fr);
}

/* BPaaS diagram */
.bpaas-diagram {
	margin-top: 28px;
	padding: 24px 20px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.bpaas-compare {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 8px;
	align-items: stretch;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.bpaas-compare-track {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 10px;
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
}

.bpaas-compare-track--new {
	background: var(--color-white);
	border: 2px solid var(--color-navy);
}

.bpaas-compare-tag {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--color-muted);
	text-align: center;
}

.bpaas-compare-track--new .bpaas-compare-tag {
	color: var(--color-navy);
}

.bpaas-compare-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
}

.bpaas-compare-visual--loop {
	flex-wrap: nowrap;
}

.bpaas-compare-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 40px;
	color: var(--color-muted);
}

.bpaas-compare-node .icon {
	width: 18px;
	height: 18px;
}

.bpaas-compare-node em {
	font-style: normal;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.bpaas-compare-node.is-active {
	color: var(--color-navy);
}

.bpaas-compare-line {
	flex: 1;
	min-width: 12px;
	max-width: 20px;
	height: 2px;
	background: var(--color-border);
}

.bpaas-compare-line.is-active {
	background: var(--color-accent);
}

.bpaas-compare-stop {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-muted);
	border: 1px solid var(--color-border);
	background: var(--color-white);
	line-height: 1;
}

.bpaas-compare-note {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-charcoal);
	text-align: center;
	line-height: 1.4;
}

.bpaas-compare-track--new .bpaas-compare-note {
	color: var(--color-navy);
}

.bpaas-compare-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-accent);
	padding-top: 24px;
}

.bpaas-flow-heading {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-muted);
	text-align: center;
}

.bpaas-flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.bpaas-flow-step {
	position: relative;
	display: grid;
	grid-template-columns: auto auto 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
		"num icon body"
		"num icon body";
	column-gap: 10px;
	row-gap: 2px;
	align-items: center;
	padding: 14px 12px;
	background: var(--color-off-white);
	border: 1px solid var(--color-border);
}

.bpaas-flow-step.is-last {
	background: var(--color-navy);
	border-color: var(--color-navy);
}

.bpaas-flow-step--simple {
	grid-template-columns: auto 1fr;
	grid-template-areas: "num body";
	align-items: start;
}

.bpaas-flow-num {
	grid-area: num;
	align-self: start;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-muted);
	line-height: 1;
	padding-top: 4px;
}

.bpaas-flow-step.is-last .bpaas-flow-num {
	color: rgba(255, 255, 255, 0.65);
}

.bpaas-flow-icon {
	grid-area: icon;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-navy);
}

.bpaas-flow-step.is-last .bpaas-flow-icon {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--color-white);
}

.bpaas-flow-icon .icon {
	width: 20px;
	height: 20px;
}

.bpaas-flow-body {
	grid-area: body;
	min-width: 0;
}

.bpaas-flow-body strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.bpaas-flow-step.is-last .bpaas-flow-body strong {
	color: var(--color-white);
}

.bpaas-flow-body span {
	display: block;
	font-size: 11px;
	color: var(--color-gray);
	line-height: 1.5;
}

.bpaas-flow-step.is-last .bpaas-flow-body span {
	color: rgba(255, 255, 255, 0.75);
}

#about-bpaas .feature-split-text {
	min-width: 320px;
}

@media (max-width: 640px) {
	.bpaas-compare {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.bpaas-compare-divider {
		padding: 0;
		transform: rotate(90deg);
	}

	.bpaas-compare-visual--loop {
		flex-wrap: wrap;
		justify-content: center;
	}

	.bpaas-flow {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.bpaas-flow-step {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"num body"
			"icon body";
		column-gap: 12px;
		padding: 16px;
	}

	.bpaas-flow-icon {
		width: 44px;
		height: 44px;
	}

	.bpaas-flow-body strong {
		font-size: 15px;
	}

	.bpaas-flow-body span {
		font-size: 12px;
	}
}

/* Strength inline */
.strength-grid--inline {
	margin-top: 24px;
	padding: 0;
	background: transparent;
	border: none;
}

.strength-grid--inline .strength-item {
	border: 1px solid var(--color-border);
}

/* Team */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.team-card {
	border: 1px solid var(--color-border);
	padding: 20px;
	background: var(--color-white);
}

.team-avatar {
	width: 48px;
	height: 48px;
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-navy);
	margin-bottom: 12px;
}

.team-avatar .icon {
	width: 22px;
	height: 22px;
}

.team-card h3 {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 4px;
}

.team-role {
	font-size: 11px;
	color: var(--color-muted);
	margin: 0 0 8px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.team-card p:last-child {
	font-size: 12px;
	color: var(--color-gray);
	margin: 0;
	line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
	.hero-graphic .layer-bg,
	.hero-graphic .layer-rings,
	.hero-graphic .layer-path,
	.hero-graphic .layer-merge circle,
	.hero-graphic .layer-grid-result rect,
	.hero-graphic .layer-node,
	.hero-graphic .layer-particles circle,
	.hero-graphic .layer-labels {
		animation: none;
		opacity: 1;
		stroke-dashoffset: 0;
	}
}

@media (max-width: 900px) {
	.hero--has-bg,
	.hero--has-video {
		background-position: 78% center;
		min-height: clamp(520px, 72vh, 680px);
	}

	.hero--has-bg::before,
	.hero--has-video .hero-media-fade {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.22) 0%,
			rgba(255, 255, 255, 0.42) 45%,
			rgba(255, 255, 255, 0.62) 100%
		);
	}

	.hero--has-bg .hero-content,
	.hero--has-video .hero-content {
		max-width: none;
		text-align: center;
	}

	.hero-video--pc {
		display: none;
	}

	.hero-video--sp {
		display: block;
		object-position: center 40%;
	}

	.hero--has-video .hero-content h1 {
		text-shadow: 0 0 22px rgba(255, 255, 255, 0.95), 0 1px 12px rgba(255, 255, 255, 0.85);
	}

	.hero--editorial .hero-body > p {
		color: #111;
		margin-bottom: 48px;
		text-shadow: 0 1px 14px rgba(255, 255, 255, 0.9);
	}

	.hero-chip:not(:last-child)::after {
		color: #111;
	}

	.hero--editorial .hero-title {
		font-size: clamp(26px, 5vw, 40px);
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.hero--editorial .hero-title-line--main {
		max-width: none;
		padding-right: 0;
	}

	.hero--editorial .hero-body,
	.hero--editorial .hero-body > p,
	.hero p {
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-chips {
		justify-content: center;
	}

	.hero--split .hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		order: -1;
	}

	.merit-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.concern-cards {
		grid-template-columns: 1fr;
	}

	.concern-panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.concern-panel--media-right,
	.concern-panel--media-left {
		grid-template-columns: 1fr;
	}

	.concern-panel--media-right .concern-panel-media,
	.concern-panel--media-left .concern-panel-media {
		order: 0;
		clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
		min-height: 220px;
		aspect-ratio: 16 / 10;
	}

	.concern-panel--media-right .concern-panel-body,
	.concern-panel--media-left .concern-panel-body {
		order: 1;
		padding: 28px 24px 32px;
	}

	.concerns-panels .concern-panel:last-child {
		min-height: 0;
		align-content: start;
	}

	.concerns-panels .concern-panel:last-child .concern-panel-body {
		padding: 20px 24px 0;
		justify-content: flex-start;
		min-height: 0;
	}

	.concerns-bridge {
		padding-top: 0;
		padding-bottom: 48px;
	}

	.concerns-bridge-arrows {
		margin: 8px 0 20px;
	}

	.concern-panel--media-left .concern-panel-slash,
	.concern-panel--media-right .concern-panel-slash {
		clip-path: none;
		background:
			linear-gradient(
				to top,
				rgba(6, 13, 23, 0.95) 0%,
				rgba(6, 13, 23, 0.35) 42%,
				transparent 70%
			);
	}

	.concerns-hero {
		min-height: clamp(240px, 40vh, 320px);
	}

	.concerns-hero-content {
		padding: 88px 24px 28px;
	}

	.concerns-hero-content p {
		white-space: normal;
	}

	.concerns-bridge p {
		white-space: normal;
		font-size: 16px;
	}

	.concerns-panels {
		padding-top: 72px;
	}

	.concerns-panels,
	.concerns-bridge {
		padding-left: 24px;
		padding-right: 24px;
	}

	.sp-br {
		display: block;
	}

	.concern-panel-num {
		font-size: 34px;
	}

	.feature-card-grid,
	.plan-grid {
		grid-template-columns: 1fr;
	}

	.reason-item {
		grid-template-columns: 64px 1fr;
	}

	.reason-num {
		padding-top: 0;
	}

	.reason-num span {
		font-size: 24px;
	}

	.reason-body {
		padding: 24px 20px 24px 18px;
	}

	.reason-body h3 {
		font-size: 15px;
		padding-left: 12px;
	}

	.reason-body p {
		font-size: 13px;
		padding-left: 0;
	}

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

	.feature-split,
	.feature-split.is-reverse {
		flex-direction: column;
		gap: 28px;
	}

	.feature-split-text {
		justify-content: flex-start;
	}

	.feature-split-media,
	#concerns .feature-split-media {
		flex: none;
		max-width: 100%;
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 10;
		max-height: 300px;
		align-self: auto;
	}

	.feature-split-media img {
		position: absolute;
		inset: 0;
		height: 100%;
	}

	.feature-split-graphic {
		flex: none;
		max-width: 280px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.stats-grid--two {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid--three {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.stat-item {
		border-left: none;
		padding: 0;
	}

	.stat-item .stat-number {
		font-size: 58px;
	}

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

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

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

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

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

@media (max-width: 768px) {
	.hero {
		padding: 64px 0 56px;
	}

	.hero--has-bg,
	.hero--has-video {
		min-height: clamp(540px, 72svh, 680px);
		padding: 0;
		background-position: 85% 40%;
		align-items: center;
	}

	.hero--has-bg .hero-inner,
	.hero--has-video .hero-inner {
		padding: 72px 24px 56px;
	}

	.hero--has-bg::before,
	.hero--has-video .hero-media-fade {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.18) 0%,
			rgba(255, 255, 255, 0.4) 48%,
			rgba(255, 255, 255, 0.58) 100%
		);
	}

	.hero--has-bg .hero-content,
	.hero--has-video .hero-content {
		max-width: none;
	}

	.hero-video--sp {
		object-position: center 38%;
	}

	.hero--editorial .hero-title {
		font-size: clamp(24px, 6.8vw, 32px);
		letter-spacing: 0.03em;
		margin-bottom: 28px;
	}

	.hero--editorial .hero-title-line--main {
		padding-right: 0;
	}

	.hero h1 {
		font-size: 26px;
	}

	.hero-headline-line {
		font-size: 22px;
		letter-spacing: 0.02em;
	}

	.merit-grid,
	.reason-list,
	.table-wrap,
	.cta-band-inner {
		padding-left: 24px;
		padding-right: 24px;
	}

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

	.merit-num {
		font-size: 30px;
	}

	.merit-visual {
		width: 88px;
		height: 88px;
	}

	.merit-icon {
		width: 64px;
		height: 64px;
	}

	#acquisition-teaser {
		padding-left: 24px;
		padding-right: 24px;
	}

	.acquisition-teaser {
		padding: 32px 24px;
	}

	.acquisition-detail {
		padding: 0 24px;
	}

	.cta-band-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}

	.cta-band-text {
		min-width: 0;
		max-width: 100%;
	}

	.cta-band-text strong {
		line-height: 1.7;
		overflow-wrap: anywhere;
	}

	.cta-band .button {
		align-self: center;
		padding: 16px;
	}

	.testimonial-grid--wide {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 64px 0;
	}

	.domain-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.domain-item-caption h3 {
		font-size: 17px;
	}

	.flow-block {
		padding-left: 24px;
		padding-right: 24px;
	}

	.container,
	.hero-inner,
	.section-header,
	.pillar-grid,
	.feature-split,
	.strength-grid,
	.testimonial-grid,
	.domain-grid,
	.faq-list,
	.stats-grid,
	.case-showcase,
	.service-grid,
	.concern-cards,
	.concerns-panels,
	.feature-card-grid,
	.plan-grid {
		padding-left: 24px;
		padding-right: 24px;
	}

	.pillar-grid,
	.strength-grid,
	.domain-grid,
	.service-grid {
		margin-left: 24px;
		margin-right: 24px;
		padding-left: 0;
		padding-right: 0;
	}

	.concern-cards,
	.concerns-panels,
	.concerns-bridge,
	.feature-card-grid,
	.plan-grid {
		padding-left: 24px;
		padding-right: 24px;
	}

	.section-lead-center,
	.plan-section-note {
		padding-left: 24px;
		padding-right: 24px;
	}

	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-actions .button {
		text-align: center;
	}
}

/* ==========================================================================
   v0.4.0 — 下層ページ拡充・共通改善・アクセシビリティ
   ========================================================================== */

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--color-navy);
	color: var(--color-white);
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 600;
}

.skip-link:focus {
	left: 0;
}

/* Focus states (キーボード操作時の視認性を担保) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.cta a:focus-visible,
.cta-band a:focus-visible,
.stats-band a:focus-visible,
.site-footer a:focus-visible {
	outline-color: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: var(--color-navy);
}

/* Header actions & CTA */
.site-header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.button--sm {
	padding: 9px 18px;
	font-size: 12px;
}

.header-cta {
	flex-shrink: 0;
	margin-left: 8px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-navy);
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle-bars::before {
	top: -6px;
}

.menu-toggle-bars::after {
	top: 6px;
}

.site-header.is-open .menu-toggle-bars {
	background: transparent;
}

.site-header.is-open .menu-toggle-bars::before {
	top: 0;
	transform: rotate(45deg);
}

.site-header.is-open .menu-toggle-bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Page header */
.page-header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.page-header .eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	margin-bottom: 14px;
}

.page-header-lead {
	font-size: 14px;
	color: var(--color-gray);
	line-height: 1.9;
	max-width: 720px;
	margin: 16px 0 0;
}

.page-header-lead--single {
	max-width: none;
}

@media (min-width: 901px) {
	.page-header-lead--single {
		white-space: nowrap;
	}
}

.page-header-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

/* 補足注記 */
.section-note {
	max-width: var(--max-width);
	margin: 24px auto 0;
	padding: 0 32px;
	font-size: 12px;
	color: var(--color-muted);
	line-height: 1.8;
}

.feature-split-text .section-note {
	max-width: none;
	margin: 20px 0 0;
	padding: 0;
}

/* Grid variants */
.domain-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

/* フェーズ・料金の補足定義リスト */
.phase-facts {
	margin: 20px 0 0;
	border-top: 1px solid var(--color-border);
}

.phase-facts div {
	display: flex;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 12px;
}

.phase-facts dt {
	color: var(--color-muted);
	font-weight: 600;
	min-width: 88px;
	flex-shrink: 0;
}

.phase-facts dd {
	margin: 0;
	color: var(--color-charcoal);
	line-height: 1.75;
}

/* 代表挨拶 */
.message-body {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 32px;
}

.message-body h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 20px;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.message-body p {
	color: var(--color-gray);
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.9;
}

@media (max-width: 768px) {
	.message-body {
		padding: 0 24px;
	}
}

/* 代表署名 */
.signature {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 2;
}

.signature-note {
	font-size: 12px;
	font-weight: 400;
	color: var(--color-muted);
}

/* テーブルキャプション(スクリーンリーダー向け) */
.table-caption {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* .section 内に .page-content を置く場合の二重パディング解消 */
.section > .page-content {
	padding-top: 0;
	padding-bottom: 0;
}

.section > .page-content > h2:first-child {
	margin-top: 0;
}

/* .info-table を .table-wrap 内で使う場合 */
.table-wrap .info-table {
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.table-wrap .info-table th {
	width: 7.5em;
	white-space: normal;
}

.table-wrap .info-table td {
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* フォーム */
.required {
	color: var(--color-navy);
	font-weight: 700;
}

.button--submit {
	border: 1px solid var(--color-navy);
	cursor: pointer;
	font-family: var(--font-base);
}

.form-notice {
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
	padding: 32px;
}

.form-notice h2 {
	margin-top: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.form-notice .button--outline {
	margin-top: 16px;
}

@media (max-width: 900px) {
	.domain-grid--three {
		grid-template-columns: repeat(2, 1fr);
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-header-inner {
		position: relative;
		height: 56px;
		padding: 0 16px;
		gap: 8px;
	}

	.site-logo-text {
		font-size: 13px;
		letter-spacing: 0.08em;
	}

	.site-logo {
		width: 32px;
		height: 32px;
	}

	.site-header-actions {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding: 8px 16px 20px;
		background: #fff;
		border-bottom: 1px solid var(--color-border);
		box-shadow: 0 18px 32px rgba(12, 24, 41, 0.12);
	}

	.site-header.is-open .site-header-actions {
		display: flex;
	}

	body.nav-open {
		overflow: hidden;
	}

	.main-navigation ul {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.main-navigation a {
		display: block;
		padding: 14px 4px;
		font-size: 15px;
		white-space: normal;
		border-bottom: 1px solid var(--color-border);
	}

	.header-cta {
		display: flex;
		width: 100%;
		margin: 16px 0 4px;
		padding: 12px 20px;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.page-header {
		padding: 48px 24px;
	}

	.page-header-actions .button {
		width: 100%;
		text-align: center;
	}

	.domain-grid--three {
		grid-template-columns: 1fr;
	}

	.section-note {
		padding-left: 24px;
		padding-right: 24px;
	}

	.merit-grid,
	.reason-list {
		grid-template-columns: 1fr;
	}

	.phase-facts div {
		flex-direction: column;
		gap: 2px;
	}

	.form-notice {
		padding: 24px;
	}
}

/* MVV pyramid */
.mvv-pyramid {
	position: relative;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.mvv-tier {
	width: 100%;
	position: relative;
}

.mvv-tier::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: 40px auto;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 16px solid var(--color-border);
}

.mvv-tier--values::after {
	display: none;
}

.mvv-tier--vision {
	max-width: 520px;
}

.mvv-tier--mission {
	max-width: 720px;
}

.mvv-tier--values {
	max-width: 100%;
}

.mvv-block {
	padding: 28px 32px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	text-align: center;
}

.mvv-block--vision {
	background: var(--color-navy);
	border-color: var(--color-navy);
}

.mvv-block--mission {
	background: var(--color-white);
	border-color: var(--color-navy);
	border-width: 2px;
}

.mvv-tag {
	display: block;
	margin-bottom: 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--color-muted);
	text-transform: uppercase;
}

.mvv-block h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.mvv-block p {
	margin: 0;
	font-size: 13px;
	color: var(--color-gray);
	line-height: 1.85;
}

.mvv-block--vision .mvv-tag {
	color: rgba(255, 255, 255, 0.65);
}

.mvv-block--vision h3 {
	color: #ffffff;
}

.mvv-block--vision p {
	color: rgba(255, 255, 255, 0.82);
}

.mvv-values-head {
	margin-bottom: 20px;
	padding: 22px 24px;
	text-align: center;
	background: var(--color-navy);
	border: 1px solid var(--color-navy);
}

.mvv-values-head .mvv-tag {
	color: rgba(255, 255, 255, 0.62);
}

.mvv-values-head h3 {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: 0.04em;
}

.mvv-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.mvv-value {
	padding: 22px 18px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-top: 3px solid var(--color-accent-warm);
	text-align: left;
}

.mvv-value-num {
	display: block;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--color-muted);
}

.mvv-value h4 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.5;
	letter-spacing: 0.03em;
}

.mvv-value p {
	margin: 0;
	font-size: 12px;
	color: var(--color-gray);
	line-height: 1.75;
}

@media (max-width: 900px) {
	.mvv-tier--vision,
	.mvv-tier--mission {
		max-width: 100%;
	}

	.mvv-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mvv-tier::after {
		margin: 32px auto;
		border-left-width: 14px;
		border-right-width: 14px;
		border-top-width: 12px;
	}
}

@media (max-width: 640px) {
	.mvv-pyramid {
		padding: 0 24px;
	}

	.mvv-values-grid {
		grid-template-columns: 1fr;
	}

	.mvv-block {
		padding: 24px 20px;
		text-align: left;
	}

	.mvv-values-head {
		text-align: left;
	}

	.mvv-tier::after {
		margin: 28px auto;
	}
}

/* Graphic band (ネイビー背景 + 線画SVG) */
.graphic-band {
	background: var(--color-navy);
	padding: 72px 0;
}

.graphic-band-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.graphic-band-text .eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 12px;
}

.graphic-band-text h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 20px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

.graphic-band-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	line-height: 1.9;
}

.graphic-band-visual svg {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px) {
	.graphic-band-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.graphic-band {
		padding: 56px 0;
	}

	.graphic-band-inner {
		padding: 0 24px;
	}
}

/* Product spotlight — トリまとめ（単一サービス） */
.section--product {
	background: var(--color-off-white);
}

.section--product .section-head-lead {
	max-width: none;
	white-space: nowrap;
}

@media (max-width: 860px) {
	.section--product .section-head-lead {
		white-space: normal;
	}
}

.product-spotlight {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 0;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 32px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.product-spotlight-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 40px 28px 36px;
	background: var(--color-white);
	border-right: 1px solid var(--color-border);
	overflow: hidden;
}

.product-spotlight-bubble {
	position: relative;
	z-index: 2;
	margin: 0;
	max-width: 240px;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.02em;
	text-align: center;
	color: var(--color-navy);
	background: var(--color-off-white);
	border: 1px solid var(--color-border);
}

.product-spotlight-bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 12px;
	height: 12px;
	background: var(--color-off-white);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	transform: translateX(-50%) rotate(45deg);
}

.product-spotlight-mascot {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 280px);
}

.product-spotlight-halo {
	position: absolute;
	inset: 10% 6% 4%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 45%, rgba(30, 76, 140, 0.12) 0%, rgba(244, 245, 247, 0.9) 55%, transparent 72%);
	pointer-events: none;
}

.product-spotlight-mascot img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: contain;
}

.product-spotlight-chips {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-spotlight-chips li {
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-navy);
	border: 1px solid var(--color-border);
	background: var(--color-off-white);
}

.product-spotlight-copy {
	padding: 48px 40px;
}

.product-spotlight-badge {
	display: inline-block;
	margin: 0 0 14px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-accent-warm);
	background: var(--color-accent-warm-tint);
	border: 1px solid rgba(122, 92, 46, 0.25);
}

.product-spotlight-brand {
	margin: 0 0 10px;
	font-size: clamp(32px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.06em;
	color: var(--color-navy);
}

.product-spotlight-tagline {
	margin: 0 0 16px;
	font-size: clamp(17px, 1.8vw, 20px);
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.02em;
	color: var(--color-charcoal);
}

.product-spotlight-copy > p:not(.product-spotlight-badge):not(.product-spotlight-tagline):not(.product-spotlight-note) {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-gray);
}

.product-spotlight-steps {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--color-border);
}

.product-spotlight-steps li {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
}

.product-spotlight-step-num {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-accent-warm);
	line-height: 1.6;
}

.product-spotlight-steps strong {
	display: block;
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
}

.product-spotlight-steps span {
	display: block;
	font-size: 13px;
	line-height: 1.7;
	color: var(--color-gray);
}

.product-spotlight-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.product-spotlight-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.7;
	color: var(--color-muted);
}

@media (max-width: 900px) {
	.product-spotlight {
		grid-template-columns: 1fr;
	}

	.product-spotlight-visual {
		order: -1;
		padding: 32px 24px 28px;
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.product-spotlight-mascot {
		width: min(100%, 220px);
	}

	.product-spotlight-mascot img {
		max-height: 250px;
	}

	.product-spotlight-copy {
		padding: 36px 28px;
	}

	.product-spotlight-brand,
	.product-spotlight-tagline {
		text-align: center;
	}
}

@media (max-width: 640px) {
	.product-spotlight {
		padding: 0 20px;
		border-left: 0;
		border-right: 0;
	}

	.product-spotlight-copy {
		padding: 28px 20px;
	}

	.product-spotlight-brand {
		letter-spacing: 0.04em;
	}

	.product-spotlight-bubble {
		font-size: 12px;
	}
}

@media (max-width: 900px) {
	.hero-headline-line {
		white-space: normal;
	}

	.hero-actions {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.hero-actions .button {
		width: auto;
		padding: 16px;
		text-align: center;
	}

	.footer-navigation ul {
		flex-direction: column;
		gap: 0;
	}

	.footer-navigation a {
		display: block;
		padding: 12px 0;
		font-size: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-footer {
		padding: 40px 20px 28px;
	}

	.table-wrap {
		overflow: visible;
	}

	.table-wrap .info-table th {
		white-space: normal;
	}

	.section-head--pad {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mvv-pyramid {
		padding-left: 20px;
		padding-right: 20px;
	}

	.product-spotlight {
		margin-left: 20px;
		margin-right: 20px;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 640px) {
	.hero-chip {
		white-space: normal;
	}

	.hero--has-bg .hero-inner,
	.hero--has-video .hero-inner {
		padding: 64px 20px 52px;
	}

	.case-showcase--cinematic .case-story-content {
		padding-left: 20px;
		padding-right: 20px;
	}

	.process-flow {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* Scroll reveal (Maruni-inspired) */
.js-reveal {
	opacity: 0;
	filter: blur(5px);
	transform: translate3d(0, 36px, 0);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.js-reveal.is-revealed {
	opacity: 1;
	filter: blur(0);
	transform: none;
}

.concern-panel.js-reveal .concern-panel-media img,
.case-story.js-reveal .case-story-visual img,
.feature-split-media.js-reveal img {
	transform: scale(1.06);
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.concern-panel.js-reveal.is-revealed .concern-panel-media img,
.case-story.js-reveal.is-revealed .case-story-visual img,
.feature-split-media.js-reveal.is-revealed img {
	transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.js-reveal,
	.concern-panel.js-reveal .concern-panel-media img,
	.case-story.js-reveal .case-story-visual img,
	.feature-split-media.js-reveal img {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}
}
