:root {
	--color-ink: #071938;
	--color-text: #1a2c49;
	--color-muted: #5d6b82;
	--color-blue: #075fc9;
	--color-blue-2: #0b7ee8;
	--color-sky: #e9f5ff;
	--color-line: #d8e4f2;
	--color-teal: #12a8b4;
	--color-warm: #f3ad3d;
	--color-white: #ffffff;
	--shadow-card: 0 14px 36px rgba(8, 34, 72, .10);
	--shadow-soft: 0 8px 24px rgba(8, 34, 72, .08);
	--radius-card: 8px;
	--inner: 1180px;
	--header-height: 72px;
	font-family: "Noto Sans JP", Inter, system-ui, sans-serif;
}

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

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

body {
	margin: 0;
	color: var(--color-text);
	background: #fff;
	font-family: "Noto Sans JP", Inter, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	word-break: normal;
	word-break: auto-phrase;
	line-break: strict;
	overflow-wrap: break-word;
	overflow-x: clip;
}

body,
main,
section,
article,
div,
header,
footer,
nav,
aside,
figure,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	min-width: 0;
}

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

img {
	height: auto;
}

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

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

.skip-link {
	position: fixed;
	left: 8px;
	top: 8px;
	z-index: 1000;
	transform: translateY(-140%);
	border-radius: 999px;
	background: var(--color-ink);
	color: #fff;
	padding: 8px 14px;
	font-weight: 700;
	transition: transform .2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

body.loading {
	overflow: hidden;
}

.loading-screen {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	animation: loadingBase 6s ease forwards;
}

.loading-screen.is-hidden {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.loading-screen img {
	max-width: 12rem;
	height: auto;
}

.loading-inner {
	position: relative;
	width: min(260px, 64vw);
	aspect-ratio: 1 / 1;
}

.loading-screen .load-item {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loading-screen .item01 {
	z-index: 10001;
	animation: loadItem01 6s ease forwards;
}

.loading-screen .item02 {
	z-index: 10002;
	animation: loadItem02 6s ease forwards;
}

.loading-screen .item03 {
	z-index: 10003;
	animation: loadItem03 6s ease forwards;
}

.loading-screen .item04 {
	z-index: 10004;
	animation: loadItem04 6s ease forwards;
}

@keyframes loadingBase {
	0% { opacity: 1; }
	55% { opacity: 1; background-color: #fff; }
	80% { opacity: 1; background-color: #0a0f1e; }
	85% { opacity: 0; background-color: #0a0f1e; }
	100% { opacity: 0; background-color: #0a0f1e; visibility: hidden; pointer-events: none; }
}

@keyframes loadItem01 {
	0% { opacity: 0; transform: translate(-50%, 0%); }
	5% { opacity: 0; transform: translate(-50%, 0%); }
	25% { opacity: 1; transform: translate(-50%, -50%); }
	100% { opacity: 1; }
}

@keyframes loadItem02 {
	0% { opacity: 0; }
	15% { opacity: 0; transform: translate(-50%, -100%); }
	35% { opacity: 1; transform: translate(-50%, -50%); }
	100% { opacity: 1; }
}

@keyframes loadItem03 {
	0% { opacity: 0; }
	25% { opacity: 0; transform: translate(-100%, -50%); }
	45% { opacity: 1; transform: translate(-50%, -50%); }
	65% { opacity: 1; transform: translate(-50%, -50%); }
	100% { opacity: 0; }
}

@keyframes loadItem04 {
	0% { opacity: 0; }
	50% { opacity: 0; }
	65% { opacity: 1; }
	100% { opacity: 1; }
}

.text-blue {
	color: var(--color-blue);
}

.line-keep {
	display: inline-block;
	white-space: nowrap;
	max-width: 100%;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
}

.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .92);
	border-bottom: 1px solid rgba(216, 228, 242, .65);
	backdrop-filter: blur(14px);
	transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 12px 34px rgba(8, 34, 72, .10);
	background: rgba(255, 255, 255, .98);
}

.site-header__inner {
	width: min(var(--inner), 100%);
	min-height: var(--header-height);
	margin: 0 auto;
	padding: 0 8px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}

.brand img {
	width: 101px;
	height: auto;
}

.global-nav {
	margin-left: auto;
	display: none;
	align-items: center;
	gap: 26px;
	color: var(--color-ink);
	font-size: 14px;
	font-weight: 800;
}

.global-nav a {
	position: relative;
	padding: 6px 0;
}

.nav-dropdown {
	position: relative;
	padding: 12px 0;
}

.nav-dropdown__panel {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 250px;
	padding: 10px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .98);
	box-shadow: var(--shadow-card);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.nav-dropdown__panel a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--color-ink);
}

.nav-dropdown__panel a:hover {
	background: var(--color-sky);
}

.global-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: var(--color-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
	transform: scaleX(1);
}

.header-cta {
	display: none;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	background: var(--color-blue);
	color: #fff;
	padding: 10px 18px;
	box-shadow: 0 12px 26px rgba(7, 95, 201, .22);
	font-size: 14px;
	font-weight: 800;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta svg,
.cta-section__button svg,
.button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-cta:hover {
	transform: translateY(-1px);
	background: #0055bb;
	box-shadow: 0 15px 34px rgba(7, 95, 201, .28);
}

.menu-button {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
	display: grid;
	place-content: center;
	gap: 5px;
	cursor: pointer;
}

.menu-button span {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--color-ink);
	transition: transform .2s ease, opacity .2s ease;
}

.menu-button.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
	opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	left: 0;
	right: 0;
	top: var(--header-height);
	z-index: 99;
	max-height: calc(100dvh - var(--header-height));
	overflow-y: auto;
	overscroll-behavior: contain;
	border-top: 1px solid var(--color-line);
	padding: 10px 8px 16px;
	background: #fff;
	box-shadow: 0 18px 38px rgba(8, 34, 72, .12);
	-webkit-overflow-scrolling: touch;
}

.admin-bar .mobile-menu {
	top: calc(var(--header-height) + 46px);
	max-height: calc(100dvh - var(--header-height) - 46px);
}

.mobile-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-bottom: 1px solid #edf3f9;
	color: var(--color-ink);
	font-weight: 800;
	text-align: center;
}

.mobile-menu__cta {
	margin-top: 12px;
	justify-content: center;
	border-bottom: 0;
	border-radius: 999px;
	background: var(--color-blue);
	color: #fff !important;
	box-shadow: 0 12px 26px rgba(7, 95, 201, .22);
}

.hero {
	position: relative;
	min-height: auto;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .92) 42%, rgba(232, 245, 255, .72) 72%, rgba(215, 238, 255, .92) 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(7, 95, 201, .07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 95, 201, .07) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 52%, #000 100%);
	pointer-events: none;
}

.hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: .58;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	width: min(var(--inner), 100%);
	margin: 0 auto;
	padding: 44px 8px 38px;
	display: grid;
	gap: 22px;
	align-items: center;
}

.hero__copy {
	max-width: 620px;
	z-index: 2;
}

.hero h1 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(30px, 9.2vw, 36px);
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
	text-wrap: balance;
}

.hero__lead {
	max-width: 520px;
	margin: 18px 0 0;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 600;
	line-height: 2;
}

.hero__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
}

.button {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 52px;
	border-radius: 999px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	white-space: normal;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button span {
	min-width: 0;
	overflow-wrap: break-word;
}

.button--primary {
	background: var(--color-blue);
	color: #fff;
	box-shadow: 0 15px 30px rgba(7, 95, 201, .22);
}

.button--outline {
	border: 2px solid var(--color-blue);
	background: rgba(255, 255, 255, .86);
	color: var(--color-blue);
}

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

.button--primary:hover {
	background: #0055bb;
	box-shadow: 0 18px 40px rgba(7, 95, 201, .28);
}

.button--outline:hover {
	background: var(--color-blue);
	color: #fff;
}

.hero-visual {
	position: relative;
	min-height: clamp(240px, 68vw, 330px);
	border-radius: var(--radius-card);
	overflow: hidden;
	background: linear-gradient(135deg, rgba(246, 251, 255, .96), rgba(211, 236, 255, .92));
	box-shadow: var(--shadow-card);
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .06) 45%),
		linear-gradient(135deg, rgba(7, 95, 201, .10), transparent 48%);
	z-index: 1;
	pointer-events: none;
}

.hero-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	filter: saturate(1.06);
}

.hud {
	position: absolute;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, .78);
	background: linear-gradient(135deg, rgba(7, 95, 201, .76), rgba(18, 168, 180, .62));
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 40px rgba(7, 95, 201, .26);
	animation: floatHud 6s ease-in-out infinite;
}

.hud--signal {
	right: 12px;
	top: 14px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(7, 95, 201, .92), rgba(36, 170, 232, .88));
	color: #fff;
}

.hud--signal svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hud--signal .orbit {
	opacity: .54;
	stroke-dasharray: 112;
	stroke-dashoffset: 24;
	animation: orbitDash 4.6s linear infinite;
}

.hud--chart {
	left: 12px;
	bottom: 16px;
	width: 102px;
	height: 66px;
	border-radius: var(--radius-card);
	padding: 8px;
	animation-delay: -2s;
}

.hud--chart svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: rgba(255, 255, 255, .92);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hud--chart .hud-line {
	stroke: #fff;
	stroke-dasharray: 132;
	stroke-dashoffset: 132;
	animation: drawLine 4s ease-in-out infinite;
}

.hud--panel {
	left: 12px;
	top: 18px;
	width: 122px;
	height: 70px;
	border-radius: var(--radius-card);
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 14px;
	animation-delay: -4s;
}

.hud--panel span {
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 0 18px rgba(255, 255, 255, .22);
}

.hud--panel span:nth-child(1) {
	width: 76%;
}

.hud--panel span:nth-child(2) {
	width: 58%;
}

.hud--panel span:nth-child(3) {
	width: 86%;
}

@keyframes floatHud {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -10px, 0);
	}
}

@keyframes drawLine {
	0% {
		stroke-dashoffset: 132;
	}
	45%, 100% {
		stroke-dashoffset: 0;
	}
}

@keyframes orbitDash {
	to {
		stroke-dashoffset: -88;
	}
}

.section {
	padding: 58px 0;
}

.section--soft {
	background:
		linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
}

.section__inner {
	width: min(var(--inner), 100%);
	margin: 0 auto;
	padding: 0 8px;
}

.section-heading {
	text-align: center;
	margin: 0 auto 28px;
}

.section-heading h2,
.split-heading h2,
.company h2,
.cta-section h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: 24px;
	line-height: 1.5;
	font-weight: 800;
	letter-spacing: 0;
	text-wrap: balance;
}

.section-heading p {
	margin: 8px auto 0;
	max-width: 620px;
	color: var(--color-muted);
	font-weight: 600;
	line-height: 1.9;
}

.service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.service-card,
.reason-card,
.pain-card,
.solution-board,
.flow-card,
.work-card,
.price-card,
.faq-item {
	border: 1px solid rgba(216, 228, 242, .96);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow-soft);
}

.service-card {
	position: relative;
	overflow: hidden;
	padding: 24px 18px 22px;
	display: grid;
	justify-items: center;
	text-align: center;
	min-height: 184px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(7, 95, 201, .09), transparent 48%);
	opacity: 0;
	transition: opacity .2s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(7, 95, 201, .34);
	box-shadow: 0 16px 38px rgba(8, 34, 72, .14);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card__icon {
	position: relative;
	width: 70px;
	height: 70px;
	display: grid;
	place-items: center;
	color: var(--color-blue);
}

.service-card__icon svg,
.reason-card svg,
.pain-card svg,
.flow-card svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-card h3,
.reason-card h3,
.pain-card h3,
.flow-card h3,
.price-card h3,
.faq-item summary {
	position: relative;
	margin: 12px 0 0;
	color: var(--color-ink);
	font-size: 20px;
	line-height: 1.45;
	font-weight: 800;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: break-word;
	word-break: normal;
	word-break: auto-phrase;
	text-wrap: pretty;
}

.service-card p,
.reason-card p,
.pain-card p,
.flow-card p,
.price-card p,
.faq-item p {
	position: relative;
	margin: 8px 0 0;
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: break-word;
	word-break: normal;
	word-break: auto-phrase;
	text-wrap: pretty;
}

.problem-solution {
	background: #fff;
}

.split-heading {
	display: grid;
	gap: 10px;
	text-align: center;
	margin-bottom: 22px;
}

.split-heading h2:nth-child(2) {
	color: var(--color-blue);
}

.problem-solution__grid {
	display: grid;
	gap: 18px;
	align-items: center;
	max-width: 940px;
	margin: 0 auto;
}

.pain-grid {
	display: grid;
	gap: 10px;
}

.pain-card {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	align-items: center;
	padding: 16px;
}

.pain-card svg {
	width: 54px;
	height: 54px;
	color: var(--color-blue);
}

.pain-card h3 {
	margin: 0;
	font-size: 16px;
}

.pain-card p {
	margin-top: 4px;
	font-size: 13px;
}

.solution-arrow {
	display: grid;
	place-items: center;
	color: #8bc3ff;
}

.solution-arrow svg {
	width: 86px;
	height: 86px;
	fill: none;
	stroke: currentColor;
	stroke-width: 9;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 10px 16px rgba(7, 95, 201, .18));
	animation: arrowPulse 2.8s ease-in-out infinite;
	transform: rotate(90deg);
}

@keyframes arrowPulse {
	0%, 100% {
		transform: translateY(0) rotate(90deg);
		opacity: .72;
	}
	50% {
		transform: translateY(8px) rotate(90deg);
		opacity: 1;
	}
}

.solution-board {
	position: relative;
	overflow: hidden;
	padding: 18px;
	min-height: 360px;
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
}

.solution-board__label {
	display: flex;
	width: fit-content;
	margin: 0 auto 12px;
	border-radius: 999px;
	background: var(--color-blue);
	color: #fff;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.solution-board ul {
	position: relative;
	z-index: 2;
	list-style: none;
	width: fit-content;
	margin: 0 auto;
	padding: 0;
	display: grid;
	gap: 11px;
}

.solution-board li {
	position: relative;
	padding-left: 30px;
	color: var(--color-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.75;
}

.solution-board li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-blue);
	box-shadow: 0 0 0 4px rgba(7, 95, 201, .10);
}

.solution-board li::after {
	content: "";
	position: absolute;
	left: 6px;
	top: calc(.55em + 5px);
	width: 6px;
	height: 4px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

.solution-board__visual {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 0;
	height: 128px;
	opacity: .48;
}

.solution-board__visual svg {
	width: 100%;
	height: 100%;
}

.solution-board__visual rect {
	fill: #89c8ff;
}

.solution-board__visual .grid-line {
	fill: none;
	stroke: #c8e3ff;
	stroke-width: 2;
}

.solution-board__visual .growth-line {
	fill: none;
	stroke: var(--color-blue);
	stroke-width: 5;
	stroke-linecap: round;
}

.solution-board__badge {
	position: absolute;
	right: 18px;
	bottom: 22px;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--color-blue), #22a9ee);
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 800;
	box-shadow: 0 16px 34px rgba(7, 95, 201, .30);
	animation: floatHud 5.5s ease-in-out infinite;
}

.solution-board__badge svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: currentColor;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.reason-grid {
	display: grid;
	gap: 12px;
}

.reason-card {
	padding: 22px 18px;
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-width: 0;
}

.reason-card svg {
	grid-row: span 2;
	width: 62px;
	height: 62px;
	color: var(--color-blue);
}

.reason-card h3 {
	margin: 0;
	font-size: 18px;
}

.reason-card p {
	margin: 2px 0 0;
	font-size: 14px;
}

.flow-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	counter-reset: flow;
}

.flow-card {
	position: relative;
	min-height: 188px;
	padding: 24px 16px 18px;
	text-align: center;
}

.flow-card__num {
	position: absolute;
	left: 12px;
	top: 12px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--color-blue);
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 800;
}

.flow-card svg {
	margin: 0 auto;
	width: 62px;
	height: 62px;
	color: var(--color-blue);
}

.flow-card h3 {
	margin-top: 12px;
	font-size: 16px;
}

.works-marquee {
	position: relative;
	overflow: hidden;
	margin-inline: -8px;
	padding: 4px 0 18px;
}

.works-marquee::before,
.works-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 42px;
	pointer-events: none;
}

.works-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.works-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.works-track {
	display: flex;
	gap: 14px;
	width: max-content;
	padding-inline: 8px;
	animation: worksMarquee 62s linear infinite;
	will-change: transform;
}

.works-marquee:hover .works-track {
	animation-play-state: paused;
}

@keyframes worksMarquee {
	to {
		transform: translateX(calc(-50% - 7px));
	}
}

.work-card {
	flex: 0 0 min(360px, 78vw);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.work-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(8, 34, 72, .14);
}

.work-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-bottom: 1px solid var(--color-line);
}

.work-card span,
.work-card strong {
	display: block;
	padding: 0 16px;
}

.work-card span {
	margin-top: 14px;
	color: var(--color-blue);
	font-size: 12px;
	font-weight: 800;
}

.work-card strong {
	padding-bottom: 18px;
	color: var(--color-ink);
	font-size: 16px;
	line-height: 1.5;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	margin: 0;
	padding: 18px 54px 18px 18px;
	list-style: none;
	cursor: pointer;
	font-size: 16px;
	transition: color .2s ease;
}

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

.faq-item summary::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(7, 95, 201, .10);
	transform: translateY(-50%);
	transition: transform .28s ease, background .28s ease;
}

.faq-item summary::before {
	display: none;
}

.faq-item summary::after {
	background:
		linear-gradient(var(--color-blue), var(--color-blue)) center / 12px 2px no-repeat,
		linear-gradient(var(--color-blue), var(--color-blue)) center / 2px 12px no-repeat,
		rgba(7, 95, 201, .10);
}

.faq-item[open] summary::after,
.faq-item.is-opening summary::after {
	background:
		linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
		linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
		var(--color-blue);
	transform: translateY(-50%) rotate(45deg);
}

.faq-item__content {
	height: 0;
	overflow: hidden;
	transition: height .32s ease;
}

.faq-item[open] .faq-item__content {
	height: auto;
}

.faq-item__body {
	border-top: 1px solid var(--color-line);
}

.faq-item p,
.faq-item__body p {
	margin: 0;
	padding: 16px 18px 18px;
	font-size: 15px;
	line-height: 2;
}

.pricing-grid {
	display: grid;
	gap: 12px;
}

.price-card {
	padding: 20px 18px;
}

.price-card h3 {
	margin: 0;
	font-size: 18px;
}

.price-card strong {
	display: inline-flex;
	margin-top: 14px;
	color: var(--color-blue);
	font-family: Inter, "Noto Sans JP", sans-serif;
	font-size: 20px;
	line-height: 1.4;
}

.company {
	background: #fff;
}

.company__inner {
	display: grid;
	gap: 24px;
	align-items: center;
}

.company h2 {
	font-size: 28px;
}

.company__lead {
	margin: 14px 0 24px;
	max-width: 540px;
	color: var(--color-muted);
	font-weight: 600;
	line-height: 2;
}

.company-list {
	margin: 0;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.company-list div {
	display: grid;
	gap: 4px;
	padding: 15px 16px;
	border-bottom: 1px solid var(--color-line);
}

.company-list div:last-child {
	border-bottom: 0;
}

.company-list dt {
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
}

.company-list dd {
	margin: 0;
	color: var(--color-ink);
	font-weight: 700;
	line-height: 1.7;
}

.cta-section {
	padding: 24px 0 36px;
}

.cta-section__inner {
	position: relative;
	overflow: hidden;
	width: min(var(--inner), calc(100% - 16px));
	margin: 0 auto;
	border-radius: var(--radius-card);
	background:
		linear-gradient(110deg, #075fc9 0%, #087de2 64%, #26aee8 100%);
	color: #fff;
	padding: 26px 18px;
	display: grid;
	gap: 22px;
	align-items: center;
	box-shadow: 0 18px 48px rgba(7, 95, 201, .24);
}

.cta-section__inner::before {
	content: "";
	position: absolute;
	inset: auto -60px -120px auto;
	width: 360px;
	height: 260px;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px);
	background-size: 18px 18px;
	transform: rotate(-18deg);
	opacity: .62;
}

.cta-section__copy {
	position: relative;
	z-index: 1;
}

.cta-section__copy p {
	display: inline-flex;
	margin: 0 0 10px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}

.cta-section h2 {
	color: #fff;
	font-size: clamp(22px, 7vw, 24px);
	text-wrap: balance;
}

.cta-section__copy span {
	display: block;
	margin-top: 8px;
	font-weight: 600;
	line-height: 1.9;
}

.cta-section__button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 58px;
	border-radius: 999px;
	background: #fff;
	color: var(--color-blue);
	padding: 14px 16px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	white-space: normal;
	box-shadow: 0 14px 28px rgba(0, 39, 92, .18);
	transition: transform .2s ease;
}

.cta-section__button span {
	min-width: 0;
	overflow-wrap: break-word;
}

.cta-section__button:hover {
	transform: translateY(-2px);
}

.site-footer {
	padding: 28px 0 24px;
	background: #fff;
	border-top: 1px solid var(--color-line);
}

.site-footer__inner {
	width: min(var(--inner), 100%);
	margin: 0 auto;
	padding: 0 8px;
	display: grid;
	gap: 22px;
}

.footer-brand img {
	width: 144px;
}

.footer-brand p {
	margin: 6px 0 0;
	color: var(--color-ink);
	font-size: 13px;
	font-weight: 700;
}

.footer-brand small {
	display: block;
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 12px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	align-items: center;
}

.footer-links a {
	color: var(--color-ink);
	font-size: 13px;
	font-weight: 800;
}

.footer-dropdown {
	position: relative;
	padding: 8px 0;
}

.footer-dropdown__panel {
	position: absolute;
	left: 0;
	bottom: 100%;
	z-index: 10;
	width: min(240px, calc(100vw - 16px));
	padding: 10px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .98);
	box-shadow: var(--shadow-card);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity .2s ease, transform .2s ease;
}

.footer-dropdown:hover .footer-dropdown__panel,
.footer-dropdown:focus-within .footer-dropdown__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-2px);
}

.footer-dropdown__panel a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	white-space: nowrap;
}

.footer-dropdown__panel a:hover {
	background: var(--color-sky);
}

.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s ease, transform .7s ease;
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 560px) {
	.hero__actions {
		flex-direction: row;
	}

	.button {
		width: auto;
		min-width: 190px;
	}

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

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

@media (min-width: 768px) {
	:root {
		--header-height: 82px;
	}

	.admin-bar .mobile-menu {
		top: calc(var(--header-height) + 32px);
		max-height: calc(100dvh - var(--header-height) - 32px);
	}

	.site-header__inner,
	.section__inner,
	.site-footer__inner {
		padding-inline: 24px;
	}

	.hero__inner {
		padding: 70px 24px 58px;
		grid-template-columns: minmax(390px, .88fr) minmax(360px, 1.12fr);
		min-height: 520px;
	}

	.hero h1 {
		font-size: 54px;
		line-height: 1.22;
	}

	.hero__lead {
		font-size: 17px;
	}

	.hero-visual {
		min-height: 430px;
	}

	.hud--panel {
		left: 24px;
		top: 34px;
		width: 170px;
		height: 96px;
		gap: 12px;
		padding: 18px;
	}

	.hud--panel span {
		height: 8px;
	}

	.hud--chart {
		left: 20px;
		bottom: 26px;
		width: 132px;
		height: 86px;
	}

	.hud--signal {
		right: 20px;
		top: 22px;
		width: 72px;
		height: 72px;
	}

	.hud--signal svg {
		width: 52px;
		height: 52px;
	}

	.hero-visual img {
		inset: 0;
		width: 100%;
	}

	.section {
		padding: 72px 0;
	}

	.section-heading {
		margin-bottom: 34px;
	}

	.section-heading h2,
	.split-heading h2 {
		font-size: 30px;
	}

	.service-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 16px;
	}

	.service-card {
		padding: 24px 14px 22px;
		min-height: 210px;
	}

	.service-card h3 {
		font-size: 20px;
	}

	.service-card p {
		font-size: 13px;
	}

	.split-heading {
		grid-template-columns: 1fr;
		gap: 8px;
		align-items: center;
		margin-bottom: 30px;
	}

	.problem-solution__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

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

	.reason-grid,
	.works-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.reason-card {
		grid-template-columns: 74px minmax(0, 1fr);
		padding: 26px 22px;
	}

	.reason-card svg {
		width: 74px;
		height: 74px;
	}

	.flow-list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 14px;
	}

	.flow-card::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -14px;
		width: 14px;
		height: 2px;
		background: linear-gradient(90deg, rgba(7, 95, 201, .18), rgba(7, 95, 201, .60));
	}

	.flow-card:not(:last-child)::before {
		content: "";
		position: absolute;
		top: calc(50% - 5px);
		right: -17px;
		width: 10px;
		height: 10px;
		border-top: 2px solid rgba(7, 95, 201, .65);
		border-right: 2px solid rgba(7, 95, 201, .65);
		transform: rotate(45deg);
	}

	.flow-card:last-child::after {
		display: none;
	}

	.pricing-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 14px;
	}

	.company {
		background:
			linear-gradient(90deg, #fff 0%, #fff 48%, #f3f9ff 48%, #f3f9ff 100%);
	}

	.company__inner {
		grid-template-columns: .82fr 1fr;
		gap: 52px;
	}

	.company-list div {
		grid-template-columns: 120px 1fr;
		gap: 18px;
	}

	.cta-section {
		padding: 18px 0 46px;
	}

	.cta-section__inner {
		width: min(var(--inner), calc(100% - 48px));
		grid-template-columns: 1fr 360px;
		padding: 34px 56px;
	}

	.cta-section__button {
		width: auto;
	}

	.cta-section h2 {
		font-size: 30px;
	}

	.site-footer__inner {
		grid-template-columns: 240px 1fr;
		align-items: end;
	}

	.footer-links {
		justify-content: flex-end;
	}
}

@media (min-width: 1040px) {
	.brand img {
		width: 134px;
	}

	.global-nav,
	.header-cta {
		display: flex;
	}

	.menu-button,
	.mobile-menu {
		display: none !important;
	}

	.hero__inner {
		min-height: 560px;
	}

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

	.hero-visual {
		min-height: 500px;
		margin-right: -18px;
	}

	.hero-visual img {
		inset: 0;
		width: 100%;
	}
}

@media (max-width: 420px) {
	.brand {
		gap: 10px;
	}

	.brand img {
		width: 96px;
	}

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

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

	.hud--panel {
		width: 108px;
		height: 64px;
		left: 12px;
		top: 18px;
	}

	.hud--chart {
		left: 12px;
		bottom: 18px;
		width: 94px;
		height: 60px;
	}

	.hud--signal {
		width: 48px;
		height: 48px;
		right: 12px;
		top: 14px;
	}

	.hud--signal svg {
		width: 34px;
		height: 34px;
	}

	.hero-visual img {
		inset: 0;
		width: 100%;
	}

	.reason-card {
		grid-template-columns: 54px minmax(0, 1fr);
		padding-inline: 14px;
	}

	.reason-card svg {
		width: 54px;
		height: 54px;
	}
}

@media (max-width: 767px) {
	.loading-screen img {
		max-width: 8rem;
	}

	.section,
	.lower-section,
	.content-section {
		padding: 52px 0;
	}

	.section-heading {
		margin-bottom: 24px;
	}

	.section-heading h2,
	.split-heading h2,
	.company h2,
	.service-story__intro h2 {
		line-height: 1.45;
	}

	.hero__actions,
	.cta-section__button,
	.contact-panel input[type="submit"],
	.contact-panel button[type="submit"] {
		width: 100%;
	}

	.hero-visual::before {
		background:
			linear-gradient(90deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .12) 58%),
			linear-gradient(135deg, rgba(7, 95, 201, .08), transparent 52%);
	}

	.service-card {
		min-height: 0;
		padding: 22px 16px 20px;
	}

	.service-card__icon {
		width: 58px;
		height: 58px;
	}

	.pain-card {
		grid-template-columns: 48px minmax(0, 1fr);
		padding: 14px;
	}

	.pain-card svg {
		width: 46px;
		height: 46px;
	}

	.reason-card {
		grid-template-columns: 52px minmax(0, 1fr);
		padding: 18px 14px;
	}

	.reason-card svg {
		width: 50px;
		height: 50px;
	}

	.solution-arrow svg {
		width: 58px;
		height: 58px;
	}

	.solution-board {
		min-height: 0;
		padding: 18px 14px 96px;
	}

	.solution-board__label {
		max-width: 100%;
		text-align: center;
		justify-content: center;
	}

	.solution-board ul {
		width: 100%;
		gap: 10px;
	}

	.solution-board li {
		font-size: 14px;
		line-height: 1.8;
	}

	.solution-board__visual {
		height: 88px;
		opacity: .30;
	}

	.flow-card {
		min-height: 0;
		padding: 22px 14px 18px;
	}

	.faq-item summary {
		padding: 16px 48px 16px 14px;
		font-size: 15px;
		line-height: 1.65;
	}

	.faq-item summary::after {
		right: 14px;
		width: 26px;
		height: 26px;
	}

	.faq-item p,
	.faq-item__body p {
		padding: 14px;
		font-size: 14px;
		line-height: 1.9;
	}

	.cta-section__copy p {
		display: flex;
		width: fit-content;
		max-width: 100%;
	}

	.footer-links,
	.footer-dropdown__panel {
		min-width: 0;
	}

	.footer-dropdown {
		width: 100%;
	}

	.footer-dropdown__panel {
		width: min(260px, calc(100vw - 16px));
		max-width: calc(100vw - 16px);
	}

	.feature-card,
	.lower-card,
	.wp-content-card,
	.contact-panel {
		padding: 20px 14px;
	}

	.service-story__media img {
		aspect-ratio: 4 / 3;
	}

	.service-mini-card {
		gap: 12px;
		padding: 14px;
	}

	.service-mini-card span {
		width: 44px;
		height: 44px;
	}

	.service-mini-card svg {
		width: 25px;
		height: 25px;
	}

	.service-diagram {
		padding: 16px 12px;
	}

	.service-diagram__head h3 {
		font-size: 18px;
	}

	.service-process li {
		grid-template-columns: 38px minmax(0, 1fr);
		column-gap: 12px;
		padding: 16px 14px;
	}

	.service-process li:not(:last-child)::after {
		left: 32px;
		top: 56px;
	}

	.service-process span {
		width: 38px;
		height: 38px;
	}

	.service-process h3 {
		font-size: 20px;
		line-height: 1.45;
	}

	.service-process p {
		font-size: 14px;
		line-height: 1.85;
	}

	.service-metric-card {
		padding: 20px 14px;
	}
}

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

	.hero__canvas {
		display: none;
	}
}

/* WordPress theme pages */
.page-hero {
	position: relative;
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.98) 56%, rgba(255,255,255,.86) 82%, rgba(233,245,255,.56) 100%),
		linear-gradient(rgba(7,95,201,.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7,95,201,.07) 1px, transparent 1px),
		var(--page-hero-image, url("../images/lower-hero.png"));
	background-position: center, 0 0, 0 0, right bottom;
	background-repeat: no-repeat, repeat, repeat, no-repeat;
	background-size: auto, 48px 48px, 48px 48px, auto 100%;
	padding: 58px 0 48px;
}

.page-hero__inner,
.content-section__inner {
	width: min(var(--inner), 100%);
	margin: 0 auto;
	padding: 0 8px;
}

.page-hero h1 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(30px, 8.5vw, 34px);
	font-weight: 800;
	line-height: 1.35;
	text-wrap: balance;
}

.page-hero p {
	max-width: 720px;
	margin: 14px 0 0;
	color: var(--color-muted);
	font-weight: 600;
	line-height: 2;
}

.page-hero .eyebrow {
	margin: 0 0 14px;
	color: var(--color-blue);
	font-weight: 800;
	line-height: 1.5;
}

.breadcrumbs {
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	background: #fff;
	font-size: 13px;
}

.breadcrumbs__inner {
	width: min(var(--inner), 100%);
	margin: 0 auto;
	padding: 10px 8px;
	color: var(--color-muted);
}

.breadcrumbs a {
	color: var(--color-blue);
	font-weight: 700;
}

.content-section {
	padding: 64px 0;
}

.content-section--soft {
	background: linear-gradient(180deg, #f8fbff, #eef7ff);
}

.two-column {
	display: grid;
	gap: 22px;
	align-items: center;
}

.feature-grid,
.lower-card-grid,
.post-grid {
	display: grid;
	gap: 14px;
}

.feature-card,
.lower-card,
.post-card,
.contact-panel,
.profile-table,
.wp-content-card {
	border: 1px solid rgba(216, 228, 242, .96);
	border-radius: var(--radius-card);
	background: rgba(255,255,255,.94);
	box-shadow: var(--shadow-soft);
}

.feature-card,
.lower-card,
.wp-content-card {
	padding: 22px 18px;
}

.feature-card h3,
.lower-card h3,
.wp-content-card h2,
.wp-content-card h3 {
	margin: 0 0 8px;
	color: var(--color-ink);
	font-size: 20px;
	line-height: 1.55;
}

.feature-card p,
.lower-card p,
.wp-content-card p,
.wp-content-card li {
	color: var(--color-muted);
	font-weight: 600;
	line-height: 1.95;
}

.step-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	counter-reset: step;
}

.step-list li {
	position: relative;
	padding: 18px 18px 18px 58px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-soft);
	color: var(--color-muted);
	font-weight: 600;
}

.step-list li::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 18px;
	top: 18px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--color-blue);
	color: #fff;
	font-family: Inter, sans-serif;
	font-weight: 800;
}

.profile-table {
	overflow: hidden;
}

.profile-table dl {
	margin: 0;
}

.profile-table div {
	display: grid;
	gap: 5px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--color-line);
}

.profile-table div:last-child {
	border-bottom: 0;
}

.profile-table dt {
	color: var(--color-blue);
	font-weight: 800;
}

.profile-table dd {
	margin: 0;
	color: var(--color-ink);
	font-weight: 700;
	line-height: 1.8;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field label {
	color: var(--color-ink);
	font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	padding: 13px 14px;
	color: var(--color-ink);
}

.form-field textarea {
	min-height: 180px;
	resize: vertical;
}

.checkbox-grid {
	display: grid;
	gap: 10px;
}

.checkbox-grid label {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	padding: 12px;
	font-weight: 700;
}

.post-card {
	overflow: hidden;
}

.post-card__body {
	padding: 18px;
}

.post-card h2,
.post-card h3 {
	margin: 0 0 8px;
	color: var(--color-ink);
	font-size: 18px;
	line-height: 1.6;
}

.post-card p {
	margin: 0;
	color: var(--color-muted);
	font-weight: 600;
	line-height: 1.9;
}

.service-nav-grid {
	display: grid;
	gap: 12px;
}

@media (min-width: 768px) {
	.page-hero {
		padding: 104px 0 72px;
		background-image:
			linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 40%, rgba(255,255,255,.74) 64%, rgba(233,245,255,.42) 100%),
			linear-gradient(rgba(7,95,201,.07) 1px, transparent 1px),
			linear-gradient(90deg, rgba(7,95,201,.07) 1px, transparent 1px),
			var(--page-hero-image, url("../images/lower-hero.png"));
		background-position: center, 0 0, 0 0, right center;
		background-size: auto, 48px 48px, 48px 48px, cover;
	}

	.page-hero__inner,
	.content-section__inner,
	.breadcrumbs__inner {
		padding-inline: 24px;
	}

	.page-hero h1 {
		font-size: 46px;
	}

	.two-column {
		grid-template-columns: 1fr 1fr;
		gap: 42px;
	}

	.feature-grid,
	.lower-card-grid,
	.post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.service-nav-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.profile-table div {
		grid-template-columns: 160px 1fr;
		gap: 24px;
	}

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

/* Renewal lower page additions */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 700;
}

.breadcrumb a {
	color: var(--color-blue);
}

.lower-section {
	padding: 64px 0;
}

.lower-section.section--soft {
	background: linear-gradient(180deg, #f8fbff, #eef7ff);
}

.lower-grid,
.service-hub-grid,
.blog-list {
	display: grid;
	gap: 14px;
}

.lower-grid--two,
.service-hub-grid,
.blog-list {
	grid-template-columns: 1fr;
}

.lower-card h2,
.feature-card h3,
.post-card h2,
.privacy-content h2 {
	margin: 0 0 10px;
	color: var(--color-ink);
	line-height: 1.55;
}

.lower-card__label {
	display: inline-flex;
	margin: 0 0 12px;
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
}

.lower-card--blue {
	background: linear-gradient(135deg, var(--color-blue), var(--color-blue-2));
	border-color: transparent;
}

.lower-card--blue h2,
.lower-card--blue p,
.lower-card--blue .lower-card__label {
	color: #fff;
}

.lower-card--link,
.feature-card--link,
.post-card {
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lower-card--link:hover,
.feature-card--link:hover,
.post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(7, 95, 201, .35);
	box-shadow: var(--shadow-card);
}

.service-hub-grid .service-card__icon,
.feature-card > span {
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	color: var(--color-blue);
}

.service-hub-grid .service-card__icon {
	margin-inline: auto;
}

.service-hub-grid .lower-card h2 {
	text-align: center;
}

.service-story__layout {
	display: grid;
	gap: 24px;
	align-items: center;
	margin-bottom: 28px;
}

.service-story__intro {
	max-width: 920px;
	text-align: left;
}

.service-story__intro h2 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(28px, 5vw, 44px);
	line-height: 1.45;
}

.service-story__intro p:not(.lower-card__label) {
	margin: 16px 0 0;
	max-width: 760px;
	color: var(--color-muted);
	font-weight: 700;
	line-height: 2;
}

.service-story__intro .lower-card__label {
	justify-content: center;
}

.service-story__media {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.service-story__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.service-pain-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.service-mini-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	padding: 18px;
	box-shadow: var(--shadow-soft);
}

.service-mini-card span {
	display: grid;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-sky);
	color: var(--color-blue);
	font-family: Inter, sans-serif;
	font-weight: 800;
}

.service-mini-card svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-mini-card p {
	min-width: 0;
	margin: 0;
	color: var(--color-ink);
	font-weight: 800;
	line-height: 1.7;
	overflow-wrap: break-word;
	word-break: normal;
	word-break: auto-phrase;
}

.service-diagram-layout {
	display: grid;
	gap: 24px;
	align-items: center;
}

.service-diagram-copy h2,
.service-table-grid h2,
.service-metric-card h2 {
	margin: 0 0 14px;
	color: var(--color-ink);
	line-height: 1.45;
}

.service-diagram-copy p {
	margin: 0;
	color: var(--color-muted);
	font-weight: 700;
	line-height: 2;
}

.service-diagram {
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: linear-gradient(180deg, #fff, #f5fbff);
	box-shadow: var(--shadow-card);
	padding: clamp(18px, 3vw, 30px);
}

.service-diagram__head {
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
}

.service-diagram__head h3 {
	margin: 0;
	color: var(--color-ink);
	font-size: clamp(18px, 2.1vw, 24px);
	line-height: 1.45;
}

.service-diagram__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-items: center;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
}

.service-diagram__legend span {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.service-diagram__legend i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.service-diagram svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
}

.service-diagram__grid {
	fill: none;
	stroke: rgba(7, 95, 201, .12);
	stroke-width: 2;
}

.service-diagram__line {
	fill: none;
	stroke: var(--color-blue);
	stroke-width: 7;
	stroke-linecap: round;
	stroke-dasharray: 620;
	stroke-dashoffset: 620;
	opacity: .92;
	transition: stroke-dashoffset 1.4s ease .55s;
}

.service-diagram__point {
	fill: var(--color-blue);
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center;
	transform: scale(.5);
	transition: opacity .35s ease, transform .35s ease;
}

.service-diagram.is-visible .service-diagram__line {
	stroke-dashoffset: 0;
}

.service-diagram.is-visible .service-diagram__point {
	opacity: 1;
	transform: scale(1);
}

.service-diagram.is-visible .service-diagram__point:nth-of-type(2) { transition-delay: .72s; }
.service-diagram.is-visible .service-diagram__point:nth-of-type(3) { transition-delay: .92s; }
.service-diagram.is-visible .service-diagram__point:nth-of-type(4) { transition-delay: 1.12s; }

.service-diagram__bar {
	transform-box: fill-box;
	transform-origin: bottom;
	transform: scaleY(.08);
	transition: transform .75s cubic-bezier(.2, .8, .2, 1);
}

.service-diagram__bar--before {
	fill: rgba(93, 107, 130, .22);
}

.service-diagram__bar--after {
	fill: rgba(11, 126, 232, .28);
}

.service-diagram.is-visible .service-diagram__bar {
	transform: scaleY(1);
	transition-delay: var(--delay);
}

.service-diagram__connector {
	stroke: rgba(18, 168, 180, .55);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 90;
	stroke-dashoffset: 90;
	transition: stroke-dashoffset .6s ease;
	transition-delay: calc(var(--delay) + 320ms);
}

.service-diagram.is-visible .service-diagram__connector {
	stroke-dashoffset: 0;
}

.service-diagram__before-dot {
	background: rgba(93, 107, 130, .45);
	fill: rgba(93, 107, 130, .45);
}

.service-diagram__after-dot {
	background: var(--color-blue);
	fill: var(--color-blue);
}

.service-diagram__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.service-diagram__steps li {
	display: flex;
	gap: 8px;
	align-items: center;
	border: 1px solid rgba(216, 228, 242, .9);
	border-radius: 10px;
	background: rgba(255, 255, 255, .74);
	padding: 9px 10px;
}

.service-diagram__steps span {
	display: grid;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-blue);
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.service-diagram__steps strong {
	color: var(--color-ink);
	font-size: 13px;
	line-height: 1.5;
	font-weight: 800;
}

.service-process {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: service-step;
}

.service-process li {
	position: relative;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	column-gap: 16px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	padding: 18px;
	box-shadow: var(--shadow-soft);
}

.service-process li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 40px;
	top: 64px;
	bottom: -17px;
	width: 2px;
	background: linear-gradient(180deg, rgba(7, 95, 201, .38), rgba(7, 95, 201, .08));
}

.service-process span {
	display: grid;
	position: relative;
	z-index: 1;
	grid-row: 1 / span 3;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-blue), var(--color-blue-2));
	color: #fff;
	font-family: Inter, sans-serif;
	font-weight: 800;
	box-shadow: 0 10px 22px rgba(7, 95, 201, .18);
}

.service-process h3 {
	grid-column: 2;
	margin: 4px 0 0;
	color: var(--color-ink);
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.55;
}

.service-process p {
	grid-column: 2;
	margin: 12px 0 0;
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
}

.service-process strong {
	grid-column: 2;
	display: flex;
	width: fit-content;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--color-sky);
	color: var(--color-blue);
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 800;
}

.service-table-grid {
	display: grid;
	gap: 22px;
	align-items: stretch;
}

.service-table-wrap {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.service-table {
	width: 100%;
	border-collapse: collapse;
}

.service-table,
.service-table tbody,
.service-table tr,
.service-table th,
.service-table td {
	display: block;
}

.service-table th,
.service-table td {
	border-bottom: 1px solid var(--color-line);
	padding: 14px 16px;
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
}

.service-table tr:last-child td {
	border-bottom: 0;
}

.service-table th {
	width: auto;
	background: var(--color-sky);
	color: var(--color-blue);
	font-weight: 800;
}

.service-table td {
	color: var(--color-text);
	font-weight: 700;
}

.service-metric-card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-card);
	padding: clamp(22px, 4vw, 34px);
}

.service-metrics {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.service-metric {
	display: grid;
	gap: 8px;
}

.service-metric span {
	color: var(--color-ink);
	font-weight: 800;
}

.service-metric i {
	display: block;
	height: 12px;
	border-radius: 999px;
	background: var(--color-sky);
	overflow: hidden;
}

.service-metric i::before {
	content: "";
	display: block;
	width: var(--metric-value);
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.service-metric-card.is-visible .service-metric i::before,
.service-metric-card.is-meter-visible .service-metric i::before {
	transform: scaleX(1);
}

.service-faq {
	max-width: 920px;
	margin-inline: auto;
}

@keyframes service-point-pop {
	from {
		opacity: 0;
		transform: scale(.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes service-meter-fill {
	to {
		transform: scaleX(1);
	}
}

.feature-card > span {
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--color-sky);
	font-size: 22px;
	font-weight: 800;
}

.feature-card svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.lower-card strong {
	display: inline-flex;
	margin-top: 18px;
	color: var(--color-blue);
	font-size: 14px;
}

.check-list {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--color-ink);
	font-weight: 800;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-blue);
}

.company-list {
	display: grid;
	gap: 0;
	margin: 0;
}

.company-list div {
	display: grid;
	gap: 6px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-line);
}

.company-list div:first-child {
	padding-top: 0;
}

.company-list div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.company-list dt {
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
}

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

.contact-panel,
.privacy-content {
	padding: 22px 18px;
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: #fff;
	padding: 13px 14px;
	color: var(--color-ink);
}

.contact-panel input:focus,
.contact-panel textarea:focus,
.contact-panel select:focus {
	outline: 3px solid rgba(7, 95, 201, .16);
	border-color: var(--color-blue);
}

.contact-panel input[type="submit"],
.contact-panel button[type="submit"] {
	width: auto;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-blue), var(--color-blue-2));
	color: #fff;
	padding: 13px 24px;
	font-weight: 800;
	cursor: pointer;
}

.privacy-content {
	max-width: 920px;
	margin: 0 auto;
}

.privacy-content h2 {
	margin-top: 34px;
}

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

.entry-content > * + * {
	margin-top: 1.4em;
}

.post-card {
	display: block;
	padding-bottom: 22px;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--color-sky);
}

.post-card span,
.post-card h2,
.post-card p {
	display: block;
	margin-left: 20px;
	margin-right: 20px;
}

.post-card span {
	margin-top: 18px;
	color: var(--color-blue);
	font-size: 13px;
	font-weight: 800;
}

.post-card h2 {
	margin-top: 8px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
}

.nav-links a,
.nav-links span {
	display: grid;
	min-width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	font-weight: 800;
}

.nav-links .current {
	background: var(--color-blue);
	color: #fff;
	border-color: var(--color-blue);
}

@media (min-width: 768px) {
	.lower-section {
		padding: 84px 0;
	}

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

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

	.service-diagram-layout {
		grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	}

	.service-diagram__head {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.service-diagram__legend {
		justify-content: flex-end;
	}

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

	.service-table-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.service-table {
		display: table;
		border-collapse: collapse;
	}

	.service-table tbody {
		display: table-row-group;
	}

	.service-table tr {
		display: table-row;
	}

	.service-table th,
	.service-table td {
		display: table-cell;
		padding: 18px;
	}

	.service-table tr:last-child th {
		border-bottom: 0;
	}

	.service-table th {
		width: 180px;
	}

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

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

	.contact-panel,
	.privacy-content {
		padding: 32px;
	}
}

@media (min-width: 1080px) {
	.service-hub-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.service-story__layout {
		grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	}

	.service-pain-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.service-table-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 767px) {
	.section,
	.lower-section,
	.content-section {
		padding: 52px 0;
	}

	.page-hero__inner,
	.content-section__inner,
	.breadcrumbs__inner,
	.section__inner,
	.site-footer__inner {
		padding-inline: 8px;
	}

	.page-hero {
		padding: 58px 0 48px;
		background-image:
			linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.98) 58%, rgba(255,255,255,.88) 84%, rgba(233,245,255,.58) 100%),
			linear-gradient(rgba(7,95,201,.07) 1px, transparent 1px),
			linear-gradient(90deg, rgba(7,95,201,.07) 1px, transparent 1px),
			var(--page-hero-image, url("../images/lower-hero.png"));
		background-position: center, 0 0, 0 0, right bottom;
		background-size: auto, 48px 48px, 48px 48px, auto 100%;
	}

	.page-hero h1,
	.hero h1,
	.section-heading h2,
	.split-heading h2,
	.service-story__intro h2,
	.service-diagram-copy h2,
	.service-table-grid h2,
	.service-metric-card h2 {
		text-wrap: balance;
		overflow-wrap: break-word;
		word-break: normal;
		word-break: auto-phrase;
	}

	.page-hero p,
	.hero__lead,
	.section-heading p,
	.lower-card p,
	.feature-card p,
	.service-story__intro p:not(.lower-card__label),
	.service-diagram-copy p,
	.service-process p,
	.service-table td,
	.service-mini-card p {
		text-wrap: pretty;
		overflow-wrap: break-word;
		word-break: normal;
		word-break: auto-phrase;
	}

	.hero__actions,
	.button,
	.cta-section__button,
	.contact-panel input[type="submit"],
	.contact-panel button[type="submit"] {
		width: 100%;
		max-width: 100%;
	}

	.button,
	.cta-section__button {
		white-space: normal;
	}

	.hero-visual {
		min-height: clamp(238px, 68vw, 318px);
	}

	.hud--panel {
		width: 112px;
		height: 66px;
		left: 12px;
		top: 18px;
		gap: 8px;
		padding: 13px;
	}

	.hud--chart {
		left: 12px;
		bottom: 16px;
		width: 96px;
		height: 62px;
	}

	.hud--signal {
		right: 12px;
		top: 14px;
		width: 48px;
		height: 48px;
	}

	.hud--signal svg {
		width: 34px;
		height: 34px;
	}

	.service-table {
		display: block;
	}

	.service-table tbody,
	.service-table tr,
	.service-table th,
	.service-table td {
		display: block;
		width: 100%;
	}

	.service-table th,
	.service-table td {
		padding: 14px;
	}

	.service-table tr:last-child th {
		border-bottom: 1px solid var(--color-line);
	}

	.service-process {
		max-width: 100%;
	}

	.service-process li {
		grid-template-columns: 38px minmax(0, 1fr);
		column-gap: 12px;
		padding: 16px 14px;
	}

	.service-process li:not(:last-child)::after {
		left: 32px;
		top: 56px;
	}

	.service-process span {
		width: 38px;
		height: 38px;
	}

	.faq-item summary {
		padding: 16px 48px 16px 14px;
		font-size: 15px;
		line-height: 1.65;
	}

	.faq-item summary::after {
		right: 14px;
		width: 26px;
		height: 26px;
	}
}
