48ea61cdcc
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
729 lines
37 KiB
HTML
729 lines
37 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Intelligence Reports — Landvex</title>
|
|
<meta name="description" content="Landvex intelligence reports — district-level scoring, infrastructure risk methodology, and urban change detection. Available on request.">
|
|
<link rel="canonical" href="https://www.landvex.com/reports/">
|
|
<meta name="robots" content="index, follow">
|
|
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://www.landvex.com/reports/">
|
|
<meta property="og:title" content="Intelligence Reports — Landvex">
|
|
<meta property="og:description" content="Landvex intelligence reports — district-level scoring, infrastructure risk methodology, and urban change detection. Available on request.">
|
|
<meta property="og:image" content="https://www.landvex.com/og-image.jpg">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="Intelligence Reports — Landvex">
|
|
<meta name="twitter:description" content="Landvex intelligence reports — district-level scoring, infrastructure risk methodology, and urban change detection. Available on request.">
|
|
<meta name="twitter:image" content="https://www.landvex.com/og-image.jpg">
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
:root {
|
|
--bg-dark: #f5f5f7;
|
|
--blue: #0066FF;
|
|
--blue-dark: #0052CC;
|
|
--blue-glow: rgba(0, 102, 255, 0.15);
|
|
--text-light: #1d1d1f;
|
|
--text-muted: #6B6B6B;
|
|
--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;
|
|
}
|
|
|
|
a { color: inherit; text-decoration: none; }
|
|
|
|
/* NAV */
|
|
nav {
|
|
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
padding: 0 40px; height: 64px;
|
|
background: rgba(255,255,255,0.88);
|
|
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; }
|
|
.nav-links a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
|
|
.nav-links a:hover, .nav-links a.active { 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: calc(100% + 12px); left: 50%;
|
|
transform: translateX(-50%);
|
|
background: rgba(255,255,255,0.98);
|
|
border: 1px solid var(--border); border-radius: var(--radius-md);
|
|
padding: 8px 0; min-width: 200px;
|
|
box-shadow: 0 16px 40px rgba(0,0,0,0.5); z-index: 200;
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
.nav-dropdown:hover .nav-dropdown-menu,
|
|
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
|
|
.nav-dropdown-menu a { color: #333333;
|
|
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: #000000; 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.6);
|
|
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;
|
|
font-size: 14px; font-weight: 600; border-radius: var(--radius-md);
|
|
border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
|
|
}
|
|
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
|
|
.btn-outline {
|
|
background: transparent;
|
|
border: 1.5px solid rgba(0,0,0,0.18);
|
|
color: var(--text-light);
|
|
}
|
|
.btn-outline:hover { background: rgba(0,0,0,0.04); transform: translateY(-1px); }
|
|
.btn-lg { padding: 14px 30px; font-size: 16px; }
|
|
|
|
/* HERO */
|
|
.hero {
|
|
min-height: 60vh;
|
|
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
|
text-align: center; padding: 140px 24px 80px;
|
|
position: relative; overflow: hidden;
|
|
}
|
|
.hero::before {
|
|
content: ''; position: absolute;
|
|
top: -200px; left: 50%; transform: translateX(-50%);
|
|
width: 900px; height: 600px;
|
|
background: radial-gradient(ellipse at center, rgba(0,102,255,0.10) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.hero-eyebrow {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.25);
|
|
color: #5599ff; font-size: 12px; font-weight: 600;
|
|
letter-spacing: 0.08em; text-transform: uppercase;
|
|
padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
|
|
}
|
|
.hero h1 {
|
|
font-size: clamp(40px, 6vw, 68px); font-weight: 800;
|
|
letter-spacing: -2px; line-height: 1.05; color: #1d1d1f;
|
|
max-width: 780px; margin-bottom: 24px;
|
|
}
|
|
.hero-sub {
|
|
font-size: clamp(16px, 2vw, 19px); color: var(--text-dim);
|
|
max-width: 580px; line-height: 1.65; margin-bottom: 40px;
|
|
}
|
|
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
|
|
|
|
/* SECTIONS */
|
|
section { padding: 96px 24px; }
|
|
.section-alt { background: var(--surface); }
|
|
.container { max-width: 1140px; margin: 0 auto; }
|
|
.section-label {
|
|
font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
|
|
text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
|
|
}
|
|
.section-title {
|
|
font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
|
|
letter-spacing: -1.2px; line-height: 1.1; color: #1d1d1f; margin-bottom: 16px;
|
|
}
|
|
.section-sub { font-size: 17px; color: var(--text-dim); max-width: 560px; line-height: 1.7; }
|
|
.section-header { margin-bottom: 56px; }
|
|
.section-header-center { text-align: center; }
|
|
.section-header-center .section-sub { margin: 0 auto; }
|
|
|
|
/* REPORT CARDS */
|
|
.reports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
|
|
|
|
.report-card {
|
|
background: var(--surface-2);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
padding: 32px 28px;
|
|
display: flex; flex-direction: column;
|
|
transition: border-color 0.25s, transform 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
.report-card:hover { border-color: rgba(0,102,255,0.4); transform: translateY(-3px); }
|
|
|
|
.report-card.coming-soon {
|
|
opacity: 0.5;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.report-icon {
|
|
width: 44px; height: 44px;
|
|
background: var(--blue-glow);
|
|
border: 1px solid rgba(0,102,255,0.2);
|
|
border-radius: var(--radius-md);
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.report-card.coming-soon .report-icon {
|
|
background: rgba(0,0,0,0.04);
|
|
border-color: rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.report-tag {
|
|
display: inline-block; font-size: 11px; font-weight: 700;
|
|
letter-spacing: 0.08em; text-transform: uppercase;
|
|
padding: 3px 10px; border-radius: 100px;
|
|
margin-bottom: 14px; align-self: flex-start;
|
|
}
|
|
.report-tag.available {
|
|
background: rgba(0,102,255,0.12);
|
|
color: #5599ff;
|
|
border: 1px solid rgba(0,102,255,0.25);
|
|
}
|
|
.report-tag.soon {
|
|
background: rgba(0,0,0,0.04);
|
|
color: rgba(0,0,0,0.6);
|
|
border: 1px solid rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.report-card h3 { font-size: 17px; font-weight: 700; color: #1d1d1f; margin-bottom: 10px; line-height: 1.3; }
|
|
.report-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; flex: 1; }
|
|
.report-card .report-footer {
|
|
margin-top: 20px; padding-top: 16px;
|
|
border-top: 1px solid var(--border);
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
}
|
|
.report-card .report-action {
|
|
font-size: 13px; font-weight: 700; color: var(--blue);
|
|
}
|
|
.report-card .report-date {
|
|
font-size: 12px; color: var(--text-dim);
|
|
}
|
|
|
|
/* COMING SOON GRID */
|
|
.coming-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
|
|
|
|
/* CTA BANNER */
|
|
.cta-banner {
|
|
background: #0a0f1a;
|
|
border: 1px solid rgba(0,102,255,0.2);
|
|
border-radius: var(--radius-lg);
|
|
padding: 64px 56px; text-align: center;
|
|
position: relative; overflow: hidden;
|
|
}
|
|
.cta-banner::before {
|
|
content: ''; position: absolute;
|
|
top: -100px; left: 50%; transform: translateX(-50%);
|
|
width: 600px; height: 300px;
|
|
background: radial-gradient(ellipse, rgba(0,102,255,0.12) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.cta-banner .cta-label {
|
|
font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
|
|
text-transform: uppercase; color: #5599ff; margin-bottom: 16px;
|
|
}
|
|
.cta-banner h2 {
|
|
font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
|
|
letter-spacing: -1px; color: #1d1d1f; margin-bottom: 16px;
|
|
}
|
|
.cta-banner p {
|
|
font-size: 16px; color: var(--text-dim); max-width: 480px;
|
|
margin: 0 auto 32px; line-height: 1.65;
|
|
}
|
|
|
|
/* CONTACT */
|
|
.contact-wrapper { max-width: 680px; margin: 0 auto; text-align: center; }
|
|
.contact-form {
|
|
background: var(--surface); border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg); padding: 40px; text-align: left;
|
|
}
|
|
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
|
|
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
|
|
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
|
|
.form-group input, .form-group textarea, .form-group select {
|
|
background: var(--bg-dark); border: 1.5px solid var(--border);
|
|
border-radius: var(--radius-md); color: #1d1d1f;
|
|
font-size: 15px; font-family: inherit;
|
|
padding: 12px 16px; outline: none; transition: border-color 0.2s; width: 100%;
|
|
}
|
|
.form-group select option { background: #f5f5f7; }
|
|
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
|
|
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
|
|
.form-group textarea { min-height: 120px; resize: vertical; }
|
|
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }
|
|
#form-message {
|
|
display: none; padding: 14px 20px; border-radius: var(--radius-md);
|
|
font-size: 14px; font-weight: 600; text-align: center; margin-top: 16px;
|
|
}
|
|
#form-message.success { background: rgba(0,200,80,0.1); border: 1px solid rgba(0,200,80,0.25); color: #4ade80; }
|
|
#form-message.error { background: rgba(255,60,60,0.1); border: 1px solid rgba(255,60,60,0.25); color: #f87171; }
|
|
|
|
/* FOOTER */
|
|
footer { border-top: 1px solid var(--border); padding: 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; gap: 24px; align-items: center; flex-wrap: wrap; }
|
|
.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); }
|
|
|
|
svg { max-width: 100%; overflow: visible; }
|
|
.report-icon svg { overflow: hidden; flex-shrink: 0; }
|
|
|
|
@media (max-width: 900px) {
|
|
nav { padding: 0 20px; }
|
|
.nav-links { display: none; }
|
|
.reports-grid { grid-template-columns: 1fr 1fr; }
|
|
.coming-grid { grid-template-columns: 1fr 1fr; }
|
|
}
|
|
@media (max-width: 640px) {
|
|
section { padding: 56px 0; }
|
|
.hero { padding: 100px 20px 60px; }
|
|
.hero-ctas { flex-direction: column; }
|
|
.reports-grid { grid-template-columns: 1fr; }
|
|
.coming-grid { grid-template-columns: 1fr 1fr; }
|
|
.form-row { grid-template-columns: 1fr; }
|
|
.contact-form { padding: 24px 20px; }
|
|
.cta-banner { padding: 40px 24px; }
|
|
.footer-inner { flex-direction: column; text-align: center; }
|
|
}
|
|
@media (max-width: 480px) {
|
|
.coming-grid { grid-template-columns: 1fr; }
|
|
}
|
|
@media (max-width: 600px) {
|
|
.container { padding: 0 16px !important; box-sizing: border-box; }
|
|
section { padding: 48px 0 !important; }
|
|
.hero-ctas { flex-direction: column !important; gap: 12px !important; }
|
|
.hero-ctas a { width: 100% !important; text-align: center !important; }
|
|
}
|
|
</style>
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "BreadcrumbList",
|
|
"itemListElement": [
|
|
{
|
|
"@type": "ListItem",
|
|
"position": 1,
|
|
"name": "Landvex",
|
|
"item": "https://www.landvex.com/"
|
|
},
|
|
{
|
|
"@type": "ListItem",
|
|
"position": 2,
|
|
"name": "Reports",
|
|
"item": "https://www.landvex.com/reports/"
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
<link rel="alternate" hreflang="x-default" href="https://www.landvex.com/">
|
|
<link rel="alternate" hreflang="en" href="https://www.landvex.com/">
|
|
<link rel="alternate" hreflang="sv" href="https://landvex.se/">
|
|
<link rel="alternate" hreflang="de" href="https://landvex.de/">
|
|
<link rel="alternate" hreflang="fr" href="https://landvex.fr/">
|
|
<link rel="alternate" hreflang="en-GB" href="https://landvex.co.uk/">
|
|
<link rel="alternate" hreflang="it" href="https://landvex.it/">
|
|
</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>reports</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>
|
|
<hr/>
|
|
<div class="dd-label">Products</div>
|
|
<a href="/enterprise/">Enterprise</a>
|
|
<a href="/reports/" style="color: #1d1d1f">Intelligence Reports</a>
|
|
<a href="/pilot/">Pilot Programme</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="/enterprise/">Enterprise</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
<a class="btn btn-outline" href="#contact">Get in touch</a>
|
|
</nav>
|
|
|
|
<!-- HERO -->
|
|
<section class="hero">
|
|
<div class="hero-eyebrow">
|
|
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" 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>
|
|
Reports
|
|
</div>
|
|
<h1>Intelligence reports and research.</h1>
|
|
<p class="hero-sub">Landvex intelligence reports combine field observations, official data, and AI analysis into structured decision-ready outputs. Available to enterprise clients on request.</p>
|
|
<div class="hero-ctas">
|
|
<a class="btn btn-lg" href="#contact">Request any report</a>
|
|
<a class="btn btn-outline btn-lg" href="/enterprise/">Enterprise access</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- AVAILABLE REPORTS -->
|
|
<section class="section-alt">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<div class="section-label">Available now</div>
|
|
<h2 class="section-title">Available intelligence reports.</h2>
|
|
<p class="section-sub">Published reports available to enterprise clients. Request access below.</p>
|
|
</div>
|
|
<div class="reports-grid">
|
|
|
|
<a class="report-card" href="#contact">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>
|
|
</div>
|
|
<span class="report-tag available">Available</span>
|
|
<h3>Stockholm City Intelligence Report</h3>
|
|
<p>District-level scoring across 8 Stockholm districts. Commercial vitality, infrastructure condition, growth velocity. Sourced from field observations and official data cross-reference.</p>
|
|
<div class="report-footer">
|
|
<span class="report-action">Download on request</span>
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
|
|
</div>
|
|
</a>
|
|
|
|
<a class="report-card" href="#contact">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"/><line x1="12" y1="9" x2="12" y2="13"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
|
</div>
|
|
<span class="report-tag available">Available</span>
|
|
<h3>Infrastructure Risk Methodology</h3>
|
|
<p>How Landvex scores infrastructure risk from field observations and official maintenance data. Covers scoring model, data sources, validation process, and confidence framework.</p>
|
|
<div class="report-footer">
|
|
<span class="report-action">Download on request</span>
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
|
|
</div>
|
|
</a>
|
|
|
|
<a class="report-card" href="#contact">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="23 4 23 10 17 10"/><polyline points="1 20 1 14 7 14"/><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"/></svg>
|
|
</div>
|
|
<span class="report-tag available">Available</span>
|
|
<h3>Urban Change Detection Guide</h3>
|
|
<p>How the Contradiction Engine identifies conflicts between official narratives and observed reality. Methodology, case studies, and interpretation guidance for analysts and investment teams.</p>
|
|
<div class="report-footer">
|
|
<span class="report-action">Download on request</span>
|
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="#0066ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
|
|
</div>
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- COMING SOON -->
|
|
<section>
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<div class="section-label">Forthcoming</div>
|
|
<h2 class="section-title">Intelligence reports in production.</h2>
|
|
<p class="section-sub">Research and field collection currently underway. Subscribers receive access on publication.</p>
|
|
</div>
|
|
<div class="coming-grid">
|
|
|
|
<div class="report-card coming-soon">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>
|
|
</div>
|
|
<span class="report-tag soon">Q3 2026</span>
|
|
<h3>Berlin City Intelligence Report</h3>
|
|
<p>District-level scoring across Berlin. Commercial vitality, infrastructure condition, and development pressure.</p>
|
|
</div>
|
|
|
|
<div class="report-card coming-soon">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.3)" 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>
|
|
</div>
|
|
<span class="report-tag soon">Q3 2026</span>
|
|
<h3>Retail Opportunity Report: Stockholm</h3>
|
|
<p>Location-level retail opportunity scoring across Stockholm. Foot traffic analysis, vacancy rates, and competitive density.</p>
|
|
</div>
|
|
|
|
<div class="report-card coming-soon">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>
|
|
</div>
|
|
<span class="report-tag soon">Q4 2026</span>
|
|
<h3>European Infrastructure Risk Benchmark</h3>
|
|
<p>Comparative infrastructure risk scoring across 12 European cities. Cross-country benchmarking for asset managers and insurers.</p>
|
|
</div>
|
|
|
|
<div class="report-card coming-soon">
|
|
<div class="report-icon">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
|
|
</div>
|
|
<span class="report-tag soon">Q4 2026</span>
|
|
<h3>Investment Outlook: Nordic Cities</h3>
|
|
<p>Growth velocity, infrastructure condition, and commercial opportunity across Copenhagen, Helsinki, Oslo, and Stockholm.</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA BANNER -->
|
|
<section style="padding:80px 24px">
|
|
<div class="container">
|
|
<div class="cta-banner">
|
|
<div class="cta-label">Access the library</div>
|
|
<h2>Request any report.</h2>
|
|
<p>Available reports are delivered within one business day to verified organisations. Forthcoming reports are available for pre-registration.</p>
|
|
<a class="btn btn-lg" href="#contact">Request any report</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CONTACT -->
|
|
<section id="contact">
|
|
<div class="container">
|
|
<div class="contact-wrapper">
|
|
<div class="section-label">Request</div>
|
|
<h2 class="section-title">Request a report.</h2>
|
|
<p class="section-sub" style="margin:0 auto 40px">Tell us which report you need and we will arrange access. Enterprise clients receive all available reports.</p>
|
|
<form class="contact-form" id="contact-form">
|
|
<div class="form-row">
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name" placeholder="Your name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="org">Organisation</label>
|
|
<input type="text" id="org" name="organisation" placeholder="Your organisation" required>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" placeholder="you@organisation.com" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="report">Report requested</label>
|
|
<select id="report" name="report">
|
|
<option value="">Select a report</option>
|
|
<option value="stockholm-city">Stockholm City Intelligence Report</option>
|
|
<option value="infra-methodology">Infrastructure Risk Methodology</option>
|
|
<option value="change-detection">Urban Change Detection Guide</option>
|
|
<option value="berlin-city">Berlin City Intelligence Report (pre-register)</option>
|
|
<option value="retail-stockholm">Retail Opportunity Report: Stockholm (pre-register)</option>
|
|
<option value="eu-infra-benchmark">European Infrastructure Risk Benchmark (pre-register)</option>
|
|
<option value="nordic-outlook">Investment Outlook: Nordic Cities (pre-register)</option>
|
|
<option value="all">All available reports</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message">How you intend to use it (optional)</label>
|
|
<textarea id="message" name="message" placeholder="Brief context on your organisation and intended use helps us provide the most relevant materials."></textarea>
|
|
</div>
|
|
<button type="submit" class="btn btn-lg" style="width:100%;justify-content:center">Request report access</button>
|
|
<p class="form-note">Available reports are delivered within one business day. Your information stays private.</p>
|
|
<div id="form-message"></div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<div class="footer-container" style="max-width:1200px;margin:0 auto;padding:48px 24px 32px;">
|
|
<!-- Main Footer Grid -->
|
|
<div style="display:grid;grid-template-columns:repeat(4,1fr);gap:40px;margin-bottom:48px;">
|
|
|
|
<!-- Column 1: Products -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Produkter</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/infrastructure-monitoring/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">VIMS</a></li>
|
|
<li><a href="/intelligence/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Intelligence</a></li>
|
|
<li><a href="/reality-alerts/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Reality Alerts</a></li>
|
|
<li><a href="/enterprise/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Enterprise</a></li>
|
|
<li><a href="/pilot/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Pilotprogram</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 2: Solutions -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Lösningar</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/verticals/bridge-inspection/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Broinspektion</a></li>
|
|
<li><a href="/verticals/road-monitoring/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Vägövervakning</a></li>
|
|
<li><a href="/verticals/infrastructure/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Infrastruktur</a></li>
|
|
<li><a href="/verticals/utilities/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Utilities</a></li>
|
|
<li><a href="/use-cases/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Användningsfall</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 3: Resources -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Resurser</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/blog/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Intelligence Insights</a></li>
|
|
<li><a href="/guides/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Guider</a></li>
|
|
<li><a href="/developers/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Developer API</a></li>
|
|
<li><a href="/status/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Systemstatus</a></li>
|
|
<li><a href="/reports/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Rapporter</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 4: Company -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Företag</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/about/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Om oss</a></li>
|
|
<li><a href="/careers/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Karriär</a></li>
|
|
<li><a href="/press/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Press</a></li>
|
|
<li><a href="/contact/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Kontakt</a></li>
|
|
<li><a href="https://www.quixzoom.com" target="_blank" rel="noopener" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">quiXzoom →</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Divider -->
|
|
<div style="border-top:1px solid #E5E5E5;padding-top:32px;">
|
|
|
|
<!-- Legal & Compliance Row -->
|
|
<div style="display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:24px;margin-bottom:24px;">
|
|
<div style="display:flex;flex-wrap:wrap;gap:16px 24px;">
|
|
<a href="/privacy/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Privacy</a>
|
|
<a href="/terms/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Terms</a>
|
|
<a href="/cookie-policy/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Cookies</a>
|
|
<a href="/compliance/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Compliance</a>
|
|
<a href="/trust/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Trust Centre</a>
|
|
<a href="/dpa/" style="font-size:12px;color:#6E6E73;text-decoration:none;">DPA</a>
|
|
<a href="/sla/" style="font-size:12px;color:#6E6E73;text-decoration:none;">SLA</a>
|
|
<a href="/security/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Security</a>
|
|
<a href="/accessibility/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Accessibility</a>
|
|
<a href="/responsible-disclosure/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Responsible Disclosure</a>
|
|
</div>
|
|
<div style="display:flex;gap:16px;">
|
|
<a href="https://www.linkedin.com/company/landvex" target="_blank" rel="noopener" style="color:#6E6E73;" title="LinkedIn">
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><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"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg>
|
|
</a>
|
|
<a href="https://x.com/landvex" target="_blank" rel="noopener" style="color:#6E6E73;" title="X">
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><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>
|
|
|
|
<!-- Company Info Row -->
|
|
<div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;">
|
|
<div>
|
|
<div style="font-size:12px;color:#86868B;line-height:1.6;">
|
|
<strong style="color:#0A0A0A;">Landvex Inc.</strong> · Houston, Texas · USA<br>
|
|
<strong style="color:#0A0A0A;">Landvex AB</strong> · Org.nr 559141-7042 · Tyresö, Sweden · EU<br>
|
|
<a href="mailto:contact@landvex.com" style="color:#86868B;text-decoration:none;">contact@landvex.com</a> ·
|
|
<a href="mailto:security@landvex.com" style="color:#86868B;text-decoration:none;">security@landvex.com</a>
|
|
</div>
|
|
<div style="font-size:11px;color:#86868B;margin-top:8px;line-height:1.5;">
|
|
Field data powered by <a href="https://www.quixzoom.com" style="color:#86868B;text-decoration:underline;">quiXzoom</a> ·
|
|
<a href="/data-lineage/" style="color:#86868B;text-decoration:underline;">Data Lineage</a> ·
|
|
<a href="/subprocessors/" style="color:#86868B;text-decoration:underline;">Sub-processors</a> ·
|
|
<a href="/methodology/" style="color:#86868B;text-decoration:underline;">Methodology</a>
|
|
</div>
|
|
</div>
|
|
<div style="font-size:12px;color:#86868B;">
|
|
© 2026 Landvex Inc / Landvex AB. All rights reserved.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
document.getElementById('contact-form').addEventListener('submit', async function(e) {
|
|
e.preventDefault();
|
|
const btn = this.querySelector('button[type="submit"]');
|
|
const msgEl = document.getElementById('form-message');
|
|
btn.disabled = true; btn.textContent = 'Sending...';
|
|
const data = {
|
|
source: 'landvex-reports',
|
|
name: this.name.value,
|
|
organisation: this.organisation.value,
|
|
email: this.email.value,
|
|
report: this.report ? this.report.value : '',
|
|
message: this.message.value
|
|
};
|
|
try {
|
|
const res = await fetch('https://api.quixzoom.com/api/qz/waitlist', {
|
|
method: 'POST', headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(data)
|
|
});
|
|
if (res.ok || res.status === 201) {
|
|
msgEl.className = 'success';
|
|
msgEl.textContent = "Request received. We will arrange access within one business day.";
|
|
msgEl.style.display = 'block'; this.reset();
|
|
} else { throw new Error('Server error ' + res.status); }
|
|
} catch (err) {
|
|
msgEl.className = 'error';
|
|
msgEl.textContent = 'Something went wrong. Please email us at contact@landvex.com.';
|
|
msgEl.style.display = 'block';
|
|
}
|
|
btn.disabled = false; btn.textContent = 'Request report access';
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|