Files
boc/backups/2026-07-12-1023/landvex-prod/about/index.html
T

674 lines
24 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Landvex — Decision Intelligence for the Physical World</title>
<meta name="description" content="Landvex delivers field-verified intelligence for infrastructure, property, and urban decision-making. Learn about our team, group structure, and mission." />
<link rel="canonical" href="https://www.landvex.com/about/" />
<style>
:root {
--bg-dark: #f5f5f7;
--blue: #0066FF;
--blue-dark: #0052CC;
--blue-glow: rgba(0, 102, 255, 0.15);
--text-dark: #0a0a0a;
--text-body: #3a3a3a;
--text-muted: #6B6B6B;
--text-light: #1d1d1f;
--text-dim: #6B6B6B;
--surface: #ffffff;
--surface-2: #f5f5f7;
--border: rgba(0,0,0,0.08);
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 24px;
}
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
background: var(--bg-dark);
color: var(--text-light);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
margin: 0;
}
a { color: inherit; text-decoration: none; }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px;
height: 64px;
background: rgba(0,0,0,0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
font-size: 18px;
font-weight: 700;
letter-spacing: -0.3px;
color: #1d1d1f;
}
.nav-links {
display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
font-size: 14px;
color: var(--text-dim);
transition: color 0.2s;
}
.nav-links a:hover { color: #1d1d1f; }
.nav-dropdown { position: relative; }
.nav-dropdown > a {
display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-dropdown > a::after {
content: '';
display: inline-block;
width: 0; height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid currentColor;
opacity: 0.55;
margin-top: 1px;
transition: transform 0.2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
display: none;
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%);
background: rgba(245,245,247,0.98);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 8px 0;
min-width: 220px;
max-height: calc(100vh - 80px);
overflow-y: auto;
box-shadow: 0 16px 40px rgba(0,0,0,0.6);
z-index: 9999;
backdrop-filter: blur(12px);
}
.nav-dropdown-menu::before {
content: '';
position: absolute;
top: -12px; left: 0; right: 0;
height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
display: flex; align-items: center; gap: 10px;
padding: 10px 18px;
font-size: 14px; color: var(--text-dim);
transition: color 0.15s, background 0.15s;
white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: #1d1d1f; background: rgba(0,0,0,0.03); }
.nav-dropdown-menu .dd-label {
font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
text-transform: uppercase; color: rgba(0,0,0,0.75);
padding: 8px 18px 4px; cursor: default;
}
.nav-dropdown-menu hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.btn {
display: inline-flex; align-items: center; gap: 6px;
padding: 10px 22px;
background: var(--blue);
color: #1d1d1f;
border-radius: var(--radius-sm);
font-size: 14px; font-weight: 600;
transition: background 0.2s, transform 0.15s;
border: none; cursor: pointer;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline {
background: transparent;
border: 1px solid var(--border);
color: var(--text-light);
}
.btn-outline:hover { background: rgba(0,0,0,0.04); transform: translateY(-1px); }
/* PAGE CONTENT */
.page-wrap {
max-width: 800px;
margin: 0 auto;
padding: 120px 40px 80px;
}
/* HERO */
.about-hero {
padding-bottom: 72px;
border-bottom: 1px solid var(--border);
}
.eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--blue);
margin-bottom: 20px;
}
.about-hero h1 {
font-size: clamp(30px, 5vw, 48px);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.15;
color: #1d1d1f;
margin: 0 0 24px;
}
.about-hero p {
font-size: 18px;
color: var(--text-dim);
line-height: 1.7;
max-width: 640px;
margin: 0;
}
/* SECTIONS */
.section {
padding: 64px 0;
border-bottom: 1px solid var(--border);
}
.section:last-child {
border-bottom: none;
}
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 32px;
}
/* TEAM */
.team-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.team-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 28px;
}
.team-name {
font-size: 17px;
font-weight: 700;
color: #1d1d1f;
margin-bottom: 4px;
}
.team-title {
font-size: 13px;
color: var(--blue);
font-weight: 600;
margin-bottom: 16px;
line-height: 1.4;
}
.team-bio {
font-size: 14px;
color: var(--text-dim);
line-height: 1.65;
margin: 0;
}
/* GROUP STRUCTURE */
.group-entities {
display: flex;
flex-direction: column;
gap: 16px;
}
.entity-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 24px 28px;
}
.entity-name {
font-size: 15px;
font-weight: 700;
color: #1d1d1f;
margin-bottom: 12px;
}
.entity-items {
display: flex;
flex-direction: column;
gap: 6px;
}
.entity-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--text-dim);
}
.entity-item::before {
content: '→';
color: var(--blue);
font-size: 13px;
flex-shrink: 0;
}
/* DISCLAIMER */
.disclaimer-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 3px solid var(--blue);
border-radius: var(--radius-sm);
padding: 24px 28px;
}
.disclaimer-box p {
font-size: 14px;
color: var(--text-dim);
line-height: 1.7;
margin: 0;
}
/* CTA */
.cta-row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.cta-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 15px;
font-weight: 600;
color: var(--blue);
transition: color 0.2s;
}
.cta-link:hover { color: #1d1d1f; }
.cta-link-secondary {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 15px;
font-weight: 600;
color: var(--text-dim);
transition: color 0.2s;
}
.cta-link-secondary:hover { color: #1d1d1f; }
/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 40px 40px;
}
.footer-inner {
max-width: 1140px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 17px; font-weight: 700; color: #1d1d1f; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: #1d1d1f; }
.footer-social {
width: 32px; height: 32px;
border: 1px solid var(--border);
border-radius: var(--radius-md);
display: flex; align-items: center; justify-content: center;
transition: border-color 0.2s, background 0.2s;
}
.footer-social:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.04); }
/* RESPONSIVE */
@media (max-width: 900px) {
nav { padding: 0 16px; }
.nav-links { display: none; }
}
@media (max-width: 600px) {
.page-wrap { padding: 96px 20px 60px; }
.about-hero h1 { font-size: 28px; }
.about-hero p { font-size: 16px; }
.team-grid { grid-template-columns: 1fr; }
footer { padding: 32px 20px; }
.footer-inner { flex-direction: column; text-align: center; }
.footer-links { justify-content: center; }
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": [
"Organization",
"Corporation"
],
"@id": "https://landvex.com/#organization",
"name": "Landvex",
"alternateName": [
"LandveX",
"Landvex AB",
"LandveX AB"
],
"url": "https://landvex.com",
"logo": {
"@type": "ImageObject",
"url": "https://landvex.com/apple-touch-icon.png",
"width": 180,
"height": 180
},
"foundingDate": "2024",
"foundingLocation": {
"@type": "Place",
"addressLocality": "Tyresö",
"addressRegion": "Stockholm",
"addressCountry": "SE"
},
"legalName": "Landvex Inc",
"address": {
"@type": "PostalAddress",
"addressLocality": "Houston",
"addressRegion": "TX",
"addressCountry": "US"
},
"location": [
{
"@type": "Place",
"name": "Houston, Texas, USA (US HQ)",
"address": {
"@type": "PostalAddress",
"addressLocality": "Houston",
"addressRegion": "TX",
"addressCountry": "US"
}
},
{
"@type": "Place",
"name": "Tyresö, Sweden (EU HQ)",
"address": {
"@type": "PostalAddress",
"addressLocality": "Tyresö",
"addressRegion": "Stockholm",
"addressCountry": "SE"
}
}
],
"taxID": "pending-EIN",
"description": "Landvex is a decision intelligence company that identifies contradictions between official narratives and observed physical reality. Using the quiXzoom field observation network and the AMOS AI analysis engine, Landvex delivers infrastructure risk indexes, urban intelligence scores, and contradiction reports to infrastructure owners, municipalities, enterprises, and investors globally.",
"disambiguatingDescription": "Landvex (LandveX) is a decision intelligence company with US headquarters in Houston, Texas (Landvex Inc.) and European headquarters in Tyresö, Sweden (Landvex AB, org.nr 559141-7042). Landvex delivers control intelligence — infrastructure risk scores, urban intelligence, and contradiction analysis — to municipalities, enterprises, infrastructure operators and investors. Landvex is not a UK meat wholesaler, food distributor, logistics company, package tracker, or land investment platform.",
"knowsAbout": [
"control intelligence",
"decision intelligence",
"infrastructure risk assessment",
"urban intelligence",
"field data collection",
"contradiction detection",
"physical world analytics",
"geospatial analytics"
],
"brand": {
"@type": "Brand",
"name": "Landvex",
"slogan": "Control intelligence for the physical world."
},
"sameAs": [
"https://landvex.com",
"https://www.linkedin.com/company/landvex",
"https://x.com/landvex",
"https://twitter.com/landvex",
"https://www.crunchbase.com/organization/landvex",
"https://github.com/landvex",
"https://www.instagram.com/landvex"
],
"contactPoint": {
"@type": "ContactPoint",
"email": "contact@landvex.com",
"contactType": "sales"
},
"slogan": "Where reported reality conflicts with observed reality."
}
</script>
</head>
<body>
<nav aria-label="breadcrumb" style="padding: 10px 20px; color: rgba(235,235,245,0.6); font-size: 14px;">
<a href="/" style="color: #007AFF; text-decoration: none;">Home</a> / <span>about</span>
</nav>
<!-- NAV -->
<nav>
<a class="nav-logo" href="/">LandveX</a>
<ul class="nav-links">
<li><a href="/#how-it-works">How it works</a></li>
<li><a href="/#verticals">Verticals</a></li>
<li class="nav-dropdown">
<a href="/methodology/">Intelligence</a>
<div class="nav-dropdown-menu">
<div class="dd-label">Learn</div>
<a href="/methodology/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg>
Methodology
</a>
<a href="/#intelligence">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
Intelligence scores
</a>
<hr/>
<div class="dd-label">Verticals</div>
<a href="/verticals/property/">Property &amp; Real Estate</a>
<a href="/verticals/investors/">Investors &amp; Asset Mgrs</a>
<a href="/verticals/municipalities/">Municipalities</a>
<a href="/verticals/infrastructure/">Infrastructure</a>
<a href="/verticals/retail/">Retail &amp; F&amp;B</a>
<a href="/verticals/insurance/">Insurance</a>
<a href="/verticals/utilities/">Utilities</a>
<hr/>
<div class="dd-label">Products</div>
<a href="/enterprise/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M9 21V9"/></svg>
Enterprise
</a>
<a href="/reports/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>
Intelligence Reports
</a>
<a href="/pilot/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
Pilot Programme
</a>
<hr/>
<div class="dd-label">Compare</div>
<a href="/comparison/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
Compare →
</a>
<a href="/sla/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 11 12 14 22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg>
SLA &amp; Coverage →
</a>
<hr/>
<a href="/security/">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
Security
</a>
</div>
</li>
<li><a href="/#cities">Cities</a></li>
<li><a href="/enterprise/">Enterprise</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>
<a class="btn btn-outline" href="/#contact">Get in touch →</a>
</nav>
<!-- PAGE CONTENT -->
<main class="page-wrap">
<!-- HERO -->
<section class="about-hero">
<div class="eyebrow">About Landvex</div>
<h1>Built on a simple premise: official data is always late.</h1>
<p>Landvex delivers field-verified intelligence — the difference between what databases say and what's actually on the ground.</p>
</section>
<!-- TEAM -->
<section class="section">
<div class="section-label">Team</div>
<div class="team-grid">
<div class="team-card">
<div class="team-name">Erik Svensson</div>
<div class="team-title">Founder &amp; CEO, Landvex · Chairman, quiXzoom Inc</div>
<p class="team-bio">Erik founded Landvex on the belief that physical-world decisions deserve the same data rigour as financial markets. He has spent a decade building intelligence infrastructure at the intersection of field observation and machine learning.</p>
</div>
<div class="team-card">
<div class="team-name">Johan Berglund</div>
<div class="team-title">Group CTO</div>
<p class="team-bio">Johan leads technology across both Landvex and quiXzoom, designing the systems that transform raw field observations into decision-grade intelligence. He drives platform architecture, data pipelines, and the intelligence scoring engine.</p>
</div>
</div>
</section>
<!-- GROUP STRUCTURE -->
<section class="section">
<div class="section-label">Group Structure</div>
<div class="group-entities">
<div class="entity-card">
<div class="entity-name">quiXzoom Inc &nbsp;<span style="font-weight:400;font-size:13px;color:var(--text-muted)">Delaware, USA</span></div>
<div class="entity-items">
<div class="entity-item">Field intelligence network</div>
<div class="entity-item">Crowdsourced observation platform</div>
</div>
</div>
<div class="entity-card">
<div class="entity-name">Landvex Inc &nbsp;<span style="font-weight:400;font-size:13px;color:var(--text-muted)">Houston, TX, USA</span></div>
<div class="entity-items">
<div class="entity-item">Intelligence platform</div>
<div class="entity-item">Decision intelligence products</div>
</div>
</div>
<div class="entity-card">
<div class="entity-name">LandveX AB &nbsp;<span style="font-weight:400;font-size:13px;color:var(--text-muted)">Tyresö, Sweden · org.nr 559141-7042</span></div>
<div class="entity-items">
<div class="entity-item">European operations &amp; EU regulatory compliance</div>
</div>
</div>
</div>
</section>
<!-- PRE-LAUNCH DISCLAIMER -->
<section class="section">
<div class="section-label">Launch Status</div>
<div class="disclaimer-box">
<p>Landvex activates commercially from August 2026 as the quiXzoom observation network launches across Sweden and the Netherlands. All intelligence scores shown on this site are format demonstrations — not live data.</p>
</div>
</section>
<!-- CTA -->
<section class="section">
<div class="section-label">Next Steps</div>
<div class="cta-row">
<a class="cta-link" href="/verticals/insurance/">Insurance intelligence →</a>
<a class="cta-link-secondary" href="/enterprise/">Request a pilot →</a>
</div>
</section>
</main>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div>
<div class="footer-logo">Landvex</div>
<div class="footer-copy">© 2026 Landvex Inc</div>
<div style="font-size:11px;color:var(--text-muted);margin-top:4px;line-height:1.6">Landvex Inc · Houston, Texas (US HQ) · Landvex AB · Org.nr 559141-7042 · Tyresö, Sweden (EU operations) · <a href="mailto:contact@landvex.com" style="color:inherit">contact@landvex.com</a></div>
<div style="font-size:11px;color:var(--text-muted);margin-top:4px">quiXzoom field data is collected by quiXzoom Inc (Delaware) and licensed to Landvex for intelligence production. <a href="https://www.quixzoom.com/" style="color:inherit">quiXzoom →</a></div>
<div class="footer-tagline">Control intelligence for the physical world.</div>
</div>
<div class="footer-links">
<a href="/privacy/">Privacy</a>
<a href="/terms/">Terms</a>
<a href="/cookie-policy/">Cookies</a>
<a href="/compliance/">Compliance</a>
<a href="/trust/">Trust Centre</a>
<a href="/dpa/">DPA</a>
<a href="/data-lineage/">Data Lineage</a>
<a href="/subprocessors/">Sub-processors</a>
<a href="/methodology/">Methodology</a>
<a href="/data-quality/">Data Quality</a>
<a href="/security/">Security</a>
<a href="/comparison/">Compare</a>
<a href="/sla/">SLA &amp; Coverage</a>
<a href="/cities/stockholm/">Stockholm</a>
<a href="/cities/berlin/">Berlin</a>
<a href="/cities/paris/">Paris</a>
<a href="/cities/london/">London</a>
<a href="/cities/bangkok/">Bangkok</a>
<a href="/about/">About</a>
<a href="/careers/">Careers</a>
<a href="/accessibility/">Accessibility</a>
<a href="/responsible-disclosure/">Responsible disclosure</a>
<a href="/blog/">Intelligence Insights</a>
<a href="/guides/">Guides</a>
<a href="https://www.quixzoom.com/" target="_blank" rel="noopener">quiXzoom →</a>
<a href="mailto:contact@landvex.com">contact@landvex.com</a>
<a href="https://www.linkedin.com/company/landvex" target="_blank" rel="noopener" class="footer-social" title="LandveX on LinkedIn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="2" y="9" width="4" height="12" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="4" cy="4" r="2" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<a href="https://x.com/landvex" target="_blank" rel="noopener" class="footer-social" title="LandveX on X">
<svg width="15" height="15" viewBox="0 0 24 24" fill="#888" xmlns="http://www.w3.org/2000/svg">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622 5.912-5.622Zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
</div>
</div>
</footer>
</body>
</html>