235 lines
6.6 KiB
HTML
235 lines
6.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Abigail — AI-native immigration platform</title>
|
|
<meta name="description" content="AI does the work. Attorneys ensure the quality. Clients pay for the result, not the hours.">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--ink: #0A0E1A;
|
|
--ink-2: #1A1F2E;
|
|
--paper: #FAFAF7;
|
|
--paper-2: #F2F2EE;
|
|
--signal: #2E6BFF;
|
|
--signal-2: #1E50CC;
|
|
--mute: #8A8F99;
|
|
--mute-2: #C7C9CE;
|
|
--rule: #E5E5E0;
|
|
--rule-dark: #2A2F3D;
|
|
}
|
|
* { box-sizing: border-box; }
|
|
html, body {
|
|
margin: 0; padding: 0;
|
|
background: var(--ink);
|
|
color: var(--paper);
|
|
font-family: "Inter", -apple-system, "PingFang SC", sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.55;
|
|
-webkit-font-smoothing: antialiased;
|
|
min-height: 100vh;
|
|
}
|
|
a { color: inherit; text-decoration: none; }
|
|
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
|
|
|
|
nav {
|
|
border-bottom: 1px solid var(--rule-dark);
|
|
}
|
|
nav .container {
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
height: 64px;
|
|
}
|
|
.brand { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
|
|
.brand-dot { color: var(--signal); }
|
|
.nav-links { display: flex; gap: 32px; font-size: 14px; }
|
|
.nav-links a { color: var(--mute-2); transition: color 0.15s; }
|
|
.nav-links a:hover { color: var(--paper); }
|
|
|
|
.hero {
|
|
padding: 120px 0 80px;
|
|
text-align: center;
|
|
}
|
|
.eyebrow {
|
|
font-size: 12px; font-weight: 600;
|
|
color: var(--signal);
|
|
letter-spacing: 0.12em; text-transform: uppercase;
|
|
margin-bottom: 20px;
|
|
font-family: "JetBrains Mono", monospace;
|
|
}
|
|
h1 {
|
|
font-size: 72px;
|
|
font-weight: 700;
|
|
line-height: 1.04;
|
|
letter-spacing: -0.03em;
|
|
margin: 0 0 24px;
|
|
max-width: 920px;
|
|
margin-left: auto; margin-right: auto;
|
|
}
|
|
h1 em { font-style: normal; color: var(--signal); }
|
|
.lead {
|
|
font-size: 19px;
|
|
color: var(--mute-2);
|
|
max-width: 640px;
|
|
margin: 0 auto 16px;
|
|
line-height: 1.55;
|
|
}
|
|
.three-lines {
|
|
font-family: "JetBrains Mono", monospace;
|
|
font-size: 13px;
|
|
color: var(--mute);
|
|
letter-spacing: 0.02em;
|
|
margin-bottom: 48px;
|
|
}
|
|
.three-lines span { color: var(--signal); }
|
|
|
|
.ctas {
|
|
display: inline-flex; gap: 12px;
|
|
margin-bottom: 80px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.btn {
|
|
padding: 16px 28px;
|
|
border-radius: 12px;
|
|
font-weight: 600; font-size: 15px;
|
|
transition: all 0.15s;
|
|
border: 1px solid transparent;
|
|
}
|
|
.btn-primary {
|
|
background: var(--signal); color: white;
|
|
}
|
|
.btn-primary:hover { background: var(--signal-2); }
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: var(--paper);
|
|
border-color: var(--rule-dark);
|
|
}
|
|
.btn-secondary:hover {
|
|
border-color: var(--mute-2);
|
|
background: var(--ink-2);
|
|
}
|
|
|
|
.doors {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 24px;
|
|
margin-top: 24px;
|
|
max-width: 880px;
|
|
margin-left: auto; margin-right: auto;
|
|
}
|
|
.door {
|
|
background: var(--ink-2);
|
|
border: 1px solid var(--rule-dark);
|
|
border-radius: 20px;
|
|
padding: 36px;
|
|
text-align: left;
|
|
transition: border-color 0.15s, transform 0.15s;
|
|
}
|
|
.door:hover {
|
|
border-color: var(--signal);
|
|
transform: translateY(-3px);
|
|
}
|
|
.door-label {
|
|
font-family: "JetBrains Mono", monospace;
|
|
font-size: 11px;
|
|
color: var(--signal);
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 16px;
|
|
}
|
|
.door h2 {
|
|
font-size: 26px; font-weight: 700;
|
|
letter-spacing: -0.015em;
|
|
margin: 0 0 12px;
|
|
line-height: 1.2;
|
|
}
|
|
.door p {
|
|
font-size: 15px;
|
|
color: var(--mute-2);
|
|
margin: 0 0 24px;
|
|
line-height: 1.55;
|
|
}
|
|
.door-link {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--paper);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
display: inline-flex; align-items: center; gap: 6px;
|
|
}
|
|
.door:hover .door-link { color: var(--signal); }
|
|
|
|
footer {
|
|
border-top: 1px solid var(--rule-dark);
|
|
padding: 32px 0;
|
|
margin-top: 96px;
|
|
font-size: 12px;
|
|
color: var(--mute);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
h1 { font-size: 44px; }
|
|
.hero { padding: 64px 0 48px; }
|
|
.doors { grid-template-columns: 1fr; }
|
|
.nav-links { display: none; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="container">
|
|
<a class="brand" href="/">Abigail<span class="brand-dot">.</span></a>
|
|
<div class="nav-links">
|
|
<a href="/individuals">Individuals</a>
|
|
<a href="/employers">Employers</a>
|
|
<a href="/library">Library</a>
|
|
<a href="/pricing">Pricing</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="eyebrow">AI-native immigration platform</div>
|
|
<h1>Immigration, <em>rebuilt</em> for the people doing the work.</h1>
|
|
<p class="lead">For high-skill individuals and the companies that hire them.</p>
|
|
<div class="three-lines">
|
|
<span>AI does the work.</span> Attorneys ensure the quality. <span>Clients pay for the result, not the hours.</span>
|
|
</div>
|
|
|
|
<div class="ctas">
|
|
<a href="/individuals" class="btn btn-primary">Start with the free screener</a>
|
|
<a href="/employers" class="btn btn-secondary">Book an enterprise demo</a>
|
|
</div>
|
|
|
|
<div class="doors">
|
|
<a class="door" href="/individuals">
|
|
<div class="door-label">For individuals</div>
|
|
<h2>Find your visa. Build your filing.</h2>
|
|
<p>Multi-visa AI screener, TurboTax-style intake, AI-drafted petition narrative, optional attorney review by Ivy / BigLaw-trained counsel.</p>
|
|
<span class="door-link">Explore individuals →</span>
|
|
</a>
|
|
<a class="door" href="/employers">
|
|
<div class="door-label">For employers</div>
|
|
<h2>Run immigration as infrastructure.</h2>
|
|
<p>Live HRIS integration, zero-touch form generation, automated 5-year compliance. Replace the data courier between HR and outside counsel.</p>
|
|
<span class="door-link">Explore employers →</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
© 2026 Abigail Technologies, Inc. · Not a law firm. Legal services where elected provided by Abigail Legal Services, P.C. under separate engagement.
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|