/*
 * DichLaChuan refinement layer.
 * Loaded after app.css so editorial typography and interaction fixes stay isolated.
 */

:root {
	--font-article: "Be Vietnam Pro", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--reading-width: 780px;
	--polish-shadow: 0 24px 70px rgba(0, 42, 114, 0.12);
}

html {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body {
	font-size: 16px;
	line-height: 1.65;
}

h1, h2, h3, h4 {
	font-kerning: normal;
	letter-spacing: -.032em;
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

/* Header and navigation */
.site-header {
	height: 78px;
	box-shadow: 0 1px 0 rgba(0, 42, 114, 0.08);
	transition: height 260ms var(--ease), box-shadow 260ms ease, background-color 260ms ease;
}

.site-header.is-scrolled {
	height: 70px;
	box-shadow: 0 14px 40px rgba(0, 42, 114, 0.1);
}

.site-header__inner {
	min-height: 100%;
}

.site-logo img,
.custom-logo {
	width: 205px;
}

.primary-menu {
	gap: 2px;
}

.primary-menu > .menu-item > .menu-item__row {
	border-radius: 10px;
}

.primary-menu > .menu-item > .menu-item__row > a {
	padding-inline: 11px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -.012em;
}

.primary-menu > .menu-item:hover > .menu-item__row {
	background: #ffffff;
}

.primary-menu > li.current-menu-item > .menu-item__row > a::after,
.primary-menu > li.current-menu-ancestor > .menu-item__row > a::after {
	right: 11px;
	left: 11px;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--teal));
}

.sub-menu {
	top: calc(100% + 14px);
	min-width: 238px;
	padding: 9px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 24px 65px rgba(0, 42, 114, 0.18);
}

.sub-menu::before {
	position: absolute;
	top: -7px;
	left: 28px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	background: inherit;
	content: "";
	transform: rotate(45deg);
}

.sub-menu li {
	position: relative;
	z-index: 1;
}

.sub-menu a {
	padding: 12px 13px;
	border-radius: 10px;
	color: #002a72;
	font-size: 13.5px;
	font-weight: 700;
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
	background: #ffffff;
	color: #0c66ff;
}

.mega-menu {
	width: min(calc(100vw - 48px), 1120px);
	padding: 28px;
	border: 1px solid #ffffff;
	border-radius: 0 0 24px 24px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 30px 90px rgba(0, 42, 114, 0.2);
	backdrop-filter: blur(18px);
}

.mega-menu__head {
	margin-bottom: 22px;
}

.mega-menu__head h2 {
	font-size: clamp(24px, 2.2vw, 31px);
}

.mega-menu__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.mega-menu__grid a {
	min-height: 84px;
	padding: 13px;
	border: 1px solid #ffffff;
	border-radius: 13px;
	background: #ffffff;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.mega-menu__grid a:hover {
	border-color: #0c66ff;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(12, 102, 255, 0.1);
	transform: translateY(-3px);
}

.mega-menu__grid strong {
	font-size: 14px;
	line-height: 1.35;
}

.mega-menu__grid small {
	font-size: 11.5px;
	line-height: 1.45;
	white-space: normal;
}

.mega-menu__grid a:nth-child(4n + 1) span { background: #ffffff; color: #0c66ff; }
.mega-menu__grid a:nth-child(4n + 2) span { background: #ffffff; color: #0c66ff; }
.mega-menu__grid a:nth-child(4n + 3) span { background: #ffffff; color: #0c66ff; }
.mega-menu__grid a:nth-child(4n + 4) span { background: #ffffff; color: #0c66ff; }

/* Typography and section rhythm */
.section {
	padding-block: clamp(88px, 8.5vw, 132px);
}

.section-heading {
	max-width: 930px;
	margin-bottom: clamp(42px, 5vw, 64px);
}

.section-heading h2 {
	max-width: 860px;
	font-size: clamp(38px, 4.6vw, 66px);
	font-weight: 800;
	line-height: 1.07;
}

.section-heading > p:last-child {
	max-width: 720px;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.75;
}

.section-heading--center > p:last-child {
	margin-inline: auto;
}

.eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
}

.accent-word {
	display: inline;
	background: none;
	-webkit-text-fill-color: currentColor;
}

.accent-word--blue { color: #0c66ff; }
.accent-word--teal { color: #0c66ff; }
.accent-word--coral { color: #0c66ff; }
.accent-word--gold { color: #0c66ff; }

.multicolor-heading {
	display: grid;
	gap: 7px;
}

.multicolor-heading > span {
	display: block;
}

/* Hero */
.hero-section {
	min-height: 690px;
	padding-block: clamp(96px, 9vw, 138px);
	background:
		radial-gradient(circle at 83% 18%, rgba(12, 102, 255, 0.13), transparent 24%),
		radial-gradient(circle at 62% 8%, rgba(12, 102, 255, 0.11), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, #ffffff 60%, #ffffff 100%);
}

.hero-grid {
	grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
}

.hero-copy h1 {
	max-width: 790px;
	font-size: clamp(58px, 6vw, 88px);
	font-weight: 800;
	line-height: .99;
}

.hero-copy h1 .hero-line {
	display: block;
	background: none;
	color: #002a72;
	-webkit-text-fill-color: currentColor;
}

.hero-copy h1 .hero-line + .hero-line {
	margin-top: 10px;
}

.hero-lead {
	max-width: 680px;
	font-size: clamp(18px, 1.5vw, 21px);
	line-height: 1.7;
}

.hero-proof li {
	font-size: 13px;
}

.hero-visual {
	border-radius: 34px;
	box-shadow: var(--polish-shadow);
}

/* Highlight banners */
.highlight-section {
	position: relative;
	padding-block: clamp(42px, 5vw, 70px);
	overflow: hidden;
}

.highlight-section--blue {
	background: #ffffff;
}

.highlight-section--warm {
	background: var(--cloud);
}

.highlight-banner {
	position: relative;
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) auto;
	gap: clamp(22px, 4vw, 48px);
	align-items: center;
	overflow: hidden;
	padding: clamp(30px, 4vw, 52px);
	border-radius: 28px;
	background: linear-gradient(120deg, #0c66ff 0%, #0c66ff 48%, #0c66ff 100%);
	color: #ffffff;
	box-shadow: 0 28px 75px rgba(12, 102, 255, 0.22);
}

.highlight-banner::after {
	position: absolute;
	top: -30%;
	left: -15%;
	width: 16%;
	height: 170%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	content: "";
	transform: skewX(-18deg);
	animation: banner-sheen 7s ease-in-out infinite;
}

.highlight-banner--warm {
	background: linear-gradient(120deg, #0c66ff 0%, #0c66ff 50%, #0c66ff 100%);
	color: #002a72;
	box-shadow: 0 28px 75px rgba(12, 102, 255, 0.16);
}

.highlight-banner__mark {
	display: grid;
	width: 84px;
	height: 84px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 27px;
	font-weight: 850;
	letter-spacing: -.04em;
	backdrop-filter: blur(10px);
}

.highlight-banner--warm .highlight-banner__mark {
	border-color: rgba(0, 42, 114, 0.15);
	background: rgba(255, 255, 255, 0.35);
}

.highlight-banner .eyebrow,
.highlight-banner h2,
.highlight-banner p {
	color: inherit;
}

.highlight-banner .eyebrow {
	margin-bottom: 8px;
	opacity: .82;
}

.highlight-banner h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(28px, 3.2vw, 46px);
	line-height: 1.1;
}

.highlight-banner p:last-child {
	max-width: 760px;
	margin: 13px 0 0;
	font-size: 16px;
	opacity: .88;
}

.button--dark {
	border-color: #002a72;
	background: #002a72;
	color: #ffffff;
}

.button--dark:hover {
	border-color: #002a72;
	background: #002a72;
	color: #ffffff;
	transform: translateY(-2px);
}

@keyframes banner-sheen {
	0%, 58% { left: -18%; opacity: 0; }
	68% { opacity: 1; }
	85%, 100% { left: 112%; opacity: 0; }
}

/* Scroll reveal */
.js [data-reveal] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms var(--ease) var(--reveal-delay, 0ms);
	will-change: auto;
}

.js [data-reveal]:not(.is-visible) { will-change: opacity, transform; }

.js [data-reveal="left"] { transform: translate3d(-34px, 10px, 0); }
.js [data-reveal="right"] { transform: translate3d(34px, 10px, 0); }
.js [data-reveal="scale"] { transform: translate3d(0, 18px, 0) scale(.975); }

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

/* Article reading experience */
.article-hero h1 {
	max-width: 1040px;
	font-size: clamp(48px, 6.2vw, 88px);
	font-weight: 790;
	line-height: 1.03;
}

.article-lead {
	max-width: 850px;
	font-size: clamp(18px, 1.7vw, 22px);
	line-height: 1.7;
}

.article-featured img {
	border-radius: 26px;
}

.author-avatar--brand,
.author-box__mark {
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--teal));
	color: #ffffff;
}

.author-avatar--brand {
	width: 56px;
	height: 56px;
}

.author-box__mark {
	width: 88px;
	height: 88px;
}

.author-avatar--brand .icon,
.author-box__mark .icon {
	width: 28px;
	height: 28px;
}

.article-layout {
	grid-template-columns: 180px minmax(0, var(--reading-width)) 280px;
	gap: clamp(28px, 3.6vw, 54px);
}

.article-toc .sticky-panel,
.article-sidebar__sticky {
	position: sticky;
	top: calc(var(--header-bottom) + 26px);
}

.article-toc .sticky-panel {
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface);
}

.article-toc nav a {
	padding: 6px 8px;
	border-left: 2px solid transparent;
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	line-height: 1.5;
}

.article-toc nav a:hover,
.article-toc nav a.is-active {
	border-left-color: var(--blue);
	background: var(--soft-blue);
}

.article-body {
	color: var(--text);
	font-family: var(--font-article);
	font-size: clamp(18px, 1.35vw, 20.5px);
	font-weight: 430;
	line-height: 1.9;
	letter-spacing: -.007em;
}

.article-body > p:first-child,
.article-body .article-intro {
	color: var(--heading);
	font-size: clamp(21px, 1.8vw, 25px);
	font-weight: 560;
	line-height: 1.72;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
	margin-block: 0 1.55em;
}

.article-body h2 {
	margin: 2.2em 0 .65em;
	color: var(--heading);
	font-size: clamp(31px, 3vw, 44px);
	font-weight: 800;
	line-height: 1.16;
}

.article-body h3 {
	margin: 1.8em 0 .6em;
	color: var(--heading);
	font-size: clamp(25px, 2.4vw, 32px);
	font-weight: 700;
	line-height: 1.22;
}

.article-body a {
	text-decoration-thickness: 1.5px;
	text-underline-offset: 4px;
}

.article-inline-note {
	position: relative;
	margin: 38px 0;
	padding: 26px 28px 26px 32px;
	border: 1px solid #ffffff;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffffff, #ffffff);
	color: #002a72;
}

.article-inline-note::before {
	position: absolute;
	top: 22px;
	bottom: 22px;
	left: 0;
	width: 5px;
	border-radius: 0 5px 5px 0;
	background: linear-gradient(var(--blue), var(--teal));
	content: "";
}

.article-inline-note strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-ui);
	font-size: 17px;
}

.article-inline-note p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
}

.article-help-banner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin: 54px 0 34px;
	padding: 28px;
	border-radius: 22px;
	background: linear-gradient(135deg, #002a72, #0c66ff 65%, #0c66ff);
	color: #ffffff;
	box-shadow: 0 20px 55px rgba(0, 42, 114, 0.18);
}

.article-help-banner .eyebrow,
.article-help-banner h2,
.article-help-banner p {
	color: inherit;
}

.article-help-banner h2 {
	margin: 0;
	font-size: clamp(24px, 2.3vw, 34px);
	line-height: 1.18;
}

.article-help-banner p:last-child {
	margin: 10px 0 0;
	opacity: .82;
}

.article-sidebar__sticky {
	display: grid;
	gap: 18px;
}

.article-search-card,
.article-latest-card,
.article-quote-card {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--surface);
}

.article-sidebar h2 {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.25;
}

.article-sidebar .search-form {
	display: grid;
	gap: 8px;
}

.article-sidebar .search-form input {
	min-height: 46px;
	font-size: 13px;
}

.article-sidebar .search-form button {
	display: inline-flex;
	min-height: 43px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 0;
	border-radius: 10px;
	background: var(--blue);
	color: #ffffff;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.article-latest-list {
	display: grid;
}

.article-latest-list a {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding-block: 12px;
	border-top: 1px solid var(--border);
	color: var(--heading);
	text-decoration: none;
}

.article-latest-list a:first-child {
	border-top: 0;
}

.article-latest-list span {
	color: var(--blue);
	font-size: 11px;
	font-weight: 800;
}

.article-latest-list strong {
	font-size: 13px;
	line-height: 1.5;
}

.article-latest-list a:hover strong {
	color: var(--blue);
}

.article-quote-card {
	border: 0;
	background: linear-gradient(150deg, #002a72, #0c66ff);
	color: #ffffff;
}

.article-quote-card > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin-bottom: 18px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
}

.article-quote-card h2,
.article-quote-card p,
.article-quote-card a {
	color: inherit;
}

.article-quote-card p {
	font-size: 13px;
	opacity: .8;
}

.article-quote-card a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 800;
}

/* Comments */
.comments-area {
	margin-top: 58px;
	padding-top: 50px;
	border-top: 1px solid var(--border);
}

.comment-form__heading {
	margin-bottom: 28px;
}

.comment-form__heading h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 42px);
}

.comment-form__heading > p:last-child {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.comment-form--polished {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.comment-form--polished > p {
	margin: 0;
}

.comment-form-comment,
.comment-form-url,
.comment-form-cookies-consent,
.comment-form .form-submit,
.comment-form__heading,
.logged-in-as {
	grid-column: 1 / -1;
}

.comment-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--heading);
	font-size: 13px;
	font-weight: 700;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid var(--border-strong);
	border-radius: 12px;
	background: var(--surface);
	color: var(--heading);
	font: inherit;
	font-size: 15px;
	outline: 0;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(12, 102, 255, 0.11);
}

.comment-form-cookies-consent {
	display: flex;
	gap: 9px;
	align-items: flex-start;
}

.comment-form-cookies-consent label {
	margin: 0;
	color: var(--muted);
	font-weight: 500;
}

.comment-list {
	margin: 0 0 42px;
	padding: 0;
	list-style: none;
}

.comment-list .comment-body {
	margin-bottom: 16px;
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface);
}

/* Dark mode */
html[data-theme="dark"] .primary-menu > .menu-item:hover > .menu-item__row {
	background: #002a72;
}

html[data-theme="dark"] .sub-menu {
	border-color: #0c66ff;
	background: #002a72;
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .sub-menu::before {
	border-color: #0c66ff;
}

html[data-theme="dark"] .sub-menu a {
	color: #ffffff;
}

html[data-theme="dark"] .sub-menu a:hover,
html[data-theme="dark"] .sub-menu a:focus-visible {
	background: #002a72;
	color: #0c66ff;
}

html[data-theme="dark"] .mega-menu {
	border-color: #0c66ff;
	background: rgba(0, 42, 114, 0.98);
}

html[data-theme="dark"] .mega-menu__grid a {
	border-color: #0c66ff;
	background: #002a72;
}

html[data-theme="dark"] .mega-menu__grid a:hover {
	border-color: #0c66ff;
	background: #002a72;
}

html[data-theme="dark"] .hero-section {
	background:
		radial-gradient(circle at 83% 18%, rgba(12, 102, 255, 0.14), transparent 25%),
		radial-gradient(circle at 60% 5%, rgba(12, 102, 255, 0.18), transparent 30%),
		#002a72;
}

html[data-theme="dark"] .hero-copy h1 .hero-line {
	color: #ffffff;
}

html[data-theme="dark"] .accent-word--blue { color: #0c66ff; }
html[data-theme="dark"] .accent-word--teal { color: #0c66ff; }

html[data-theme="dark"] .highlight-section--blue,
html[data-theme="dark"] .highlight-section--warm {
	background: var(--cloud);
}

html[data-theme="dark"] .article-inline-note {
	border-color: #0c66ff;
	background: #002a72;
	color: #ffffff;
}

html[data-theme="dark"] .article-body {
	color: #ffffff;
}

html[data-theme="dark"] .article-body > p:first-child,
html[data-theme="dark"] .article-body .article-intro {
	color: #ffffff;
}

html[data-theme="dark"] .comment-form input[type="text"],
html[data-theme="dark"] .comment-form input[type="email"],
html[data-theme="dark"] .comment-form input[type="url"],
html[data-theme="dark"] .comment-form textarea {
	border-color: #0c66ff;
	background: #002a72;
	color: #ffffff;
}

@media (max-width: 1380px) {
	.site-logo img,
	.custom-logo { width: 190px; }
	.primary-menu > .menu-item > .menu-item__row > a { padding-inline: 8px; font-size: 12.5px; }
	.article-layout { grid-template-columns: 160px minmax(0, 1fr) 250px; }
}

@media (max-width: 1180px) {
	.article-layout { grid-template-columns: 160px minmax(0, 1fr); }
	.article-sidebar { display: none; }
}

@media (max-width: 1100px) {
	.site-header,
	.site-header.is-scrolled { height: 70px; }
	.mobile-navigation .sub-menu::before { display: none; }
	.mobile-navigation .sub-menu a { color: var(--heading); }
	.hero-grid { grid-template-columns: 1fr 1fr; }
	.hero-copy h1 { font-size: clamp(48px, 7vw, 68px); }
	.highlight-banner { grid-template-columns: 70px minmax(0, 1fr); }
	.highlight-banner__mark { width: 70px; height: 70px; }
	.highlight-banner > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
	.section { padding-block: 74px; }
	.section-heading h2 { font-size: clamp(34px, 10vw, 48px); }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-copy h1 { font-size: clamp(46px, 13vw, 62px); }
	.hero-proof { grid-template-columns: 1fr; }
	.highlight-section { padding-block: 28px; }
	.highlight-banner { grid-template-columns: 1fr; padding: 28px; border-radius: 22px; }
	.highlight-banner__mark { width: 62px; height: 62px; border-radius: 17px; }
	.highlight-banner > .button { grid-column: auto; width: 100%; }
	.article-layout { display: block; }
	.article-toc { display: none; }
	.article-body { font-size: 18px; line-height: 1.82; }
	.article-body > p:first-child,
	.article-body .article-intro { font-size: 20px; }
	.article-help-banner { grid-template-columns: 1fr; padding: 24px; }
	.article-help-banner .button { width: 100%; }
	.comment-form--polished { grid-template-columns: 1fr; }
	.comment-form--polished > p { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.highlight-banner::after { animation: none; }
	.js [data-reveal] { opacity: 1; filter: none; transform: none; }
}

/* Photo-led 3.4 experience */
.site-header,
.site-header.is-scrolled {
	height: 84px;
}

.site-header__inner {
	grid-template-columns: 224px minmax(0, 1fr) auto;
	gap: 28px;
}

.site-logo img,
.custom-logo {
	width: 218px;
}

.primary-menu {
	gap: 14px;
}

.primary-menu > .menu-item > .menu-item__row {
	position: relative;
	border-radius: 0;
}

.primary-menu > .menu-item > .menu-item__row > a {
	min-height: 54px;
	padding-inline: 4px;
	font-size: 15px;
	font-weight: 680;
	letter-spacing: -.018em;
}

.primary-menu > .menu-item:hover > .menu-item__row {
	background: transparent;
}

.primary-menu > .menu-item:hover > .menu-item__row > a {
	color: var(--blue);
}

.primary-menu > li.current-menu-item > .menu-item__row > a::after,
.primary-menu > li.current-menu-ancestor > .menu-item__row > a::after {
	right: 4px;
	bottom: 1px;
	left: 4px;
	height: 2px;
}

.header-actions {
	gap: 9px;
}

.header-tool-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	padding-inline: 14px;
	border-radius: 999px;
	color: #002a72;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-tool-link .icon {
	width: 18px;
	height: 18px;
	color: var(--blue);
}

.header-tool-link:hover {
	background: #ffffff;
	color: var(--blue);
	transform: translateY(-1px);
}

.header-cta {
	min-width: 112px;
	font-size: 14px;
}

.mega-menu {
	width: min(calc(100vw - 56px), 1160px);
	padding: 32px 36px 28px;
	border-radius: 0 0 22px 22px;
}

.mega-menu__head {
	align-items: center;
	margin-bottom: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ffffff;
}

.mega-menu__head h2 {
	font-size: clamp(27px, 2.3vw, 34px);
	font-weight: 780;
}

.mega-menu__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 28px;
}

.mega-menu__grid a {
	min-height: 76px;
	padding: 13px 4px;
	border: 0;
	border-bottom: 1px solid #ffffff;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.mega-menu__grid a:hover {
	border-color: #ffffff;
	background: transparent;
	box-shadow: none;
	transform: translateX(4px);
}

.mega-menu__grid strong {
	font-size: 14.5px;
	font-weight: 760;
}

.mega-menu__grid small {
	font-size: 12px;
}

.mega-menu__footer {
	margin-top: 22px;
}

/* Homepage photography and quick translator */
.hero-photo-story {
	position: relative;
	min-height: 590px;
	margin: 0;
	overflow: hidden;
	border-radius: 34px;
	background: #ffffff;
	box-shadow: var(--polish-shadow);
}

.hero-photo-story > img {
	width: 100%;
	height: 590px;
	border-radius: 34px;
	object-fit: cover;
}

.hero-photo-story::after {
	position: absolute;
	inset: 0;
	border-radius: 34px;
	background: linear-gradient(180deg, transparent 48%, rgba(0, 42, 114, 0.5));
	content: "";
	pointer-events: none;
}

.hero-photo-story__card {
	position: absolute;
	top: 22px;
	left: 22px;
	z-index: 2;
	display: grid;
	width: min(230px, calc(100% - 44px));
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 20px 50px rgba(0, 42, 114, 0.18);
	backdrop-filter: blur(14px);
}

.hero-photo-story__card span {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 13px 17px;
	border-top: 1px solid #ffffff;
	color: #002a72;
	font-size: 13px;
	font-weight: 700;
}

.hero-photo-story__card span:first-child {
	border-top: 0;
}

.hero-photo-story__card b {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 8px;
	background: #ffffff;
	color: #0c66ff;
	font-size: 10px;
	letter-spacing: .08em;
}

.hero-photo-story figcaption {
	position: absolute;
	right: 28px;
	bottom: 26px;
	z-index: 2;
	display: grid;
	grid-template-columns: 12px 1fr;
	gap: 1px 10px;
	min-width: 265px;
	padding: 17px 19px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 15px;
	background: rgba(0, 42, 114, 0.8);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.hero-photo-story figcaption > span {
	grid-row: 1 / span 2;
	width: 10px;
	height: 10px;
	margin-top: 6px;
	border-radius: 50%;
	background: #0c66ff;
	box-shadow: 0 0 0 5px rgba(12, 102, 255, 0.15);
}

.hero-photo-story figcaption strong {
	font-size: 14px;
}

.hero-photo-story figcaption small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
}

.home-translate {
	padding-block: clamp(78px, 8vw, 118px);
}

.home-translate__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	gap: clamp(32px, 7vw, 100px);
	align-items: end;
	margin-bottom: 42px;
}

.home-translate__intro h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(42px, 5.3vw, 70px);
	font-weight: 800;
	line-height: 1.04;
}

.home-translate__intro > p {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.home-translate__tool {
	position: relative;
}

.home-translate__tool::before {
	position: absolute;
	top: -16px;
	right: 8%;
	left: 8%;
	height: 60%;
	border-radius: 40px;
	background: linear-gradient(90deg, rgba(12, 102, 255, 0.18), rgba(12, 102, 255, 0.16));
	content: "";
	filter: blur(42px);
}

.home-translate .dlc-ai-tool {
	position: relative;
	padding: clamp(28px, 4vw, 46px);
	border-color: #ffffff;
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 28px 80px rgba(0, 42, 114, 0.12);
}

.home-translate .dlc-ai-tool textarea {
	min-height: 220px;
	border-radius: 15px;
	background: #ffffff;
	font-size: 16px;
	line-height: 1.65;
}

.home-translate .dlc-ai-tool select {
	border-radius: 12px;
	background-color: #ffffff;
}

.technology-photo {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}

.technology-showcase .technology-photo img {
	width: 100%;
	height: 470px;
	border: 0;
	border-radius: 0;
	object-fit: cover;
	box-shadow: none;
}

.technology-photo::after {
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, rgba(0, 42, 114, 0.88));
	content: "";
}

.technology-photo figcaption {
	position: absolute;
	right: 28px;
	bottom: 26px;
	left: 28px;
	z-index: 1;
	display: grid;
	gap: 3px;
	color: #ffffff;
}

.technology-photo figcaption strong {
	font-size: 20px;
}

.technology-photo figcaption span {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
}

.security-photo {
	position: relative;
	margin: 0;
}

.security-photo > img {
	width: 100%;
	height: 510px;
	border-radius: 28px;
	object-fit: cover;
	box-shadow: var(--polish-shadow);
}

.security-photo figcaption {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 45px rgba(0, 42, 114, 0.16);
	color: #002a72;
	backdrop-filter: blur(14px);
}

.security-photo figcaption > .icon {
	width: 28px;
	height: 28px;
	color: var(--teal);
}

.security-photo figcaption span {
	display: grid;
}

.security-photo figcaption strong {
	font-size: 14px;
}

.security-photo figcaption small {
	color: #0c66ff;
	font-size: 11px;
}

/* About page */
.about-photo-hero {
	position: relative;
	display: grid;
	min-height: 760px;
	align-items: end;
	overflow: hidden;
	background: #002a72;
}

.about-photo-hero__image,
.about-photo-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-photo-hero__image {
	object-fit: cover;
	object-position: center 48%;
	animation: photo-breathe 18s ease-in-out infinite alternate;
}

.about-photo-hero__shade {
	background: linear-gradient(90deg, rgba(0, 42, 114, 0.92) 0%, rgba(0, 42, 114, 0.72) 42%, rgba(0, 42, 114, 0.2) 78%), linear-gradient(0deg, rgba(0, 42, 114, 0.55), transparent 55%);
}

.about-photo-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 92px;
}

.about-photo-hero__content > div {
	max-width: 870px;
}

.about-photo-hero .breadcrumbs,
.about-photo-hero .breadcrumbs a,
.about-photo-hero .breadcrumbs span {
	color: rgba(255, 255, 255, 0.7);
}

.about-photo-hero h1 {
	margin: 18px 0 24px;
	color: #ffffff;
	font-size: clamp(56px, 6.4vw, 92px);
	font-weight: 790;
	line-height: .98;
	letter-spacing: -.052em;
}

.about-photo-hero h1 span {
	color: #0c66ff;
}

.about-photo-hero__content > div > p:not(.eyebrow) {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(18px, 1.6vw, 22px);
	line-height: 1.7;
}

.about-photo-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.about-story__grid {
	display: grid;
	grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
	gap: clamp(58px, 8vw, 120px);
	align-items: center;
}

.about-story__copy h2,
.about-process__grid > div h2 {
	margin: 0;
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.05;
}

.about-story__lead {
	margin: 28px 0;
	color: var(--text);
	font-size: 19px;
	line-height: 1.8;
}

.about-story__facts {
	display: grid;
	gap: 0;
	margin-top: 28px;
	border-top: 1px solid var(--border);
}

.about-story__facts > div {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 20px;
	padding-block: 17px;
	border-bottom: 1px solid var(--border);
}

.about-story__facts strong {
	color: var(--blue);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.about-story__facts span {
	font-size: 15px;
}

.about-story__editor {
	margin-top: 26px;
}

.about-story__photos {
	position: relative;
	min-height: 650px;
}

.photo-card {
	position: absolute;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 26px 75px rgba(0, 42, 114, 0.16);
}

.photo-card--large {
	inset: 0 70px 100px 0;
}

.photo-card--small {
	right: 0;
	bottom: 0;
	width: 58%;
	height: 310px;
	border: 8px solid #ffffff;
}

.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease);
}

.photo-card:hover img,
.context-photo:hover img {
	transform: scale(1.045);
}

.photo-card figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	padding: 13px 15px;
	border-radius: 12px;
	background: rgba(0, 42, 114, 0.82);
	color: #ffffff;
	font-size: 12px;
	line-height: 1.5;
	backdrop-filter: blur(9px);
}

.about-proof-strip {
	padding-block: 30px;
	background: #002a72;
	color: #ffffff;
}

.about-proof-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.about-proof-strip__grid > div {
	display: grid;
	gap: 5px;
	padding: 8px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.about-proof-strip__grid > div:first-child {
	border-left: 0;
}

.about-proof-strip__grid strong {
	font-size: 16px;
}

.about-proof-strip__grid span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
}

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

.context-photo {
	position: relative;
	display: block;
	height: 410px;
	overflow: hidden;
	border-radius: 22px;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 20px 55px rgba(0, 42, 114, 0.1);
}

.context-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease);
}

.context-photo::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgba(0, 42, 114, 0.9));
	content: "";
}

.context-photo > span {
	position: absolute;
	right: 28px;
	bottom: 26px;
	left: 28px;
	z-index: 1;
	display: grid;
	gap: 6px;
}

.context-photo small {
	color: #0c66ff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.context-photo strong {
	max-width: 540px;
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.16;
}

.about-process__grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
	gap: clamp(60px, 9vw, 130px);
	align-items: start;
}

.about-process__grid > div > p:not(.eyebrow) {
	margin-block: 26px;
	font-size: 18px;
	line-height: 1.8;
}

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

.about-process__steps li {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	padding: 26px 0;
	border-top: 1px solid var(--border);
}

.about-process__steps li:last-child {
	border-bottom: 1px solid var(--border);
}

.about-process__steps > li > span {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	background: #ffffff;
	color: var(--blue);
	font-size: 12px;
	font-weight: 800;
}

.about-process__steps h3 {
	margin: 0 0 7px;
	font-size: 23px;
}

.about-process__steps p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
}

.about-full-banner {
	position: relative;
	display: grid;
	min-height: 650px;
	align-items: center;
	overflow: hidden;
	background: #002a72;
}

.about-full-banner > img,
.about-full-banner__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.about-full-banner > img {
	object-fit: cover;
	animation: photo-breathe 20s ease-in-out infinite alternate-reverse;
}

.about-full-banner__shade {
	background: linear-gradient(90deg, rgba(0, 42, 114, 0.93), rgba(0, 42, 114, 0.62) 60%, rgba(0, 42, 114, 0.24));
}

.about-full-banner__content {
	position: relative;
	z-index: 1;
}

.about-full-banner__content h2 {
	max-width: 900px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(44px, 5.4vw, 76px);
	font-weight: 790;
	line-height: 1.03;
}

.about-full-banner__content > p:not(.eyebrow) {
	max-width: 700px;
	margin: 25px 0 30px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.75;
}

@keyframes photo-breathe {
	from { transform: scale(1.01); }
	to { transform: scale(1.065); }
}

html[data-theme="dark"] .header-tool-link {
	color: #ffffff;
}

html[data-theme="dark"] .header-tool-link:hover {
	background: #002a72;
	color: #0c66ff;
}

html[data-theme="dark"] .mega-menu__head,
html[data-theme="dark"] .mega-menu__grid a {
	border-color: #0c66ff;
}

html[data-theme="dark"] .mega-menu__grid a {
	background: transparent;
}

html[data-theme="dark"] .home-translate .dlc-ai-tool {
	border-color: #0c66ff;
	background: #002a72;
}

html[data-theme="dark"] .home-translate .dlc-ai-tool textarea,
html[data-theme="dark"] .home-translate .dlc-ai-tool select {
	background: #002a72;
}

html[data-theme="dark"] .about-story__facts > div,
html[data-theme="dark"] .about-process__steps li {
	border-color: #0c66ff;
}

@media (max-width: 1450px) {
	.site-header__inner { grid-template-columns: 198px minmax(0, 1fr) auto; gap: 16px; }
	.site-logo img,
	.custom-logo { width: 194px; }
	.primary-menu { gap: 8px; }
	.primary-menu > .menu-item > .menu-item__row > a { font-size: 14px; }
	.header-tool-link { padding-inline: 10px; font-size: 13px; }
}

@media (max-width: 1240px) {
	.header-tool-link { display: none; }
	.primary-menu { gap: 5px; }
	.about-story__grid,
	.about-process__grid { grid-template-columns: 1fr 1fr; gap: 54px; }
	.about-proof-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
	.about-proof-strip__grid > div:nth-child(3) { border-left: 0; }
}

@media (max-width: 1100px) {
	.site-header,
	.site-header.is-scrolled { height: 72px; }
	.hero-photo-story,
	.hero-photo-story > img { min-height: 500px; height: 500px; }
	.hero-photo-story__card { left: 20px; }
	.home-translate__intro { grid-template-columns: 1fr; gap: 18px; }
	.about-story__grid,
	.about-process__grid { grid-template-columns: 1fr; }
	.about-story__photos { min-height: 620px; }
	.about-contexts__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.hero-photo-story,
	.hero-photo-story > img { min-height: 430px; height: 430px; }
	.hero-photo-story > img,
	.hero-photo-story::after { border-radius: 22px; }
	.hero-photo-story__card { top: 16px; right: 16px; left: 16px; width: auto; grid-template-columns: repeat(3, 1fr); min-width: 0; }
	.hero-photo-story__card span { display: grid; gap: 2px; justify-items: center; padding: 10px 5px; border-top: 0; border-left: 1px solid #ffffff; font-size: 10px; }
	.hero-photo-story__card span:first-child { border-left: 0; }
	.hero-photo-story figcaption { right: 16px; bottom: 16px; left: 16px; min-width: 0; }
	.home-translate__intro h2 { font-size: clamp(38px, 12vw, 52px); }
	.home-translate .dlc-ai-tool { padding: 20px; border-radius: 20px; }
	.technology-showcase .technology-photo img { height: 390px; }
	.security-photo > img { height: 390px; border-radius: 20px; }
	.security-photo figcaption { right: 14px; bottom: 14px; left: 14px; }
	.about-photo-hero { min-height: 680px; }
	.about-photo-hero__shade { background: linear-gradient(0deg, rgba(0, 42, 114, 0.95), rgba(0, 42, 114, 0.3)); }
	.about-photo-hero__content { padding-block: 64px; }
	.about-photo-hero h1 { font-size: clamp(46px, 14vw, 64px); }
	.about-photo-hero__actions .button { width: 100%; }
	.about-story__copy h2,
	.about-process__grid > div h2 { font-size: clamp(38px, 11vw, 52px); }
	.about-story__facts > div { grid-template-columns: 1fr; gap: 6px; }
	.about-story__photos { min-height: 500px; }
	.photo-card--large { inset: 0 30px 80px 0; }
	.photo-card--small { width: 68%; height: 230px; border-width: 5px; }
	.about-proof-strip__grid { grid-template-columns: 1fr; }
	.about-proof-strip__grid > div { padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
	.about-proof-strip__grid > div:first-child { border-top: 0; }
	.about-contexts__grid { grid-template-columns: 1fr; }
	.context-photo { height: 350px; }
	.about-process__steps li { grid-template-columns: 48px 1fr; gap: 14px; }
	.about-full-banner { min-height: 590px; }
	.about-full-banner__content h2 { font-size: clamp(40px, 11vw, 55px); }
}

@media (prefers-reduced-motion: reduce) {
	.about-photo-hero__image,
	.about-full-banner > img { animation: none; }
	.photo-card img,
	.context-photo img { transition: none; }
}

/* Editorial interaction layer 3.5 */
.reading-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100001;
	height: 3px;
	pointer-events: none;
}

.reading-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--blue), var(--teal), #0c66ff);
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform;
}

body {
	letter-spacing: -.006em;
}

h1,
h2,
h3 {
	text-wrap: balance;
}

.section-heading h2,
.technology-heading h2,
.about-story h2,
.about-process h2 {
	letter-spacing: -.045em;
	line-height: 1.04;
}

.primary-menu > .menu-item > .menu-item__row > a {
	padding-inline: 13px;
	border-radius: 0;
	background: transparent;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.018em;
}

.primary-menu > .menu-item > .menu-item__row::after {
	position: absolute;
	right: 13px;
	bottom: 1px;
	left: 13px;
	height: 2px;
	border-radius: 0;
	background: linear-gradient(90deg, var(--blue), var(--teal));
	content: "";
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms var(--ease);
}

.primary-menu > .menu-item > .menu-item__row > a {
	transition: color 220ms ease, transform 260ms var(--ease);
}

.primary-menu > .menu-item:hover > .menu-item__row > a,
.primary-menu > .menu-item:focus-within > .menu-item__row > a {
	transform: translateY(-1px);
}

.primary-menu > .menu-item:hover > .menu-item__row::after,
.primary-menu > .menu-item:focus-within > .menu-item__row::after,
.primary-menu > .menu-item.current-menu-item > .menu-item__row::after,
.primary-menu > .menu-item.current-menu-ancestor > .menu-item__row::after {
	transform: scaleX(1);
	transform-origin: left;
}

.mega-menu {
	transform-origin: 50% 0;
}

.menu-item.is-open > .mega-menu {
	animation: menu-settle 340ms var(--ease) both;
}

.desktop-navigation .menu-item:hover > .sub-menu,
.desktop-navigation .menu-item:focus-within > .sub-menu,
.desktop-navigation .menu-item:hover > .mega-menu,
.desktop-navigation .menu-item:focus-within > .mega-menu {
	opacity: 1;
	pointer-events: auto;
}

.desktop-navigation .menu-item:hover > .sub-menu,
.desktop-navigation .menu-item:focus-within > .sub-menu {
	transform: translateY(0);
}

.desktop-navigation .menu-item:hover > .mega-menu,
.desktop-navigation .menu-item:focus-within > .mega-menu {
	transform: translate(-50%, 0);
}

@keyframes menu-settle {
	from { opacity: 0; transform: translateY(10px) scale(.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.js [data-reveal="clip"] {
	opacity: 1;
	clip-path: inset(0 0 100% 0);
	filter: none;
	transform: translate3d(0, 24px, 0);
	transition: clip-path 820ms var(--ease), transform 820ms var(--ease);
}

.js [data-reveal="clip"].is-visible {
	clip-path: inset(0 0 0 0);
	transform: translate3d(0, 0, 0);
}

.is-magnetic {
	--magnetic-x: 0px;
	--magnetic-y: 0px;
	--button-lift: 0px;
	transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - var(--button-lift)), 0);
	transition: transform 280ms var(--ease), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
	will-change: transform;
}

.is-magnetic:hover {
	--button-lift: 2px;
}

.is-pointer-aware {
	--image-x: 0px;
	--image-y: 0px;
}

.is-pointer-aware > img,
.is-pointer-aware figure > img {
	transform: translate3d(var(--image-x), var(--image-y), 0) scale(1.035);
	transition: transform 620ms var(--ease);
}

/* Images reveal through a restrained scale change and reuse the element reveal observer. */
.motion-image {
	--motion-image-scale: 1;
	overflow: hidden;
}

.motion-image > img,
.motion-image > picture > img {
	transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(var(--motion-image-scale));
	transform-origin: 50% 50%;
	transition: transform 820ms var(--ease);
}

.js .motion-image[data-reveal]:not(.is-visible),
.js [data-reveal]:not(.is-visible) .motion-image {
	--motion-image-scale: 1.045;
}

.js .motion-image[data-reveal].is-visible,
.js [data-reveal].is-visible .motion-image {
	--motion-image-scale: 1;
}

@media (hover: hover) and (pointer: fine) {
	.motion-image:hover { --motion-image-scale: 1.018; }
}

/* Equal service card rhythm on the homepage. */
.home-services .dlc-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 22px;
}

.home-services .dlc-service-grid > .dlc-content-card,
.home-services .dlc-service-grid > .dlc-content-card:nth-child(1),
.home-services .dlc-service-grid > .dlc-content-card:nth-child(2) {
	display: flex;
	grid-column: auto;
	flex-direction: column;
	height: 100%;
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(0, 42, 114, .08);
}

.home-services .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-content-card__media,
.home-services .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-content-card__symbol {
	aspect-ratio: 16 / 10;
}

.home-services .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-content-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.home-services .dlc-service-grid > .dlc-content-card:nth-child(n) h3,
.home-services .dlc-service-grid > .dlc-content-card:first-child h3 {
	font-size: 23px;
	line-height: 1.35;
}

.home-services .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-text-link {
	margin-top: auto;
}

.home-services .dlc-content-card__media img {
	transition: transform 160ms ease;
}

.home-services .dlc-content-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(0, 42, 114, .11);
}

.home-industries .dlc-industry-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 44px;
	border-bottom: 1px solid var(--border);
}

.home-industries .dlc-industry-grid > .dlc-content-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: stretch;
	min-height: 210px;
	border: 0;
	border-top: 1px solid var(--border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.home-industries .dlc-industry-grid > .dlc-content-card:hover {
	transform: none;
	box-shadow: none;
}

.home-industries .dlc-content-card__media,
.home-industries .dlc-content-card__symbol {
	width: 112px;
	height: 100%;
	aspect-ratio: auto;
	background: transparent;
}

.home-industries .dlc-content-card__media img {
	filter: saturate(.88);
	transition: filter 320ms ease, transform 520ms var(--ease);
}

.home-industries .dlc-content-card:hover .dlc-content-card__media img {
	filter: saturate(1.08);
	transform: scale(1.04);
}

.home-industries .dlc-content-card__symbol span {
	font-size: 26px;
}

.home-industries .dlc-content-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
}

.home-industries .dlc-content-card h3 {
	font-size: 22px;
}

.home-industries .dlc-content-card p {
	margin-bottom: 12px;
}

.home-process .process-grid {
	gap: 0;
	border-top: 1px solid var(--border-strong);
}

.home-process .process-grid::before {
	top: -1px;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--teal), #0c66ff);
}

.home-process .process-grid article {
	min-height: 330px;
	padding: 74px 28px 24px;
	border: 0;
	border-left: 1px solid var(--border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.home-process .process-grid article:first-child {
	border-left: 0;
}

.home-process .process-grid article:hover {
	background: color-mix(in srgb, var(--surface) 54%, transparent);
	box-shadow: none;
	transform: none;
}

.home-process .process-grid article > span {
	position: absolute;
	top: 21px;
	right: 22px;
	color: color-mix(in srgb, var(--blue) 34%, var(--muted));
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -.06em;
	line-height: 1;
}

.home-process .process-grid article > div {
	width: 44px;
	height: 44px;
	margin: 0 0 42px;
	border-radius: 50%;
	background: var(--surface);
	color: var(--blue);
	box-shadow: inset 0 0 0 1px var(--border-strong);
}

.home-process .process-grid article:nth-child(2) > div { color: var(--teal); }
.home-process .process-grid article:nth-child(3) > div { color: #0c66ff; }
.home-process .process-grid article:nth-child(4) > div { color: #0c66ff; }

.home-process .process-grid h3 {
	max-width: 220px;
	font-size: clamp(22px, 2vw, 28px);
	letter-spacing: -.03em;
}

.home-process .process-grid p {
	max-width: 250px;
	font-size: 15px;
	line-height: 1.72;
}

.trust-factors {
	gap: clamp(26px, 4vw, 62px);
}

.trust-factors article:nth-child(even) {
	margin-top: 28px;
}

.trust-factors article > span {
	position: relative;
}

.trust-factors article > span::after {
	position: absolute;
	right: -8px;
	bottom: 2px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
	content: "";
}

html[data-theme="dark"] .home-process .process-grid article:hover {
	background: rgba(255, 255, 255, 0.025);
}

html[data-theme="dark"] .home-industries .dlc-industry-grid > .dlc-content-card,
html[data-theme="dark"] .home-process .process-grid article {
	background: transparent;
}

@media (max-width: 1100px) {
	.home-services .dlc-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.home-process .process-grid article:nth-child(3) { border-left: 0; }
	.home-process .process-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
	.trust-factors article:nth-child(even) { margin-top: 0; }
}

@media (max-width: 820px) {
	.home-services .dlc-service-grid > .dlc-content-card,
	.home-services .dlc-service-grid > .dlc-content-card:nth-child(1),
	.home-services .dlc-service-grid > .dlc-content-card:nth-child(2) { grid-column: 1 / -1; }
	.home-services .dlc-service-grid > .dlc-content-card:nth-child(-n + 2) .dlc-content-card__media,
	.home-services .dlc-service-grid > .dlc-content-card:nth-child(-n + 2) .dlc-content-card__symbol { aspect-ratio: 3 / 2; }
	.home-industries .dlc-industry-grid { grid-template-columns: 1fr; gap: 0; }
	.home-process .process-grid article { min-height: 300px; }
}

@media (max-width: 620px) {
	.primary-menu > .menu-item > .menu-item__row > a { font-size: 14px; }
	.home-industries .dlc-industry-grid > .dlc-content-card { grid-template-columns: 92px minmax(0, 1fr); min-height: 190px; }
	.home-industries .dlc-content-card__media,
	.home-industries .dlc-content-card__symbol { width: 92px; }
	.home-industries .dlc-content-card__body { padding: 22px 18px; }
	.home-process .process-grid { border-top: 0; }
	.home-process .process-grid::before { display: none; }
	.home-process .process-grid article,
	.home-process .process-grid article:nth-child(3) { min-height: 0; padding: 60px 0 34px; border-bottom: 1px solid var(--border); border-left: 0; }
	.home-process .process-grid article > span { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.reading-progress { display: none; }
	.menu-item.is-open > .mega-menu { animation: none; }
	.js [data-reveal="clip"],
	.js [data-reveal="clip"].is-visible { clip-path: none; transform: none; }
	.is-magnetic { transform: none; }
	.is-pointer-aware > img,
	.is-pointer-aware figure > img,
	.motion-image > img,
	.motion-image > picture > img { transform: none; transition: none; }
}

/* Keep content readable if the external script is blocked, then animate after motion is ready. */
html.js:not(.motion-ready) [data-reveal] {
	opacity: 1;
	clip-path: none;
	transform: none;
}

.site-shell {
	animation: page-settle 420ms var(--ease) both;
}

@keyframes page-settle {
	from { opacity: .01; }
	to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.site-shell { animation: none; }
	.primary-menu > .menu-item > .menu-item__row > a { transform: none; }
}

/* Production polish 4.0: navigation, editorial archives and industry pages */
.section-heading {
	max-width: 760px;
	margin-bottom: clamp(30px, 4vw, 54px);
}

.section-heading h2 {
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 720;
	letter-spacing: -.052em;
	line-height: 1.02;
}

.section-heading > p:last-child {
	max-width: 650px;
	margin-top: 18px;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.72;
}

.primary-menu {
	gap: clamp(10px, 1.25vw, 22px);
}

.primary-menu > .menu-item > .menu-item__row {
	position: relative;
	padding: 0;
	background: transparent;
}

.primary-menu > .menu-item > .menu-item__row > a {
	min-height: 56px;
	padding: 8px 0;
	font-size: 15px;
	font-weight: 650;
	letter-spacing: -.012em;
}

.desktop-navigation .submenu-toggle {
	display: none;
}

.primary-menu > .menu-item > .menu-item__row::after {
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	background: var(--blue);
}

.mega-menu {
	width: min(calc(100vw - 48px), 1120px);
	padding: 30px 34px 26px;
	border-radius: 0 0 22px 22px;
	box-shadow: 0 28px 80px rgba(0, 42, 114, 0.16);
}

.mega-menu__head {
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.mega-menu__head h2 {
	font-size: 26px;
	font-weight: 720;
}

.mega-menu__head p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.mega-menu__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 28px;
}

.mega-menu__grid a {
	display: block;
	min-height: 0;
	padding: 13px 2px 14px;
	border: 0;
	border-top: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
	border-radius: 0;
	background: transparent;
}

.mega-menu__grid a:nth-child(-n + 3) {
	border-top: 0;
}

.mega-menu__grid a:hover,
.mega-menu__grid a:focus-visible {
	padding-left: 8px;
	border-color: var(--border);
	box-shadow: none;
	transform: none;
}

.mega-menu__grid strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
}

.mega-menu__grid small {
	display: -webkit-box;
	margin-top: 4px;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.45;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.mega-menu__footer {
	margin-top: 20px;
}

.mobile-navigation .submenu-toggle,
.mobile-navigation .mega-menu,
.mobile-navigation .sub-menu {
	display: none;
}

.dlc-ai-tool {
	padding: clamp(22px, 3vw, 38px);
	border: 1px solid var(--border-strong);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 22px 55px rgba(0, 42, 114, 0.09);
}

.dlc-ai-tool__bar {
	grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
	gap: 14px;
}

.dlc-ai-tool select,
.dlc-ai-tool textarea {
	border: 1px solid #0c66ff;
	background: #ffffff;
	color: #002a72;
	font: inherit;
}

.dlc-ai-tool select {
	min-height: 52px;
}

.dlc-ai-tool textarea {
	min-height: 250px;
	font-size: 17px;
	line-height: 1.65;
}

.dlc-ai-tool textarea::placeholder {
	color: #0c66ff;
}

.dlc-ai-tool__panes {
	gap: 16px;
}

.dlc-ai-swap {
	align-self: end;
	width: 52px;
	height: 52px;
}

.dlc-ai-consent {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.industry-hero {
	padding: clamp(44px, 6vw, 86px) 0 clamp(70px, 8vw, 120px);
	background: #ffffff;
}

.industry-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
	align-items: center;
	gap: clamp(44px, 7vw, 112px);
	margin-top: 44px;
}

.industry-hero__type {
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.industry-hero h1 {
	max-width: 700px;
	font-size: clamp(54px, 7.4vw, 104px);
	font-weight: 740;
	letter-spacing: -.064em;
	line-height: .9;
}

.industry-hero__copy > p:not(.industry-hero__type) {
	max-width: 610px;
	margin: 28px 0 0;
	color: #0c66ff;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.65;
}

.industry-hero__photo {
	position: relative;
	min-height: 520px;
	margin: 0;
	overflow: hidden;
	border-radius: 28px 28px 92px 28px;
	background: #ffffff;
	box-shadow: 0 30px 70px rgba(12, 102, 255, 0.16);
}

.industry-hero__photo img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
}

.industry-hero__photo figcaption {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	padding: 20px 22px;
	border-radius: 16px;
	background: rgba(0, 42, 114, 0.9);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.industry-hero__photo figcaption strong,
.industry-hero__photo figcaption span { display: block; }
.industry-hero__photo figcaption span { margin-top: 5px; color: #ffffff; font-size: 13px; }

.industry-scope__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
	gap: clamp(50px, 9vw, 150px);
}

.industry-scope__intro {
	position: sticky;
	top: calc(var(--header-bottom) + 40px);
	align-self: start;
}

.industry-scope__intro h2,
.industry-photo-band h2 {
	font-size: clamp(40px, 5.3vw, 74px);
	font-weight: 720;
	letter-spacing: -.058em;
	line-height: .98;
}

.industry-scope__intro h2 span { color: var(--teal); }
.industry-scope__intro > p { max-width: 610px; margin-top: 28px; color: var(--muted); font-size: 18px; line-height: 1.72; }

.industry-scope__details article {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 22px;
	padding: 30px 0;
	border-top: 1px solid var(--border-strong);
}

.industry-scope__details article:first-child { border-top: 0; }
.industry-scope__details article > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.industry-scope__details h3 { font-size: clamp(23px, 2.5vw, 34px); letter-spacing: -.035em; }
.industry-scope__details p { margin: 10px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.industry-photo-band {
	padding: clamp(70px, 9vw, 130px) 0;
	background: #002a72;
	color: #ffffff;
}

.industry-photo-band__grid {
	display: grid;
	grid-template-columns: minmax(440px, 1.1fr) minmax(0, .9fr);
	align-items: center;
	gap: clamp(50px, 8vw, 130px);
}

.industry-photo-band figure { min-height: 560px; margin: 0; overflow: hidden; border-radius: 90px 24px 24px; }
.industry-photo-band figure img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; filter: saturate(.9); }
.industry-photo-band h2 { color: #ffffff; }
.industry-photo-band ol { margin: 46px 0 0; padding: 0; list-style: none; }
.industry-photo-band li { display: grid; grid-template-columns: 1fr; padding: 20px 0; border-top: 1px solid #0c66ff; }
.industry-photo-band li strong { color: #ffffff; font-size: 18px; }
.industry-photo-band li span { margin-top: 5px; color: #0c66ff; line-height: 1.6; }

.industry-notes__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: clamp(34px, 5vw, 68px);
	border-radius: 24px;
	background: linear-gradient(110deg, #ffffff, #ffffff 58%, #ffffff);
}
.industry-notes h2 { font-size: clamp(32px, 4vw, 52px); }
.industry-notes p { max-width: 720px; margin: 12px 0 0; color: #0c66ff; font-size: 17px; }
.industry-notes .button { flex: 0 0 auto; }

.news-archive-head {
	padding: clamp(58px, 8vw, 120px) 0 70px;
	background: #ffffff;
}

.news-archive-head .container > div:last-child {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	align-items: end;
	gap: 70px;
	margin-top: 44px;
}

.news-archive-head h1 {
	font-size: clamp(58px, 8vw, 112px);
	font-weight: 740;
	letter-spacing: -.068em;
	line-height: .88;
}

.news-archive-head p { margin: 0 0 8px; color: #0c66ff; font-size: 18px; line-height: 1.65; }
.news-archive-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: clamp(36px, 6vw, 92px); }
.archive-lead-story__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 24px; }
.archive-lead-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.archive-lead-story:hover img { transform: scale(1.035); }
.archive-lead-story > div { padding: 28px 2px 0; }
.archive-lead-story h2 { margin-top: 12px; font-size: clamp(34px, 4vw, 54px); line-height: 1.02; }
.archive-lead-story h2 a { color: var(--heading); text-decoration: none; }
.archive-lead-story p:not(.story__meta) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.news-archive-stories .story:first-child { border-top: 0; }

.navigation.pagination .nav-links,
.navigation.pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: auto;
	min-width: 0;
	min-height: 0;
	margin: 44px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	list-style: none;
}

.navigation.pagination ul.page-numbers > li { margin: 0; }
.navigation.pagination .nav-links > .page-numbers,
.navigation.pagination ul.page-numbers > li > .page-numbers {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	place-items: center;
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--surface);
	color: var(--heading);
	font-weight: 700;
	text-decoration: none;
}

.navigation.pagination .page-numbers.current {
	border-color: var(--blue);
	background: var(--blue);
	color: #ffffff;
}

.article-body,
.article-body p,
.comments-area,
.comment-form input,
.comment-form textarea {
	font-family: var(--font-ui);
}

.article-body { color: var(--text); font-size: 18px; line-height: 1.82; }
.article-body h2 { margin-top: 1.8em; font-size: clamp(30px, 3vw, 44px); line-height: 1.1; }

html[data-theme="dark"] .industry-hero,
html[data-theme="dark"] .news-archive-head { background: #002a72; }
html[data-theme="dark"] .industry-hero__copy > p:not(.industry-hero__type),
html[data-theme="dark"] .news-archive-head p { color: #0c66ff; }
html[data-theme="dark"] .dlc-ai-tool select,
html[data-theme="dark"] .dlc-ai-tool textarea { border-color: #0c66ff; background: #002a72; color: #ffffff; }
html[data-theme="dark"] .dlc-ai-tool textarea::placeholder { color: #0c66ff; }
html[data-theme="dark"] .industry-notes__grid { background: linear-gradient(110deg, #002a72, #002a72 58%, #002a72); }
html[data-theme="dark"] .industry-notes p { color: #ffffff; }

@media (max-width: 1080px) {
	.mega-menu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.mega-menu__grid a:nth-child(3) { border-top: 1px solid var(--border); }
	.industry-hero__grid,
	.industry-scope__grid,
	.industry-photo-band__grid,
	.news-archive-layout { grid-template-columns: 1fr; }
	.industry-hero__photo,
	.industry-hero__photo img { min-height: 440px; }
	.industry-scope__intro { position: static; }
	.industry-photo-band figure,
	.industry-photo-band figure img { min-height: 460px; }
}

@media (max-width: 760px) {
	.section-heading h2 { font-size: clamp(32px, 10vw, 46px); }
	.industry-hero { padding-top: 28px; }
	.industry-hero__grid { gap: 34px; margin-top: 30px; }
	.industry-hero h1,
	.news-archive-head h1 { font-size: clamp(52px, 17vw, 76px); }
	.industry-hero__photo,
	.industry-hero__photo img { min-height: 350px; }
	.industry-hero__photo { border-radius: 20px 20px 56px 20px; }
	.industry-scope__details article { grid-template-columns: 42px 1fr; }
	.industry-photo-band figure,
	.industry-photo-band figure img { min-height: 360px; }
	.industry-photo-band figure { border-radius: 54px 18px 18px; }
	.industry-notes__grid { display: block; }
	.industry-notes .button { width: 100%; margin-top: 26px; }
	.news-archive-head .container > div:last-child { grid-template-columns: 1fr; gap: 24px; }
	.news-archive-layout { gap: 42px; }
	.dlc-ai-tool__bar { grid-template-columns: 1fr; }
	.dlc-ai-swap { align-self: center; transform: rotate(90deg); }
	.dlc-ai-tool__panes { grid-template-columns: 1fr; }
	.dlc-ai-tool textarea { min-height: 210px; }
}

/* Production polish 4.1: balanced typography and image-led layouts */
.hero-section {
	min-height: 0;
	padding-block: clamp(76px, 8vw, 116px);
}

.hero-copy h1 {
	max-width: 720px;
	font-size: clamp(50px, 5.2vw, 76px);
	font-weight: 760;
	letter-spacing: -.052em;
	line-height: .99;
}

.hero-photo-story,
.hero-photo-story > img {
	min-height: 520px;
	height: 520px;
}

.about-photo-hero {
	min-height: clamp(650px, 78vh, 820px);
}

.about-photo-hero__content {
	padding-block: clamp(78px, 8vw, 112px);
}

.about-photo-hero__content > div {
	max-width: 790px;
}

.about-photo-hero h1 {
	max-width: 790px;
	font-size: clamp(50px, 5.6vw, 80px);
	font-weight: 750;
	letter-spacing: -.05em;
	line-height: .98;
}

.about-story__copy h2,
.about-process__grid > div h2,
.about-full-banner__content h2,
.industry-scope__intro h2,
.industry-photo-band h2 {
	font-size: clamp(40px, 4.5vw, 64px);
	font-weight: 730;
	letter-spacing: -.05em;
	line-height: 1.02;
}

.industry-hero h1 {
	max-width: 680px;
	font-size: clamp(48px, 5.8vw, 80px);
	font-weight: 730;
	letter-spacing: -.054em;
	line-height: .96;
}

.news-archive-head h1 {
	font-size: clamp(52px, 6.2vw, 86px);
	font-weight: 730;
	letter-spacing: -.056em;
	line-height: .94;
}

@media (max-width: 1100px) {
	.about-photo-hero__content > div { max-width: 720px; }
	.about-photo-hero h1 { font-size: clamp(48px, 7vw, 68px); }
	.hero-photo-story,
	.hero-photo-story > img { min-height: 480px; height: 480px; }
}

@media (max-width: 760px) {
	.hero-section { padding-block: 54px 70px; }
	.hero-copy h1 { font-size: clamp(40px, 11.5vw, 54px); line-height: 1.01; }
	.hero-photo-story,
	.hero-photo-story > img { min-height: 400px; height: 400px; }
	.about-photo-hero { min-height: 620px; }
	.about-photo-hero__content { padding-block: 68px; }
	.about-photo-hero h1 { font-size: clamp(42px, 12vw, 56px); line-height: 1; }
	.about-photo-hero__content > div > p:not(.eyebrow) { font-size: 17px; line-height: 1.62; }
	.about-story__copy h2,
	.about-process__grid > div h2,
	.about-full-banner__content h2,
	.industry-scope__intro h2,
	.industry-photo-band h2 { font-size: clamp(36px, 10.5vw, 50px); line-height: 1.04; }
	.industry-hero h1,
	.news-archive-head h1 { font-size: clamp(42px, 12vw, 58px); line-height: .98; }
}

/* Final navigation, editorial labels and service-detail system. */
.eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	padding: 0;
	letter-spacing: .08em;
	text-transform: none;
}

.eyebrow::before { display: none; }

.news-masthead .eyebrow,
.stream-heading .eyebrow {
	padding-bottom: 7px;
	border-bottom: 3px solid var(--teal);
	font-size: 13px;
}

.news-sidebar .eyebrow {
	padding-left: 13px;
	border-left: 3px solid var(--accent);
	font-size: 12px;
}

.category-band .eyebrow {
	padding: 7px 10px;
	border-radius: 4px 12px 12px 4px;
	background: var(--soft-blue);
	font-size: 11px;
}

.news-pagination { margin-top: 34px; }
.news-pagination > ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.news-pagination li { margin: 0; list-style: none; }
.news-pagination a.page-numbers,
.news-pagination span.page-numbers {
	display: inline-flex;
	min-width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding-inline: 14px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--surface);
	color: var(--heading);
	font-weight: 750;
	text-decoration: none;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}
.news-pagination a.page-numbers:hover {
	border-color: var(--blue);
	color: var(--blue);
	transform: translateY(-2px);
}
.news-pagination span.page-numbers.current {
	border-color: var(--blue);
	background: var(--blue);
	color: #ffffff;
}

.service-detail-modern { background: var(--surface); }
.service-detail-hero { padding-block: clamp(54px, 7vw, 96px); }
.service-detail-hero .detail-hero__grid { align-items: center; }
.service-kicker {
	display: inline-block;
	margin: 0 0 24px;
	padding: 8px 12px;
	border-radius: 3px 14px 14px 3px;
	background: #002a72;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
}
.service-detail-hero__photo {
	position: relative;
	min-height: 510px;
	margin: 0;
	overflow: hidden;
	border-radius: 34px 34px 90px 34px;
	box-shadow: var(--shadow-lg);
}
.service-detail-hero__photo > img { width: 100%; height: 510px; object-fit: cover; }
.service-detail-hero__photo::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 42, 114, 0.74), transparent 58%);
	content: "";
}
.service-detail-hero__photo figcaption {
	position: absolute;
	z-index: 1;
	right: 26px;
	bottom: 26px;
	left: 26px;
	display: grid;
	gap: 5px;
	padding: 19px 21px;
	border-left: 4px solid #0c66ff;
	color: #ffffff;
	background: rgba(0, 42, 114, 0.84);
	backdrop-filter: blur(10px);
}
.service-detail-hero__photo figcaption span { color: #ffffff; font-size: 13px; }

.service-fit-stage__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
	gap: clamp(48px, 9vw, 130px);
	align-items: end;
}
.service-fit-stage__copy { max-width: 720px; }
.service-fit-stage__copy h2 { max-width: 620px; font-size: clamp(42px, 5vw, 68px); }
.service-fit-stage__copy p { max-width: 650px; color: var(--muted); font-size: 19px; }
.service-stage-number {
	display: block;
	margin-bottom: 26px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 850;
	font-variant-numeric: tabular-nums;
	letter-spacing: .16em;
}
.service-fit-stage__contact {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	padding: 28px;
	border: 1px solid #ffffff;
	border-radius: 28px 28px 6px 28px;
	background: linear-gradient(145deg, #ffffff, #ffffff);
}
.service-fit-stage__contact > span {
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	border-radius: 50%;
	background: var(--blue);
	color: #ffffff;
}
.service-fit-stage__contact strong { display: block; color: var(--heading); font-size: 19px; }
.service-fit-stage__contact p { margin: 7px 0 0; color: var(--muted); }
.service-fit-stage__contact > a {
	grid-column: 2;
	color: var(--heading);
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
}

.service-document-stage {
	padding: clamp(76px, 9vw, 126px) 0;
	background: #002a72;
	color: #ffffff;
}
.service-document-stage__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr);
	gap: clamp(42px, 7vw, 100px);
	align-items: center;
}
.service-document-stage h2 { max-width: 680px; color: #ffffff; font-size: clamp(42px, 5vw, 70px); }
.service-document-stage p { max-width: 680px; color: #0c66ff; font-size: 18px; }
.service-document-stage .service-stage-number { color: #0c66ff; }
.service-document-cloud { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.service-document-cloud__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 15px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px 18px 18px 18px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 700;
}
.service-document-cloud__item--2 { border-radius: 18px 4px 18px 18px; background: rgba(12, 102, 255, 0.14); }
.service-document-cloud__item--3 { border-radius: 22px 22px 5px 22px; background: rgba(12, 102, 255, 0.14); }
.service-document-cloud__item--4 { border-radius: 22px 7px; background: rgba(12, 102, 255, 0.16); }
.service-document-cloud__item .icon { color: #0c66ff; }
.service-document-stage figure {
	position: relative;
	min-height: 540px;
	margin: 0;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.12);
	border-radius: 80px 18px 18px 18px;
}
.service-document-stage figure img { width: 100%; height: 540px; object-fit: cover; }
.service-document-stage figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	padding: 17px 19px;
	border-radius: 13px;
	background: rgba(0, 42, 114, 0.9);
	color: #ffffff;
	font-size: 13px;
}

.service-path-stage__heading {
	display: grid;
	grid-template-columns: 100px minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: 24px;
	align-items: start;
	margin-bottom: 56px;
}
.service-path-stage__heading h2 { max-width: 740px; font-size: clamp(40px, 4.5vw, 64px); }
.service-path-stage__heading p { padding-top: 12px; color: var(--muted); font-size: 17px; }
.service-path {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--border-strong);
}
.service-path article { position: relative; padding: 34px 28px 26px 0; }
.service-path article + article { padding-left: 28px; border-left: 1px solid var(--border); }
.service-path article > span { color: var(--blue); font-size: 12px; font-weight: 850; }
.service-path article > div { display: grid; width: 50px; height: 50px; place-items: center; margin: 24px 0 28px; border-radius: 50%; background: var(--soft-blue); color: var(--blue); }
.service-path article:nth-child(2) > div { border-radius: 8px 20px; background: #ffffff; color: var(--teal); }
.service-path article:nth-child(3) > div { border-radius: 20px 7px 20px 20px; background: #ffffff; color: #0c66ff; }
.service-path article:nth-child(4) > div { border-radius: 5px; background: #ffffff; color: var(--violet); transform: rotate(4deg); }
.service-path h3 { font-size: 22px; }
.service-path p { margin: 0; color: var(--muted); }

.service-quality-stage__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(50px, 8vw, 112px);
	align-items: center;
}
.service-quality-stage figure {
	position: relative;
	min-height: 560px;
	margin: 0;
}
.service-quality-stage figure img {
	width: calc(100% - 54px);
	height: 520px;
	object-fit: cover;
	border-radius: 18px 100px 18px 18px;
	box-shadow: var(--shadow-lg);
}
.service-quality-stage figure span {
	position: absolute;
	right: 0;
	bottom: 0;
	display: grid;
	width: 112px;
	height: 112px;
	place-items: center;
	border: 10px solid var(--surface);
	border-radius: 50%;
	background: var(--teal);
	color: #ffffff;
}
.service-quality-stage figure .icon { width: 44px; height: 44px; }
.service-quality-stage h2 { font-size: clamp(40px, 4.5vw, 64px); }
.service-quality-stage blockquote {
	margin: 28px 0 20px;
	padding: 0 0 0 24px;
	border-left: 4px solid var(--accent);
	background: none;
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 700;
}

.service-deep-dive-stage { padding-block: 46px; }
.service-deep-dive {
	border: 1px solid var(--border);
	border-radius: 22px;
	background: var(--surface);
}
.service-deep-dive summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 28px;
	color: var(--heading);
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}
.service-deep-dive summary::-webkit-details-marker { display: none; }
.service-deep-dive summary .icon { transition: transform .2s ease; }
.service-deep-dive[open] summary .icon { transform: rotate(90deg); }
.service-deep-dive .entry-content { max-width: 900px; padding: 0 28px 32px; }
.service-related-stage .section-heading { max-width: 920px; }

html[data-theme="dark"] .service-fit-stage__contact { border-color: #0c66ff; background: linear-gradient(145deg, #002a72, #002a72); }
html[data-theme="dark"] .service-deep-dive { background: var(--surface-2); }
html[data-theme="dark"] .service-quality-stage figure span { border-color: var(--surface); }

@media (max-width: 1100px) {
	.site-header__inner {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
	.site-logo { flex: 0 1 auto; }
	.header-actions,
	.menu-toggle { margin-left: auto; }
	.service-fit-stage__grid,
	.service-document-stage__grid,
	.service-quality-stage__grid { grid-template-columns: 1fr; }
	.service-fit-stage__contact { max-width: 620px; }
	.service-document-stage figure { min-height: 440px; }
	.service-document-stage figure img { height: 440px; }
	.service-path-stage__heading { grid-template-columns: 80px 1fr; }
	.service-path-stage__heading p { grid-column: 2; }
	.service-path { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; }
	.service-path article { padding: 28px; border-top: 1px solid var(--border); }
	.service-path article + article { padding-left: 28px; }
}

@media (max-width: 680px) {
	.site-header__inner { gap: 14px; }
	.site-logo { min-width: 0; }
	.site-logo img,
	.custom-logo { width: min(185px, 58vw); }
	.header-actions { flex: 0 0 auto; }
	.menu-toggle { position: relative; right: 0; }
	.news-pagination > ul.page-numbers { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 3px 2px 8px; scrollbar-width: thin; }
	.service-detail-hero__photo,
	.service-detail-hero__photo > img { min-height: 390px; height: 390px; }
	.service-detail-hero__photo { border-radius: 24px 24px 58px 24px; }
	.service-fit-stage__grid { gap: 34px; }
	.service-fit-stage__contact { grid-template-columns: 46px 1fr; padding: 22px; border-radius: 22px 22px 5px 22px; }
	.service-fit-stage__contact > span { width: 46px; height: 46px; }
	.service-fit-stage__contact > a { grid-column: 1 / -1; font-size: 19px; }
	.service-document-stage__grid { gap: 36px; }
	.service-document-stage figure,
	.service-document-stage figure img { min-height: 350px; height: 350px; }
	.service-document-stage figure { border-width: 5px; border-radius: 48px 14px 14px; }
	.service-document-cloud__item { width: 100%; }
	.service-path-stage__heading { display: block; }
	.service-path { grid-template-columns: 1fr; }
	.service-path article + article { border-left: 0; }
	.service-quality-stage figure { min-height: 410px; }
	.service-quality-stage figure img { width: calc(100% - 24px); height: 380px; border-radius: 14px 64px 14px 14px; }
	.service-quality-stage figure span { width: 84px; height: 84px; border-width: 7px; }
	.service-quality-stage figure .icon { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
	.news-pagination a.page-numbers,
	.service-deep-dive summary .icon { transition: none; }
}

/* Layout differentiation and news legibility. */
.spec-stat-bar--1 { grid-template-columns: 1fr; }
.spec-stat-bar--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spec-stat-bar--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.spec-stat-bar--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.spec-stat-bar--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.spec-stat-bar--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.profile-landing-hero {
	padding-bottom: clamp(36px, 5vw, 68px);
	background: linear-gradient(145deg, #ffffff 0 54%, #ffffff 54% 100%);
}

.profile-landing-hero .detail-hero__grid {
	grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
	align-items: end;
	gap: clamp(48px, 7vw, 108px);
}

.profile-landing-hero .spec-hero-photo {
	min-height: 620px;
	margin-bottom: 0;
	border-radius: 120px 28px 28px;
	box-shadow: 0 34px 80px rgba(0, 42, 114, 0.17);
}

.profile-landing-hero .spec-hero-photo img { min-height: 620px; object-fit: cover; }

.profile-proof-ledger {
	padding: clamp(78px, 8vw, 112px) 0 clamp(64px, 7vw, 92px);
	border: 0;
	background: #ffffff;
}

.profile-proof-ledger .container { width: min(calc(100% - 48px), 1160px); }

.profile-proof-ledger .spec-stat-bar {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: minmax(104px, auto);
	gap: 14px;
	border: 0;
	border-radius: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
}

.profile-proof-ledger .spec-stat-bar > div {
	position: relative;
	min-height: 0;
	justify-content: flex-end;
	padding: 24px 26px;
	border: 1px solid #ffffff;
	border-radius: 20px;
	text-align: left;
	overflow: hidden;
	background: #ffffff;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.profile-proof-ledger .spec-stat-bar > div::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 26px;
	width: 34px;
	height: 4px;
	border-radius: 999px;
	background: currentColor;
	opacity: .72;
}

.profile-proof-ledger .spec-stat-bar > div:hover {
	transform: translateY(-4px);
	border-color: #ffffff;
	box-shadow: 0 18px 42px rgba(12, 102, 255, 0.11);
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(1) {
	grid-column: 1 / span 4;
	grid-row: 1 / span 2;
	padding: 32px;
	background: #002a72;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(2) {
	grid-column: 5 / span 4;
	grid-row: 1;
	background: #ffffff;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(3) {
	grid-column: 9 / span 4;
	grid-row: 1;
	background: #ffffff;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(4) {
	grid-column: 5 / span 2;
	grid-row: 2;
	background: #ffffff;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(5) {
	grid-column: 7 / span 3;
	grid-row: 2;
	background: #ffffff;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar > div:nth-child(6) {
	grid-column: 10 / span 3;
	grid-row: 2;
	background: #ffffff;
	color: #0c66ff;
}

.profile-proof-ledger .spec-stat-bar strong {
	color: currentColor;
	font-size: clamp(27px, 2.5vw, 38px);
	letter-spacing: -.035em;
}

.profile-proof-ledger .spec-stat-bar > div:first-child strong {
	font-size: clamp(42px, 5vw, 68px);
}

.profile-proof-ledger .spec-stat-bar span {
	color: #0c66ff;
	font-size: 13px;
	font-weight: 650;
}

.profile-proof-ledger .spec-stat-bar > div:first-child span { color: #ffffff; }

.profile-risk-ledger .container {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	gap: clamp(52px, 8vw, 120px);
}

.profile-risk-ledger .section-heading {
	position: sticky;
	top: 132px;
	align-self: start;
	margin: 0;
}

.profile-risk-ledger .spec-risk-grid {
	display: block;
}

.profile-risk-ledger .spec-risk-grid article,
.profile-risk-ledger .spec-risk-grid article:nth-child(n) {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	grid-column: auto;
	align-items: center;
	min-height: 112px;
	padding: 22px 0;
	border: 0;
	border-top: 1px solid var(--border);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.profile-risk-ledger .spec-risk-grid article:last-child { border-bottom: 1px solid var(--border); }
.profile-risk-ledger .spec-risk-grid article:hover { transform: translateX(8px); box-shadow: none; }
.profile-risk-ledger .spec-risk-grid span { color: var(--blue); font-size: 14px; }
.profile-risk-ledger .spec-risk-grid h3 { margin: 0; font-size: clamp(20px, 2vw, 27px); }
.profile-risk-ledger .spec-conclusion { grid-column: 2; margin-top: -18px; }

.profile-document-studio .spec-editorial-split {
	grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
	align-items: start;
}

.profile-document-studio .spec-inline-photo { border-radius: 26px 82px 26px 26px; }
.profile-document-studio .spec-document-grid--stacked > div:nth-child(even) { margin-left: 34px; }

.spec-service-directory .dlc-service-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 18px;
}

.spec-service-directory .dlc-service-grid > .dlc-content-card { grid-column: span 4; border-radius: 18px; }
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 1) { grid-column: span 7; }
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 2) { grid-column: span 5; }
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 1) .dlc-content-card__media,
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 1) .dlc-content-card__symbol,
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 2) .dlc-content-card__media,
.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 2) .dlc-content-card__symbol { aspect-ratio: 16 / 7; }

.profile-flow-stage .spec-flow-section { max-width: 1120px; }
.profile-flow-stage .spec-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profile-flow-stage .spec-flow > div:nth-child(even) { transform: translateY(22px); }

.manufacturing-landing-hero .industry-hero__grid {
	grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
	align-items: center;
}

.manufacturing-landing-hero .spec-hero-photo {
	border-radius: 22px;
	box-shadow: 18px 18px 0 #ffffff;
}

.manufacturing-landing-hero .spec-hero-photo figcaption {
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	padding: 0;
	border-radius: 0;
	background: linear-gradient(90deg, rgba(0, 42, 114, 0.96), rgba(0, 42, 114, 0.92));
	counter-reset: manufacturing-step;
}

.manufacturing-landing-hero .spec-hero-photo figcaption span {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 17px 12px;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	color: #ffffff;
	font-size: 11px;
	font-weight: 720;
	line-height: 1.35;
	counter-increment: manufacturing-step;
}

.manufacturing-landing-hero .spec-hero-photo figcaption span:first-child { border-left: 0; }

.manufacturing-landing-hero .spec-hero-photo figcaption span::before {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid rgba(12, 102, 255, 0.5);
	border-radius: 50%;
	background: rgba(12, 102, 255, 0.12);
	color: #0c66ff;
	content: counter(manufacturing-step, decimal-leading-zero);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .03em;
}

.manufacturing-metrics { padding-block: 38px; }
.manufacturing-metrics .spec-stat-bar { border-radius: 16px; box-shadow: none; }
.manufacturing-metrics .spec-stat-bar > div { position: relative; min-height: 108px; }
.manufacturing-metrics .spec-stat-bar > div::before {
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	border-radius: 999px;
	background: var(--blue);
	content: "";
}
.manufacturing-metrics .spec-stat-bar > div:nth-child(2)::before { background: var(--teal); }
.manufacturing-metrics .spec-stat-bar > div:nth-child(3)::before { background: var(--accent); }
.manufacturing-metrics .spec-stat-bar > div:nth-child(4)::before { background: var(--violet); }
.manufacturing-metrics .spec-stat-bar > div:nth-child(5)::before { background: var(--pink); }

.manufacturing-risk-board { background: #ffffff; }
.manufacturing-risk-board .section-heading { max-width: 850px; }
.manufacturing-risk-board .spec-risk-grid article { border-radius: 8px 28px 8px 8px; }
.manufacturing-risk-board .spec-risk-grid article:nth-child(2),
.manufacturing-risk-board .spec-risk-grid article:nth-child(5) { background: #ffffff; }
.manufacturing-risk-board .spec-risk-grid article:nth-child(3),
.manufacturing-risk-board .spec-risk-grid article:nth-child(6) { background: #ffffff; }

.spec-industry-directory .dlc-industry-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.spec-industry-directory .dlc-industry-grid > .dlc-content-card {
	display: grid;
	grid-template-columns: 164px minmax(0, 1fr);
	min-height: 178px;
	border-radius: 12px;
	box-shadow: none;
}

.spec-industry-directory .dlc-content-card__media,
.spec-industry-directory .dlc-content-card__symbol {
	width: 164px;
	height: 100%;
	min-height: 178px;
	aspect-ratio: auto;
}

.spec-industry-directory .dlc-content-card__media img { height: 100%; object-fit: cover; }
.spec-industry-directory .dlc-content-card__body { display: flex; flex-direction: column; justify-content: center; padding: 22px; }

.news-sidebar section.newsletter-box {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #ffffff, #ffffff 64%, #ffffff);
	color: #0c66ff;
}

.news-sidebar section.newsletter-box::after {
	position: absolute;
	right: -42px;
	bottom: -52px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(12, 102, 255, 0.09);
	content: "";
}

.news-sidebar .newsletter-box h2 { position: relative; z-index: 1; color: var(--heading); }
.news-sidebar .newsletter-box p:not(.eyebrow) { position: relative; z-index: 1; color: #0c66ff; }

.news-pagination {
	display: flex;
	width: max-content;
	max-width: 100%;
	margin: 30px auto 0;
	padding: 6px;
	border: 0;
	border-radius: 15px;
	background: var(--surface);
	box-shadow: 0 10px 28px rgba(0, 42, 114, 0.1);
}

.news-pagination > ul.page-numbers {
	flex-wrap: nowrap;
	gap: 5px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.news-pagination a.page-numbers,
.news-pagination span.page-numbers {
	min-width: 38px;
	height: 38px;
	padding-inline: 11px;
	border-color: transparent;
	border-radius: 10px;
}

html[data-theme="dark"] .profile-landing-hero { background: linear-gradient(145deg, #002a72 0 54%, #002a72 54% 100%); }
html[data-theme="dark"] .profile-proof-ledger { background: #002a72; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar { background: transparent; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div { border-color: #0c66ff; background: #002a72; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(1) { background: #0c66ff; color: #0c66ff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(2) { background: #002a72; color: #0c66ff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(3) { background: #002a72; color: #0c66ff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(4) { background: #002a72; color: #0c66ff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(5) { background: #002a72; color: #ffffff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(6) { background: #002a72; color: #0c66ff; }
html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar span { color: #ffffff; }
html[data-theme="dark"] .manufacturing-landing-hero .spec-hero-photo { box-shadow: 18px 18px 0 #002a72; }
html[data-theme="dark"] .manufacturing-risk-board { background: #002a72; }
html[data-theme="dark"] .manufacturing-risk-board .spec-risk-grid article:nth-child(n) { background: var(--surface-2); }
html[data-theme="dark"] .news-sidebar section.newsletter-box { background: linear-gradient(145deg, #002a72, #002a72); color: #ffffff; }
html[data-theme="dark"] .news-sidebar .newsletter-box p:not(.eyebrow) { color: #ffffff; }

@media (max-width: 1120px) {
	.spec-stat-bar--4,
	.spec-stat-bar--5,
	.spec-stat-bar--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.profile-landing-hero .detail-hero__grid,
	.manufacturing-landing-hero .industry-hero__grid { grid-template-columns: 1fr; }
	.profile-landing-hero .spec-hero-photo { min-height: 520px; margin-bottom: 0; }
	.profile-landing-hero .spec-hero-photo img { min-height: 520px; }
	.profile-proof-ledger .spec-stat-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
	.profile-proof-ledger .spec-stat-bar > div:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 120px; }
	.profile-proof-ledger .spec-stat-bar > div:nth-child(1) { grid-column: 1 / -1; min-height: 178px; }
	.profile-proof-ledger .spec-stat-bar > div:nth-child(6) { grid-column: 1 / -1; }
	.profile-risk-ledger .container { grid-template-columns: 1fr; }
	.profile-risk-ledger .section-heading { position: static; }
	.profile-risk-ledger .spec-conclusion { grid-column: auto; margin-top: 28px; }
	.spec-service-directory .dlc-service-grid > .dlc-content-card,
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 1),
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 2) { grid-column: span 6; }
	.spec-industry-directory .dlc-industry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.spec-stat-bar--3,
	.spec-stat-bar--4,
	.spec-stat-bar--5,
	.spec-stat-bar--6,
	.profile-proof-ledger .spec-stat-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.profile-proof-ledger { padding: 54px 0; }
	.profile-proof-ledger .container { width: min(calc(100% - 28px), 1080px); }
	.profile-proof-ledger .spec-stat-bar > div:nth-child(n) { padding: 20px; border: 1px solid #ffffff; }
	.profile-proof-ledger .spec-stat-bar > div::before { top: 17px; left: 20px; }
	html[data-theme="dark"] .profile-proof-ledger .spec-stat-bar > div:nth-child(n) { border-color: #0c66ff; }
	.profile-landing-hero .spec-hero-photo,
	.profile-landing-hero .spec-hero-photo img { min-height: 390px; }
	.profile-landing-hero .spec-hero-photo { border-radius: 60px 20px 20px; }
	.profile-document-studio .spec-editorial-split { grid-template-columns: 1fr; }
	.profile-document-studio .spec-document-grid--stacked > div:nth-child(even) { margin-left: 0; }
	.profile-flow-stage .spec-flow { grid-template-columns: 1fr; }
	.profile-flow-stage .spec-flow > div:nth-child(even) { transform: none; }
	.spec-service-directory .dlc-service-grid { grid-template-columns: 1fr; }
	.spec-service-directory .dlc-service-grid > .dlc-content-card,
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 1),
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(7n + 2) { grid-column: 1; }
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-content-card__media,
	.spec-service-directory .dlc-service-grid > .dlc-content-card:nth-child(n) .dlc-content-card__symbol { aspect-ratio: 3 / 2; }
	.spec-industry-directory .dlc-industry-grid > .dlc-content-card { grid-template-columns: 96px minmax(0, 1fr); min-height: 154px; }
	.spec-industry-directory .dlc-content-card__media,
	.spec-industry-directory .dlc-content-card__symbol { width: 96px; min-height: 154px; }
	.spec-industry-directory .dlc-content-card__body { padding: 18px; }
	.manufacturing-landing-hero .spec-hero-photo { min-height: 430px; box-shadow: 10px 10px 0 #ffffff; }
	.manufacturing-landing-hero .spec-hero-photo > img { min-height: 430px; }
	.manufacturing-landing-hero .spec-hero-photo figcaption {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
	}
	.manufacturing-landing-hero .spec-hero-photo figcaption::-webkit-scrollbar { display: none; }
	.manufacturing-landing-hero .spec-hero-photo figcaption span {
		flex: 0 0 158px;
		padding: 14px 12px;
		scroll-snap-align: start;
	}
	.news-pagination { margin-top: 24px; }
	.news-pagination > ul.page-numbers { overflow-x: visible; padding: 0; }
}
