Files
boc/quixzoom-landing-fixed/about.html
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

185 lines
7.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About quiXzoom — Global Field Intelligence Network</title>
<meta name="description" content="quiXzoom is a global field intelligence network. Learn about our mission, team, and how we're building the world's largest observation network.">
<link rel="canonical" href="https://www.quixzoom.com/about">
<style>
:root {
--bg-dark: #f5f5f7;
--blue: #0066FF;
--blue-dark: #0052CC;
--text-dark: #1d1d1f;
--text-body: #3a3a3a;
--text-muted: #6e6e73;
--surface: #ffffff;
--surface-2: #f5f5f7;
--border: rgba(0,0,0,0.09);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
background: var(--bg-dark);
color: var(--text-dark);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* Nav */
nav {
position: sticky; top: 0; z-index: 300;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 1.375rem; font-weight: 900; color: var(--text-dark); text-decoration: none; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.active { color: var(--blue); }
/* Hero */
.hero { padding: 80px 0 60px; text-align: center; background: var(--surface); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.25rem; color: var(--text-body); max-width: 600px; margin: 0 auto; }
/* Content */
.content { padding: 60px 0; }
.section { margin-bottom: 60px; }
.section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.section p { font-size: 1.1rem; color: var(--text-body); margin-bottom: 16px; max-width: 700px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 32px;
}
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--text-muted); }
/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--blue); }
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }
/* Footer */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0; margin-top: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--text-dark); }
@media (max-width: 768px) {
.nav-links { display: none; }
.stats { grid-template-columns: repeat(2, 1fr); }
.footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 640px) {
.hero h1 { font-size: 2rem !important; }
.hero p { font-size: 1rem !important; }
.card { padding: 1.5rem !important; }
.grid { grid-template-columns: 1fr !important; }
.btn { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
}
</style>
</head>
<body>
<nav>
<div class="container">
<div class="nav-inner">
<a href="/" class="nav-logo">qui<span>X</span>zoom</a>
<div class="nav-links">
<a href="/">Home</a>
<a href="/about" class="active">About</a>
<a href="/pricing">Pricing</a>
<a href="/features">Features</a>
</div>
</div>
</div>
</nav>
<section class="hero">
<div class="container">
<h1>Building the world's<br>observation network</h1>
<p>quiXzoom connects organizations that need field data with people who can capture it. No platform fees. No middlemen. Just verified reality.</p>
</div>
</section>
<section class="content">
<div class="container">
<div class="stats">
<div class="stat">
<div class="stat-num">20+</div>
<div class="stat-label">Countries at launch</div>
</div>
<div class="stat">
<div class="stat-num">2,400+</div>
<div class="stat-label">Pre-registered Zoomers</div>
</div>
<div class="stat">
<div class="stat-num">100%</div>
<div class="stat-label">Zoomer earnings</div>
</div>
<div class="stat">
<div class="stat-num">0</div>
<div class="stat-label">Platform fees</div>
</div>
</div>
<div class="section">
<h2>Our mission</h2>
<p>We believe that the gap between official data and ground reality is one of the most expensive problems in infrastructure, insurance, and urban planning. quiXzoom closes that gap by making field observation accessible, affordable, and verifiable at scale.</p>
<p>Every mission on quiXzoom is a data point that helps someone make a better decision — whether that's an insurer assessing risk, a municipality prioritizing repairs, or an enterprise verifying its supply chain.</p>
</div>
<div class="section">
<h2>How we're different</h2>
<div class="grid">
<div class="card">
<h3>No platform fees</h3>
<p>Zoomers keep 100% of what they earn. We charge organizations for access to the network, not for individual transactions.</p>
</div>
<div class="card">
<h3>Verified reality</h3>
<p>Every submission goes through automated AI review for completeness, quality, and geolocation accuracy before payment.</p>
</div>
<div class="card">
<h3>Global from day one</h3>
<p>Launching in 5 markets in phases — Sweden first (August 2026), followed by Netherlands, Thailand, Nigeria and Kenya.</p>
</div>
<div class="card">
<h3>Built for scale</h3>
<p>Missions can be configured and deployed within hours. Campaigns can range from 10 missions to 10,000.</p>
</div>
</div>
</div>
<div class="section">
<h2>Operated by Landvex</h2>
<p>quiXzoom is operated by Landvex AB, a decision intelligence company that transforms field observations into actionable intelligence for infrastructure owners, enterprises, and governments.</p>
<p>Landvex delivers control intelligence — infrastructure risk scores, urban intelligence, and contradiction analysis — to municipalities, enterprises, infrastructure operators and investors.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-inner">
<div>© 2026 quiXzoom · Operated by Landvex AB</div>
<div class="footer-links">
<a href="privacy/index.html">Privacy</a>
<a href="terms/index.html">Terms</a>
<a href="/support">Support</a>
</div>
</div>
</div>
</footer>
</body>
</html>