@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter.woff2") format("woff2");
}

@font-face {
	font-family: "Bricolage Grotesque";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/BricolageGrotesque.ttf") format("truetype");
}

:root {
	--lv-primary: #0073d1;
	--lv-primary-dark: #0157a3;
	--lv-primary-light: #0c8eeb;
	--lv-main: #030712;
	--lv-secondary: #6b7280;
	--lv-tertiary: #e5e7eb;
	--lv-light: #f9fafb;
	--lv-base: #fff;
	--lv-radius: 999px;
	--lv-radius-md: 12px;
	--lv-wide: min(calc(100vw - 3rem), 1200px);
	--lv-content: min(calc(100vw - 3rem), 760px);
	--lv-font: Inter, system-ui, -apple-system, sans-serif;
	--lv-display: "Bricolage Grotesque", Inter, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	color: var(--lv-main);
	background: var(--lv-base);
	font-family: var(--lv-font);
	font-size: 1.0625rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lv-primary); text-decoration: none; }
a:hover { color: var(--lv-primary-dark); }
h1, h2, h3, h4 {
	font-family: var(--lv-display);
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 0.75rem;
}

.lv-accent { color: var(--lv-primary); }

.lv-wrap,
.lv-wide {
	width: var(--lv-wide);
	margin-inline: auto;
}

.lv-content {
	width: var(--lv-content);
	margin-inline: auto;
}

.lv-skip {
	position: absolute;
	left: -999px;
	top: 0;
}
.lv-skip:focus { left: 1rem; top: 1rem; z-index: 100; background: #fff; padding: .5rem 1rem; }

.lv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: 1rem 1.5rem;
	border: 0;
	border-radius: var(--lv-radius);
	background: var(--lv-primary);
	color: #fff !important;
	font-weight: 600;
	font-size: .95rem;
	line-height: 1;
	cursor: pointer;
}
.lv-btn:hover { background: var(--lv-primary-dark); }
.lv-github-btn { background: #24292f; }
.lv-github-btn:hover { background: #0d1117; }
.lv-github-btn__icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

.lv-header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid transparent;
}
.lv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
	width: var(--lv-wide);
	margin-inline: auto;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.lv-brand {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-family: var(--lv-display);
	font-weight: 600;
	font-size: 1.15rem;
	flex: 0 1 auto;
	min-width: 0;
}
.lv-brand a { color: var(--lv-main) !important; }
.lv-brand .custom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.lv-brand img,
.lv-brand .custom-logo {
	width: 36px !important;
	height: 36px !important;
	border-radius: 50%;
	object-fit: cover;
	object-position: center 18%;
}
.lv-brand__mark {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--lv-primary-light), var(--lv-primary));
	display: grid;
	place-items: center;
	color: #fff;
	font-size: .85rem;
	font-weight: 800;
}

.lv-nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
.lv-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.2rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.lv-nav a {
	color: var(--lv-secondary);
	font-size: .92rem;
	white-space: nowrap;
	padding: .35rem 0;
}
.lv-nav a:hover,
.lv-nav .current-menu-item > a { color: var(--lv-main); }
.lv-nav .sub-menu {
	display: none;
	position: absolute;
	background: #fff;
	border: 1px solid #eee;
	border-radius: var(--lv-radius-md);
	box-shadow: 0 2px 3px rgb(96 96 96 / .1);
	padding: .4rem;
	min-width: 180px;
}
.lv-nav li { position: relative; }
.lv-nav li:hover > .sub-menu { display: block; }

.lv-header__cta { flex: 0 0 auto; display: flex; justify-content: flex-end; }
.lv-header__cta .lv-btn { padding: .85rem 1.2rem; font-size: .88rem; }

.lv-menu-toggle {
	display: none;
	background: none;
	border: 0;
	width: 42px;
	height: 42px;
	padding: 0;
	cursor: pointer;
}
.lv-menu-toggle .lv-burger,
.lv-menu-toggle .lv-burger::before,
.lv-menu-toggle .lv-burger::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--lv-main);
	position: relative;
}
.lv-menu-toggle .lv-burger::before,
.lv-menu-toggle .lv-burger::after {
	content: "";
	position: absolute;
	left: 0;
}
.lv-menu-toggle .lv-burger::before { top: -6px; }
.lv-menu-toggle .lv-burger::after { top: 6px; }

.lv-hero {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 2.4rem;
	align-items: center;
	padding: 1.6rem 0 2.2rem;
	width: var(--lv-wide);
	margin-inline: auto;
}
.lv-hero__eyebrow {
	color: var(--lv-primary);
	font-weight: 600;
	margin: 0 0 0.7rem;
}
.lv-hero h1 {
	font-size: clamp(1.7rem, 3.7vw, 2.9rem);
	font-weight: 700;
	margin-bottom: 0.8rem;
}
.lv-hero__text {
	color: var(--lv-secondary);
	font-size: 1.02rem;
	max-width: 38ch;
	margin-bottom: 1.2rem;
}
.lv-hero__visual { position: relative; display: grid; place-items: center; }
.lv-hero__ring {
	width: min(100%, 320px);
	aspect-ratio: 1;
	padding: 8px;
	border-radius: 50%;
	background: linear-gradient(160deg, var(--lv-primary-light), #dbeafe 45%, var(--lv-primary));
	box-shadow: 0 24px 50px rgb(0 115 209 / .18);
}
.lv-hero__photo {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: center 18%;
	background: var(--lv-light);
	border: 6px solid #fff;
}
.lv-hero__badge {
	position: absolute;
	left: 4%;
	bottom: 14%;
	background: #fff;
	border-radius: 12px;
	padding: .7rem .95rem;
	box-shadow: 0 10px 28px rgb(0 0 0 / .1);
	font-weight: 700;
	font-size: .85rem;
	color: var(--lv-primary-dark);
}
.lv-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}
.lv-chips li {
	padding: .45rem .9rem;
	border: 1px solid var(--lv-tertiary);
	border-radius: var(--lv-radius);
	background: var(--lv-light);
	color: var(--lv-dark, #1f2937);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .01em;
}

.lv-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	width: var(--lv-wide);
	margin: 1rem auto 4rem;
	text-align: center;
}
.lv-stats strong {
	display: block;
	color: var(--lv-primary);
	font-family: var(--lv-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.lv-stats span { color: var(--lv-secondary); font-size: .9rem; }

.lv-section { padding: 1rem 0 4rem; }
.lv-section__head,
.lv-contact {
	width: var(--lv-wide);
	margin-inline: auto;
}
.lv-section__head {
	text-align: center;
	margin-bottom: 2.5rem;
}
.lv-section__head h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	width: var(--lv-wide);
	margin-inline: auto;
}
.lv-card {
	background: var(--lv-light);
	border-radius: 20px;
	overflow: hidden;
	color: inherit;
	display: flex;
	flex-direction: column;
	content-visibility: auto;
	contain-intrinsic-size: 360px;
}
.lv-card:hover { color: inherit; }
.lv-card img { width: 100%; height: 200px; object-fit: cover; }
.lv-card__body { padding: 1.25rem 1.25rem 1.5rem; }
.lv-card__body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.lv-card__body p { color: var(--lv-secondary); margin: 0; font-size: .95rem; }

.lv-entry { padding: 2rem 0 4rem; }
.lv-entry__meta { color: var(--lv-secondary); font-size: .9rem; margin-bottom: 1.5rem; }
.lv-entry .lv-thumb { border-radius: 18px; margin: 0 0 1.75rem; width: 100%; }
.lv-pagehead { margin-bottom: 1.75rem; max-width: 40rem; }
.lv-pagehead h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: .25rem; }
.lv-prose h2, .lv-prose h3 { margin-top: 1.6rem; }
.lv-prose p { margin: 0 0 1rem; }
.lv-prose ul, .lv-prose ol { padding-left: 1.2rem; }
.lv-prose li { margin: .35rem 0; }
.lv-prose blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--lv-primary);
	background: var(--lv-light);
	border-radius: 0 var(--lv-radius-md) var(--lv-radius-md) 0;
	color: var(--lv-secondary);
}

.lv-complexity-page {
	padding: 1rem 0 4.5rem;
	background:
		radial-gradient(circle at 94% 4%, rgb(12 142 235 / .08), transparent 28rem),
		linear-gradient(180deg, #fff 0%, #f8fbff 72%, #fff 100%);
}
.lv-complexity-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
	gap: clamp(2rem, 6vw, 5.5rem);
	align-items: center;
	padding: 3.5rem 0 4.2rem;
}
.lv-complexity-hero__copy { max-width: 42rem; }
.lv-complexity-hero h1 {
	font-size: clamp(2.3rem, 5vw, 4.6rem);
	line-height: 1.02;
	max-width: 10ch;
	margin-bottom: 1.25rem;
}
.lv-complexity-hero__copy > p:not(.lv-hero__eyebrow) {
	color: var(--lv-secondary);
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	line-height: 1.65;
	max-width: 46ch;
	margin: 0 0 1.75rem;
}
.lv-complexity-hero__copy .lv-btn span { font-size: 1.1rem; margin-left: .2rem; }
.lv-complexity-hero__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid rgb(0 115 209 / .14);
	border-radius: 28px;
	background: rgb(255 255 255 / .82);
	box-shadow: 0 24px 70px rgb(0 55 110 / .12);
}
.lv-complexity-hero__panel::after {
	content: "";
	position: absolute;
	right: -4rem;
	top: -5rem;
	width: 13rem;
	height: 13rem;
	border-radius: 50%;
	background: rgb(12 142 235 / .1);
}
.lv-complexity-hero__panel-top,
.lv-complexity-scale__labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.lv-complexity-hero__panel-top { position: relative; z-index: 1; margin-bottom: 2.75rem; }
.lv-complexity-hero__panel-top span,
.lv-complexity-scale__labels,
.lv-complexity-hero__panel > p { color: var(--lv-secondary); font-size: .82rem; }
.lv-complexity-hero__panel-top strong {
	font-family: var(--lv-display);
	font-size: 1.5rem;
	letter-spacing: -.04em;
}
.lv-complexity-hero__panel-top small { color: var(--lv-primary); font-size: .9rem; }
.lv-complexity-scale { position: relative; z-index: 1; }
.lv-complexity-scale__track {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: .35rem;
	align-items: center;
	position: relative;
	padding: .5rem 0;
}
.lv-complexity-scale__track::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 99px;
	background: linear-gradient(90deg, #60d394, #f4cb55 38%, #f1904d 66%, #a978ed);
}
.lv-complexity-scale__dot {
	position: relative;
	width: 13px;
	height: 13px;
	margin-inline: auto;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--lv-primary);
	box-shadow: 0 0 0 1px rgb(0 115 209 / .22), 0 4px 9px rgb(0 115 209 / .2);
}
.lv-complexity-scale__labels { margin-top: .65rem; font-weight: 600; }
.lv-complexity-hero__panel > p { position: relative; z-index: 1; line-height: 1.55; margin: 2.5rem 0 0; max-width: 34ch; }
.lv-complexity-content { padding-top: 1rem; }
.lv-complexity-section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 2rem;
	margin-bottom: 2rem;
}
.lv-complexity-section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-bottom: 0; }
.lv-complexity-section-head > p { color: var(--lv-secondary); max-width: 36ch; margin: 0 0 .2rem; }
.lv-complexity-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.lv-complexity-card {
	position: relative;
	min-height: 285px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 1.45rem 1.5rem 1.5rem;
	border: 1px solid var(--lv-tertiary);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 8px 25px rgb(15 23 42 / .035);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lv-complexity-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: var(--lv-card-color);
}
.lv-complexity-card:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--lv-card-color) 35%, #e5e7eb);
	box-shadow: 0 18px 38px rgb(15 23 42 / .09);
}
.lv-complexity-card--mint { --lv-card-color: #35b879; --lv-card-soft: #e8f8ef; }
.lv-complexity-card--yellow { --lv-card-color: #c69b18; --lv-card-soft: #fff8db; }
.lv-complexity-card--orange { --lv-card-color: #e87835; --lv-card-soft: #fff0e7; }
.lv-complexity-card--red { --lv-card-color: #e05252; --lv-card-soft: #ffebeb; }
.lv-complexity-card--violet { --lv-card-color: #8755d6; --lv-card-soft: #f2ebff; }
.lv-complexity-card__top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.lv-complexity-card__identity { display: flex; align-items: center; gap: .7rem; }
.lv-complexity-card__icon {
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 12px;
	background: var(--lv-card-soft);
	color: var(--lv-card-color);
	font-size: 1.1rem;
	font-weight: 800;
}
.lv-complexity-card__degree { color: var(--lv-card-color); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lv-complexity-card__number { color: rgb(15 23 42 / .11); font-family: var(--lv-display); font-size: 2.7rem; font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.lv-complexity-card h3 { font-size: 1.38rem; margin: 1.4rem 0 .2rem; }
.lv-complexity-card__category { color: var(--lv-card-color); font-size: .83rem; font-weight: 700; margin: 0 0 .65rem; }
.lv-complexity-card__description { color: var(--lv-secondary); font-size: .92rem; line-height: 1.55; margin: 0; max-width: 45ch; }
.lv-complexity-card__example { margin-top: auto; padding-top: 1.2rem; }
.lv-complexity-card__example span { display: block; color: var(--lv-secondary); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lv-complexity-card__example p { margin: .2rem 0 0; font-size: .88rem; font-weight: 600; line-height: 1.45; }
.lv-complexity-note {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	margin-top: 3.5rem;
	padding: 1.6rem 1.75rem;
	border: 1px solid rgb(0 115 209 / .15);
	border-radius: 22px;
	background: linear-gradient(120deg, rgb(235 246 255 / .9), rgb(255 255 255 / .9));
}
.lv-complexity-note__icon { color: var(--lv-primary); font-size: 2rem; line-height: 1; }
.lv-complexity-note h2 { font-size: 1.35rem; margin-bottom: .4rem; }
.lv-complexity-note p:last-child { color: var(--lv-secondary); max-width: 70ch; margin: 0; }

.lv-prose .alignwide,
.lv-prose .alignfull,
.lv-prose .wp-block-group,
.lv-prose .wp-block-group__inner-container {
	max-width: 100%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.wp-block-media-text {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 2.25rem;
	align-items: center;
	margin: 0 0 2rem;
}
.wp-block-media-text__media { margin: 0; }
.wp-block-media-text__media img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	object-fit: cover;
}
.wp-block-media-text__content > *:first-child { margin-top: 0; }

.is-layout-flex,
.wp-block-columns,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: flex-start;
}
.wp-block-column {
	flex: 1 1 0;
	min-width: min(100%, 260px);
}
.wp-block-buttons {
	gap: .75rem;
	align-items: center;
}
.is-content-justification-right { justify-content: flex-end; }
.is-content-justification-center { justify-content: center; text-align: center; }

.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	padding: .9rem 1.35rem;
	border-radius: var(--lv-radius);
	background: var(--lv-primary);
	color: #fff !important;
	font-weight: 600;
}
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button__link[style*="outline"] {
	background: transparent;
	color: var(--lv-primary) !important;
	box-shadow: inset 0 0 0 2px currentColor;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--lv-light);
}

.wp-block-image { margin: 0; }
.wp-block-image img { margin-inline: auto; border-radius: 12px; }
.wp-block-spacer { max-height: 2.25rem !important; }

.has-text-align-center { text-align: center; }
.has-text-align-left { text-align: left; }
.has-primary-color { color: var(--lv-primary); }
.has-main-color { color: var(--lv-main); }
.has-secondary-color { color: var(--lv-secondary); }
.has-large-font-size { font-size: 1.05rem; line-height: 1.7; }

.lv-resume-hero {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 2.5rem;
	align-items: center;
	width: var(--lv-wide);
	margin: 0 auto 1rem;
}
.lv-resume-hero p { color: var(--lv-secondary); max-width: 54ch; }
.lv-resume-hero strong { color: var(--lv-main); }
.lv-resume-photo { width: min(100%, 280px); }

.lv-jobs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	width: var(--lv-wide);
	margin-inline: auto;
}
.lv-jobs--3 {
	grid-template-columns: repeat(3, 1fr);
}
.lv-job {
	background: var(--lv-light);
	border-radius: 20px;
	padding: 1.5rem 1.6rem 1.7rem;
	color: inherit;
	display: block;
}
a.lv-job:hover { color: inherit; }
.lv-job__role {
	color: var(--lv-primary);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin: 0 0 .4rem;
}
.lv-job h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.lv-job p { margin: 0; color: var(--lv-secondary); }
.lv-projects .lv-card { min-height: 100%; }
.lv-projects .lv-card__body { padding: 1.4rem 1.5rem 1.6rem; }

.lv-contact {
	text-align: center;
	padding: 1rem 0 2rem;
}
.lv-contact h2 { margin-bottom: 1.75rem; }
.lv-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	max-width: 720px;
	margin-inline: auto;
}
.lv-contact__grid--single {
	grid-template-columns: 1fr;
	max-width: 420px;
}
.lv-contact--page {
	padding: 2.5rem 0 4rem;
}
.lv-contact--page h1 {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	margin-bottom: .75rem;
}
.lv-contact__lead {
	color: var(--lv-secondary);
	max-width: 36ch;
	margin: 0 auto 1.75rem;
}
.lv-contact--page .lv-contact__grid {
	margin-bottom: 1.75rem;
}
.lv-contact--page .lv-contact__grid h2 {
	font-size: 1.05rem;
	margin-bottom: .35rem;
}
.lv-contact__grid div {
	background: var(--lv-light);
	border-radius: 20px;
	padding: 1.4rem 1.2rem;
}
.lv-contact__grid h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.lv-contact__grid p { margin: 0; color: var(--lv-secondary); }

@media (max-width: 800px) {
	.wp-block-media-text,
	.wp-block-media-text.is-stacked-on-mobile {
		grid-template-columns: 1fr;
	}
	.is-content-justification-right { justify-content: flex-start; }
	.lv-resume-hero,
	.lv-jobs,
	.lv-jobs--3,
	.lv-contact__grid { grid-template-columns: 1fr; }
}

.lv-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 3rem;
	width: var(--lv-wide);
	margin: 3rem auto 4rem;
}
.lv-widget { margin-bottom: 2rem; }
.lv-widget__title { font-size: 1.1rem; }
.lv-widget ul { list-style: none; padding: 0; margin: 0; }
.lv-widget li { margin: .4rem 0; }
.lv-widget a { color: var(--lv-secondary); }

.lv-search {
	display: flex;
	gap: 0;
	border: 1px solid var(--lv-tertiary);
	border-radius: var(--lv-radius);
	overflow: hidden;
}
.lv-search input {
	flex: 1;
	border: 0;
	padding: 1rem;
	font: inherit;
	outline: none;
}
.lv-search button {
	border: 0;
	background: var(--lv-primary);
	color: #fff;
	padding: 0 1.2rem;
	cursor: pointer;
	font-weight: 600;
}

.lv-pager {
	display: flex;
	gap: 1rem;
	justify-content: center;
	padding: 1rem 0 3rem;
}
.lv-pager a { color: var(--lv-secondary); }

.lv-footer {
	padding: 3rem 0;
	color: var(--lv-secondary);
	font-size: .95rem;
}
.lv-footer__inner {
	width: var(--lv-wide);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
}
.lv-footer a { color: var(--lv-main); }
.lv-footer nav ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }

.lv-404 { text-align: center; padding: 5rem 1rem; }
.lv-404 h1 { font-size: 4rem; color: var(--lv-primary); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
	border: 1px solid var(--lv-tertiary);
	border-radius: var(--lv-radius);
	padding: 1rem;
	font: inherit;
	width: 100%;
}
textarea { border-radius: var(--lv-radius-md); }
input:focus, textarea:focus { border-color: var(--lv-primary); outline: none; }

@media (max-width: 900px) {
	.lv-hero,
	.lv-stats,
	.lv-grid,
	.lv-layout { grid-template-columns: 1fr; }
	.lv-header__cta { display: none; }
	.lv-menu-toggle { display: grid; place-items: center; }
	.lv-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		border-bottom: 1px solid var(--lv-tertiary);
		padding: 1rem 1.5rem 1.5rem;
		justify-content: flex-start;
	}
	.lv-nav.is-open { display: block; }
	.lv-nav ul { flex-direction: column; gap: .8rem; }
	.lv-header { position: relative; }
	.lv-hero { padding-top: 2.5rem; text-align: left; }
}

@media (max-width: 900px) {
	.lv-complexity-hero { grid-template-columns: 1fr; padding: 2.5rem 0 3.25rem; }
	.lv-complexity-hero h1 { max-width: 14ch; }
}

@media (max-width: 650px) {
	.lv-complexity-page { padding-bottom: 3rem; }
	.lv-complexity-hero { padding-top: 1.5rem; }
	.lv-complexity-hero__panel { border-radius: 22px; }
	.lv-complexity-section-head { display: block; }
	.lv-complexity-section-head h2 { margin-bottom: .8rem; }
	.lv-complexity-grid { grid-template-columns: 1fr; }
	.lv-complexity-card { min-height: 260px; }
	.lv-complexity-note { gap: .9rem; margin-top: 2.5rem; padding: 1.35rem; }
}
