<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="utf-8" />

<meta name="viewport" content="width=device-width, initial-scale=1" />

<title>Corevia Systems Limited</title>

<meta name="description" content="We build software infrastructure and digital systems." />

<style>

body {

margin: 0;

font-family: Arial, Helvetica, sans-serif;

color: #111827;

background: #ffffff;

}

.container {

max-width: 1000px;

margin: 0 auto;

padding: 0 24px;

}

header {

border-bottom: 1px solid #f1f5f9;

padding: 16px 0;

}

.brand {

display: flex;

align-items: center;

gap: 12px;

}

.logo {

width: 32px;

height: 32px;

background: #111827;

color: white;

display: flex;

align-items: center;

justify-content: center;

font-size: 12px;

font-weight: bold;

border-radius: 4px;

}

.brand-name {

font-size: 14px;

font-weight: 600;

letter-spacing: 0.04em;

}

.hero {

padding: 100px 0;

}

.eyebrow {

font-size: 12px;

text-transform: uppercase;

letter-spacing: 0.2em;

color: #9ca3af;

margin-bottom: 24px;

}

h1 {

font-size: 48px;

line-height: 1.15;

margin: 0;

max-width: 800px;

}

.about {

background: #f9fafb;

padding: 80px 0;

}

.grid {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 64px;

}

h2 {

font-size: 32px;

margin: 0 0 16px 0;

line-height: 1.25;

}

p {

color: #4b5563;

line-height: 1.7;

margin: 0 0 16px 0;

}

.info-row {

display: flex;

gap: 16px;

margin-bottom: 20px;

}

.label {

width: 140px;

font-size: 12px;

text-transform: uppercase;

letter-spacing: 0.15em;

color: #9ca3af;

flex-shrink: 0;

padding-top: 2px;

}

.value {

font-size: 14px;

color: #111827;

}

footer {

border-top: 1px solid #f1f5f9;

padding: 24px 0;

font-size: 14px;

color: #9ca3af;

}

.footer-row {

display: flex;

justify-content: space-between;

gap: 16px;

flex-wrap: wrap;

}

@media (max-width: 768px) {

h1 { font-size: 36px; }

h2 { font-size: 26px; }

.grid { grid-template-columns: 1fr; gap: 40px; }

.footer-row { flex-direction: column; }

}

</style>

</head>

<body>

<header>

<div class="container">

<div class="brand">

<div class="logo">CS</div>

<div class="brand-name">Corevia Systems Limited</div>

</div>

</div>

</header>


<section class="hero">

<div class="container">

<div class="eyebrow">Software &amp; Infrastructure</div>

<h1>We build software infrastructure and digital systems.</h1>

</div>

</section>


<section class="about">

<div class="container grid">

<div>

<div class="eyebrow">About</div>

<h2>Infrastructure-first thinking, delivered with precision.</h2>

<p>We are a London-based software company focused on building the foundational systems that power modern digital products. Our approach prioritises reliability, clarity, and long-term maintainability.</p>

</div>


<div>

<div class="info-row">

<div class="label">Founded</div>

<div class="value">London, United Kingdom</div>

</div>

<div class="info-row">

<div class="label">Company Number</div>

<div class="value">16999743</div>

</div>

<div class="info-row">

<div class="label">Specialisation</div>

<div class="value">Software Infrastructure &amp; Digital Systems</div>

</div>

<div class="info-row">

<div class="label">Contact</div>

<div class="value">hello@coreviasystems.co.uk</div>

</div>

</div>

</div>

</section>


<footer>

<div class="container footer-row">

<span>© Corevia Systems Limited</span>

<span>66 Paul Street, London, EC2A 4NA, United Kingdom</span>

<span>Company No. 16999743</span>

</div>

</footer>

</body>

</html>