/**
 * LIH Site front end.
 * Light paper, deep navy ink, signal blue. Structure is drawn with hairlines,
 * data and labels are set in mono. Dark is used only for the closing band and
 * the footer, so the contrast lands where it earns attention.
 */

html {
	scroll-padding-top: 96px;
}

:root {
	--lih-accent: #1B4DFF;
	--lih-ink: #0A1226;
	--lih-panel: #F1F5FC;

	--lih-bg: #FFFFFF;
	--lih-text: #16203A;
	--lih-muted: #4E5C77;
	--lih-dim: #74829B;
	--lih-line: #E1E8F4;
	--lih-line-soft: #EDF2FA;
	--lih-tint: rgba(27, 77, 255, 0.06);
	--lih-tint-strong: rgba(27, 77, 255, 0.12);
	--lih-shadow: 0 1px 2px rgba(10, 18, 38, 0.04), 0 12px 28px rgba(10, 18, 38, 0.06);
	--lih-shadow-lift: 0 2px 4px rgba(10, 18, 38, 0.06), 0 22px 44px rgba(10, 18, 38, 0.10);

	--lih-on-dark: #EEF3FD;
	--lih-on-dark-muted: #9BABC9;
	--lih-on-dark-line: rgba(255, 255, 255, 0.14);

	--lih-ok: #0E7A5F;
	--lih-warn: #9A5B00;

	--lih-sans: Inter, "Helvetica Neue", Helvetica, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	--lih-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
	--lih-display: var(--lih-sans);

	--lih-gut: 24px;
	--lih-max: 1200px;
	--lih-radius: 10px;
	--lih-radius-sm: 6px;
}

body.lih-site {
	margin: 0;
	background: var(--lih-bg, #FFFFFF);
	color: var(--lih-text);
	font-family: var(--lih-sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.lih-site * {
	box-sizing: border-box;
}

body.lih-site img {
	max-width: 100%;
	height: auto;
	display: block;
}

body.lih-site a {
	color: var(--lih-accent);
	text-decoration: none;
}

body.lih-site a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.lih-site a:focus-visible,
body.lih-site button:focus-visible,
body.lih-site input:focus-visible,
body.lih-site select:focus-visible,
body.lih-site textarea:focus-visible,
body.lih-site summary:focus-visible {
	outline: 2px solid var(--lih-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

:where(body.lih-site) :where(h1, h2, h3, h4) {
	font-family: var(--lih-display);
	color: var(--lih-ink);
	font-weight: 700;
	letter-spacing: -0.022em;
	line-height: 1.12;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

body.lih-site p {
	margin: 0 0 1.1em;
}

body.lih-site p:last-child {
	margin-bottom: 0;
}

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

.lih-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--lih-accent);
	color: #FFFFFF !important;
	padding: 12px 18px;
	font-weight: 600;
}

.lih-skip:focus {
	left: 12px;
	top: 12px;
}

.lih-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--lih-bg, #FFFFFF);
	color: var(--lih-text, #16203A);
}

/* Belt and braces. The plugin prints the whole document, so if a theme or a
   stored value ever fights the body rules above, the shell still paints. */
:where(.lih-shell) :where(h1, h2, h3, h4) {
	color: var(--lih-ink, #0A1226);
}

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

.lih-main {
	flex: 1 0 auto;
}

.lih-wrap {
	width: 100%;
	max-width: var(--lih-max);
	margin: 0 auto;
	padding-left: var(--lih-gut);
	padding-right: var(--lih-gut);
}

.lih-eyebrow {
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lih-accent);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.lih-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: currentColor;
	flex: none;
}

.lih-lead {
	font-size: 19px;
	color: var(--lih-muted);
	line-height: 1.6;
}

/* ---------------------------------------------------------------- header */

.lih-head {
	position: sticky;
	top: 0;
	z-index: 90;
	background: #FFFFFF;
	border-bottom: 1px solid var(--lih-line);
	box-shadow: 0 1px 0 rgba(10, 18, 38, 0.02);
}

body.admin-bar .lih-head {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .lih-head {
		top: 46px;
	}
}

.lih-head__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 72px;
}

.lih-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-right: auto;
	color: var(--lih-ink) !important;
	text-decoration: none !important;
}

.lih-mark {
	display: block;
	flex: none;
}

.lih-brand .lih-mark {
	transition: transform 0.2s ease;
}

.lih-brand:hover .lih-mark {
	transform: translateY(-1px);
}

.lih-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.lih-brand__name {
	font-weight: 660;
	font-size: 15.5px;
	letter-spacing: -0.018em;
}

.lih-brand__sub {
	font-family: var(--lih-mono);
	font-size: 9.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

.lih-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lih-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lih-nav__link {
	display: block;
	padding: 9px 14px;
	border-radius: var(--lih-radius-sm);
	font-size: 15px;
	font-weight: 520;
	color: var(--lih-muted) !important;
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease;
}

.lih-nav__link:hover {
	color: var(--lih-ink) !important;
	background: var(--lih-line-soft);
}

.lih-nav__link.is-current {
	color: var(--lih-ink) !important;
	background: var(--lih-tint);
}

.lih-nav__cta {
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: var(--lih-radius-sm);
	background: var(--lih-accent);
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(10, 18, 38, 0.10);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lih-nav__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px var(--lih-tint-strong);
}

.lih-burger {
	display: none;
	width: 42px;
	height: 42px;
	background: none;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius-sm);
	cursor: pointer;
	position: relative;
}

.lih-burger__bars,
.lih-burger__bars::before,
.lih-burger__bars::after {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--lih-ink);
	transform: translateX(-50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lih-burger__bars {
	top: 50%;
	margin-top: -1px;
}

.lih-burger__bars::before,
.lih-burger__bars::after {
	content: "";
	left: 0;
	transform: none;
}

.lih-burger__bars::before {
	top: -6px;
}

.lih-burger__bars::after {
	top: 6px;
}

.lih-burger[aria-expanded="true"] .lih-burger__bars {
	background: transparent;
}

.lih-burger[aria-expanded="true"] .lih-burger__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.lih-burger[aria-expanded="true"] .lih-burger__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------- buttons */

.lih-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: var(--lih-radius-sm);
	font-family: var(--lih-sans);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.lih-btn:hover {
	transform: translateY(-1px);
}

.lih-btn--accent {
	background: var(--lih-accent);
	color: #FFFFFF !important;
	box-shadow: 0 1px 2px rgba(10, 18, 38, 0.12);
}

.lih-btn--accent:hover {
	box-shadow: 0 10px 26px var(--lih-tint-strong);
}

.lih-btn--ghost {
	background: #FFFFFF;
	color: var(--lih-ink) !important;
	border-color: var(--lih-line);
	box-shadow: var(--lih-shadow);
}

.lih-btn--ghost:hover {
	border-color: var(--lih-accent);
	color: var(--lih-accent) !important;
}

.lih-btn--light {
	background: #FFFFFF;
	color: var(--lih-ink) !important;
}

.lih-btn--light:hover {
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.lih-btn--small {
	padding: 9px 16px;
	font-size: 14px;
}

.lih-btn svg,
.lih-textlink svg {
	flex: none;
}

.lih-textlink {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lih-accent) !important;
	text-decoration: none !important;
}

.lih-textlink svg {
	transition: transform 0.15s ease;
}

.lih-textlink:hover svg {
	transform: translateX(3px);
}

.lih-textlink--muted {
	color: var(--lih-dim) !important;
	font-weight: 500;
}

.lih-textlink--muted:hover {
	color: var(--lih-accent) !important;
}

.lih-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 100px;
	border: 1px solid var(--lih-line);
	background: var(--lih-panel);
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lih-muted);
	white-space: nowrap;
}

.lih-badge::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.lih-badge--held {
	color: var(--lih-accent);
	background: var(--lih-tint);
	border-color: var(--lih-tint-strong);
}

.lih-badge--exited {
	color: var(--lih-ok);
	background: rgba(14, 122, 95, 0.08);
	border-color: rgba(14, 122, 95, 0.22);
}

.lih-badge--advisory {
	color: var(--lih-warn);
	background: rgba(154, 91, 0, 0.08);
	border-color: rgba(154, 91, 0, 0.20);
}

.lih-badge--written {
	color: var(--lih-dim);
}

/* -------------------------------------------------------------- sections */

.lih-section {
	padding: 96px 0;
	border-top: 1px solid var(--lih-line-soft);
}

.lih-section:first-child {
	border-top: 0;
}

.lih-section--tight {
	padding: 64px 0;
}

.lih-section--panel {
	background: var(--lih-panel);
	border-top: 1px solid var(--lih-line);
	border-bottom: 1px solid var(--lih-line);
}

.lih-section {
	background: var(--lih-bg, #FFFFFF);
}

.lih-section--faq {
	background:
		radial-gradient(60% 100% at 50% 0%, var(--lih-tint), transparent 70%),
		var(--lih-bg, #FFFFFF);
}

.lih-section__more {
	margin-top: 40px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.lih-sechead {
	max-width: 720px;
	margin-bottom: 48px;
}

.lih-sechead__title {
	font-size: clamp(28px, 3.4vw, 40px);
	margin: 0 0 14px;
}

.lih-sechead__intro {
	font-size: 18px;
	color: var(--lih-muted);
	margin: 0;
}

/* ------------------------------------------------------------------ hero */

.lih-hero {
	position: relative;
	padding: 92px 0 0;
	overflow: hidden;
	background:
		radial-gradient(70% 120% at 78% -10%, var(--lih-tint), transparent 62%),
		linear-gradient(180deg, #FFFFFF 0%, var(--lih-panel, #F1F5FC) 100%);
	border-bottom: 1px solid var(--lih-line);
}

.lih-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--lih-line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--lih-line-soft) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 78%);
	mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 78%);
	pointer-events: none;
}

.lih-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 64px;
	align-items: start;
	padding-bottom: 72px;
}

.lih-hero__title {
	font-size: clamp(34px, 4.3vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.03em;
	margin: 0 0 22px;
	max-width: 20ch;
}

.lih-hero__title .lih-accent {
	color: var(--lih-accent);
}

.lih-hero__lead {
	font-size: 19px;
	line-height: 1.6;
	color: var(--lih-muted);
	max-width: 56ch;
	margin: 0 0 34px;
}

.lih-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.lih-hero__sheet {
	position: relative;
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
	box-shadow: var(--lih-shadow);
}

.lih-hero__sheet .lih-sheet,
.lih-card-facts .lih-sheet,
.lih-side-card .lih-sheet {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: none;
}

.lih-sheet {
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	box-shadow: var(--lih-shadow);
	overflow: hidden;
}

.lih-sheet__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 20px;
	border-bottom: 1px solid var(--lih-line);
	background: var(--lih-panel);
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

.lih-sheet__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--lih-line-soft);
}

.lih-sheet__row:last-child {
	border-bottom: 0;
}

.lih-sheet__row span:first-child {
	font-size: 14px;
	color: var(--lih-muted);
}

.lih-sheet__row span:last-child {
	font-family: var(--lih-mono);
	font-size: 21px;
	font-weight: 600;
	color: var(--lih-ink);
	letter-spacing: -0.02em;
	text-align: right;
}

/* ------------------------------------------------------------------ tape */

.lih-tape {
	position: relative;
	display: flex;
	align-items: center;
	border-top: 1px solid var(--lih-line);
	background: #FFFFFF;
	overflow: hidden;
}

.lih-tape__label {
	flex: none;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: var(--lih-ink);
	color: #FFFFFF;
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	z-index: 2;
}

.lih-tape__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--lih-accent);
	animation: lih-pulse 2.6s ease-out infinite;
}

@keyframes lih-pulse {
	0% { box-shadow: 0 0 0 0 rgba(27, 77, 255, 0.55); }
	70% { box-shadow: 0 0 0 8px rgba(27, 77, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(27, 77, 255, 0); }
}

.lih-tape__track {
	display: flex;
	overflow: hidden;
	flex: 1 1 auto;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 3%, #000 94%, transparent);
}

.lih-tape__run {
	display: flex;
	flex: none;
	align-items: center;
	white-space: nowrap;
	animation: lih-marquee var(--lih-tape-speed, 46s) linear infinite;
}

.lih-tape:hover .lih-tape__run,
.lih-tape:focus-within .lih-tape__run {
	animation-play-state: paused;
}

@keyframes lih-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}

.lih-tape__item {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	padding: 12px 26px;
	font-size: 14px;
	color: var(--lih-muted) !important;
	text-decoration: none !important;
	border-right: 1px solid var(--lih-line-soft);
}

.lih-tape__item:hover .lih-tape__hl {
	color: var(--lih-accent);
}

.lih-tape__src {
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

.lih-tape__hl {
	color: var(--lih-ink);
	font-weight: 500;
	transition: color 0.15s ease;
}

/* -------------------------------------------------------------- masthead */

.lih-masthead {
	padding: 78px 0 54px;
	background:
		radial-gradient(60% 130% at 12% 0%, var(--lih-tint), transparent 60%),
		var(--lih-bg, #FFFFFF);
	border-bottom: 1px solid var(--lih-line);
}

.lih-masthead--compact {
	padding: 52px 0 40px;
}

.lih-masthead__title {
	font-size: clamp(30px, 3.8vw, 46px);
	margin: 0 0 16px;
	max-width: 18ch;
}

.lih-masthead__intro {
	font-size: 19px;
	color: var(--lih-muted);
	max-width: 62ch;
	margin: 0;
}

/* ------------------------------------------------------------------ trio */

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

.lih-trio__item {
	padding: 30px;
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	box-shadow: var(--lih-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lih-trio__item:hover {
	transform: translateY(-3px);
	border-color: var(--lih-tint-strong);
	box-shadow: var(--lih-shadow-lift);
}

.lih-trio__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: var(--lih-radius-sm);
	background: var(--lih-tint);
	color: var(--lih-accent);
	margin-bottom: 20px;
}

.lih-trio__title {
	font-size: 19px;
	margin: 0 0 10px;
}

.lih-trio__text {
	margin: 0;
	font-size: 15.5px;
	color: var(--lih-muted);
}

/* ---------------------------------------------------------------- ledger */

.lih-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.lih-chip {
	padding: 7px 14px;
	border: 1px solid var(--lih-line);
	background: #FFFFFF;
	border-radius: 100px;
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lih-muted);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lih-chip:hover {
	border-color: var(--lih-accent);
	color: var(--lih-accent);
}

.lih-chip.is-on {
	background: var(--lih-ink);
	border-color: var(--lih-ink);
	color: #FFFFFF;
}

.lih-ledger {
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
	box-shadow: var(--lih-shadow);
}

/* The row is a list item wrapping one anchor, so the anchor carries the grid. */
.lih-ledger__head,
.lih-ledger__link {
	display: grid;
	grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 0.8fr);
	gap: 20px;
	align-items: center;
	padding: 0 26px;
}

.lih-ledger__head {
	padding-top: 13px;
	padding-bottom: 13px;
	background: var(--lih-panel);
	border-bottom: 1px solid var(--lih-line);
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

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

.lih-ledger__row {
	position: relative;
	border-bottom: 1px solid var(--lih-line-soft);
}

.lih-ledger__row:last-child {
	border-bottom: 0;
}

.lih-ledger__row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--lih-accent);
	transform: scaleY(0);
	transform-origin: center top;
	transition: transform 0.22s ease;
	z-index: 1;
}

.lih-ledger__row:hover::before,
.lih-ledger__row:focus-within::before {
	transform: scaleY(1);
}

.lih-ledger__link {
	padding-top: 20px;
	padding-bottom: 20px;
	color: inherit !important;
	text-decoration: none !important;
	transition: background 0.15s ease;
}

.lih-ledger__link:hover {
	background: var(--lih-panel);
	text-decoration: none !important;
}

.lih-ledger__c {
	font-family: var(--lih-mono);
	font-size: 12.5px;
	color: var(--lih-muted);
	min-width: 0;
	overflow-wrap: anywhere;
}

.lih-ledger__c--co {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-family: var(--lih-sans);
}

.lih-ledger__c--status {
	justify-self: end;
	text-align: right;
}

.lih-ledger__co {
	display: block;
	font-family: var(--lih-sans);
	font-size: 17px;
	font-weight: 640;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--lih-ink);
	transition: color 0.15s ease;
}

.lih-ledger__link:hover .lih-ledger__co {
	color: var(--lih-accent);
}

.lih-ledger__one {
	display: block;
	font-family: var(--lih-sans);
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--lih-dim);
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lih-ledger__mob {
	display: none;
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

/* ----------------------------------------------------------------- cards */

.lih-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}

.lih-card {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
	box-shadow: var(--lih-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lih-card:hover {
	transform: translateY(-3px);
	border-color: var(--lih-tint-strong);
	box-shadow: var(--lih-shadow-lift);
}

.lih-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--lih-panel);
	border-bottom: 1px solid var(--lih-line);
	overflow: hidden;
}

.lih-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.lih-card:hover .lih-card__img {
	transform: scale(1.03);
}

.lih-card__initial {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--lih-mono);
	font-size: 34px;
	font-weight: 600;
	color: var(--lih-accent);
	background:
		radial-gradient(70% 100% at 30% 0%, var(--lih-tint-strong), transparent 70%),
		var(--lih-panel);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.lih-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.lih-card__meta {
	margin: 0 0 12px;
}

.lih-card__title {
	font-size: 20px;
	margin: 0 0 10px;
}

.lih-card__title a {
	color: var(--lih-ink) !important;
	text-decoration: none !important;
}

.lih-card__title a:hover {
	color: var(--lih-accent) !important;
}

.lih-card__text {
	font-size: 15px;
	color: var(--lih-muted);
	margin: 0 0 20px;
}

.lih-card__cta {
	margin: 14px 0 0;
}

.lih-card__links {
	margin: auto 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid var(--lih-line-soft);
}

.lih-card__act {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border-radius: var(--lih-radius-sm);
	background: var(--lih-tint);
	border: 1px solid var(--lih-tint-strong);
	color: var(--lih-accent) !important;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease;
}

.lih-card__act:hover {
	background: var(--lih-accent);
	color: #FFFFFF !important;
	border-color: var(--lih-accent);
}

/* ------------------------------------------------------------------ news */

.lih-news {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 20px;
}

.lih-news__item {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 20px;
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	box-shadow: var(--lih-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lih-news__item:hover {
	transform: translateY(-2px);
	border-color: var(--lih-tint-strong);
	box-shadow: var(--lih-shadow-lift);
}

.lih-news__item--plain {
	grid-template-columns: minmax(0, 1fr);
}

.lih-news__thumb {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--lih-radius-sm);
	overflow: hidden;
	background: var(--lih-panel);
	border: 1px solid var(--lih-line);
}

.lih-news__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.lih-news__item:hover .lih-news__img {
	transform: scale(1.03);
}

.lih-news__fallback {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background:
		radial-gradient(80% 100% at 20% 0%, var(--lih-tint-strong), transparent 70%),
		var(--lih-panel);
	color: var(--lih-accent);
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	padding: 12px;
	line-height: 1.5;
}

.lih-news__body {
	min-width: 0;
}

.lih-news__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin-bottom: 10px;
}

.lih-news__src {
	color: var(--lih-accent);
}

.lih-news__title {
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 10px;
}

.lih-news__title a {
	color: var(--lih-ink) !important;
	text-decoration: none !important;
}

.lih-news__title a:hover {
	color: var(--lih-accent) !important;
}

.lih-news__sum {
	font-size: 15px;
	color: var(--lih-muted);
	margin: 0 0 12px;
}

.lih-news__origin {
	margin: 0;
}

.lih-news--compact {
	gap: 0;
}

.lih-news--compact .lih-news__item {
	display: block;
	padding: 16px 0;
	border: 0;
	border-bottom: 1px solid var(--lih-line-soft);
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.lih-news--compact .lih-news__item:hover {
	transform: none;
	box-shadow: none;
}

.lih-news--compact .lih-news__item:last-child {
	border-bottom: 0;
}

.lih-news--compact .lih-news__title {
	font-size: 16px;
	margin: 0;
}

.lih-empty {
	padding: 28px;
	border: 1px dashed var(--lih-line);
	border-radius: var(--lih-radius);
	color: var(--lih-dim);
	background: var(--lih-panel);
	margin: 0;
}

/* ----------------------------------------------------------------- pager */

.lih-pager {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 40px;
}

.lih-pager .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius-sm);
	background: #FFFFFF;
	font-family: var(--lih-mono);
	font-size: 13px;
	color: var(--lih-muted) !important;
	text-decoration: none !important;
}

.lih-pager .page-numbers:hover {
	border-color: var(--lih-accent);
	color: var(--lih-accent) !important;
}

.lih-pager .page-numbers.current {
	background: var(--lih-ink);
	border-color: var(--lih-ink);
	color: #FFFFFF !important;
}

/* -------------------------------------------------- split, steps, prose */

.lih-section--split .lih-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.lih-split__title {
	font-size: clamp(28px, 3.2vw, 38px);
	margin: 0 0 18px;
}

.lih-split__text {
	font-size: 17px;
	color: var(--lih-muted);
}

.lih-split__aside {
	position: relative;
}

.lih-steps {
	display: grid;
	gap: 1px;
	background: var(--lih-line);
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
}

.lih-steps--wide {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lih-steps__item {
	background: #FFFFFF;
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lih-steps__num {
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--lih-accent);
}

.lih-steps__title {
	font-size: 17px;
	margin: 0;
}

.lih-steps__text {
	font-size: 15px;
	color: var(--lih-muted);
	margin: 0;
}

.lih-prose {
	font-size: 17.5px;
	color: var(--lih-muted);
	max-width: 68ch;
}

.lih-prose h2,
.lih-prose h3 {
	color: var(--lih-ink);
	margin-top: 1.6em;
}

.lih-prose__note {
	margin-top: 28px;
	padding: 18px 22px;
	border-left: 3px solid var(--lih-accent);
	background: var(--lih-panel);
	border-radius: 0 var(--lih-radius-sm) var(--lih-radius-sm) 0;
	font-size: 15px;
	color: var(--lih-muted);
}

.lih-facts {
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	box-shadow: var(--lih-shadow);
	overflow: hidden;
}

.lih-tally {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--lih-line);
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
	margin-bottom: 40px;
}

.lih-tally__item {
	background: #FFFFFF;
	padding: 24px 26px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

.lih-tally__item span,
.lih-tally__item strong {
	font-family: var(--lih-mono);
	font-size: 32px;
	font-weight: 600;
	color: var(--lih-ink);
	letter-spacing: -0.03em;
	line-height: 1;
	text-transform: none;
}

.lih-side {
	display: grid;
	gap: 18px;
	align-content: start;
}

.lih-side > div,
.lih-side > section {
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	padding: 24px;
	box-shadow: var(--lih-shadow);
}

.lih-side h3 {
	font-size: 15px;
	margin: 0 0 10px;
}

.lih-side p,
.lih-side li {
	font-size: 14.5px;
	color: var(--lih-muted);
}

.lih-side ul {
	margin: 0;
	padding-left: 18px;
}

/* ------------------------------------------------------------------- faq */

.lih-faq {
	max-width: 860px;
	margin: 0 auto;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	background: #FFFFFF;
	overflow: hidden;
	box-shadow: var(--lih-shadow);
}

.lih-faq__item {
	border-bottom: 1px solid var(--lih-line-soft);
}

.lih-faq__item:last-child {
	border-bottom: 0;
}

.lih-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	font-weight: 600;
	color: var(--lih-ink);
}

.lih-faq__q::-webkit-details-marker {
	display: none;
}

.lih-faq__q:hover {
	background: var(--lih-panel);
}

.lih-faq__mark {
	position: relative;
	flex: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--lih-tint);
}

.lih-faq__mark::before,
.lih-faq__mark::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 1.5px;
	background: var(--lih-accent);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lih-faq__mark::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.lih-faq__item[open] .lih-faq__mark::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.lih-faq__a {
	padding: 0 26px 24px;
	margin: 0;
	font-size: 16px;
	color: var(--lih-muted);
	max-width: 76ch;
}

/* ------------------------------------------------------------- dark band */

.lih-band {
	background:
		radial-gradient(80% 140% at 85% 0%, rgba(27, 77, 255, 0.34), transparent 60%),
		var(--lih-ink);
	color: var(--lih-on-dark);
	padding: 82px 0;
	position: relative;
	overflow: hidden;
}

.lih-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(70% 100% at 20% 50%, #000, transparent 75%);
	mask-image: radial-gradient(70% 100% at 20% 50%, #000, transparent 75%);
	pointer-events: none;
}

.lih-band__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
}

.lih-band__title {
	color: #FFFFFF;
	font-size: clamp(28px, 3.4vw, 40px);
	margin: 0 0 12px;
	max-width: 18ch;
}

.lih-band__text {
	color: var(--lih-on-dark-muted);
	font-size: 17px;
	margin: 0;
	max-width: 52ch;
}

.lih-band .lih-btn--ghost {
	background: transparent;
	border-color: var(--lih-on-dark-line);
	color: #FFFFFF !important;
	box-shadow: none;
}

.lih-band .lih-btn--ghost:hover {
	border-color: #FFFFFF;
	color: #FFFFFF !important;
}

/* Anything sitting on ink states its own colour, at a specificity no base
   rule can beat. */
.lih-band .lih-band__title,
.lih-position__cta h3,
.lih-side-card--accent h3,
.lih-foot .lih-foot__title,
.lih-foot .lih-foot__name {
	color: #FFFFFF;
}

/* -------------------------------------------------------------- position */

.lih-position {
	padding: 48px 0 96px;
}

.lih-crumb {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin-bottom: 28px;
	list-style: none;
	padding: 0;
}

.lih-crumb a {
	color: var(--lih-dim) !important;
	text-decoration: none !important;
}

.lih-crumb a:hover {
	color: var(--lih-accent) !important;
}

.lih-position__head {
	margin-bottom: 44px;
}

.lih-position__title {
	max-width: 24ch;
}

.lih-position__one {
	max-width: 62ch;
}

/* The deal facts read across the full width under the title, which fills the
   head and keeps the aside short enough not to strand the column beside it. */
.lih-position__strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	margin: 36px 0 0;
	background: var(--lih-line);
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
}

.lih-position__fact {
	background: #FFFFFF;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lih-position__fact dt {
	font-family: var(--lih-mono);
	font-size: 9.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin: 0;
}

.lih-position__fact dd {
	margin: 0;
	font-family: var(--lih-mono);
	font-size: 14px;
	font-weight: 600;
	color: var(--lih-ink);
	line-height: 1.35;
	text-align: left;
}

.lih-position__title-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.lih-position__title {
	font-size: clamp(32px, 4.2vw, 48px);
	margin: 0;
}

.lih-position__one {
	font-size: 20px;
	color: var(--lih-muted);
	margin: 0;
}

.lih-position__media {
	border-radius: var(--lih-radius);
	overflow: hidden;
	border: 1px solid var(--lih-line);
	background: var(--lih-panel);
	margin-bottom: 40px;
	box-shadow: var(--lih-shadow);
}

.lih-position__img {
	width: 100%;
	height: auto;
}

.lih-position__body {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.9fr);
	gap: 56px;
	align-items: start;
}

.lih-position__main {
	font-size: 17.5px;
	color: var(--lih-muted);
	min-width: 0;
}

.lih-position__main .lih-prose {
	max-width: none;
}

.lih-position__main h2,
.lih-position__main h3 {
	color: var(--lih-ink);
}

.lih-position__aside {
	display: grid;
	gap: 18px;
	align-content: start;
	position: sticky;
	top: 96px;
}

.lih-position__cta {
	background:
		radial-gradient(90% 140% at 100% 0%, rgba(27, 77, 255, 0.30), transparent 62%),
		var(--lih-ink);
	color: var(--lih-on-dark);
	border-radius: var(--lih-radius);
	padding: 26px;
}

.lih-position__cta h3 {
	color: #FFFFFF;
	font-size: 18px;
	margin: 0 0 8px;
}

.lih-position__cta p {
	color: var(--lih-on-dark-muted);
	font-size: 14.5px;
	margin: 0 0 18px;
}

.lih-position__cta {
	position: relative;
	overflow: hidden;
}

.lih-position__cta::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: var(--lih-accent);
}

/* -------------------------------------------------------------- interest */

.lih-interest {
	scroll-margin-top: 90px;
	border-top: 1px solid var(--lih-line);
	background:
		radial-gradient(60% 120% at 80% 0%, var(--lih-tint), transparent 62%),
		var(--lih-panel);
	padding: 76px 0;
}

.lih-interest__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 56px;
	align-items: start;
}

.lih-interest__intro h2 {
	font-size: clamp(26px, 3vw, 34px);
	margin: 0 0 14px;
}

.lih-interest__intro p {
	color: var(--lih-muted);
	font-size: 16.5px;
}

.lih-interest__list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.lih-interest__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 15px;
	color: var(--lih-muted);
}

.lih-interest__list svg {
	flex: none;
	margin-top: 4px;
	color: var(--lih-accent);
}

.lih-interest__co {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lih-accent);
	background: var(--lih-tint);
	border: 1px solid var(--lih-tint-strong);
	border-radius: 100px;
	padding: 6px 14px;
	margin-bottom: 16px;
}

/* --------------------------------------------------------------- article */

.lih-article {
	padding: 0 0 96px;
}

.lih-article__head {
	padding: 48px 0 40px;
	background:
		radial-gradient(60% 130% at 15% 0%, var(--lih-tint), transparent 60%),
		var(--lih-bg, #FFFFFF);
	border-bottom: 1px solid var(--lih-line);
	margin-bottom: 40px;
}

.lih-article__head-inner {
	max-width: 760px;
}

.lih-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	font-family: var(--lih-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin-bottom: 16px;
}

.lih-article__title {
	font-size: clamp(30px, 4vw, 46px);
	margin: 0;
}

.lih-article__media {
	max-width: min(880px, calc(100% - 2 * var(--lih-gut)));
	margin: 0 auto 36px;
	border-radius: var(--lih-radius);
	overflow: hidden;
	border: 1px solid var(--lih-line);
	box-shadow: var(--lih-shadow);
	background: var(--lih-panel);
}

.lih-article__media img {
	width: 100%;
	height: auto;
}

.lih-article__body {
	max-width: 720px;
	font-size: 18px;
	color: var(--lih-text);
}

.lih-article__body h2,
.lih-article__body h3 {
	margin-top: 1.6em;
}

.lih-article__body img {
	border-radius: var(--lih-radius-sm);
	margin: 1.5em 0;
}

.lih-article__body blockquote {
	margin: 1.6em 0;
	padding-left: 22px;
	border-left: 3px solid var(--lih-accent);
	color: var(--lih-muted);
}

.lih-source {
	max-width: 720px;
	margin: 40px 0 0;
	padding: 24px 26px;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	background: var(--lih-panel);
}

.lih-source__label {
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin: 0 0 8px;
}

.lih-source__text {
	font-size: 15.5px;
	color: var(--lih-muted);
	margin: 0 0 14px;
}

.lih-credit {
	font-size: 14px;
	color: var(--lih-dim);
	border-top: 1px solid var(--lih-line-soft);
	padding-top: 16px;
	margin-top: 24px;
}

.lih-prevnext {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 880px;
	margin-top: 48px;
}

.lih-prevnext__item {
	display: block;
	padding: 20px 22px;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	background: #FFFFFF;
	text-decoration: none !important;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.lih-prevnext__item:hover {
	border-color: var(--lih-accent);
	transform: translateY(-2px);
}

.lih-prevnext__item span {
	display: block;
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin-bottom: 8px;
}

.lih-prevnext__item strong {
	color: var(--lih-ink);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.lih-prevnext__item--next {
	text-align: right;
}

/* ----------------------------------------------------------------- forms */

.lih-form-wrap {
	scroll-margin-top: 90px;
}

.lih-form {
	position: relative;
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	padding: 32px;
	box-shadow: var(--lih-shadow);
}

.lih-form__title {
	font-size: 24px;
	margin: 0 0 10px;
}

.lih-form__intro {
	color: var(--lih-muted);
	font-size: 15.5px;
	margin: 0 0 26px;
}

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

.lih-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
}

.lih-field--wide {
	grid-column: 1 / -1;
}

.lih-field label {
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lih-muted);
}

.lih-req {
	color: var(--lih-accent);
}

.lih-field input,
.lih-field select,
.lih-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius-sm);
	background: #FFFFFF;
	color: var(--lih-text);
	font-family: var(--lih-sans);
	font-size: 15.5px;
	line-height: 1.5;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lih-field input:hover,
.lih-field select:hover,
.lih-field textarea:hover {
	border-color: var(--lih-dim);
}

.lih-field input:focus,
.lih-field select:focus,
.lih-field textarea:focus {
	outline: none;
	border-color: var(--lih-accent);
	box-shadow: 0 0 0 3px var(--lih-tint);
}

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

.lih-field__help {
	font-size: 12.5px;
	color: var(--lih-dim);
}

.lih-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lih-form__consent {
	font-size: 13px;
	color: var(--lih-dim);
	margin: 22px 0 0;
	max-width: 68ch;
}

.lih-form__actions {
	margin: 22px 0 0;
}

.lih-notice {
	padding: 16px 20px;
	border-radius: var(--lih-radius-sm);
	margin-bottom: 20px;
	font-size: 15px;
	border: 1px solid var(--lih-line);
	background: var(--lih-panel);
}

.lih-notice--ok {
	border-color: rgba(14, 122, 95, 0.30);
	background: rgba(14, 122, 95, 0.07);
	color: #0B5F4A;
}

.lih-notice--bad {
	border-color: rgba(180, 35, 24, 0.30);
	background: rgba(180, 35, 24, 0.06);
	color: #8C1D18;
}

.lih-notice p {
	margin: 0;
}

.lih-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.lih-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.lih-contact__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 15px;
	color: var(--lih-muted);
}

.lih-contact__list svg {
	flex: none;
	margin-top: 4px;
	color: var(--lih-accent);
}


/* ----------------------------------------------- protected contact details */

.lih-cloak {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 13px;
	border: 1px dashed var(--lih-line);
	border-radius: var(--lih-radius-sm);
	background: #FFFFFF;
	font-family: var(--lih-sans);
	font-size: 14px;
	font-weight: 550;
	color: var(--lih-accent);
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.lih-cloak svg {
	flex: none;
}

.lih-cloak:hover {
	border-style: solid;
	border-color: var(--lih-accent);
	background: var(--lih-tint);
}

.lih-revealed {
	font-family: var(--lih-mono);
	font-size: 14px;
	word-break: break-all;
	color: var(--lih-accent) !important;
}

.lih-contact__note {
	font-size: 13px !important;
	color: var(--lih-dim) !important;
	border-top: 1px solid var(--lih-line-soft);
	padding-top: 14px;
	display: block !important;
}

.lih-foot .lih-cloak {
	background: transparent;
	border-color: var(--lih-on-dark-line);
	color: var(--lih-on-dark) !important;
}

.lih-foot .lih-cloak:hover {
	border-color: #FFFFFF;
	background: rgba(255, 255, 255, 0.06);
}

.lih-foot .lih-revealed {
	color: #FFFFFF !important;
}

.lih-foot noscript a {
	display: inline-block;
	margin-top: 8px;
	text-decoration: underline !important;
}

/* ---------------------------------------------------------------- footer */

.lih-foot {
	background: var(--lih-ink);
	color: var(--lih-on-dark-muted);
	padding: 72px 0 32px;
	margin-top: auto;
	font-size: 14.5px;
}

.lih-foot a {
	color: var(--lih-on-dark-muted) !important;
	text-decoration: none !important;
}

.lih-foot a:hover {
	color: #FFFFFF !important;
}

.lih-foot__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 44px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--lih-on-dark-line);
}

.lih-foot__lockup {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
}

.lih-foot__name {
	color: #FFFFFF;
	font-weight: 640;
	font-size: 16px;
	letter-spacing: -0.018em;
}

.lih-foot__facts {
	margin: 0;
	display: grid;
	gap: 14px;
}

.lih-foot__facts dt {
	font-family: var(--lih-mono);
	font-size: 9.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-dim);
	margin: 0 0 3px;
}

.lih-foot__facts dd {
	margin: 0;
	font-family: var(--lih-mono);
	font-size: 13.5px;
	color: #FFFFFF;
}

.lih-foot__blurb {
	max-width: 42ch;
	margin: 0 0 20px;
}

.lih-foot__title {
	font-family: var(--lih-mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 16px;
}

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

.lih-foot__list--plain li {
	color: var(--lih-on-dark-muted);
}

.lih-foot__address {
	font-style: normal;
	line-height: 1.7;
}

.lih-foot__social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.lih-foot__social a {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 1px solid var(--lih-on-dark-line);
	border-radius: var(--lih-radius-sm);
	transition: border-color 0.15s ease, background 0.15s ease;
}

.lih-foot__social a:hover {
	border-color: #FFFFFF;
	background: rgba(255, 255, 255, 0.06);
}

.lih-foot__base {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 40px;
	justify-content: space-between;
	padding-top: 26px;
}

.lih-foot__legal {
	margin: 0;
	max-width: 78ch;
	font-size: 13px;
	color: var(--lih-dim);
}

.lih-foot__legal--small {
	font-size: 12px;
}

.lih-foot__copy {
	margin: 0;
	font-family: var(--lih-mono);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	color: var(--lih-dim);
}


.lih-article__caption {
	margin: 0;
	padding: 10px 18px;
	background: var(--lih-panel);
	border-top: 1px solid var(--lih-line);
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lih-dim);
}

.lih-position__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 36px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--lih-line-soft);
}


/* -------------------------------------------------- office photograph */

.lih-shot {
	margin: 0;
	background: var(--lih-panel);
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	overflow: hidden;
	box-shadow: var(--lih-shadow);
	position: relative;
}

.lih-shot picture,
.lih-shot img {
	display: block;
	width: 100%;
	height: auto;
}

.lih-shot img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.lih-shot figcaption {
	padding: 14px 20px;
	border-top: 1px solid var(--lih-line);
	background: #FFFFFF;
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lih-dim);
	line-height: 1.6;
}

.lih-shot-wrap {
	margin-top: 56px;
}

.lih-shot--inline {
	margin-top: 32px;
}

.lih-shot--tight figcaption {
	padding: 12px 16px;
	font-size: 10px;
}

/* --------------------------------------------- cards used by templates */

.lih-icon {
	display: inline-block;
	vertical-align: middle;
}

.lih-eyebrow--hero {
	font-size: 11.5px;
}

.lih-hero__text {
	font-size: 19px;
	line-height: 1.6;
	color: var(--lih-muted);
	max-width: 56ch;
	margin: 0 0 34px;
}

.lih-sheet dt,
.lih-sheet__row dt {
	font-size: 14px;
	color: var(--lih-muted);
	margin: 0;
}

.lih-sheet dd,
.lih-sheet__row dd {
	margin: 0;
	font-family: var(--lih-mono);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--lih-ink);
	text-align: right;
}

.lih-prose-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.lih-card-facts,
.lih-side-card {
	background: #FFFFFF;
	border: 1px solid var(--lih-line);
	border-radius: var(--lih-radius);
	box-shadow: var(--lih-shadow);
	overflow: hidden;
	padding: 0;
}

.lih-card-facts > *:not(.lih-sheet__head):not(.lih-sheet),
.lih-side-card > *:not(.lih-sheet__head):not(.lih-sheet) {
	padding-left: 22px;
	padding-right: 22px;
}

.lih-card-facts > *:not(.lih-sheet__head):not(.lih-sheet):last-child,
.lih-side-card > *:not(.lih-sheet__head):not(.lih-sheet):last-child {
	padding-bottom: 22px;
}

.lih-card-facts .lih-sheet,
.lih-side-card .lih-sheet {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.lih-card-facts__addr {
	padding-top: 18px;
	font-size: 14px;
	color: var(--lih-muted);
	line-height: 1.7;
	border-top: 1px solid var(--lih-line-soft);
	margin: 0;
}

.lih-side-card .lih-contact__list,
.lih-side-card .lih-side-steps,
.lih-side-card .lih-side-list {
	padding-top: 20px;
}

.lih-side-card__kicker {
	padding-top: 20px;
	margin: 0 0 8px;
	font-family: var(--lih-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lih-accent);
}

.lih-side-card__text {
	padding-top: 16px;
	font-size: 14.5px;
	color: var(--lih-muted);
	margin: 0;
}

.lih-side-card__kicker + .lih-side-card__text {
	padding-top: 0;
}

.lih-side-card--accent {
	background:
		radial-gradient(90% 140% at 100% 0%, rgba(27, 77, 255, 0.28), transparent 62%),
		var(--lih-ink);
	border-color: var(--lih-ink);
}

.lih-side-card--accent .lih-side-card__kicker {
	color: #FFFFFF;
}

.lih-side-card--accent .lih-side-card__text {
	color: var(--lih-on-dark-muted);
}

.lih-side-card--accent .lih-btn--ghost {
	background: transparent;
	border-color: var(--lih-on-dark-line);
	color: #FFFFFF !important;
	box-shadow: none;
}

.lih-side-card--accent .lih-btn {
	margin-bottom: 22px;
}

.lih-side-steps {
	list-style: none;
	counter-reset: lih-step;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	font-size: 14.5px;
	color: var(--lih-muted);
}

.lih-side-steps li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	line-height: 1.55;
}

.lih-side-steps li::before {
	counter-increment: lih-step;
	content: counter( lih-step, decimal-leading-zero );
	font-family: var(--lih-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--lih-accent);
	padding-top: 3px;
}

.lih-side-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
}

.lih-side-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--lih-line-soft);
	font-size: 15px;
}

.lih-side-list li:last-child {
	border-bottom: 0;
}

.lih-side-list a {
	color: var(--lih-ink) !important;
	font-weight: 550;
	text-decoration: none !important;
}

.lih-side-list a:hover {
	color: var(--lih-accent) !important;
}

.lih-side-list span {
	font-family: var(--lih-mono);
	font-size: 11.5px;
	color: var(--lih-dim);
	flex: none;
}

.lih-contact__form,
.lih-news-main {
	min-width: 0;
}

.lih-contact__aside,
.lih-news-side {
	display: grid;
	gap: 18px;
	align-content: start;
}

.lih-news-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
}

.lih-position__aside .lih-side-card {
	box-shadow: var(--lih-shadow);
}

@media (max-width: 1080px) {
	.lih-prose-grid,
	.lih-news-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
	.lih-hero__inner,
	.lih-section--split .lih-split,
	.lih-position__body,
	.lih-contact,
	.lih-interest__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
	}

	.lih-position__aside {
		position: static;
	}

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

	.lih-foot__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}
}

@media (max-width: 860px) {
	body.lih-site {
		font-size: 16.5px;
	}

	.lih-section {
		padding: 68px 0;
	}

	.lih-hero {
		padding-top: 60px;
	}

	.lih-hero__inner {
		padding-bottom: 52px;
	}

	.lih-head__inner {
		min-height: 64px;
		gap: 12px;
		flex-wrap: wrap;
	}

	.lih-burger {
		display: grid;
		place-items: center;
		order: 3;
		width: 44px;
		height: 44px;
		background: #FFFFFF;
	}

	.lih-burger[aria-expanded="true"] {
		background: var(--lih-tint);
		border-color: var(--lih-accent);
	}

	.lih-nav {
		display: none;
		order: 4;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0 calc(var(--lih-gut) * -1);
		padding: 6px var(--lih-gut) 18px;
		border-top: 1px solid var(--lih-line);
		background: #FFFFFF;
	}

	.lih-nav.is-open {
		display: flex;
	}

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

	.lih-nav__item + .lih-nav__item {
		border-top: 1px solid var(--lih-line-soft);
	}

	.lih-nav__link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 2px;
		border-radius: 0;
		font-size: 16.5px;
		font-weight: 550;
	}

	.lih-nav__link:hover,
	.lih-nav__link.is-current {
		background: none;
		color: var(--lih-accent) !important;
	}

	.lih-nav__link.is-current::after {
		content: "";
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: var(--lih-accent);
	}

	.lih-nav__cta {
		margin: 14px 0 0;
		justify-content: center;
		padding: 15px 18px;
		font-size: 15.5px;
	}

	.lih-ledger__head {
		display: none;
	}

	.lih-ledger__link {
		grid-template-columns: minmax(0, 1fr);
		gap: 6px;
		padding: 18px 22px;
	}

	.lih-ledger__c {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		gap: 16px;
		text-align: left;
		padding-top: 6px;
		border-top: 1px solid var(--lih-line-soft);
	}

	.lih-ledger__c--co {
		border-top: 0;
		padding-top: 0;
		padding-bottom: 4px;
	}

	.lih-ledger__c--status {
		justify-self: stretch;
		text-align: left;
	}

	.lih-ledger__mob {
		display: inline;
	}

	.lih-ledger__one {
		white-space: normal;
	}

	.lih-news__item {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.lih-news__thumb {
		aspect-ratio: 16 / 9;
	}

	.lih-tally {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-band__inner {
		gap: 28px;
	}

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

	.lih-prevnext {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-prevnext__item--next {
		text-align: left;
	}
}

@media (max-width: 560px) {
	:root {
		--lih-gut: 18px;
	}

	.lih-hero__title {
		font-size: clamp(30px, 8.4vw, 38px);
		max-width: none;
	}

	.lih-hero__actions .lih-btn,
	.lih-position__actions .lih-btn,
	.lih-band__inner .lih-btn {
		width: 100%;
		justify-content: center;
	}

	.lih-hero__actions,
	.lih-position__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.lih-position__strip {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-tape__label {
		padding: 10px 12px;
	}

	.lih-tape__item {
		padding: 11px 18px;
	}

	.lih-faq__q {
		padding: 18px 20px;
		font-size: 16px;
	}

	.lih-faq__a {
		padding: 0 20px 20px;
	}

	.lih-card__body,
	.lih-side-card > *:not(.lih-sheet__head):not(.lih-sheet) {
		padding-left: 18px;
		padding-right: 18px;
	}

	.lih-card__body {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.lih-news__item {
		padding: 16px;
	}

	.lih-brand__name {
		font-size: 14.5px;
	}

	.lih-trio,
	.lih-steps--wide {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-form {
		padding: 22px;
	}

	.lih-form__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-foot__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lih-brand__sub {
		display: none;
	}

	.lih-sheet__row {
		padding: 15px 16px;
	}
}

/* --------------------------------------------------------------- reduced */

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

	.lih-tape__track {
		overflow-x: auto;
	}

	.lih-tape__run {
		animation: none;
	}
}

@media print {
	.lih-head,
	.lih-tape,
	.lih-band,
	.lih-foot,
	.lih-skip,
	.lih-filters,
	.lih-form-wrap {
		display: none !important;
	}

	body.lih-site {
		font-size: 12pt;
		color: #000000;
		background: #FFFFFF;
	}

	.lih-ledger,
	.lih-card,
	.lih-news__item {
		box-shadow: none;
		break-inside: avoid;
	}
}
