:root {
	--ink: #3f4a58;
	--ink-soft: #5c6978;
	--navy: #5c6978;
	--navy-2: #4b5867;
	--blue: #2d99cd;
	--blue-dark: #247faa;
	--cyan: #c8f1ff;
	--line: #dfe7f1;
	--mist: #f3f7fb;
	--white: #fff;
	--success: #087a55;
	--danger: #b42318;
	--shadow-sm: 0 12px 32px rgba(19, 45, 78, .08);
	--shadow-lg: 0 24px 70px rgba(3, 19, 38, .18);
	--radius: 18px;
	--radius-sm: 11px;
	--container: 1200px;
	--font-content: 16px;
	--font-large-heading: 30px;
	--color-large-heading: #3f4a58;
	--font-home-hero-copy-size: 25px;
	--font-navigation: 16px;
	--font-eyebrow: 16px;
	--font-sequence-number: 28px;
	--transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
	font-size: 16px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid rgba(23, 107, 255, .36);
	outline-offset: 3px;
}

[hidden] {
	display: none !important;
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.narrow-container {
	max-width: 840px;
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 9px 14px;
	clip: auto;
	color: var(--white);
	background: var(--blue);
}

.section {
	padding: 104px 0;
}

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

.eyebrow,
.panel-kicker {
	margin: 0 0 16px;
	color: var(--blue);
	font-size: var(--font-eyebrow);
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.25;
}

.section-heading {
	max-width: 680px;
	margin-bottom: 42px;
}

.section-heading.centered {
	margin-inline: auto;
	text-align: center;
}

.section-heading h1,
.section-heading h2 {
	margin: 0 0 18px;
	font-size: clamp(32px, 4vw, 52px);
	letter-spacing: -.045em;
	line-height: 1.12;
}

.section-heading > p:last-child,
.split-heading > p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.section-heading.light .eyebrow {
	color: var(--cyan);
}

.section-heading.light > p:last-child {
	color: #aebed1;
}

.split-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 48px;
	max-width: none;
}

.split-heading > div {
	flex: 0 1 620px;
}

.split-heading > p {
	max-width: 470px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 750;
	line-height: 1;
	transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
	cursor: pointer;
}

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

.button-primary {
	color: var(--white);
	background: var(--blue);
	box-shadow: 0 12px 26px rgba(23, 107, 255, .24);
}

.button-primary:hover {
	background: var(--blue-dark);
	box-shadow: 0 15px 34px rgba(23, 107, 255, .32);
}

.button-secondary {
	color: var(--blue-dark);
	border-color: #bcd0ed;
	background: var(--white);
}

.button-secondary:hover {
	border-color: var(--blue);
	background: #f6f9ff;
}

.button-ghost {
	color: var(--ink);
	border-color: #b8c6d8;
	background: rgba(255, 255, 255, .72);
}

.button-ghost-light {
	color: var(--white);
	border-color: rgba(255, 255, 255, .4);
	background: rgba(255, 255, 255, .08);
}

.button-light {
	color: var(--navy);
	background: var(--white);
}

.button-small {
	min-height: 42px;
	padding-inline: 18px;
	font-size: 14px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--blue-dark);
	font-weight: 760;
}

.text-link span {
	transition: transform var(--transition);
}

.text-link:hover span {
	transform: translateX(4px);
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid rgba(213, 225, 239, .76);
	background: rgba(255, 255, 255, .96);
	transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
	position: sticky;
	top: 0;
	box-shadow: 0 10px 34px rgba(6, 26, 52, .09);
}

.header-utility {
	color: #c7d4e5;
	background: var(--navy);
	font-size: 12px;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.utility-inner a {
	color: var(--white);
}

.header-main {
	display: flex;
	align-items: center;
	min-height: 82px;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.dizbell-logo {
	width: auto;
	height: 52px;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(15px, 1.8vw, 28px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	display: block;
	padding: 28px 0 26px;
	color: #26384f;
	font-size: var(--font-navigation);
	font-weight: 650;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 19px;
	left: 0;
	height: 2px;
	background: var(--blue);
	content: "";
	transform: scaleX(0);
	transition: transform var(--transition);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	margin-left: auto;
	border: 0;
	border-radius: 9px;
	background: var(--mist);
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 4px 0;
	border-radius: 3px;
	background: var(--ink);
}

/* Homepage hero */
.hero-home {
	position: relative;
	min-height: 720px;
	padding: 92px 0 82px;
	background:
		radial-gradient(circle at 76% 22%, rgba(62, 195, 255, .18), transparent 26%),
		linear-gradient(120deg, #f6faff 0%, #eaf3fd 52%, #f8fbff 100%);
	overflow: hidden;
}

.hero-circuit {
	position: absolute;
	inset: 0;
	opacity: .42;
	background-image:
		linear-gradient(rgba(86, 134, 189, .1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(86, 134, 189, .1) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(460px, .96fr);
	align-items: center;
	gap: 64px;
}

.hero-copy h1 {
	max-width: 720px;
	margin: 0 0 24px;
	font-size: clamp(47px, 5.5vw, 76px);
	letter-spacing: -.065em;
	line-height: 1.08;
}

.hero-lead {
	max-width: 630px;
	margin: 0;
	color: #40526a;
	font-size: 19px;
}

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

.hero-proof {
	display: flex;
	gap: 34px;
	padding: 0;
	margin: 50px 0 0;
	list-style: none;
}

.hero-proof li {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 8px;
	padding-right: 28px;
	border-right: 1px solid #bac9da;
}

.hero-proof li:last-child {
	border-right: 0;
}

.hero-proof strong {
	font-size: 28px;
	line-height: 1;
}

.hero-proof span {
	color: #66768c;
	font-size: 12px;
	line-height: 1.3;
}

.hero-visual {
	position: relative;
	min-height: 500px;
}

.hero-image {
	position: absolute;
	border: 7px solid rgba(255, 255, 255, .86);
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-image-1 {
	inset: 30px 0 100px 70px;
	z-index: 2;
}

.hero-image-2 {
	right: 55%;
	bottom: 22px;
	z-index: 3;
	width: 210px;
	height: 150px;
}

.hero-image-3 {
	top: 0;
	right: -28px;
	z-index: 1;
	width: 220px;
	height: 170px;
}

.hero-visual-placeholder {
	position: absolute;
	inset: 20px 0 70px 40px;
	border: 1px solid rgba(23, 107, 255, .14);
	border-radius: 34px;
	background:
		linear-gradient(140deg, rgba(23, 107, 255, .16), rgba(72, 213, 255, .04)),
		var(--white);
	box-shadow: var(--shadow-lg);
}

.hero-visual-placeholder span {
	position: absolute;
	border: 1px solid rgba(23, 107, 255, .3);
	border-radius: 50%;
}

.hero-visual-placeholder span:nth-child(1) { inset: 22% 24%; }
.hero-visual-placeholder span:nth-child(2) { inset: 34% 36%; }
.hero-visual-placeholder span:nth-child(3) { inset: 46% 48%; background: var(--blue); }

.hero-data-card {
	position: absolute;
	right: -20px;
	bottom: 48px;
	z-index: 4;
	display: grid;
	width: 245px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 16px;
	color: var(--white);
	background: rgba(75, 88, 103, .94);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(12px);
}

.hero-data-card span {
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .18em;
}

.hero-data-card strong {
	margin-top: 5px;
	font-size: 16px;
}

.hero-data-card i {
	width: 100%;
	height: 3px;
	margin-top: 16px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--cyan), var(--blue), transparent);
}

/* Cards and homepage sections */
.sector-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 32px;
}

.sector-filter button {
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid #d2deeb;
	border-radius: 999px;
	color: #495b72;
	background: var(--white);
	cursor: pointer;
}

.sector-filter button:hover,
.sector-filter button.active {
	color: var(--white);
	border-color: var(--blue);
	background: var(--blue);
}

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

.application-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 2px 0 rgba(10, 34, 64, .02);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.application-card:hover {
	border-color: #c1d5ed;
	box-shadow: var(--shadow-sm);
	transform: translateY(-5px);
}

.application-card-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: #dce7f3;
	overflow: hidden;
}

.application-card-picture,
.application-card-picture img {
	display: block;
	width: 100%;
	height: 100%;
}

.application-card-picture img {
	object-fit: cover;
	transition: transform 450ms ease;
}

.application-card:hover .application-card-picture img {
	transform: scale(1.045);
}

.application-sector-label {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 6px 11px;
	border: 1px solid rgba(255, 255, 255, .44);
	border-radius: 999px;
	color: var(--white);
	background: rgba(5, 19, 37, .72);
	font-size: 12px;
	font-weight: 750;
	backdrop-filter: blur(8px);
}

.application-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.application-card-body h3 {
	margin: 0 0 10px;
	font-size: 23px;
	letter-spacing: -.03em;
	line-height: 1.25;
}

.application-card-body > p {
	margin: 0 0 18px;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
}

.chip-list li {
	padding: 5px 9px;
	border-radius: 7px;
	color: #3d5879;
	background: #eff5fb;
	font-size: 12px;
	line-height: 1.35;
}

.application-card-body .text-link {
	margin-top: auto;
}

.section-action {
	margin-top: 40px;
	text-align: center;
}

.capability-section {
	position: relative;
	background:
		radial-gradient(circle at 85% 15%, rgba(35, 137, 244, .18), transparent 30%),
		var(--navy);
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #29405c;
	border-left: 1px solid #29405c;
}

.capability-grid article {
	min-height: 260px;
	padding: 34px;
	border-right: 1px solid #29405c;
	border-bottom: 1px solid #29405c;
}

.capability-grid span {
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
}

.capability-grid h3 {
	margin: 48px 0 14px;
	font-size: 22px;
}

.capability-grid p {
	margin: 0;
	color: #a9b9cc;
	font-size: var(--font-content);
}

.process-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 9vw;
	align-items: start;
}

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

.process-list li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
	padding-top: 0;
}

.process-list > li > span {
	color: var(--blue);
	font-size: 14px;
	font-weight: 800;
}

.process-list strong {
	font-size: 21px;
}

.process-list p {
	margin: 7px 0 0;
	color: var(--ink-soft);
}

.news-section,
.news-index {
	background: var(--mist);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.news-card,
.post-list-card {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.news-meta {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 750;
}

.news-card h2,
.news-card h3,
.post-list-card h2 {
	margin: 0 0 13px;
	font-size: 22px;
	line-height: 1.35;
}

.news-card > p:not(.news-meta),
.post-list-card > p {
	color: var(--ink-soft);
}

.post-list {
	display: grid;
	gap: 20px;
}

.home-inquiry {
	background: linear-gradient(120deg, #e8f2ff, #f7fbff);
}

/* Forms */
.dizbell-inquiry-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
	gap: 64px;
	padding: clamp(30px, 5vw, 64px);
	border: 1px solid #cbdcf0;
	border-radius: 28px;
	background: rgba(255, 255, 255, .9);
	box-shadow: var(--shadow-sm);
}

.dizbell-inquiry-copy {
	width: min(100%, 5.75em);
	font-size: var(--font-section-title);
}

.dizbell-inquiry-copy .eyebrow {
	white-space: nowrap;
}

.dizbell-inquiry-copy h2 {
	margin: 0 0 18px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.15;
}

.dizbell-inquiry-copy > p:last-child {
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.dizbell-inquiry-form label {
	display: grid;
	gap: 7px;
	color: #2e4057;
	font-size: 14px;
	font-weight: 650;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 17px;
	margin-bottom: 17px;
}

.dizbell-inquiry-form input,
.dizbell-inquiry-form select,
.dizbell-inquiry-form textarea {
	width: 100%;
	border: 1px solid #c7d5e5;
	border-radius: 9px;
	color: var(--ink);
	background: var(--white);
	font-size: 15px;
	font-weight: 400;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.dizbell-inquiry-form input,
.dizbell-inquiry-form select {
	height: 48px;
	padding: 0 13px;
}

.dizbell-inquiry-form textarea {
	min-height: 138px;
	padding: 12px 13px;
	resize: vertical;
}

.dizbell-inquiry-form input:focus,
.dizbell-inquiry-form select:focus,
.dizbell-inquiry-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(23, 107, 255, .12);
}

.dizbell-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.dizbell-inquiry-form .consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 16px 0;
	font-weight: 400;
}

.dizbell-inquiry-form .consent input {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 3px;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.form-actions button:disabled {
	cursor: wait;
	opacity: .6;
	transform: none;
}

.form-status {
	margin: 0;
	color: var(--ink-soft);
	font-size: 14px;
}

.form-status.is-success {
	color: var(--success);
	font-weight: 700;
}

.form-status.is-error {
	color: var(--danger);
	font-weight: 700;
}

/* Inner and archive pages */
.inner-hero {
	padding: 86px 0 82px;
	color: var(--white);
	background:
		radial-gradient(circle at 82% 18%, rgba(72, 213, 255, .18), transparent 26%),
		linear-gradient(135deg, var(--navy), var(--navy-2));
}

.compact-hero {
	padding-block: 62px;
}

.inner-hero h1 {
	max-width: 860px;
	margin: 16px 0 12px;
	color: var(--white);
	font-size: clamp(42px, 6vw, 68px);
	letter-spacing: -.055em;
	line-height: 1.1;
}

.inner-hero > .container > p:last-child,
.archive-description {
	max-width: 680px;
	margin: 0;
	color: #b5c5d8;
	font-size: 17px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	color: #91a7c0;
	font-size: var(--font-navigation);
	font-weight: 650;
	line-height: 1.5;
}

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

.directory-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: start;
}

.sector-sidebar {
	position: sticky;
	top: 130px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.sidebar-title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 800;
}

.sector-sidebar nav {
	display: grid;
	gap: 5px;
}

.sector-sidebar nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 12px;
	border-radius: 8px;
	color: #405269;
	font-size: 14px;
}

.sector-sidebar nav a:hover,
.sector-sidebar nav a.active {
	color: var(--blue-dark);
	background: #edf4ff;
}

.sector-sidebar nav span {
	color: #8496ad;
	font-size: 12px;
}

.sidebar-contact {
	padding: 20px;
	margin-top: 22px;
	border-radius: 12px;
	color: var(--white);
	background: var(--navy);
}

.sidebar-contact strong {
	font-size: 15px;
}

.sidebar-contact p {
	color: #aebed1;
	font-size: var(--font-content);
}

.sidebar-contact a {
	color: var(--cyan);
	font-size: 14px;
	font-weight: 750;
}

.directory-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	margin-bottom: 22px;
}

.directory-toolbar > div {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.directory-toolbar strong {
	font-size: 24px;
}

.directory-toolbar span {
	color: var(--ink-soft);
	font-size: 12px;
}

.mobile-sector-select {
	display: none;
}

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

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

.page-numbers {
	display: grid;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 8px;
	place-items: center;
}

.page-numbers.current {
	color: var(--white);
	border-color: var(--blue);
	background: var(--blue);
}

.empty-state {
	grid-column: 1 / -1;
	padding: 64px 24px;
	border: 1px dashed #b9c9dc;
	border-radius: var(--radius);
	text-align: center;
	background: var(--mist);
}

.empty-state h2,
.empty-state h3 {
	margin: 0 0 8px;
}

.empty-state p {
	margin: 0;
	color: var(--ink-soft);
}

/* Application detail */
.application-hero {
	position: relative;
	padding: 32px 0 28px;
	color: var(--white);
	background:
		radial-gradient(circle at 83% 12%, rgba(72, 213, 255, .22), transparent 25%),
		linear-gradient(130deg, var(--navy), var(--navy-2));
	overflow: hidden;
}

.application-hero::after {
	position: absolute;
	inset: 0;
	opacity: .16;
	background-image:
		linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	mask-image: linear-gradient(90deg, transparent 22%, #000);
}

.application-hero .container {
	position: relative;
	z-index: 1;
}

.application-hero .breadcrumbs {
	margin-bottom: 16px;
}

.application-hero-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: 68px;
}

.sector-pill {
	display: inline-flex;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	color: var(--cyan);
	background: rgba(255, 255, 255, .06);
	font-size: 12px;
	font-weight: 800;
}

.application-hero h1 {
	margin: 21px 0 20px;
	color: var(--white);
	font-size: clamp(46px, 6vw, 72px);
	letter-spacing: -.06em;
	line-height: 1.04;
}

.application-tagline {
	max-width: 560px;
	margin: 0;
	color: #c0d0e1;
	font-size: 19px;
}

.application-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.application-hero-media {
	position: relative;
	aspect-ratio: 16 / 7;
	max-height: 300px;
	border: 8px solid rgba(255, 255, 255, .13);
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.application-hero-picture,
.application-hero-picture img {
	width: 100%;
	height: 100%;
}

.application-hero-picture img {
	object-fit: cover;
}

.application-section-nav {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(12px);
}

.site-header.is-scrolled + .site-main .application-section-nav {
	top: 82px;
}

.application-section-nav .container {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	scrollbar-width: none;
}

.application-section-nav a {
	flex: 0 0 auto;
	padding: 17px 0 15px;
	border-bottom: 2px solid transparent;
	color: #52647b;
	font-size: 14px;
	font-weight: 700;
}

.application-section-nav a:hover {
	color: var(--blue-dark);
	border-color: var(--blue);
}

.content-split {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 9vw;
	align-items: start;
}

.rich-copy {
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.terminal-panel,
.advantage-panel {
	padding: 36px;
	border-radius: 20px;
	background: var(--mist);
}

.terminal-panel h2,
.advantage-panel h2 {
	margin: 0 0 22px;
	font-size: 27px;
}

.terminal-list,
.advantage-panel ul {
	display: grid;
	gap: 13px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.terminal-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d8e2ed;
	font-weight: 650;
}

.terminal-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.terminal-list span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 5px rgba(23, 107, 255, .1);
}

.system-section {
	background: var(--mist);
}

.system-flow {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.system-flow li {
	position: relative;
	display: flex;
	flex: 1 1 0;
	min-height: 150px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: 25px 12px;
	border: 1px solid #cbd9e8;
	border-radius: 15px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.system-flow li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -21px;
	width: 15px;
	height: 15px;
	border-top: 2px solid var(--blue);
	border-right: 2px solid var(--blue);
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.system-index {
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.system-flow strong {
	font-size: 16px;
	line-height: 1.45;
	white-space: nowrap;
}

.application-system-board {
	display: grid;
	gap: 18px;
	padding: 34px;
	border: 1px solid #cbd9e8;
	border-radius: 24px;
	background:
		linear-gradient(rgba(45, 153, 205, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(45, 153, 205, .055) 1px, transparent 1px),
		#fff;
	background-size: 34px 34px;
	box-shadow: var(--shadow-sm);
}

.application-system-layer {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 22px;
	align-items: stretch;
}

.application-system-layer + .application-system-layer {
	padding-top: 18px;
	border-top: 1px solid #dce7f0;
}

.application-system-layer-label {
	display: grid;
	min-height: 92px;
	place-content: center;
	padding: 14px;
	border-radius: 14px;
	color: #fff;
	background: var(--navy);
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.application-system-nodes {
	display: flex;
	align-items: stretch;
	gap: 12px;
	min-width: 0;
}

.application-system-node {
	display: grid;
	flex: 1 1 0;
	min-height: 92px;
	place-content: center;
	padding: 16px 18px;
	border: 1px solid #c9deea;
	border-radius: 14px;
	color: #1f3549;
	background: rgba(247, 252, 254, .96);
	font-size: 16px;
	font-weight: 750;
	line-height: 1.45;
	text-align: center;
}

.application-system-node.is-accent {
	border-color: #69b9db;
	color: #176f99;
	background: #eaf7fc;
}

.application-system-arrow {
	display: grid;
	flex: 0 0 26px;
	place-content: center;
	color: var(--blue);
	font-size: 25px;
	font-weight: 800;
}

.requirement-grid {
	display: grid;
	grid-template-columns: 1fr .7fr;
	gap: 8vw;
	align-items: start;
}

.requirement-grid.requirements-only {
	grid-template-columns: 1fr;
}

.requirement-grid.requirements-only .numbered-feature-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 48px;
}

.numbered-feature-list {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.numbered-feature-list li {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 14px;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.numbered-feature-list span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.numbered-feature-list strong {
	font-size: 18px;
}

.advantage-panel {
	color: var(--white);
	background:
		radial-gradient(circle at 85% 10%, rgba(72, 213, 255, .2), transparent 30%),
		var(--navy);
}

.advantage-panel .panel-kicker {
	color: var(--cyan);
}

.advantage-panel li {
	position: relative;
	padding-left: 25px;
	color: #c0ccda;
}

.advantage-panel li::before {
	position: absolute;
	top: .7em;
	left: 0;
	width: 12px;
	height: 7px;
	border-bottom: 2px solid var(--cyan);
	border-left: 2px solid var(--cyan);
	content: "";
	transform: rotate(-45deg);
}

.application-advantage-section {
	background: #fff;
}

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

.application-advantage-card {
	position: relative;
	min-height: 340px;
	padding: 36px;
	border-radius: 22px;
	color: #fff;
	background:
		radial-gradient(circle at 92% 8%, rgba(200, 241, 255, .24), transparent 27%),
		linear-gradient(135deg, var(--navy-2), var(--navy));
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.application-advantage-card .sequence-number {
	color: #fff;
	background: rgba(255, 255, 255, .15);
}

.application-advantage-card h3 {
	margin: 34px 0 18px;
	color: #fff;
	font-size: 26px;
	line-height: 1.3;
}

.application-advantage-card p {
	margin: 0;
	color: #dce8f1;
	font-size: 17px;
	line-height: 1.9;
}

.application-advantage-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.application-advantage-tags span {
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	color: var(--cyan);
	background: rgba(255, 255, 255, .06);
	font-size: 14px;
	font-weight: 700;
}

.component-section {
	background: var(--mist);
}

.component-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.component-grid article {
	min-height: 250px;
	padding: 25px;
	border: 1px solid #d7e1ec;
	border-radius: 15px;
	background: var(--white);
}

.component-grid span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.component-grid h3 {
	margin: 46px 0 12px;
	font-size: 18px;
	line-height: 1.4;
}

.component-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.related-card {
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 15px;
}

.related-card > p {
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.related-card > span {
	color: var(--ink-soft);
	font-size: 14px;
}

.related-card h3 {
	margin: 8px 0;
	font-size: 22px;
}

.related-card .text-link {
	margin-top: 20px;
}

.application-product-direction-section {
	background: var(--mist);
}

.application-product-direction-panel {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

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

.application-product-direction-grid article {
	position: relative;
	min-height: 250px;
	padding: 25px;
	border: 1px solid #d7e1ec;
	border-radius: 15px;
	background: var(--white);
	overflow: hidden;
}

.application-product-direction-grid article::before {
	content: none;
}

.application-product-direction-grid h3 {
	margin: 46px 0 0;
	min-height: 51px;
	color: #16324a;
	font-size: 18px;
	line-height: 1.4;
}

.application-product-direction-grid h3 span {
	display: block;
	white-space: nowrap;
}

.application-product-direction-grid small {
	display: block;
	margin-top: 14px;
	color: var(--blue-dark);
	font-size: var(--font-meta);
	font-weight: 750;
	letter-spacing: .08em;
}

.resource-section {
	background: var(--mist);
}

.resource-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.resource-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--white);
}

.resource-list span {
	padding: 5px 7px;
	border-radius: 5px;
	color: var(--white);
	background: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.application-inquiry {
	background: linear-gradient(125deg, #e8f2ff, #f9fcff);
}

.application-image-fallback {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #cfdef0, #edf4fb);
}

.application-image-fallback i {
	position: absolute;
	border: 1px solid rgba(23, 107, 255, .3);
	border-radius: 50%;
}

.application-image-fallback i:nth-child(1) { inset: 20%; }
.application-image-fallback i:nth-child(2) { inset: 34%; }
.application-image-fallback i:nth-child(3) { inset: 46%; background: var(--blue); }

/* Content */
.entry-content {
	color: #26384f;
	font-size: var(--font-content);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2em;
	letter-spacing: -.03em;
	line-height: 1.25;
}

.entry-content a {
	color: var(--blue-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.page-content-section .dizbell-inquiry-panel {
	margin-top: 54px;
}

.page-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 54px;
}

.page-feature-grid article {
	min-height: 240px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--mist);
}

.page-feature-grid span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.page-feature-grid h2 {
	margin: 50px 0 12px;
	font-size: 23px;
}

.page-feature-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.jobs-list {
	display: grid;
	gap: 16px;
	margin-top: 54px;
}

.jobs-list > article {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: center;
	gap: 30px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.jobs-list h2 {
	margin: 0;
	font-size: 22px;
}

.jobs-list > article > p {
	margin: 0;
	color: var(--ink-soft);
}

.article-hero .news-meta {
	color: var(--cyan);
}

.not-found-section {
	display: grid;
	min-height: 62vh;
	padding: 100px 0;
	place-items: center;
	background: var(--mist);
}

.not-found-inner {
	max-width: 720px;
	text-align: center;
}

.not-found-inner h1 {
	margin: 0 0 14px;
	font-size: clamp(44px, 7vw, 76px);
	letter-spacing: -.055em;
}

.not-found-inner p:not(.eyebrow) {
	color: var(--ink-soft);
}

.not-found-inner .hero-actions {
	justify-content: center;
}

/* Footer */
.site-footer {
	padding: 76px 0 0;
	color: #eef4f7;
	background: var(--navy);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr .75fr .75fr 1fr;
	gap: 54px;
}

.site-brand-light .dizbell-logo {
	height: 52px;
}

.footer-brand p {
	max-width: 360px;
	margin: 22px 0 0;
	color: #dce5ea;
	font-size: var(--font-content);
}

.site-footer h2 {
	margin: 0 0 18px;
	color: var(--white);
	font-size: var(--font-content);
}

.footer-links {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: var(--font-content);
}

.footer-links a:hover,
.footer-bottom a:hover {
	color: var(--cyan);
}

.footer-contact p {
	margin: 0 0 20px;
	color: #dce5ea;
	font-size: var(--font-content);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 22px 0;
	margin-top: 62px;
	border-top: 1px solid rgba(255, 255, 255, .22);
	color: #d7e0e5;
	font-size: var(--font-content);
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 24px;
}

@media (max-width: 1080px) {
	.primary-menu {
		gap: 16px;
	}

	.hero-grid {
		grid-template-columns: 1fr 430px;
		gap: 36px;
	}

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

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

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

	.footer-grid {
		grid-template-columns: 1.2fr repeat(3, 1fr);
		gap: 30px;
	}

	.page-feature-grid {
		grid-template-columns: 1fr;
	}

	.jobs-list > article {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.section {
		padding: 78px 0;
	}

	.header-utility {
		display: none;
	}

	.header-main {
		min-height: 72px;
	}

	.contact-inquiry-anchor {
		scroll-margin-top: 88px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: fixed;
		top: 72px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 18px 24px;
		background: rgba(255, 255, 255, .98);
		overflow-y: auto;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		gap: 0;
	}

	.primary-menu a {
		padding: 15px 5px;
		border-bottom: 1px solid var(--line);
		font-size: 17px;
	}

	.primary-menu a::after {
		display: none;
	}

	.hero-home {
		min-height: 0;
		padding: 72px 0;
	}

	.hero-grid,
	.application-hero-grid,
	.content-split,
	.requirement-grid {
		grid-template-columns: 1fr;
	}

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

	.hero-image-1 {
		inset: 20px 20px 100px 80px;
	}

	.hero-data-card {
		right: 10px;
	}

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

	.dizbell-inquiry-panel {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.dizbell-inquiry-copy {
		width: 100%;
	}

	.dizbell-inquiry-copy h2 {
		white-space: nowrap;
	}

	.directory-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.sector-sidebar {
		display: none;
	}

	.mobile-sector-select {
		display: grid;
		gap: 4px;
		color: var(--ink-soft);
		font-size: 12px;
	}

	.mobile-sector-select select {
		min-width: 160px;
		height: 40px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: var(--white);
	}

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

	.system-flow li:not(:last-child)::after {
		display: none;
	}

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

@media (max-width: 680px) {
	.container {
		width: min(calc(100% - 30px), var(--container));
	}

	.section {
		padding: 64px 0;
	}

	.split-heading {
		display: block;
	}

	.split-heading > p {
		margin-top: 14px;
	}

	.hero-copy h1 {
		font-size: 44px;
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-proof {
		gap: 14px;
		margin-top: 35px;
	}

	.hero-proof li {
		display: block;
		padding-right: 13px;
	}

	.hero-proof strong,
	.hero-proof span {
		display: block;
	}

	.hero-proof span {
		margin-top: 6px;
	}

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

	.hero-image-1 {
		inset: 10px 0 80px 35px;
	}

	.hero-image-2 {
		right: auto;
		bottom: 15px;
		left: 0;
		width: 155px;
		height: 112px;
	}

	.hero-image-3 {
		right: 0;
		width: 150px;
		height: 110px;
	}

	.hero-data-card {
		right: 0;
		bottom: 25px;
		width: 190px;
		padding: 16px;
	}

	.hero-visual-placeholder {
		inset: 10px 0 50px 20px;
	}

	.application-grid,
	.archive-grid,
	.news-grid,
	.related-grid,
	.resource-list {
		grid-template-columns: 1fr;
	}

	.application-card-body {
		padding: 21px;
	}

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

	.capability-grid article {
		min-height: 210px;
	}

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

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

	.dizbell-inquiry-panel {
		padding: 25px 20px;
		border-radius: 18px;
	}

	.inner-hero {
		padding: 58px 0;
	}

	.inner-hero h1 {
		font-size: 44px;
	}

	.application-hero {
		padding: 24px 0 28px;
	}

	.application-hero-grid {
		gap: 34px;
	}

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

	.application-hero-media {
		aspect-ratio: 16 / 9;
		max-height: none;
		border-width: 5px;
	}

	.application-section-nav .container {
		gap: 21px;
	}

	.site-header.is-scrolled + .site-main .application-section-nav {
		top: 72px;
	}

	.terminal-panel,
	.advantage-panel {
		padding: 26px;
	}

	.system-flow,
	.component-grid {
		grid-template-columns: 1fr;
	}

	.system-flow li {
		min-height: 120px;
	}

	.component-grid article {
		min-height: 190px;
	}

	.component-grid h3 {
		margin-top: 30px;
	}

	.directory-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
	}

	.mobile-sector-select,
	.mobile-sector-select select {
		width: 100%;
	}

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

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-bottom div {
		flex-direction: column;
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Dizbell 1.2 visual system */
:root {
	--ink: #3f4a58;
	--ink-soft: #5c6978;
	--navy: #5c6978;
	--navy-2: #4b5867;
	--blue: #2d99cd;
	--blue-dark: #247faa;
	--cyan: #c8f1ff;
	--line: #dce8ef;
	--mist: #f3f9fc;
	--shadow-sm: 0 14px 34px rgba(16, 69, 100, .09);
	--shadow-lg: 0 25px 70px rgba(7, 42, 68, .17);
	--font-section-title: clamp(29px, 3.2vw, 42px);
}

.section {
	padding: 88px 0;
}

.section-heading h1,
.section-heading h2,
.dizbell-inquiry-copy h2 {
	font-size: var(--font-section-title);
	letter-spacing: -.045em;
	line-height: 1.12;
}

.inner-hero h1,
.application-hero h1 {
	font-size: clamp(36px, 4.5vw, 50px);
}

.not-found-inner h1 {
	font-size: var(--font-section-title);
}

/* Homepage */
.hero-home-v3 {
	position: relative;
	height: clamp(400px, 35vw, 520px);
	min-height: 0;
	padding: 0;
	background: #2d99cd;
	overflow: hidden;
}

.hero-home-v3::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 39%;
	height: 58%;
	background: #fff;
	clip-path: polygon(22% 0, 100% 0, 100% 100%);
	content: "";
	pointer-events: none;
}

.hero-v3-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center 26%;
}

.hero-v3-inner {
	position: relative;
	height: 100%;
}

.hero-v3-inner h1 {
	position: absolute;
	top: 43%;
	left: 0;
	width: min(61vw, 820px);
	margin: 0;
	color: #fff;
	font-size: clamp(19px, 1.8vw, var(--font-home-hero-copy-size));
	font-weight: 520;
	letter-spacing: .01em;
	line-height: 1.72;
	text-shadow: 0 1px 3px rgba(5, 61, 93, .12);
}

.hero-v3-inner h1 span {
	display: block;
	white-space: nowrap;
}

.hero-home-v2 {
	min-height: 640px;
	padding: 74px 0;
}

.hero-v2-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
	align-items: center;
	gap: 66px;
}

.hero-v2-copy h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(34px, 3.8vw, 51px);
	letter-spacing: -.048em;
	line-height: 1.22;
}

.hero-v2-visual {
	position: relative;
	aspect-ratio: 1.08 / 1;
	border: 9px solid rgba(255, 255, 255, .8);
	border-radius: 30px;
	background: #dcecf5;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.hero-v2-visual::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 21px;
	content: "";
	pointer-events: none;
}

.hero-v2-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-v2-badge {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	min-width: 132px;
	padding: 16px 19px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 15px;
	color: #fff;
	background: rgba(75, 88, 103, .92);
	backdrop-filter: blur(10px);
}

.hero-v2-badge strong {
	font-size: 25px;
	line-height: 1;
}

.hero-v2-badge span {
	margin-top: 7px;
	color: #b9cedc;
	font-size: 12px;
}

.home-product-center {
	background: #fff;
}

.home-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-right: 1px solid var(--line);
	background: #fafcfd;
}

.home-product-column {
	display: grid;
	align-content: start;
	border-left: 1px solid var(--line);
}

.home-product-card {
	display: flex;
	min-height: 146px;
	align-items: center;
	gap: 18px;
	padding: 28px;
	background: transparent;
	transition: color var(--transition), background var(--transition);
}

.home-product-card:hover {
	color: var(--blue-dark);
	background: #f0f8fb;
}

.home-product-icon {
	display: grid;
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border: 1px solid rgba(45, 153, 205, .42);
	border-radius: 50%;
	place-items: center;
	color: var(--blue);
	background: rgba(255, 255, 255, .72);
}

.home-product-card h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 680;
	line-height: 1.35;
}

.product-icon-svg {
	display: block;
	width: 30px;
	height: 30px;
}

.home-solutions {
	background: var(--mist);
}

.solution-tabs {
	border: 1px solid #d9e7ee;
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.solution-tab-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-bottom: 1px solid var(--line);
}

.solution-tab-list button {
	display: grid;
	min-height: 94px;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 12px;
	padding: 17px;
	border: 0;
	border-right: 1px solid var(--line);
	color: var(--ink-soft);
	background: #fff;
	cursor: pointer;
}

.solution-tab-list button:last-child {
	border-right: 0;
}

.solution-tab-list button:hover,
.solution-tab-list button.is-active {
	color: var(--blue-dark);
	background: #eff9fd;
}

.solution-tab-list button.is-active {
	box-shadow: inset 0 -3px 0 var(--blue);
}

.solution-tab-list span {
	display: grid;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	place-items: center;
	color: var(--blue-dark);
	background: #d7f1fb;
	font-size: 12px;
	font-weight: 850;
}

.solution-tab-list strong {
	font-size: 14px;
	text-align: left;
}

.solution-panels article {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
	min-height: 410px;
}

.solution-panel-media {
	min-height: 410px;
	background: #d9e9f1;
}

.solution-panel-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.solution-panel-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 48px;
}

.solution-panel-copy h3 {
	margin: 0 0 16px;
	font-size: clamp(27px, 3vw, 39px);
	letter-spacing: -.04em;
	line-height: 1.15;
}

.solution-panel-copy > p:not(.eyebrow) {
	margin: 0 0 28px;
	color: var(--ink-soft);
}

.service-section {
	color: #fff;
	background:
		radial-gradient(circle at 82% 14%, rgba(45, 162, 211, .22), transparent 28%),
		var(--navy);
}

.service-section .section-heading > p:last-child {
	color: #a9bdcc;
}

.service-section h2,
.service-section h3,
.consultation-band h2 {
	color: #fff;
}

.service-section .eyebrow {
	color: var(--cyan);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, .2);
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.service-grid article {
	min-height: 270px;
	padding: 34px;
	border-right: 1px solid rgba(255, 255, 255, .2);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.service-grid span {
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
}

.service-grid h3 {
	margin: 68px 0 12px;
	font-size: 21px;
}

.service-grid p {
	margin: 0;
	color: #a9bdcc;
	font-size: var(--font-content);
}

.company-proof {
	padding: 72px 0;
	background: #fff;
}

.company-proof-grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	align-items: center;
	gap: 70px;
}

.company-proof h2 {
	margin: 0 0 20px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.2;
}

.company-proof dl,
.about-stats dl {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 0;
}

.company-proof dl > div,
.about-stats dl > div {
	padding: 25px;
	border-left: 1px solid var(--line);
}

.company-proof dt,
.about-stats dt {
	font-size: 28px;
	font-weight: 820;
	letter-spacing: -.04em;
}

.company-proof dd,
.about-stats dd {
	margin: 7px 0 0;
	color: var(--ink-soft);
	font-size: 12px;
}

.consultation-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 44px;
	padding: 48px;
	border-radius: 22px;
	color: #fff;
	background:
		radial-gradient(circle at 90% 0%, rgba(85, 213, 237, .25), transparent 30%),
		var(--navy);
}

.consultation-band .eyebrow {
	color: var(--cyan);
}

.consultation-band h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.2;
}

.consultation-band p:not(.eyebrow) {
	max-width: 720px;
	margin: 0;
	color: #afc2d1;
}

/* Product center */
.product-hero {
	position: relative;
	height: clamp(300px, 24vw, 360px);
	padding: 32px 0;
	color: #fff;
	background:
		radial-gradient(circle at 78% 25%, rgba(45, 162, 211, .25), transparent 28%),
		linear-gradient(125deg, var(--navy), var(--navy-2));
	overflow: hidden;
}

.product-hero-grid {
	display: grid;
	height: 100%;
	grid-template-columns: 1fr .9fr;
	align-items: stretch;
	gap: 64px;
}

.product-hero-copy {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
}

.product-hero .breadcrumbs {
	margin-bottom: 16px;
}

.product-hero .breadcrumbs,
.product-hero .breadcrumbs a {
	color: #a9bdcc;
}

.product-hero .eyebrow {
	margin-bottom: 8px;
	color: var(--cyan);
}

.product-hero h1 {
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(32px, 3.8vw, 46px);
	letter-spacing: -.052em;
	line-height: 1.15;
}

.product-hero p:not(.eyebrow) {
	max-width: 650px;
	margin: 0 0 28px;
	color: #b8cbd9;
}

.product-hero-chip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 10px;
	height: 100%;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 20px;
	background: rgba(255, 255, 255, .05);
}

.product-hero-chip > span {
	display: block;
	border: 1px solid rgba(85, 213, 237, .27);
	border-radius: 17px;
	color: #d8f6ff;
	background: rgba(36, 153, 202, .13);
	text-align: center;
	transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.product-hero-chip > span:hover {
	border-color: rgba(200, 241, 255, .62);
	background: rgba(36, 153, 202, .26);
	transform: translateY(-2px);
}

.product-hero-chip > span > a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	padding: 10px 8px;
}

.product-hero-chip .product-line-icon {
	display: grid;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(200, 241, 255, .3);
	border-radius: 50%;
	place-items: center;
	color: rgba(200, 241, 255, .82);
}

.product-hero-chip .product-icon-svg {
	width: 21px;
	height: 21px;
}

.product-hero-chip strong {
	color: #fff;
	font-size: 18px;
	font-weight: 780;
	line-height: 1.35;
}

.product-family-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.product-family-card {
	display: flex;
	min-height: 440px;
	flex-direction: column;
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: linear-gradient(145deg, #fff, #f7fbfd);
}

.product-family-head {
	display: flex;
	align-items: center;
	gap: 18px;
}

.product-family-icon {
	display: grid;
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	border: 1px solid rgba(45, 153, 205, .42);
	border-radius: 50%;
	place-items: center;
	color: var(--blue-dark);
	background: #f7fcfe;
}

.product-family-icon .product-icon-svg {
	width: 31px;
	height: 31px;
}

.product-family-head small {
	color: var(--blue);
	font-size: 12px;
	font-weight: 850;
}

.product-family-head h2 {
	margin: 4px 0 0;
	font-size: 25px;
}

.product-family-head h2 a {
	transition: color var(--transition);
}

.product-family-head h2 a:hover {
	color: var(--blue-dark);
}

.product-family-card > p {
	margin: 24px 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.product-family-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0 0 28px;
	list-style: none;
}

.product-family-card li {
	padding: 7px 10px;
	border-radius: 7px;
	color: #3d5d71;
	background: #eaf5f9;
	font-size: 12px;
}

.product-family-card .text-link {
	margin-top: auto;
}

.product-consultation,
.product-category-cta,
.home-contact-cta {
	padding-top: 0;
}

.inner-hero.product-category-hero {
	background:
		radial-gradient(circle at 78% 5%, rgba(45, 162, 211, .22), transparent 25%),
		var(--navy);
}

.product-topic-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.product-family-nav {
	position: sticky;
	top: 112px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
}

.product-family-nav > p {
	margin: 0 0 14px;
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 800;
}

.product-family-nav ul {
	display: grid;
	gap: 3px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.product-family-nav a {
	display: block;
	padding: 9px 11px;
	border-radius: 8px;
	font-size: 14px;
}

.product-family-nav li.is-active a,
.product-family-nav a:hover {
	color: var(--blue-dark);
	background: #e9f6fb;
}

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

.product-topic-grid article {
	min-height: 230px;
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: #fff;
}

.product-topic-grid article.is-active {
	border-color: #91cfe5;
	box-shadow: var(--shadow-sm);
}

.product-topic-grid span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 850;
}

.product-topic-grid h2 {
	margin: 36px 0 10px;
	font-size: 18px;
}

.product-topic-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

/*
 * Shared sequence labels.
 * Every numbered content card uses one readable treatment across product,
 * solution, homepage and company pages.
 */
.sequence-number {
	display: inline-flex;
	width: fit-content;
	min-width: 64px;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	border-radius: 999px;
	color: var(--blue-dark);
	background: rgba(45, 153, 205, .13);
	font-size: var(--font-sequence-number);
	font-weight: 850;
	letter-spacing: .06em;
	line-height: 1;
}

.product-family-head .sequence-number,
.product-topic-grid .sequence-number,
.about-capability-grid .sequence-number,
.about-feature-grid .sequence-number,
.component-grid .sequence-number,
.system-flow .sequence-number,
.numbered-feature-list .sequence-number {
	color: var(--blue-dark);
	font-size: var(--font-sequence-number);
}

.system-flow .sequence-number {
	min-width: 64px;
	min-height: 46px;
	padding: 7px 14px;
}

.about-feature-grid .sequence-number {
	width: auto;
	height: auto;
	min-width: 64px;
	min-height: 46px;
	padding: 7px 14px;
}

.service-grid .sequence-number,
.capability-grid .sequence-number {
	color: #fff;
	background: rgba(255, 255, 255, .16);
	font-size: var(--font-sequence-number);
}

/* About */
.about-hero {
	padding: 68px 0;
	background: #fff;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
	align-items: stretch;
	gap: 54px;
}

.about-hero-media {
	min-height: 560px;
	border-radius: 22px;
	background: #dce8ee;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.about-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-hero-copy h1 {
	margin: 14px 0 22px;
	font-size: clamp(37px, 4vw, 50px);
	letter-spacing: -.05em;
	line-height: 1.1;
}

.about-service-summary p {
	margin: 0 0 16px;
	color: var(--ink-soft);
}

.about-service-summary p:last-child {
	margin-bottom: 0;
}

.about-capabilities {
	background: var(--mist);
}

.about-capability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.about-capability-grid article {
	min-height: 285px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: #fff;
}

.about-capability-grid span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 850;
}

.about-capability-grid h3 {
	margin: 45px 0 12px;
	font-size: 20px;
}

.about-capability-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.about-capability-grid ul {
	display: grid;
	gap: 7px;
	padding: 0;
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
	list-style: none;
}

.about-capability-grid li {
	position: relative;
	padding-left: 14px;
}

.about-capability-grid li::before {
	position: absolute;
	top: .7em;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--blue);
	content: "";
}

.about-stats {
	padding: 52px 0;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(92, 105, 120, .98), rgba(75, 88, 103, .94)),
		var(--navy);
}

.about-stats dl > div {
	border-color: rgba(255, 255, 255, .16);
}

.about-stats dd {
	color: #abc0cf;
}

.about-features {
	background: #fff;
}

.about-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.about-feature-grid article {
	min-height: 250px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(23, 107, 255, .055), transparent 54%),
		#fff;
	box-shadow: var(--shadow-sm);
}

.about-feature-grid span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	color: var(--blue);
	background: rgba(23, 107, 255, .08);
	font-size: 12px;
	font-weight: 850;
}

.about-feature-grid h3 {
	margin: 45px 0 11px;
	font-size: 20px;
}

.about-feature-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.about-strengths-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 80px;
}

.strength-list {
	display: grid;
}

.strength-list article {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.strength-list span {
	color: var(--blue);
	font-size: 12px;
	font-weight: 850;
}

.strength-list h3 {
	margin: 0 0 7px;
	font-size: 18px;
}

.strength-list p {
	margin: 0;
	color: var(--ink-soft);
	font-size: var(--font-content);
}

.about-strength-copy {
	display: grid;
	gap: 22px;
}

.about-strength-copy p {
	padding: 0 0 22px;
	margin: 0;
	border-bottom: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.9;
}

.about-team-support {
	background: var(--mist);
}

.about-team-needs {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	column-gap: 70px;
}

.about-team-needs .eyebrow {
	grid-column: 1;
}

.about-team-needs h2 {
	grid-column: 1;
	margin: 0;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.25;
}

.about-team-needs ul {
	display: grid;
	grid-column: 2;
	grid-row: 1 / span 2;
	gap: 0;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.about-team-needs li {
	position: relative;
	padding: 17px 18px 17px 36px;
	border-bottom: 1px solid var(--line);
	color: var(--ink-soft);
}

.about-team-needs li::before {
	position: absolute;
	top: 24px;
	left: 11px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue);
	content: "";
}

.about-team-support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.about-team-support article {
	min-height: 290px;
	padding: 44px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
}

.about-team-support h2 {
	margin: 52px 0 14px;
	font-size: clamp(27px, 3vw, 38px);
}

.about-team-support article > p:last-child {
	max-width: 560px;
	margin: 0;
	color: var(--ink-soft);
}

.about-mission {
	padding: 92px 0;
	text-align: center;
	color: #fff;
	background:
		radial-gradient(circle at 50% 0%, rgba(54, 179, 225, .24), transparent 32%),
		var(--navy);
}

.about-mission-grid {
	max-width: 860px;
}

.about-mission .eyebrow {
	color: var(--cyan);
}

.about-mission h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(31px, 3.6vw, 46px);
	line-height: 1.2;
}

.about-mission p:not(.eyebrow) {
	margin: 19px auto 30px;
	color: #b5c8d6;
}

.about-mission ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	padding: 0;
	margin: 0 auto 30px;
	text-align: left;
	list-style: none;
}

.about-mission li {
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 10px;
	color: #c4d5df;
	background: rgba(255, 255, 255, .04);
	font-size: var(--font-content);
}

/* Contact */
.contact-hero {
	padding: 64px 0;
	color: #fff;
	background:
		radial-gradient(circle at 78% 5%, rgba(45, 162, 211, .22), transparent 25%),
		var(--navy);
}

.contact-hero .breadcrumbs,
.contact-hero .breadcrumbs a {
	color: #9eb5c5;
}

.contact-hero .eyebrow {
	margin-top: 26px;
	color: var(--cyan);
}

.contact-hero h1 {
	margin: 0 0 13px;
	color: #fff;
	font-size: clamp(36px, 4vw, 50px);
	letter-spacing: -.05em;
}

.contact-hero > .container > p:last-child {
	max-width: 680px;
	margin: 0;
	color: #b2c5d3;
}

.section-page-hero {
	padding: 32px 0 28px;
}

.section-page-hero .breadcrumbs {
	flex-wrap: nowrap;
	margin-bottom: 16px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}

.section-page-hero .breadcrumbs::-webkit-scrollbar {
	display: none;
}

.section-page-hero .eyebrow {
	margin: 0 0 8px;
}

.section-page-hero h1 {
	margin: 0 0 12px;
}

.section-page-hero > .container > p:last-child {
	max-width: 760px;
}

.contact-network {
	background: #fff;
}

.service-map {
	position: relative;
	display: grid;
	min-height: 520px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background:
		linear-gradient(rgba(81, 145, 175, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(81, 145, 175, .08) 1px, transparent 1px),
		#f4f9fb;
	background-size: 36px 36px;
	overflow: hidden;
	place-items: center;
}

.service-map-visual {
	position: relative;
	width: min(80%, 720px);
}

.service-map-visual img {
	width: 100%;
	filter: drop-shadow(0 18px 30px rgba(92, 105, 120, .14));
}

.service-map-point {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ink);
	font-size: 14px;
	transform: translate(-50%, -50%);
}

.service-map-point i {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 8px rgba(45, 153, 205, .2);
}

.service-map-point strong {
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 6px 18px rgba(63, 74, 88, .12);
	white-space: nowrap;
}

.map-point-shanghai {
	top: 57%;
	left: 84%;
}

.map-point-xiamen {
	top: 73%;
	left: 79%;
}

.map-point-shenzhen {
	top: 80%;
	left: 74%;
}

.contact-form-section {
	background: var(--mist);
}

.contact-inquiry-anchor {
	scroll-margin-top: 128px;
}

/* Footer */
.footer-brand address {
	display: grid;
	gap: 4px;
	margin-top: 18px;
	color: #dce5ea;
	font-size: var(--font-content);
	font-style: normal;
}

.site-brand-light {
	width: fit-content;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.footer-brand address a:hover {
	color: var(--cyan);
}

@media (max-width: 1080px) {
	.hero-v2-grid {
		grid-template-columns: 1fr 410px;
		gap: 38px;
	}

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

	.solution-tab-list button {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.solution-tab-list strong {
		text-align: center;
	}

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

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

@media (max-width: 900px) {
	.product-hero {
		height: auto;
	}

	.hero-v2-grid,
	.product-hero-grid,
	.solution-panels article,
	.company-proof-grid,
	.about-hero-grid,
	.about-strengths-grid,
	.about-team-support-grid,
	.product-topic-layout {
		grid-template-columns: 1fr;
	}

	.product-hero-chip {
		min-height: 360px;
		height: auto;
	}

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

	.about-team-needs .eyebrow,
	.about-team-needs h2,
	.about-team-needs ul {
		grid-column: 1;
		grid-row: auto;
	}

	.about-team-needs ul {
		margin-top: 32px;
	}

	.hero-v2-visual {
		aspect-ratio: 16 / 10;
	}

	.solution-panel-copy {
		padding: 36px;
	}

	.product-family-nav {
		position: static;
	}

	.company-proof dl,
	.about-stats dl {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.about-hero-media {
		min-height: 430px;
	}
}

@media (max-width: 680px) {
	.section {
		padding: 62px 0;
	}

	.hero-home-v3 {
		height: 400px;
	}

	.hero-home-v3::after {
		width: 34%;
		height: 42%;
	}

	.hero-v3-background {
		object-position: 39% 24%;
	}

	.hero-v3-inner h1 {
		top: 25%;
		width: 68%;
		font-size: clamp(16px, calc(var(--font-home-hero-copy-size) - 6px), 24px);
		line-height: 1.75;
	}

	.hero-v3-inner h1 span {
		white-space: normal;
	}

	.hero-home-v2 {
		padding: 58px 0;
	}

	.hero-v2-copy h1 {
		font-size: 32px;
	}

	.hero-v2-visual {
		aspect-ratio: 4 / 3;
		border-width: 5px;
	}

	.home-product-grid,
	.product-family-grid,
	.product-topic-grid,
	.service-grid {
		grid-template-columns: 1fr;
	}

	.home-product-card {
		min-height: 116px;
		padding: 22px;
	}

	.solution-tab-list {
		display: flex;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.solution-tab-list button {
		min-width: 126px;
		flex: 0 0 126px;
		border-bottom: 0;
	}

	.solution-panels article,
	.solution-panel-media {
		min-height: 0;
	}

	.solution-panel-media {
		aspect-ratio: 16 / 10;
	}

	.solution-panel-copy {
		padding: 28px 22px 32px;
	}

	.service-grid article {
		min-height: 220px;
	}

	.service-grid h3 {
		margin-top: 42px;
	}

	.company-proof dl,
	.about-stats dl {
		grid-template-columns: 1fr 1fr;
	}

	.company-proof dl > div,
	.about-stats dl > div {
		padding: 18px;
	}

	.consultation-band {
		align-items: flex-start;
		flex-direction: column;
		padding: 30px 24px;
	}

	.product-hero {
		padding: 52px 0;
	}

	.product-hero-chip {
		grid-template-columns: repeat(3, 1fr);
		min-height: 300px;
		padding: 18px;
	}

	.product-family-card {
		min-height: 0;
		padding: 24px;
	}

	.product-topic-grid article {
		min-height: 200px;
	}

	.about-hero {
		padding: 46px 0 58px;
	}

	.about-hero-media {
		min-height: 330px;
	}

	.about-capability-grid {
		grid-template-columns: 1fr;
	}

	.about-feature-grid {
		grid-template-columns: 1fr;
	}

	.about-capability-grid article {
		min-height: 230px;
	}

	.about-capability-grid h3 {
		margin-top: 34px;
	}

	.about-feature-grid article,
	.about-team-support article {
		min-height: 0;
		padding: 26px;
	}

	.about-feature-grid h3,
	.about-team-support h2 {
		margin-top: 34px;
	}

	.about-mission ul {
		grid-template-columns: 1fr;
	}

	.service-map {
		min-height: 390px;
	}

	.service-map-visual {
		width: 96%;
	}

	.service-map-point {
		gap: 5px;
		font-size: 12px;
	}

	.service-map-point i {
		width: 11px;
		height: 11px;
		flex-basis: 11px;
		border-width: 2px;
		box-shadow: 0 0 0 5px rgba(45, 153, 205, .2);
	}

	.service-map-point strong {
		padding: 3px 6px;
	}

	.inner-hero h1,
	.application-hero h1,
	.contact-hero h1 {
		font-size: 38px;
	}

}

@media (max-width: 420px) {
	.system-flow li {
		align-items: flex-start;
		flex-direction: row;
		justify-content: center;
	}

	.system-flow strong {
		text-align: left;
		white-space: normal;
	}
}

@media (max-width: 1080px) {
	.application-product-direction-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.application-system-layer {
		grid-template-columns: 1fr;
	}

	.application-system-layer-label {
		min-height: 54px;
	}

	.application-system-nodes {
		display: grid;
		grid-template-columns: 1fr;
	}

	.application-system-arrow {
		min-height: 24px;
		transform: rotate(90deg);
	}

	.requirement-grid.requirements-only .numbered-feature-list,
	.application-advantage-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.application-system-board {
		padding: 20px;
	}

	.application-advantage-card {
		min-height: 0;
		padding: 26px;
	}

	.application-product-direction-panel {
		padding: 0;
	}

	.application-product-direction-grid {
		grid-template-columns: 1fr;
	}

	.application-product-direction-grid article {
		min-height: 180px;
	}
}

/*
 * Shared editor-controlled size for visitor-facing large bold headings.
 * The value is overridden by the WordPress Customizer when an editor changes
 * “Dizbell 页面设置 → 全站大号粗体字号”.
 */
.hero-copy h1,
.hero-v2-copy h1,
.section-heading h1,
.section-heading h2,
.solution-panel-copy h3,
.inner-hero h1,
.application-hero h1,
.contact-hero h1,
.product-hero h1,
.about-hero-copy h1,
.consultation-band h2,
.company-proof h2,
.advantage-panel h2,
.about-team-needs h2,
.about-team-support h2,
.about-mission h2,
.not-found-inner h1,
.dizbell-inquiry-copy h2 {
	font-size: var(--font-large-heading) !important;
}

/*
 * Editor-controlled color for bold visitor-facing text on light backgrounds.
 * Primary and mobile navigation share the same menu markup.
 */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body strong,
body b,
body dt,
body label,
.primary-menu a {
	color: var(--color-large-heading) !important;
}

/*
 * Preserve accessible inverse text in every dark-background component. These
 * rules intentionally follow the global bold-text color rule.
 */
.section-dark :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.hero-v3-inner :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.service-section :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.inner-hero :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.application-hero :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.contact-hero :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.product-hero :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.consultation-band :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.advantage-panel :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.application-advantage-card :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.about-mission :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.about-stats :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.capability-section :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.sidebar-contact :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.hero-data-card :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.hero-v2-badge :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label),
.site-footer :is(h1, h2, h3, h4, h5, h6, strong, b, dt, label) {
	color: #fff !important;
}
