/* ==========================================================================
   Barcode Labeling Systems — Design System
   Concept: Precision in every mark
   ========================================================================== */

:root {
	--bls-navy: #071a2b;
	--bls-blue: #123a5a;
	--bls-red: #e63946;
	--bls-red-deep: #c42834;
	--bls-bg: #f4f7f9;
	--bls-white: #ffffff;
	--bls-ink: #101820;
	--bls-muted: #5d6975;
	--bls-border: #dde3e8;
	--bls-border-strong: #c5ced6;
	--bls-shadow: 0 18px 50px rgba(7, 26, 43, 0.14);
	--bls-shadow-soft: 0 8px 24px rgba(7, 26, 43, 0.08);
	--bls-radius: 2px;
	--bls-max: 1220px;
	--bls-header: 92px;
	--bls-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--bls-display: "Segoe UI", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--bls-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
	--bls-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--bls-header) + 12px);
}

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

body.bls-site {
	margin: 0;
	font-family: var(--bls-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--bls-ink);
	background: var(--bls-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--bls-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--bls-red);
}

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

.bls-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--bls-navy);
	color: var(--bls-white);
	padding: 0.75rem 1rem;
}

.bls-skip:focus {
	left: 1rem;
	top: 1rem;
}

.bls-container {
	width: min(100% - 2.5rem, var(--bls-max));
	margin-inline: auto;
}

.bls-main {
	/* Avoid overflow clipping on the page shell — it breaks DevTools full-page screenshots. */
	min-width: 0;
}

/* -------------------------------------------------------------------------- */
/* Typography                                                                 */
/* -------------------------------------------------------------------------- */

.bls-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1rem;
	font-family: var(--bls-mono);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bls-blue);
}

.bls-eyebrow--light {
	color: rgba(255, 255, 255, 0.72);
}

.bls-eyebrow--tech {
	color: var(--bls-blue);
}

.bls-reg-mark {
	width: 10px;
	height: 10px;
	border: 1.5px solid var(--bls-red);
	position: relative;
	flex: 0 0 auto;
}

.bls-reg-mark::before,
.bls-reg-mark::after {
	content: "";
	position: absolute;
	background: var(--bls-red);
}

.bls-reg-mark::before {
	width: 1.5px;
	height: 16px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.bls-reg-mark::after {
	width: 16px;
	height: 1.5px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

h1,
h2,
h3 {
	font-family: var(--bls-display);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.12;
	color: var(--bls-navy);
	margin: 0 0 0.85rem;
}

h1 {
	font-size: clamp(2.5rem, 5.4vw, 4.35rem);
}

h2 {
	font-size: clamp(1.85rem, 3.4vw, 2.85rem);
	max-width: 18ch;
}

h3 {
	font-size: 1.15rem;
	letter-spacing: -0.01em;
}

.bls-section__intro,
.bls-hero__lead {
	font-size: 1.0625rem;
	color: var(--bls-muted);
	max-width: 42rem;
}

.bls-meta {
	display: inline-block;
	min-width: 4.5rem;
	margin-right: 0.55rem;
	font-family: var(--bls-mono);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bls-muted);
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.bls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.8rem 1.35rem;
	border: 1px solid transparent;
	border-radius: var(--bls-radius);
	font-family: var(--bls-font);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s var(--bls-ease), color 0.2s var(--bls-ease), border-color 0.2s var(--bls-ease), transform 0.2s var(--bls-ease);
}

.bls-btn--primary {
	background: var(--bls-red);
	color: var(--bls-white);
	border-color: var(--bls-red);
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.bls-btn--primary:hover {
	background: var(--bls-red-deep);
	border-color: var(--bls-red-deep);
	color: var(--bls-white);
	transform: translateY(-1px);
}

.bls-btn--ghost {
	background: transparent;
	color: var(--bls-navy);
	border-color: var(--bls-border-strong);
}

.bls-btn--ghost:hover {
	border-color: var(--bls-navy);
	color: var(--bls-navy);
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.bls-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--bls-header);
	background: rgba(244, 247, 249, 0.78);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: background 0.25s var(--bls-ease), border-color 0.25s var(--bls-ease), box-shadow 0.25s var(--bls-ease);
}

.bls-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom-color: var(--bls-border);
	box-shadow: 0 8px 24px rgba(7, 26, 43, 0.06);
}

.bls-header__inner {
	width: min(100% - 2.5rem, var(--bls-max));
	margin: 0 auto;
	height: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem;
}

.bls-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--bls-navy);
	text-decoration: none;
	min-width: 0;
}

.bls-brand:hover {
	color: var(--bls-navy);
}

.bls-brand__img {
	display: block;
	max-height: 66px;
	width: auto;
	height: auto;
}

.bls-brand__mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--bls-navy);
	background: var(--bls-white);
	border: 1px solid var(--bls-border);
	flex: 0 0 auto;
}

.bls-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.bls-brand__abbr {
	font-family: var(--bls-mono);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.bls-brand__name {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bls-muted);
}

.bls-nav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.15rem 1.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bls-nav__list a {
	color: var(--bls-ink);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	padding: 0.35rem 0;
	position: relative;
}

.bls-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--bls-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s var(--bls-ease);
}

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

.bls-header__actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.bls-header__phone {
	color: var(--bls-muted);
	text-decoration: none;
	font-family: var(--bls-mono);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.bls-header__phone:hover {
	color: var(--bls-navy);
}

.bls-header__cta {
	min-height: 42px;
	padding-inline: 1.05rem;
	font-size: 0.85rem;
}

.bls-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--bls-border);
	background: var(--bls-white);
	padding: 0;
	cursor: pointer;
}

.bls-menu-toggle__bars,
.bls-menu-toggle__bars::before,
.bls-menu-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--bls-navy);
	margin: 0 auto;
	position: relative;
	transition: transform 0.2s var(--bls-ease);
}

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

.bls-menu-toggle__bars::before {
	top: -6px;
}

.bls-menu-toggle__bars::after {
	top: 6px;
}

body.bls-nav-open .bls-menu-toggle__bars {
	background: transparent;
}

body.bls-nav-open .bls-menu-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

body.bls-nav-open .bls-menu-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

body.bls-nav-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.bls-hero {
	position: relative;
	padding: clamp(2.75rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.75rem);
	background:
		linear-gradient(180deg, #eef3f7 0%, #f4f7f9 42%, #ffffff 100%);
	overflow: hidden;
}

.bls-hero__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bls-hero__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(18, 58, 90, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(18, 58, 90, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(100deg, rgba(0, 0, 0, 0.7), transparent 68%);
}

.bls-hero__glow {
	position: absolute;
	right: -8%;
	top: -20%;
	width: 55%;
	height: 80%;
	background: radial-gradient(circle, rgba(18, 58, 90, 0.08), transparent 68%);
}

.bls-hero__layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
	gap: clamp(1.75rem, 4vw, 3.25rem);
	align-items: center;
}

.bls-hero__title {
	margin-bottom: 1.15rem;
	max-width: 11ch;
}

.bls-hero__accent {
	display: inline-block;
	position: relative;
	color: var(--bls-navy);
}

.bls-hero__accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.08em;
	height: 0.14em;
	background: rgba(230, 57, 70, 0.28);
	z-index: -1;
}

.bls-hero__lead {
	margin: 0 0 1.75rem;
	font-size: 1.12rem;
	line-height: 1.65;
}

.bls-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.4rem;
}

.bls-btn__meta {
	opacity: 0.65;
	font-family: var(--bls-mono);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-right: 0.35rem;
}

.bls-hero__trust {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	font-size: 0.9rem;
	color: var(--bls-muted);
}

.bls-hero__trust-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bls-red);
	box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

/* Hero manufacturing stage */

.bls-stage {
	position: relative;
	margin: 0;
	transform: scale(1.06);
	transform-origin: center right;
}

.bls-stage--photo {
	width: 100%;
}

.bls-stage__plate {
	position: relative;
	padding: 1.35rem 1rem 1.55rem;
	background:
		linear-gradient(155deg, #ffffff 0%, #f3f7fa 55%, #e8eef4 100%);
	border: 1px solid var(--bls-border);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 28px 60px rgba(7, 26, 43, 0.16),
		0 8px 18px rgba(7, 26, 43, 0.08);
	overflow: hidden;
}

.bls-stage__plate::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px dashed rgba(18, 58, 90, 0.16);
	pointer-events: none;
	z-index: 1;
}

.bls-stage__chip {
	position: absolute;
	top: 0.85rem;
	left: 1rem;
	z-index: 2;
	font-family: var(--bls-mono);
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	color: rgba(18, 58, 90, 0.55);
}

.bls-stage__chip--right {
	left: auto;
	right: 1rem;
}

.bls-stage__photo {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
}

.bls-stage__caption {
	position: absolute;
	right: 1.1rem;
	bottom: 0.7rem;
	z-index: 2;
	margin: 0;
	font-family: var(--bls-mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	color: rgba(18, 58, 90, 0.45);
}

.bls-stage__tick {
	position: absolute;
	z-index: 2;
	width: 14px;
	height: 14px;
	border: 1.5px solid var(--bls-red);
}

.bls-stage__tick--tl {
	top: 12px;
	left: 12px;
	border-right: 0;
	border-bottom: 0;
}

.bls-stage__tick--tr {
	top: 12px;
	right: 12px;
	border-left: 0;
	border-bottom: 0;
}

.bls-stage__tick--bl {
	bottom: 12px;
	left: 12px;
	border-right: 0;
	border-top: 0;
}

.bls-stage__tick--br {
	right: 12px;
	bottom: 12px;
	border-left: 0;
	border-top: 0;
}

.bls-nav__mobile-actions {
	display: none;
}

/* -------------------------------------------------------------------------- */
/* Credibility strip                                                          */
/* -------------------------------------------------------------------------- */

.bls-strip {
	border-block: 1px solid var(--bls-border);
	background: var(--bls-white);
}

.bls-strip__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.bls-strip__item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 1.1rem 1rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--bls-navy);
	border-right: 1px solid var(--bls-border);
}

.bls-strip__item:last-child {
	border-right: 0;
}

.bls-strip__tick {
	width: 8px;
	height: 8px;
	background: var(--bls-red);
	flex: 0 0 auto;
}

/* -------------------------------------------------------------------------- */
/* Sections                                                                   */
/* -------------------------------------------------------------------------- */

.bls-section {
	padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.bls-section__head {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bls-section__head--light h2,
.bls-section__head--light .bls-section__intro {
	color: var(--bls-white);
}

.bls-section__intro {
	margin: 0.75rem 0 0;
}

[data-bls-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--bls-ease), transform 0.7s var(--bls-ease);
}

[data-bls-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Capabilities — specification board */

.bls-caps {
	background: var(--bls-white);
}

.bls-specboard {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--bls-border);
	background: var(--bls-bg);
}

.bls-spec {
	padding: 1.5rem 1.35rem 1.6rem;
	background: var(--bls-white);
	border-right: 1px solid var(--bls-border);
	border-bottom: 1px solid var(--bls-border);
	transition: border-color 0.2s var(--bls-ease), transform 0.2s var(--bls-ease), box-shadow 0.2s var(--bls-ease);
}

.bls-spec:nth-child(3n) {
	border-right: 0;
}

.bls-spec:nth-last-child(-n + 3) {
	border-bottom: 0;
}

.bls-spec:hover {
	transform: translateY(-2px);
	box-shadow: inset 3px 0 0 var(--bls-red);
	z-index: 1;
}

.bls-spec__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.1rem;
}

.bls-spec__num {
	font-family: var(--bls-mono);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	color: var(--bls-muted);
}

.bls-spec__icon {
	width: 28px;
	height: 28px;
	position: relative;
	opacity: 0.8;
}

.bls-spec__icon--label {
	border: 1.5px solid var(--bls-blue);
	border-radius: 2px;
}

.bls-spec__icon--barcode {
	background: repeating-linear-gradient(90deg, var(--bls-navy) 0 2px, transparent 2px 4px);
}

.bls-spec__icon--pack {
	border: 1.5px solid var(--bls-blue);
	transform: skewX(-8deg);
}

.bls-spec__icon--grid {
	background:
		linear-gradient(var(--bls-blue) 1px, transparent 1px) 0 0 / 9px 9px,
		linear-gradient(90deg, var(--bls-blue) 1px, transparent 1px) 0 0 / 9px 9px;
	border: 1px solid var(--bls-blue);
}

.bls-spec__icon--mark::before,
.bls-spec__icon--mark::after {
	content: "";
	position: absolute;
	background: var(--bls-red);
}

.bls-spec__icon--mark::before {
	width: 2px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.bls-spec__icon--mark::after {
	height: 2px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.bls-spec__icon--feed {
	border-top: 2px solid var(--bls-blue);
	border-bottom: 2px solid var(--bls-blue);
	background: linear-gradient(90deg, transparent 0 20%, var(--bls-red) 20% 35%, transparent 35%);
}

.bls-spec h3 {
	margin-bottom: 0.55rem;
}

.bls-spec p {
	margin: 0;
	color: var(--bls-muted);
	font-size: 0.95rem;
}

/* Industries */

.bls-industries {
	background:
		linear-gradient(180deg, rgba(18, 58, 90, 0.35), transparent 40%),
		var(--bls-navy);
	color: var(--bls-white);
	position: relative;
	overflow: hidden;
}

.bls-industries::before {
	content: "IDENTIFY";
	position: absolute;
	right: -0.15em;
	top: 0.2em;
	font-size: clamp(5rem, 14vw, 11rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.035);
	pointer-events: none;
	line-height: 1;
}

.bls-industry-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.bls-industry {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem 1rem;
	align-items: end;
	padding: 1.45rem 1.3rem;
	background: rgba(7, 26, 43, 0.55);
	min-height: 110px;
}

.bls-industry__index {
	font-family: var(--bls-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: var(--bls-red);
	grid-row: 1;
}

.bls-industry__name {
	grid-column: 1 / -1;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.bls-industry__rule {
	grid-column: 1 / -1;
	height: 1px;
	background: linear-gradient(90deg, var(--bls-red), transparent 70%);
	opacity: 0.7;
}

/* Process */

.bls-process {
	background: var(--bls-bg);
	position: relative;
}

.bls-feedpath {
	position: relative;
	height: 18px;
	margin: 0 0 1.75rem;
}

.bls-feedpath__line {
	display: block;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, var(--bls-border), var(--bls-blue), var(--bls-red), var(--bls-border));
	position: relative;
}

.bls-feedpath__line::before,
.bls-feedpath__line::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	border: 2px solid var(--bls-red);
	transform: translateY(-50%) rotate(45deg);
	background: var(--bls-bg);
}

.bls-feedpath__line::before {
	left: 0;
}

.bls-feedpath__line::after {
	right: 0;
}

.bls-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.bls-step {
	padding: 1.35rem 1.15rem;
	background: var(--bls-white);
	border: 1px solid var(--bls-border);
	border-top: 3px solid var(--bls-navy);
}

.bls-step__n {
	display: block;
	margin-bottom: 0.85rem;
	font-family: var(--bls-mono);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	color: var(--bls-red);
}

.bls-step h3 {
	margin-bottom: 0.5rem;
	font-size: 1.05rem;
}

.bls-step p {
	margin: 0;
	color: var(--bls-muted);
	font-size: 0.93rem;
}

/* Why */

.bls-why {
	background: var(--bls-white);
}

.bls-why__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.bls-why__intro p {
	color: var(--bls-muted);
	max-width: 34rem;
}

.bls-why__list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--bls-border);
}

.bls-why__item {
	display: grid;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--bls-border);
}

.bls-why__n {
	font-family: var(--bls-mono);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	color: var(--bls-red);
	padding-top: 0.25rem;
}

.bls-why__item h3 {
	margin-bottom: 0.35rem;
}

.bls-why__item p {
	margin: 0;
	color: var(--bls-muted);
}

/* About */

.bls-about {
	background: var(--bls-bg);
}

.bls-about__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: stretch;
}

.bls-about__copy p {
	color: var(--bls-muted);
	max-width: 38rem;
}

.bls-about__statement {
	display: grid;
	align-content: center;
	gap: 0.35rem;
	padding: clamp(1.75rem, 4vw, 2.75rem);
	background: var(--bls-navy);
	color: var(--bls-white);
	border-left: 4px solid var(--bls-red);
	position: relative;
	overflow: hidden;
}

.bls-about__statement::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.04) 0 2px,
		transparent 2px 10px
	);
	opacity: 0.35;
	mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

.bls-about__statement p {
	position: relative;
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* Contact */

.bls-contact {
	background:
		linear-gradient(180deg, var(--bls-navy) 0 62%, var(--bls-bg) 62% 100%);
	padding-bottom: clamp(4rem, 8vw, 6rem);
}

.bls-contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: start;
}

.bls-contact__info h2,
.bls-contact__lead {
	color: var(--bls-white);
}

.bls-contact__lead {
	max-width: 30rem;
	opacity: 0.82;
}

.bls-contact__card {
	margin-top: 1.75rem;
	padding: 1.35rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.88);
}

.bls-contact__card a {
	color: var(--bls-white);
	text-decoration: none;
}

.bls-contact__card a:hover {
	color: #ffd7db;
}

.bls-contact__name {
	margin: 0 0 0.65rem;
	font-weight: 700;
	color: var(--bls-white);
}

.bls-contact__address {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.75);
}

.bls-contact__panel {
	background: var(--bls-white);
	border: 1px solid var(--bls-border);
	box-shadow: var(--bls-shadow);
	padding: clamp(1.4rem, 3vw, 2rem);
	margin-top: 1.5rem;
}

.bls-contact__panel-label {
	margin: 0 0 1rem;
	font-family: var(--bls-mono);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bls-muted);
}

/* Form */

.bls-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.bls-form__notice {
	padding: 0.9rem 1rem;
	margin-bottom: 1.1rem;
	border: 1px solid var(--bls-border);
	font-size: 0.95rem;
}

.bls-form__notice--ok {
	background: #edf8f1;
	border-color: #b9dfc5;
	color: #1d5c34;
}

.bls-form__notice--err {
	background: #fdecef;
	border-color: #f2c1c7;
	color: #8f2430;
}

.bls-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.95rem;
}

.bls-field {
	display: grid;
	gap: 0.4rem;
}

.bls-field--full {
	grid-column: 1 / -1;
}

.bls-field__label {
	font-family: var(--bls-mono);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bls-muted);
}

.bls-field__label abbr {
	text-decoration: none;
	color: var(--bls-red);
}

.bls-field input,
.bls-field textarea {
	width: 100%;
	border: 1px solid var(--bls-border-strong);
	border-radius: var(--bls-radius);
	background: #fbfcfd;
	padding: 0.85rem 0.9rem;
	font: inherit;
	color: var(--bls-ink);
	transition: border-color 0.15s var(--bls-ease), box-shadow 0.15s var(--bls-ease), background 0.15s var(--bls-ease);
}

.bls-field input:focus,
.bls-field textarea:focus {
	outline: none;
	border-color: var(--bls-blue);
	background: var(--bls-white);
	box-shadow: 0 0 0 3px rgba(18, 58, 90, 0.12);
}

.bls-field textarea {
	resize: vertical;
	min-height: 130px;
}

.bls-consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 0.75rem;
	align-items: start;
	margin: 1.15rem 0 0.55rem;
	font-size: 0.86rem;
	color: var(--bls-muted);
	line-height: 1.45;
}

.bls-consent input {
	margin-top: 0.2rem;
	accent-color: var(--bls-red);
}

.bls-consent__links {
	margin: 0 0 1.25rem 1.7rem;
	font-size: 0.85rem;
}

.bls-form__submit {
	width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.bls-footer {
	background: var(--bls-navy);
	color: rgba(255, 255, 255, 0.78);
	padding: 0 0 1.5rem;
}

.bls-footer__rule {
	height: 3px;
	background: linear-gradient(90deg, var(--bls-red), transparent 40%, rgba(255, 255, 255, 0.1) 40%, transparent);
}

.bls-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
	padding: 2.5rem 0 1.75rem;
}

.bls-footer__company {
	margin: 0 0 0.35rem;
	color: var(--bls-white);
	font-weight: 700;
	font-size: 1.05rem;
}

.bls-footer__tag {
	margin: 0 0 0.9rem;
	font-family: var(--bls-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.bls-footer__address,
.bls-footer__contact p {
	margin: 0 0 0.55rem;
}

.bls-footer a {
	color: var(--bls-white);
	text-decoration: none;
}

.bls-footer a:hover {
	color: #ffd7db;
}

.bls-footer__links {
	display: grid;
	gap: 0.65rem;
	align-content: start;
}

.bls-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.bls-footer__bottom p {
	margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Pages / legal                                                              */
/* -------------------------------------------------------------------------- */

.bls-page {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--bls-bg);
}

.bls-page__header {
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--bls-border);
}

.bls-prose {
	background: var(--bls-white);
	border: 1px solid var(--bls-border);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	box-shadow: var(--bls-shadow-soft);
}

.bls-prose h2 {
	max-width: none;
	margin-top: 2rem;
	font-size: 1.35rem;
}

.bls-prose h3 {
	margin-top: 1.5rem;
}

.bls-prose p,
.bls-prose li {
	color: var(--bls-muted);
}

.bls-prose ul {
	padding-left: 1.2rem;
}

.bls-legal-banner {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	padding: 0.85rem 1rem;
	margin-bottom: 1.5rem;
	border-left: 3px solid var(--bls-red);
	background: var(--bls-bg);
	font-family: var(--bls-mono);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bls-blue);
}

/* -------------------------------------------------------------------------- */
/* Art direction pass — media bands, denser sections, premium form/footer     */
/* -------------------------------------------------------------------------- */

.bls-media {
	margin: 0 0 clamp(2rem, 4vw, 2.75rem);
	padding: 0;
}

.bls-media__frame {
	position: relative;
	width: min(100% - 2.5rem, var(--bls-max));
	margin-inline: auto;
}

.bls-media--production .bls-media__frame {
	width: 100%;
	max-width: none;
}

.bls-media__plate {
	position: relative;
	min-height: clamp(180px, 28vw, 280px);
	border: 1px solid var(--bls-border-strong);
	background:
		linear-gradient(135deg, #1a3348 0%, #0b2033 48%, #071a2b 100%);
	overflow: hidden;
}

.bls-media__plate::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 11px);
	opacity: 0.35;
	mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.bls-media__tick {
	position: absolute;
	width: 14px;
	height: 14px;
	border: 1.5px solid var(--bls-red);
}

.bls-media__tick--tl {
	top: -1px;
	left: -1px;
	border-right: 0;
	border-bottom: 0;
}

.bls-media__tick--br {
	right: -1px;
	bottom: -1px;
	border-left: 0;
	border-top: 0;
}

.bls-media--field {
	margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
	position: relative;
	z-index: 2;
}

.bls-media--field .bls-media__frame {
	width: min(100% - 2.5rem, 920px);
	margin-left: auto;
	margin-right: max(1.25rem, calc((100% - var(--bls-max)) / 2));
	transform: translateY(28%);
}

.bls-media--field .bls-media__plate {
	border-color: rgba(255, 255, 255, 0.16);
}

.bls-media--location {
	margin: 0 0 clamp(2rem, 4vw, 2.75rem);
}

.bls-media--location .bls-media__frame {
	width: 100%;
	max-width: none;
}

.bls-media__plate--photo {
	min-height: 0;
	padding: 0;
	background: #071a2b;
}

.bls-media__plate--photo::after {
	opacity: 0.18;
	mix-blend-mode: soft-light;
}

.bls-media__img {
	display: block;
	width: 100%;
	height: clamp(220px, 38vw, 420px);
	object-fit: cover;
	object-position: center 45%;
}

.bls-media--production .bls-media__img {
	height: clamp(200px, 34vw, 400px);
	object-position: center 42%;
}

.bls-media--field .bls-media__img {
	height: clamp(160px, 24vw, 280px);
	object-position: center 48%;
}

.bls-media--location .bls-media__tick,
.bls-media--production .bls-media__tick,
.bls-media--field .bls-media__tick {
	z-index: 3;
	border-color: rgba(255, 255, 255, 0.85);
}

.bls-caps .bls-section__head {
	margin-bottom: 1.5rem;
}

.bls-specboard {
	background: transparent;
	border: 0;
	gap: 1px;
	background: var(--bls-border);
}

.bls-spec {
	position: relative;
	padding: 1.65rem 1.4rem 1.7rem;
	border: 0;
	background: var(--bls-white);
}

.bls-spec:nth-child(odd) {
	background: #fbfcfd;
}

.bls-spec:nth-child(even) {
	background: var(--bls-white);
}

.bls-spec__num {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--bls-navy);
	letter-spacing: 0.08em;
}

.bls-spec__num::before {
	content: "";
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.45rem;
	background: var(--bls-red);
	vertical-align: 0.1em;
}

.bls-spec__icon {
	width: 34px;
	height: 34px;
	opacity: 1;
}

.bls-spec h3 {
	font-size: 1.22rem;
	margin-bottom: 0.65rem;
}

.bls-spec:hover {
	transform: translateY(-3px);
	box-shadow: inset 4px 0 0 var(--bls-red), 0 16px 28px rgba(7, 26, 43, 0.08);
}

.bls-spec__edge {
	position: absolute;
	right: 0.85rem;
	bottom: 0.75rem;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--bls-border-strong));
}

.bls-industries {
	position: relative;
	padding-top: clamp(5rem, 10vw, 7.5rem);
	overflow: visible;
}

.bls-industries::before {
	display: none;
}

.bls-industries__ghost {
	position: absolute;
	left: 50%;
	top: 0.35em;
	transform: translateX(-50%);
	z-index: 3;
	font-size: clamp(6rem, 16vw, 13rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 0.85;
	color: rgba(255, 255, 255, 0.08);
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.bls-industries__inner {
	position: relative;
	z-index: 4;
}

.bls-industry-grid {
	gap: 0;
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bls-industry {
	grid-template-columns: 3rem 1fr;
	gap: 0.35rem 1rem;
	padding: 1.35rem 0.35rem 1.35rem 0;
	min-height: 0;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	align-content: center;
}

.bls-industry__index {
	font-size: 0.8rem;
	align-self: start;
	padding-top: 0.35rem;
}

.bls-industry__name {
	grid-column: 2;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.bls-industry__note {
	grid-column: 2;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
}

.bls-industry__rule {
	grid-column: 1 / -1;
	margin-top: 0.35rem;
}

.bls-feedpath {
	height: 42px;
	margin: 0.25rem 0 2rem;
}

.bls-feedpath__stock {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 10px;
	transform: translateY(-50%);
	background: linear-gradient(180deg, #eef3f7, #d7e1ea 45%, #eef3f7);
	border-top: 1px solid rgba(18, 58, 90, 0.18);
	border-bottom: 1px solid rgba(18, 58, 90, 0.18);
	box-shadow: 0 6px 14px rgba(7, 26, 43, 0.08);
}

.bls-feedpath__line {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	transform: translateY(-50%);
	background: linear-gradient(90deg, var(--bls-navy), var(--bls-blue), var(--bls-red), var(--bls-blue), var(--bls-navy));
	z-index: 1;
}

.bls-feedpath__line::before,
.bls-feedpath__line::after {
	top: 50%;
	width: 12px;
	height: 12px;
	border-width: 2px;
	background: var(--bls-bg);
}

.bls-feedpath__notch {
	position: absolute;
	top: 50%;
	width: 18px;
	height: 18px;
	border: 2px solid var(--bls-navy);
	background: var(--bls-bg);
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: 2;
}

.bls-feedpath__notch--1 { left: 25%; }
.bls-feedpath__notch--2 { left: 50%; border-color: var(--bls-red); }
.bls-feedpath__notch--3 { left: 75%; }

.bls-feedpath__label {
	position: absolute;
	right: 0;
	top: -0.15rem;
	font-family: var(--bls-mono);
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	color: var(--bls-muted);
}

.bls-step {
	border-top-width: 4px;
	box-shadow: 0 10px 24px rgba(7, 26, 43, 0.04);
}

.bls-why {
	padding-block: clamp(3.25rem, 6vw, 4.75rem);
}

.bls-why__layout {
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: stretch;
	border-left: 3px solid var(--bls-navy);
	padding-left: clamp(1.25rem, 3vw, 2rem);
}

.bls-why__intro {
	position: relative;
}

.bls-why__oversized {
	position: absolute;
	left: -0.15em;
	top: -0.35em;
	font-size: clamp(4.5rem, 8vw, 7rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 1;
	color: rgba(7, 26, 43, 0.05);
	pointer-events: none;
}

.bls-why__item {
	padding: 1.05rem 0;
}

.bls-about {
	position: relative;
	overflow: hidden;
}

.bls-about__layout {
	position: relative;
	z-index: 1;
}

.bls-about__statement {
	min-height: 280px;
	border-left-width: 5px;
	box-shadow: 0 24px 48px rgba(7, 26, 43, 0.18);
}

.bls-about__texture,
.bls-about__statement .bls-about__texture {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 9px);
	opacity: 0.45;
	mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
	pointer-events: none;
}

.bls-about__statement p {
	position: relative;
	z-index: 1;
}

.bls-contact {
	background:
		linear-gradient(180deg, var(--bls-navy) 0 68%, var(--bls-bg) 68% 100%);
}

.bls-contact__panel {
	padding: clamp(1.6rem, 3.5vw, 2.35rem);
	border-top: 3px solid var(--bls-red);
	box-shadow: 0 28px 60px rgba(7, 26, 43, 0.22);
}

.bls-field input,
.bls-field textarea {
	min-height: 52px;
	padding: 0.95rem 1rem;
	background: #f7f9fb;
	border-color: #c8d2db;
}

.bls-field textarea {
	min-height: 148px;
}

.bls-field input:focus,
.bls-field textarea:focus {
	border-color: var(--bls-navy);
	box-shadow: 0 0 0 3px rgba(7, 26, 43, 0.12);
}

.bls-form__submit {
	min-height: 54px;
	margin-top: 0.25rem;
	letter-spacing: 0.04em;
}

.bls-consent {
	padding: 0.85rem 0.9rem;
	background: #f4f7f9;
	border: 1px solid var(--bls-border);
}

.bls-footer {
	position: relative;
	padding-top: 0.5rem;
}

.bls-footer__bars {
	position: absolute;
	right: 0;
	top: 3px;
	width: min(42%, 420px);
	height: 28px;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 7px, rgba(255, 255, 255, 0.12) 7px 12px, transparent 12px 18px);
	opacity: 0.35;
	mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
	pointer-events: none;
}

.bls-footer__logo {
	display: inline-block;
	margin-bottom: 0.85rem;
	text-decoration: none;
}

.bls-footer__logo img {
	display: block;
	max-height: 52px;
	width: auto;
	padding: 0.4rem 0.55rem;
	background: #fff;
}

.bls-footer__company {
	display: none;
}

.bls-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.bls-footer__micro {
	font-family: var(--bls-mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.35);
}

.bls-footer__credit {
	margin: 0;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.42);
}

.bls-footer__credit a {
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.bls-footer__credit a:hover {
	color: #ffd7db;
	border-bottom-color: rgba(255, 215, 219, 0.55);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.bls-specboard {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bls-spec:nth-child(3n) {
		border-right: 1px solid var(--bls-border);
	}

	.bls-spec:nth-child(2n) {
		border-right: 0;
	}

	.bls-spec:nth-last-child(-n + 3) {
		border-bottom: 1px solid var(--bls-border);
	}

	.bls-spec:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

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

@media (max-width: 1024px) {
	.bls-hero__layout,
	.bls-why__layout,
	.bls-about__layout,
	.bls-contact__layout,
	.bls-footer__grid {
		grid-template-columns: 1fr;
	}

	.bls-header__phone {
		display: none;
	}

	.bls-stage {
		transform: none;
	}

	.bls-industry-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bls-media--field .bls-media__frame {
		transform: none;
		margin: 0 auto 1.5rem;
		width: min(100% - 1.5rem, var(--bls-max));
	}

	.bls-media__img {
		height: clamp(200px, 48vw, 320px);
	}

	.bls-contact {
		background: linear-gradient(180deg, var(--bls-navy) 0 52%, var(--bls-bg) 52% 100%);
	}

	.bls-contact__panel {
		margin-top: 0;
	}

	.bls-why__layout {
		border-left-width: 3px;
	}
}

@media (max-width: 860px) {
	.bls-menu-toggle {
		display: inline-grid;
		place-items: center;
	}

	.bls-nav {
		position: fixed;
		inset: var(--bls-header) 0 auto 0;
		background: var(--bls-white);
		border-bottom: 1px solid var(--bls-border);
		padding: 1rem 1.25rem 1.25rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s var(--bls-ease), opacity 0.25s var(--bls-ease);
		box-shadow: var(--bls-shadow-soft);
	}

	body.bls-nav-open .bls-nav {
		transform: none;
		opacity: 1;
		pointer-events: auto;
	}

	.bls-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.bls-nav__list a {
		display: block;
		padding: 0.85rem 0;
		border-bottom: 1px solid var(--bls-border);
	}

	.bls-header__inner {
		grid-template-columns: 1fr auto;
	}

	.bls-header__cta {
		display: none;
	}

	.bls-nav__mobile-actions {
		display: grid;
		gap: 0.75rem;
		margin-top: 1.1rem;
	}

	.bls-nav__mobile-phone {
		font-family: var(--bls-mono);
		font-size: 0.9rem;
		letter-spacing: 0.04em;
		color: var(--bls-navy);
		text-decoration: none;
	}

	.bls-strip__row {
		grid-template-columns: 1fr 1fr;
	}

	.bls-strip__item {
		border-bottom: 1px solid var(--bls-border);
	}

	.bls-strip__item:nth-child(2n) {
		border-right: 0;
	}
}

@media (max-width: 640px) {
	.bls-container {
		width: min(100% - 1.5rem, var(--bls-max));
	}

	.bls-specboard,
	.bls-industry-grid,
	.bls-steps,
	.bls-form__grid,
	.bls-strip__row {
		grid-template-columns: 1fr;
	}

	.bls-spec,
	.bls-strip__item {
		border-right: 0 !important;
	}

	.bls-spec:not(:last-child),
	.bls-strip__item:not(:last-child) {
		border-bottom: 1px solid var(--bls-border);
	}

	.bls-stage__plate {
		padding: 1rem 0.65rem 0.55rem;
	}

	.bls-stage__art {
		min-height: 280px;
	}

	.bls-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.bls-btn {
		width: 100%;
	}

	.bls-footer__grid {
		gap: 1.5rem;
	}
}

@media (max-width: 430px) {
	:root {
		--bls-header: 78px;
	}

	.bls-brand__img {
		max-height: 52px;
	}

	.bls-brand__name {
		display: none;
	}

	.bls-hero__title {
		max-width: none;
	}

	.bls-stage__chip {
		font-size: 0.58rem;
	}

	.bls-industry-grid {
		grid-template-columns: 1fr;
	}

	.bls-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
