<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aegis Protocol — Certify Human Work</title>
<style>
/* --- RESET & BASE --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Roboto, Arial, sans-serif;
background: #f8fafc;
color: #0b1a2e;
line-height: 1.6;
padding: 2rem 1rem;
}
.container {
max-width: 1100px;
margin: 0 auto;
background: white;
padding: 2.5rem 2rem;
border-radius: 24px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
/* --- HEADER --- */
.header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #eef2f6;
padding-bottom: 1.5rem;
margin-bottom: 2rem;
}
.logo h1 {
font-size: 1.8rem;
font-weight: 700;
letter-spacing: -0.5px;
color: #0b1a2e;
}
.logo span {
color: #1a5cff;
}
.tagline {
font-size: 0.95rem;
color: #3b4a5e;
background: #eef4ff;
padding: 0.4rem 1rem;
border-radius: 40px;
font-weight: 500;
}
/* --- HERO --- */
.hero {
text-align: center;
padding: 2rem 0 1.5rem 0;
}
.hero h2 {
font-size: 2.6rem;
font-weight: 800;
letter-spacing: -1px;
line-height: 1.2;
color: #0b1a2e;
}
.hero h2 span {
color: #1a5cff;
}
.hero p {
font-size: 1.2rem;
color: #2d4057;
max-width: 700px;
margin: 1rem auto 0;
}
.hero .sub {
font-size: 1rem;
color: #4a5b72;
margin-top: 0.5rem;
font-weight: 500;
}
.cta-button {
display: inline-block;
margin-top: 2rem;
background: #1a5cff;
color: white;
font-weight: 700;
font-size: 1.1rem;
padding: 0.9rem 3rem;
border-radius: 60px;
text-decoration: none;
transition: background 0.2s ease;
border: none;
cursor: pointer;
}
.cta-button:hover {
background: #0f4ad0;
}
/* --- 3-COLUMN GRID --- */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
margin: 3rem 0 2.5rem 0;
}
.card {
background: #f9fbfd;
padding: 1.8rem 1.5rem;
border-radius: 20px;
border: 1px solid #e9edf2;
transition: 0.15s ease;
}
.card:hover {
border-color: #b3c8ff;
background: #f5f9ff;
}
.card h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.6rem;
color: #0b1a2e;
}
.card p {
font-size: 0.98rem;
color: #2d4057;
}
.card .highlight {
font-weight: 700;
color: #1a5cff;
}
/* --- SECTION TITLE --- */
.section-title {
font-size: 1.8rem;
font-weight: 700;
margin: 2.5rem 0 1.2rem 0;
color: #0b1a2e;
border-left: 5px solid #1a5cff;
padding-left: 1rem;
}
/* --- JURISDICTION BADGES --- */
.badge-group {
display: flex;
flex-wrap: wrap;
gap: 0.6rem 1.2rem;
margin: 0.8rem 0 1.5rem 0;
}
.badge {
background: #eef4ff;
padding: 0.3rem 1.2rem;
border-radius: 40px;
font-weight: 600;
font-size: 0.9rem;
color: #1a3d7a;
}
/* --- PRICING BOX --- */
.pricing-box {
background: #0b1a2e;
color: white;
padding: 2rem 2rem;
border-radius: 24px;
margin: 2.5rem 0 1.5rem 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.pricing-box .price {
font-size: 2.2rem;
font-weight: 800;
letter-spacing: -0.5px;
}
.pricing-box .price small {
font-size: 1rem;
font-weight: 400;
opacity: 0.7;
}
.pricing-box .desc {
font-size: 1rem;
opacity: 0.85;
max-width: 380px;
}
.pricing-box .cta-button {
background: white;
color: #0b1a2e;
margin-top: 0;
padding: 0.7rem 2.2rem;
}
.pricing-box .cta-button:hover {
background: #e6edff;
}
/* --- CONTACT --- */
.contact {
margin-top: 2.5rem;
padding-top: 2rem;
border-top: 2px solid #eef2f6;
display: flex;
flex-wrap: wrap;
gap: 1rem 2.5rem;
justify-content: space-between;
align-items: center;
}
.contact a {
color: #1a5cff;
text-decoration: none;
font-weight: 500;
}
.contact a:hover {
text-decoration: underline;
}
.contact .legal {
font-size: 0.8rem;
color: #6a7b8f;
}
/* --- RESPONSIVE --- */
@media (max-width: 700px) {
.container {
padding: 1.5rem 1rem;
}
.hero h2 {
font-size: 1.9rem;
}
.header {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.pricing-box {
flex-direction: column;
text-align: center;
gap: 1.2rem;
}
.pricing-box .desc {
max-width: 100%;
}
.contact {
flex-direction: column;
align-items: flex-start;
gap: 0.8rem;
}
}
</style>
</head>
<body>
<div class="container">
<!-- HEADER -->
<div class="header">
<div class="logo">
<h1>AEGIS <span>PROTOCOL</span></h1>
</div>
<div class="tagline">Certify Human Work. Insure AI Risk.</div>
</div>
<!-- HERO -->
<div class="hero">
<h2>The legal standard for <span>human authorship</span> in the age of AI.</h2>
<p>Your insurance, copyright, and liability depend on it.</p>
<div class="sub">US · UK · Canada</div>
<a href="#contact" class="cta-button">Become a Founding Steward</a>
</div>
<!-- 3x GRID -->
<div class="grid">
<div class="card">
<h3>⚖️ The Problem</h3>
<p>AI-generated content is <span class="highlight">not copyrightable</span> in the US, UK, or Canada. Insurers are excluding AI claims. Courts are holding <span class="highlight">humans liable</span>.</p>
</div>
<div class="card">
<h3>🛡️ The Solution</h3>
<p>The <span class="highlight">Aegis Protocol</span> is a certifiable legal framework that establishes human authorship. Includes Chain of Custody, SOPs, and the Aegis Seal.</p>
</div>
<div class="card">
<h3>📋 The License</h3>
<p><span class="highlight">$50,000/year</span>. Includes legal framework, annual audit, Legal Defense Library, and the right to display the Aegis Seal on certified assets.</p>
</div>
</div>
<!-- JURISDICTIONS -->
<h2 class="section-title">Recognised in three jurisdictions</h2>
<div class="badge-group">
<span class="badge">🇺🇸 United States</span>
<span class="badge">🇬🇧 United Kingdom</span>
<span class="badge">🇨🇦 Canada</span>
<span class="badge">🌍 More to follow</span>
</div>
<!-- PRICING -->
<div class="pricing-box">
<div>
<div class="price">$50,000 <small>/ year</small></div>
<div class="desc">Founding Steward License — includes full framework, audit, and legal support.</div>
</div>
<a href="#contact" class="cta-button">Enquire now</a>
</div>
<!-- CONTACT -->
<div class="contact" id="contact">
<div>
<strong>📧 Email:</strong> <a href="mailto:compliance@aegisprotocol.global">compliance@aegisprotocol.global</a>
</div>
<div>
<strong>🏢</strong> Aegis Protocol, Inc.<br />
16192 Coastal Highway, Lewes, Delaware 19958, USA
</div>
<div class="legal">
© 2026 Aegis Protocol, Inc. All rights reserved.<br />
This is not legal advice. Independent counsel recommended.
</div>
</div>
</div>
</body>
</html>