ADVERTISEMENT

AXON Group debuts integrated 'stack' to speed office expansion

Published Jan 23, 2026 02:46 pm
Sherwin Dela Cruz, Founder and CEO of AXON Group, speaks to members of the media during the official launch of AXON at Quad in Bonifacio Global City, where the company unveiled its integrated, zero-CapEx approach to building and scaling workspaces.
Sherwin Dela Cruz, Founder and CEO of AXON Group, speaks to members of the media during the official launch of AXON at Quad in Bonifacio Global City, where the company unveiled its integrated, zero-CapEx approach to building and scaling workspaces.
AXON Group, a workspace infrastructure company, launched a vertically integrated platform aimed at reducing the capital and logistical hurdles that typically delay corporate office expansions in the Philippines.
The company, debuting its flagship “Quad” facility in Bonifacio Global City, seeks to disrupt the traditional real estate model by consolidating design, construction, and capital deployment into a single “stack.” The approach targets enterprises that are increasingly planning growth within shorter windows and looking to avoid the heavy upfront costs and coordination failures inherent in multi-vendor projects.
Traditional office delivery often involves navigating a fragmented chain of designers, engineers, and contractors, a process that adds margin and delays at every handoff. AXON collapses this model by owning the entire lifecycle, from engineering and fabrication to ongoing operations. This vertical integration allows for “zero-friction” builds, according to the company, enabling firms to move from commitment to occupancy in as little as 75 to 90 days.
“Most companies now make scaling decisions in much tighter timeframes, but the workspace industry still behaves as if growth happens once every twenty years,” said Sherwin Dela Cruz, Chief Executive Officer and co-founder of AXON Group. “That mismatch is expensive. AXON was built to fix it by collapsing what used to be multiple vendors and decision points into a single, accountable stack.”
A cornerstone of the business is AXON Keys, a managed workspace offering that converts the burden of office fit-outs into a predictable operating expense. Rather than requiring clients to manage permits and contractors, AXON deploys its own capital to deliver built-to-suit, technology-ready environments. The model effectively removes the capital expenditure (CapEx) barrier for growing firms.
Dela Cruz, who previously managed office builds on the client side, noted that the system of delivering workspaces is fundamentally broken. During the pandemic, he witnessed firsthand how projects stalled and risks accumulated due to systemic inefficiencies. AXON was designed to absorb those risks by maintaining control over sourcing and execution.
The 2,400-square-meter Quad facility serves as a live demonstration of this model. The site integrates specialist capabilities including Woodpecker joinery, Optima glazing by Kingfisher, and enterprise-grade audiovisual systems provided through a strategic partnership with Versatech International. The facility is nearing full tenant utilization and functions as a "swing space" within the AXON portfolio, allowing capacity to be reset as client requirements evolve.
By utilizing repeatable engineering and prefabricated components, AXON aims to reduce late-stage changes and variability. As corporate tenants demand more flexibility, the company’s launch signals a shift toward treating workspace as a service that must keep pace with rapid business cycles.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.