:root {
	--lf-bg: #050814;
	--lf-bg-soft: #090f22;
	--lf-surface: rgba(12, 20, 42, 0.72);
	--lf-surface-strong: rgba(19, 31, 62, 0.88);
	--lf-border: rgba(125, 203, 255, 0.18);
	--lf-border-strong: rgba(80, 232, 255, 0.36);
	--lf-text: #f4f8ff;
	--lf-muted: #9fb0cf;
	--lf-blue: #2f7dff;
	--lf-cyan: #38e8ff;
	--lf-violet: #7c5cff;
	--lf-green: #56f2b7;
	--lf-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
	--lf-radius: 8px;
	--lf-radius-lg: 16px;
	--lf-shell: min(1140px, calc(100vw - 40px));
	--lf-header-height: 78px;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 15% 5%, rgba(47, 125, 255, 0.22), transparent 28rem),
		radial-gradient(circle at 88% 12%, rgba(124, 92, 255, 0.22), transparent 24rem),
		linear-gradient(180deg, #050814 0%, #071020 44%, #050814 100%);
	color: var(--lf-text);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	overflow-x: hidden;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	background-image:
		linear-gradient(rgba(94, 178, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(94, 178, 255, 0.06) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 86%);
}

body::after {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(5, 8, 20, 0.08), rgba(5, 8, 20, 0.88));
}

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

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

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

.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;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--lf-bg);
	border: 1px solid var(--lf-cyan);
	color: var(--lf-text);
}

.site-shell {
	width: var(--lf-shell);
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: var(--lf-header-height);
	background: rgba(5, 8, 20, 0.76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(125, 203, 255, 0.1);
	transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(5, 8, 20, 0.94);
	border-color: rgba(125, 203, 255, 0.22);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--lf-header-height);
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	font-weight: 800;
}

.custom-logo-link img {
	max-width: 190px;
	max-height: 54px;
}

.site-brand__mark {
	display: grid;
	width: 42px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid var(--lf-border-strong);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(47, 125, 255, 0.95), rgba(56, 232, 255, 0.72));
	box-shadow: 0 0 28px rgba(56, 232, 255, 0.28);
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.site-brand__text {
	display: grid;
	line-height: 1.1;
}

.site-brand__name {
	font-size: 18px;
}

.site-brand__tagline {
	max-width: 260px;
	margin-top: 5px;
	color: var(--lf-muted);
	font-size: 12px;
	font-weight: 600;
}

.primary-nav__menu,
.site-footer__menu {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav__menu a {
	color: rgba(244, 248, 255, 0.82);
	font-size: 14px;
	font-weight: 650;
	transition: color 160ms ease;
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus {
	color: var(--lf-cyan);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid var(--lf-border-strong);
	border-radius: 8px;
	background: rgba(56, 232, 255, 0.08);
	color: var(--lf-text);
	font-size: 14px;
	font-weight: 850;
	box-shadow: 0 0 22px rgba(56, 232, 255, 0.12);
	white-space: nowrap;
}

.nav-toggle {
	display: none;
	width: 44px;
	aspect-ratio: 1;
	padding: 0;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.78);
	color: var(--lf-text);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: auto;
	background: currentColor;
	border-radius: 999px;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bar::before {
	transform: translateY(-6px);
}

.nav-toggle__bar::after {
	transform: translateY(4px);
}

.nav-is-open .nav-toggle__bar {
	transform: rotate(45deg);
}

.nav-is-open .nav-toggle__bar::before {
	opacity: 0;
}

.nav-is-open .nav-toggle__bar::after {
	transform: translateY(-2px) rotate(-90deg);
}

.hero-section,
.contact-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(84px, 10vw, 150px) 0;
}

.section-grid-bg::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(110deg, rgba(56, 232, 255, 0.1), transparent 44%),
		radial-gradient(circle at 75% 45%, rgba(124, 92, 255, 0.24), transparent 22rem);
}

.hero-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	align-items: center;
	gap: clamp(42px, 7vw, 84px);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--lf-cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 1px;
	background: linear-gradient(90deg, var(--lf-cyan), transparent);
	content: "";
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: clamp(42px, 7vw, 78px);
}

h2 {
	margin-bottom: 16px;
	font-size: clamp(30px, 4vw, 48px);
}

h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.hero-section__lead,
.section-heading p,
.page-hero__lead {
	color: var(--lf-muted);
	font-size: clamp(17px, 2vw, 20px);
}

.hero-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 800;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--primary {
	background: linear-gradient(135deg, var(--lf-blue), var(--lf-cyan));
	color: #fff;
	box-shadow: 0 0 32px rgba(56, 232, 255, 0.24);
}

.button--ghost {
	border-color: var(--lf-border-strong);
	background: rgba(12, 20, 42, 0.7);
	color: var(--lf-text);
}

.hero-metrics,
.hero-trust-tags {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 42px;
}

.hero-metrics div,
.hero-trust-tags div {
	padding: 16px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.58);
}

.hero-metrics strong,
.hero-trust-tags strong {
	display: block;
	margin-bottom: 4px;
	color: var(--lf-cyan);
	font-size: 18px;
	line-height: 1;
}

.hero-metrics span,
.hero-trust-tags span {
	color: var(--lf-muted);
	font-size: 13px;
}

.hero-console,
.glow-card,
.architecture-panel,
.trust-list {
	border: 1px solid var(--lf-border);
	background: linear-gradient(180deg, rgba(15, 26, 54, 0.88), rgba(8, 15, 33, 0.74));
	box-shadow: var(--lf-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-console {
	position: relative;
	padding: 22px;
	border-radius: var(--lf-radius-lg);
	overflow: hidden;
}

.hero-console::before {
	position: absolute;
	inset: -1px;
	z-index: -1;
	content: "";
	background: linear-gradient(135deg, rgba(56, 232, 255, 0.34), rgba(124, 92, 255, 0.18), transparent);
	filter: blur(18px);
}

.console-topbar {
	display: flex;
	gap: 8px;
	margin-bottom: 22px;
}

.console-topbar span {
	width: 10px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(159, 176, 207, 0.45);
}

.console-status,
.data-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.42);
}

.console-status {
	margin-bottom: 18px;
}

.console-status strong {
	color: var(--lf-green);
}

.status-dot {
	display: inline-block;
	width: 9px;
	aspect-ratio: 1;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--lf-green);
	box-shadow: 0 0 16px rgba(86, 242, 183, 0.78);
}

.flow-board {
	display: grid;
	grid-template-columns: 1fr 24px 1fr 24px 1fr;
	align-items: center;
	gap: 12px;
	min-height: 196px;
	padding: 18px;
	border-radius: 8px;
	background:
		linear-gradient(rgba(56, 232, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.08) 1px, transparent 1px),
		rgba(5, 8, 20, 0.36);
	background-size: 22px 22px;
}

.flow-node {
	min-height: 116px;
	padding: 16px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.86);
	overflow-wrap: anywhere;
}

.flow-node span,
.data-card span {
	display: block;
	color: var(--lf-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.flow-node strong {
	display: block;
	margin-top: 10px;
	font-size: 17px;
}

.flow-node.is-active {
	border-color: var(--lf-border-strong);
	box-shadow: 0 0 26px rgba(56, 232, 255, 0.18);
}

.flow-line {
	height: 2px;
	background: linear-gradient(90deg, var(--lf-cyan), var(--lf-violet));
}

.console-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.data-card strong {
	color: var(--lf-text);
	font-size: 22px;
}

.section-block {
	padding: clamp(72px, 8vw, 120px) 0;
}

.section-block--alt {
	background: linear-gradient(180deg, rgba(9, 15, 34, 0.72), rgba(5, 8, 20, 0.18));
	border-block: 1px solid rgba(125, 203, 255, 0.08);
}

.section-heading {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading--left {
	margin-inline: 0;
	text-align: left;
}

.three-grid,
.pain-grid,
.service-grid,
.package-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.three-grid,
.pain-grid {
	counter-reset: pain;
}

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

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

.glow-card {
	position: relative;
	padding: 24px;
	border-radius: var(--lf-radius);
	opacity: 1;
	transform: none;
	transition: opacity 420ms ease, transform 420ms ease, border-color 180ms ease;
}

.js .glow-card {
	opacity: 0;
	transform: translateY(18px);
}

.js .glow-card.is-visible {
	opacity: 1;
	transform: none;
}

.glow-card:hover {
	border-color: var(--lf-border-strong);
}

.pain-card {
	counter-increment: pain;
	min-height: 250px;
}

.pain-card .card-index::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	aspect-ratio: 1;
	margin-bottom: 26px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	color: var(--lf-cyan);
	content: counter(pain, decimal-leading-zero);
}

.glow-card p,
.timeline-item p,
.scenario-item p,
.trust-item p,
.site-footer p {
	margin-bottom: 0;
	color: var(--lf-muted);
}

.solution-overview,
.architecture-grid,
.trust-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
	align-items: center;
	gap: clamp(32px, 6vw, 76px);
}

.solution-map {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.solution-step {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(125, 203, 255, 0.14);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.38);
}

.solution-step span,
.timeline-item__phase {
	color: var(--lf-cyan);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.service-card__icon {
	width: 46px;
	aspect-ratio: 1;
	margin-bottom: 24px;
	border: 1px solid var(--lf-border-strong);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(47, 125, 255, 0.28), rgba(56, 232, 255, 0.12)),
		radial-gradient(circle, rgba(56, 232, 255, 0.9) 0 3px, transparent 4px);
	box-shadow: 0 0 24px rgba(56, 232, 255, 0.14);
}

.service-card ul {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.service-card li {
	color: rgba(244, 248, 255, 0.78);
	font-size: 14px;
}

.service-card li::before {
	margin-right: 8px;
	color: var(--lf-cyan);
	content: "•";
}

.scenario-list,
.scenario-matrix {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.scenario-item,
.trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.56);
	opacity: 1;
	transform: none;
	transition: opacity 420ms ease, transform 420ms ease;
}

.scenario-item {
	align-items: flex-start;
	min-height: 210px;
}

.scenario-item h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.js .scenario-item,
.js .trust-item,
.js .timeline-item {
	opacity: 0;
	transform: translateY(14px);
}

.js .scenario-item.is-visible,
.js .trust-item.is-visible,
.js .timeline-item.is-visible {
	opacity: 1;
	transform: none;
}

.scenario-item span,
.trust-item span {
	flex: 0 0 auto;
	width: 10px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--lf-cyan);
	box-shadow: 0 0 18px rgba(56, 232, 255, 0.64);
}

.timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.timeline::before {
	position: absolute;
	top: 24px;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(56, 232, 255, 0.54), transparent);
	content: "";
}

.timeline-item {
	position: relative;
	padding: 58px 20px 20px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.56);
	opacity: 1;
	transform: none;
	transition: opacity 420ms ease, transform 420ms ease;
}

.timeline-item::before {
	position: absolute;
	top: 18px;
	left: 20px;
	width: 12px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--lf-cyan);
	box-shadow: 0 0 20px rgba(56, 232, 255, 0.74);
	content: "";
}

.architecture-panel {
	display: grid;
	gap: 12px;
	padding: 18px;
	border-radius: var(--lf-radius);
}

.architecture-layer {
	display: grid;
	gap: 6px;
	padding: 16px;
	border: 1px solid rgba(125, 203, 255, 0.14);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.42);
	color: rgba(244, 248, 255, 0.86);
}

.architecture-layer strong {
	color: var(--lf-text);
}

.architecture-layer span {
	color: var(--lf-muted);
}

.architecture-layer--active {
	border-color: var(--lf-border-strong);
	background: linear-gradient(135deg, rgba(47, 125, 255, 0.24), rgba(124, 92, 255, 0.18));
	box-shadow: 0 0 28px rgba(56, 232, 255, 0.12);
}

.package-card {
	min-height: 320px;
}

.package-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.package-card__head span {
	padding: 5px 10px;
	border: 1px solid var(--lf-border-strong);
	border-radius: 999px;
	color: var(--lf-cyan);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.package-card ul {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 22px 0 0;
	list-style: none;
}

.package-card li {
	color: var(--lf-muted);
}

.package-card li::before {
	margin-right: 10px;
	color: var(--lf-cyan);
	content: "+";
}

.package-card__cta {
	width: 100%;
	margin-top: 28px;
}

.trust-list {
	display: grid;
	gap: 12px;
	padding: 18px;
	border-radius: var(--lf-radius);
}

.trust-grid {
	grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
	align-items: stretch;
}

.trust-grid .section-heading {
	align-self: start;
}

.trust-list {
	grid-column: 1;
}

.risk-console {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 24px;
	border-radius: var(--lf-radius);
}

.risk-console__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px;
	border: 1px solid rgba(125, 203, 255, 0.14);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.44);
}

.risk-console__row span {
	color: var(--lf-cyan);
	font-size: 13px;
	font-weight: 850;
}

.risk-console__row strong {
	color: var(--lf-text);
}

.contact-cta {
	text-align: center;
}

.contact-cta__inner {
	max-width: 820px;
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid var(--lf-border);
	border-radius: var(--lf-radius-lg);
	background: linear-gradient(135deg, rgba(15, 26, 54, 0.72), rgba(8, 15, 33, 0.44));
	box-shadow: var(--lf-shadow), 0 0 42px rgba(56, 232, 255, 0.12);
}

.contact-cta .eyebrow,
.contact-cta .hero-section__actions {
	justify-content: center;
}

.contact-cta p {
	color: var(--lf-muted);
	font-size: 18px;
}

.contact-cta__form {
	margin-top: 28px;
	text-align: left;
}

.contact-cta__signals {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.contact-cta__signals span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(86, 242, 183, 0.2);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.34);
	color: rgba(244, 248, 255, 0.82);
	font-size: 13px;
	font-weight: 800;
}

.contact-cta__signals span::before {
	width: 7px;
	aspect-ratio: 1;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--lf-green);
	box-shadow: 0 0 14px rgba(86, 242, 183, 0.56);
	content: "";
}

.site-footer {
	padding: 54px 0 24px;
	border-top: 1px solid rgba(125, 203, 255, 0.12);
	background: rgba(5, 8, 20, 0.78);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr) minmax(220px, 0.75fr);
	gap: 32px;
}

.site-footer h2 {
	margin-bottom: 14px;
	color: var(--lf-text);
	font-size: 14px;
	text-transform: uppercase;
}

.site-footer__brand p {
	max-width: 460px;
	margin-top: 18px;
}

.site-footer__menu,
.site-footer__links ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__menu a,
.site-footer__links a,
.text-link {
	color: var(--lf-cyan);
	font-weight: 750;
}

.site-footer__contact {
	display: grid;
	align-content: start;
	gap: 10px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 30px;
	margin-top: 36px;
	border-top: 1px solid rgba(125, 203, 255, 0.08);
}

.site-footer__bottom p {
	font-size: 13px;
}

.site-footer__signals {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding-top: 28px;
	margin-top: 34px;
	border-top: 1px solid rgba(125, 203, 255, 0.08);
}

.site-footer__signals span {
	padding: 13px 14px;
	border: 1px solid rgba(137, 198, 255, 0.12);
	border-radius: 8px;
	background: rgba(12, 20, 42, 0.46);
	color: rgba(244, 248, 255, 0.78);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.site-main--page,
.site-main--archive {
	min-height: 65vh;
}

.page-hero {
	padding: 80px 0 48px;
	background: linear-gradient(180deg, rgba(9, 15, 34, 0.78), rgba(5, 8, 20, 0));
}

.page-hero h1 {
	margin-bottom: 16px;
}

.page-featured-image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border: 1px solid var(--lf-border);
	border-radius: var(--lf-radius-lg);
}

.prose,
.content-layout {
	padding: 56px 0 80px;
}

.prose {
	max-width: 820px;
	color: rgba(244, 248, 255, 0.88);
}

.prose a {
	color: var(--lf-cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

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

.prose ul,
.prose ol {
	padding-left: 1.35em;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(340px, 1.25fr);
	gap: 18px;
	padding: 40px 0 80px;
}

.contact-page__panel,
.contact-page__form {
	padding: 26px;
	border-radius: var(--lf-radius);
}

.contact-page__form {
	grid-row: span 2;
}

.contact-steps {
	display: grid;
	gap: 12px;
	padding-left: 1.2em;
	margin: 18px 0 0;
	color: var(--lf-muted);
}

.contact-methods {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.contact-methods p {
	margin: 0;
	color: var(--lf-muted);
}

.contact-methods a {
	color: var(--lf-cyan);
}

.contact-fallback {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.contact-fallback p {
	color: var(--lf-muted);
}

.contact-page__content {
	padding-top: 0;
}

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

.post-card {
	padding: 0;
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-card__body {
	padding: 22px;
}

.post-card__meta {
	margin-bottom: 12px;
	color: var(--lf-muted);
	font-size: 13px;
}

.empty-state {
	max-width: 680px;
	margin-inline: auto;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 0 10px;
	margin-top: 34px;
	border: 1px solid var(--lf-border);
	border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
	}
}

@media (max-width: 980px) {
	:root {
		--lf-shell: min(calc(100vw - 28px), 760px);
	}

	.nav-toggle {
		display: grid;
		place-items: center;
		order: 3;
	}

	.primary-nav {
		position: absolute;
		top: var(--lf-header-height);
		right: 14px;
		left: 14px;
		display: none;
		padding: 14px;
		border: 1px solid var(--lf-border);
		border-radius: 8px;
		background: rgba(5, 8, 20, 0.98);
		box-shadow: var(--lf-shadow);
	}

	.header-cta {
		margin-left: auto;
	}

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

	.primary-nav__menu {
		display: grid;
		gap: 4px;
	}

	.primary-nav__menu a {
		display: block;
		padding: 12px;
		border-radius: 8px;
	}

	.primary-nav__menu a:hover,
	.primary-nav__menu a:focus {
		background: rgba(56, 232, 255, 0.08);
	}

	.hero-section__grid,
	.solution-overview,
	.architecture-grid,
	.trust-grid,
	.contact-page__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.contact-page__form {
		grid-row: auto;
	}

	.trust-list,
	.risk-console {
		grid-column: auto;
		grid-row: auto;
	}

	.three-grid,
	.pain-grid,
	.service-grid,
	.package-grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.scenario-matrix,
	.timeline {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 15px;
	}

	.hero-section,
	.contact-cta {
		padding: 56px 0;
	}

	h1 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.hero-metrics,
	.hero-trust-tags,
	.three-grid,
	.pain-grid,
	.service-grid,
	.package-grid,
	.scenario-list,
	.scenario-matrix,
	.timeline,
	.post-grid,
	.console-grid {
		grid-template-columns: 1fr;
	}

	.flow-board {
		grid-template-columns: 1fr;
	}

	.flow-line {
		width: 2px;
		height: 22px;
		margin-inline: auto;
		background: linear-gradient(180deg, var(--lf-cyan), var(--lf-violet));
	}

	.site-brand__tagline {
		display: none;
	}

	.section-heading {
		text-align: left;
	}

	.primary-nav {
		right: 10px;
		left: 10px;
	}

	.header-cta {
		min-height: 38px;
		padding: 0 12px;
		font-size: 13px;
	}

	.button {
		width: 100%;
		min-height: 50px;
	}

	.hero-section__actions {
		width: 100%;
	}

	.contact-cta__signals,
	.site-footer__signals {
		display: grid;
		grid-template-columns: 1fr;
	}

	.scenario-item {
		min-height: auto;
	}

	.timeline::before {
		display: none;
	}

	.package-card,
	.pain-card {
		min-height: auto;
	}
}

/* v0.1.2 visual upgrade */
:root {
	--lf-surface: rgba(11, 19, 40, 0.76);
	--lf-surface-strong: rgba(18, 31, 60, 0.92);
	--lf-border: rgba(137, 198, 255, 0.18);
	--lf-border-strong: rgba(75, 222, 255, 0.42);
	--lf-muted: #a9b8d3;
	--lf-amber: #ffd166;
	--lf-panel-line: rgba(255, 255, 255, 0.07);
	--lf-card-gradient: linear-gradient(180deg, rgba(18, 31, 60, 0.9), rgba(7, 14, 31, 0.78));
}

body {
	background:
		radial-gradient(circle at 14% 0%, rgba(47, 125, 255, 0.28), transparent 27rem),
		radial-gradient(circle at 82% 10%, rgba(56, 232, 255, 0.12), transparent 25rem),
		radial-gradient(circle at 74% 38%, rgba(124, 92, 255, 0.18), transparent 32rem),
		linear-gradient(180deg, #050814 0%, #07111f 48%, #050814 100%);
}

.site-header {
	background: rgba(5, 8, 20, 0.82);
	border-bottom-color: rgba(137, 198, 255, 0.14);
}

.primary-nav__menu a {
	position: relative;
}

.primary-nav__menu a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--lf-cyan), transparent);
	opacity: 0;
	content: "";
	transition: opacity 160ms ease;
}

.primary-nav__menu a:hover::after,
.primary-nav__menu a:focus::after {
	opacity: 1;
}

.header-cta,
.button--primary {
	background: linear-gradient(135deg, #2f7dff 0%, #32d9ff 54%, #56f2b7 100%);
}

.button:focus-visible,
.header-cta:focus-visible,
.primary-nav__menu a:focus-visible {
	outline: 2px solid var(--lf-cyan);
	outline-offset: 3px;
}

.hero-section {
	min-height: calc(100svh - var(--lf-header-height));
	display: grid;
	align-items: center;
}

.section-grid-bg::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	background:
		linear-gradient(120deg, transparent 0 42%, rgba(56, 232, 255, 0.08) 42% 43%, transparent 43% 100%),
		linear-gradient(155deg, transparent 0 56%, rgba(124, 92, 255, 0.08) 56% 57%, transparent 57% 100%);
}

.hero-section__content {
	position: relative;
}

.hero-section__content::before {
	position: absolute;
	top: -34px;
	left: -28px;
	width: 132px;
	height: 132px;
	border: 1px solid rgba(56, 232, 255, 0.14);
	border-radius: 18px;
	background:
		linear-gradient(rgba(56, 232, 255, 0.11) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.11) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.6;
	content: "";
	transform: rotate(8deg);
}

.hero-section__lead {
	max-width: 680px;
}

.hero-proof,
.console-metrics,
.console-footer,
.architecture-panel__governance,
.contact-assurance,
.contact-scope {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-proof {
	margin-top: 24px;
}

.hero-proof span,
.console-footer span,
.architecture-panel__governance span,
.contact-assurance span,
.contact-scope span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 11px;
	border: 1px solid rgba(137, 198, 255, 0.18);
	border-radius: 8px;
	background: rgba(11, 19, 40, 0.66);
	color: rgba(244, 248, 255, 0.82);
	font-size: 13px;
	font-weight: 750;
}

.hero-proof span::before,
.contact-assurance span::before {
	width: 7px;
	aspect-ratio: 1;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--lf-green);
	box-shadow: 0 0 14px rgba(86, 242, 183, 0.58);
	content: "";
}

.hero-console,
.glow-card,
.architecture-panel,
.trust-list {
	background: var(--lf-card-gradient);
}

.hero-console {
	border-color: rgba(75, 222, 255, 0.28);
	background:
		linear-gradient(rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(17, 30, 60, 0.94), rgba(7, 14, 31, 0.84));
	background-size: 28px 28px, 28px 28px, auto;
}

.hero-console::after {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 16%, rgba(56, 232, 255, 0.05) 51%, transparent 52%);
	mix-blend-mode: screen;
}

.console-status {
	position: relative;
	z-index: 1;
	border-color: rgba(75, 222, 255, 0.2);
	background: rgba(5, 8, 20, 0.56);
}

.console-metrics {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 14px;
}

.console-metrics span {
	display: grid;
	gap: 5px;
	padding: 12px;
	border: 1px solid rgba(137, 198, 255, 0.15);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.5);
	color: var(--lf-muted);
	font-size: 11px;
	font-weight: 750;
	text-transform: uppercase;
}

.console-metrics strong {
	color: var(--lf-text);
	font-size: 18px;
	line-height: 1;
	text-transform: none;
}

.flow-board {
	position: relative;
	z-index: 1;
	min-height: 216px;
	border: 1px solid rgba(137, 198, 255, 0.12);
	background:
		radial-gradient(circle at 50% 50%, rgba(56, 232, 255, 0.12), transparent 34%),
		linear-gradient(rgba(56, 232, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.08) 1px, transparent 1px),
		rgba(5, 8, 20, 0.46);
	background-size: auto, 22px 22px, 22px 22px, auto;
}

.flow-node {
	position: relative;
	border-color: rgba(137, 198, 255, 0.18);
	background: rgba(9, 17, 36, 0.9);
	box-shadow: inset 0 1px 0 var(--lf-panel-line);
}

.flow-node::before {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(169, 184, 211, 0.45);
	content: "";
}

.flow-node.is-active::before {
	background: var(--lf-green);
	box-shadow: 0 0 14px rgba(86, 242, 183, 0.68);
}

.console-footer {
	position: relative;
	z-index: 1;
	justify-content: space-between;
	margin-top: 16px;
}

.console-footer span {
	flex: 1 1 0;
	justify-content: center;
	border-color: rgba(86, 242, 183, 0.2);
	color: rgba(244, 248, 255, 0.78);
}

.glow-card {
	overflow: hidden;
	box-shadow: var(--lf-shadow), inset 0 1px 0 var(--lf-panel-line);
}

.glow-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(56, 232, 255, 0.62), transparent);
	content: "";
}

.pain-card .card-index::before,
.service-card__icon,
.package-card__head span {
	background: linear-gradient(135deg, rgba(47, 125, 255, 0.24), rgba(56, 232, 255, 0.1));
}

.service-card {
	display: flex;
	flex-direction: column;
}

.service-card ul {
	margin-top: auto;
	padding-top: 22px;
}

.scenario-matrix {
	grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.scenario-item {
	position: relative;
	background: linear-gradient(180deg, rgba(17, 30, 60, 0.72), rgba(7, 14, 31, 0.62));
}

.scenario-item::after {
	position: absolute;
	right: 16px;
	bottom: 14px;
	color: rgba(255, 209, 102, 0.8);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	content: "USE";
}

.timeline {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.timeline::before {
	top: 36px;
	right: 6%;
	left: 6%;
	background: linear-gradient(90deg, rgba(56, 232, 255, 0.08), rgba(56, 232, 255, 0.72), rgba(124, 92, 255, 0.68), rgba(86, 242, 183, 0.2));
}

.timeline-item {
	min-height: 258px;
	padding: 70px 18px 18px;
	background: linear-gradient(180deg, rgba(17, 30, 60, 0.78), rgba(7, 14, 31, 0.68));
}

.timeline-item::before {
	top: 28px;
	left: 22px;
	width: 16px;
	border: 3px solid rgba(5, 8, 20, 0.92);
	background: var(--lf-cyan);
}

.timeline-item__phase {
	position: absolute;
	top: 20px;
	right: 18px;
	padding: 5px 8px;
	border: 1px solid rgba(75, 222, 255, 0.28);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.58);
}

.timeline-item__deliverable {
	display: block;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(137, 198, 255, 0.12);
	color: var(--lf-green);
	font-size: 13px;
	font-weight: 800;
}

.architecture-panel {
	position: relative;
	gap: 14px;
	padding: 20px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(17, 30, 60, 0.9), rgba(7, 14, 31, 0.76));
	background-size: 32px 32px, auto;
}

.architecture-panel__rail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border: 1px solid rgba(75, 222, 255, 0.22);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.5);
	color: var(--lf-cyan);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.architecture-panel__rail::after {
	width: 38%;
	height: 1px;
	background: linear-gradient(90deg, rgba(56, 232, 255, 0.72), transparent);
	content: "";
}

.architecture-layer {
	position: relative;
	grid-template-columns: auto minmax(120px, 0.45fr) minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 18px;
	background: rgba(5, 8, 20, 0.58);
}

.architecture-layer + .architecture-layer::before {
	position: absolute;
	top: -14px;
	left: 31px;
	width: 1px;
	height: 14px;
	background: rgba(56, 232, 255, 0.32);
	content: "";
}

.architecture-layer__index {
	display: grid;
	width: 42px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(75, 222, 255, 0.34);
	border-radius: 8px;
	background: rgba(56, 232, 255, 0.08);
	color: var(--lf-cyan);
	font-size: 12px;
	font-weight: 900;
}

.architecture-layer span:not(.architecture-layer__index) {
	color: var(--lf-muted);
}

.architecture-panel__governance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.architecture-panel__governance span {
	justify-content: center;
	border-color: rgba(255, 209, 102, 0.2);
	color: rgba(255, 209, 102, 0.92);
}

.package-card__head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	border-radius: 8px;
}

.package-card {
	display: flex;
	flex-direction: column;
}

.package-card__cta {
	margin-top: auto;
}

.contact-page__hero {
	position: relative;
	overflow: hidden;
}

.contact-page__hero::after {
	position: absolute;
	right: 6vw;
	bottom: -70px;
	width: 260px;
	aspect-ratio: 1;
	border: 1px solid rgba(56, 232, 255, 0.14);
	border-radius: 24px;
	background:
		linear-gradient(rgba(56, 232, 255, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.09) 1px, transparent 1px);
	background-size: 24px 24px;
	content: "";
	transform: rotate(12deg);
}

.contact-page__grid {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.82fr) minmax(360px, 1.28fr);
	align-items: stretch;
}

.contact-page__panel,
.contact-page__form {
	background: var(--lf-card-gradient);
}

.contact-page__panel--scope {
	grid-column: span 2;
}

.contact-scope {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 18px;
}

.contact-scope span {
	min-height: 42px;
}

.contact-assurance {
	margin: 0 0 22px;
}

.contact-fallback {
	padding: 18px;
	border: 1px solid rgba(137, 198, 255, 0.12);
	border-radius: 8px;
	background: rgba(5, 8, 20, 0.38);
}

@media (max-width: 980px) {
	.primary-nav {
		max-height: calc(100vh - var(--lf-header-height) - 28px);
		overflow-y: auto;
	}

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

	.hero-section {
		min-height: auto;
	}

	.hero-section__content::before {
		display: none;
	}

	.console-metrics,
	.architecture-panel__governance,
	.scenario-matrix,
	.contact-page__grid {
		grid-template-columns: 1fr;
	}

	.contact-page__panel--scope {
		grid-column: auto;
	}

	.timeline {
		grid-template-columns: 1fr;
		padding-left: 20px;
	}

	.timeline::before {
		top: 18px;
		bottom: 18px;
		left: 6px;
		width: 1px;
		height: auto;
		background: linear-gradient(180deg, rgba(56, 232, 255, 0.72), rgba(86, 242, 183, 0.16));
	}

	.timeline-item {
		min-height: auto;
		padding: 24px 20px 20px;
	}

	.timeline-item::before {
		top: 30px;
		left: -22px;
	}
}

@media (max-width: 700px) {
	.hero-proof,
	.console-footer,
	.contact-assurance {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-proof span,
	.console-footer span,
	.contact-assurance span,
	.contact-scope span {
		justify-content: flex-start;
	}

	.hero-console {
		padding: 16px;
	}

	.console-metrics {
		grid-template-columns: 1fr;
	}

	.architecture-layer {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: start;
	}

	.architecture-layer span:not(.architecture-layer__index) {
		grid-column: 1 / -1;
	}

	.architecture-panel__rail {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.architecture-panel__rail::after {
		width: 100%;
	}

	.contact-scope {
		grid-template-columns: 1fr;
	}
}

/* Optional local image assets */
.hero-console--has-image {
	background:
		linear-gradient(180deg, rgba(7, 14, 31, 0.72), rgba(7, 14, 31, 0.9)),
		linear-gradient(rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(17, 30, 60, 0.94), rgba(7, 14, 31, 0.84));
	background-size: auto, 28px 28px, 28px 28px, auto;
}

.hero-console__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
	filter: saturate(1.08) contrast(1.05);
	pointer-events: none;
}

.hero-console--has-image > :not(.hero-console__visual) {
	position: relative;
	z-index: 2;
}

.hero-console--has-image::after {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 8, 20, 0.82), rgba(5, 8, 20, 0.36) 54%, rgba(5, 8, 20, 0.72)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 16%, rgba(56, 232, 255, 0.05) 51%, transparent 52%);
}

.architecture-panel--has-image {
	background:
		linear-gradient(90deg, rgba(5, 8, 20, 0.9), rgba(5, 8, 20, 0.62)),
		linear-gradient(90deg, rgba(56, 232, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(17, 30, 60, 0.9), rgba(7, 14, 31, 0.76));
	background-size: auto, 32px 32px, auto;
}

.architecture-panel__visual {
	position: absolute;
	inset: -8% -10% auto auto;
	z-index: 0;
	width: min(72%, 560px);
	height: auto;
	max-width: none;
	opacity: 0.24;
	filter: saturate(1.12) contrast(1.05);
	pointer-events: none;
}

.architecture-panel--has-image > :not(.architecture-panel__visual) {
	position: relative;
	z-index: 1;
}

.methodology-section {
	position: relative;
	overflow: hidden;
}

.methodology-section .site-shell {
	position: relative;
	z-index: 1;
}

.methodology-visual {
	position: absolute;
	top: -52px;
	right: -8%;
	z-index: 0;
	width: min(58vw, 720px);
	opacity: 0.22;
	pointer-events: none;
}

.methodology-visual img {
	width: 100%;
	height: auto;
	filter: saturate(1.08) contrast(1.04);
}

.methodology-section--has-image .section-heading,
.methodology-section--has-image .timeline {
	position: relative;
	z-index: 1;
}

.contact-cta--has-image {
	background:
		linear-gradient(180deg, rgba(5, 8, 20, 0.62), rgba(5, 8, 20, 0.88)),
		linear-gradient(110deg, rgba(56, 232, 255, 0.1), transparent 44%),
		radial-gradient(circle at 75% 45%, rgba(124, 92, 255, 0.24), transparent 22rem);
}

.contact-cta__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.46;
	filter: saturate(1.06) contrast(1.04);
	pointer-events: none;
}

.contact-cta--has-image::before,
.contact-cta--has-image::after {
	z-index: 1;
}

.contact-cta--has-image::before {
	background:
		linear-gradient(180deg, rgba(5, 8, 20, 0.5), rgba(5, 8, 20, 0.86)),
		radial-gradient(circle at 50% 50%, rgba(56, 232, 255, 0.18), transparent 30rem);
}

.contact-cta--has-image .contact-cta__inner {
	position: relative;
	z-index: 2;
	background: linear-gradient(135deg, rgba(15, 26, 54, 0.82), rgba(8, 15, 33, 0.58));
	backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
	.architecture-panel__visual {
		inset: -6% -18% auto auto;
		width: min(86%, 520px);
		opacity: 0.18;
	}

	.methodology-visual {
		top: 20px;
		right: -22%;
		width: min(92vw, 620px);
		opacity: 0.14;
	}
}

@media (max-width: 700px) {
	.hero-console__visual {
		opacity: 0.22;
	}

	.architecture-panel__visual,
	.methodology-visual {
		display: none;
	}

	.contact-cta__visual {
		width: 140%;
		max-width: none;
		transform: translateX(-14%);
		opacity: 0.34;
	}
}
