llms.txt Content
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Spawning</title>
<meta name="description" content="Data Governance for Generative AI" />
<!-- Open Graph (optional, safe to leave) -->
<meta property="og:title" content="Soawning" />
<meta property="og:description" content="Data Governance for Generative AI" />
<style>
/* --- Reset-ish --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
/* --- Palette & Typography --- */
:root{
--bg: #f7f5f2; /* warm off-white */
--ink: #1a1a1a; /* near-black text */
--muted: #9a938a; /* quiet secondary */
--line: #e4dfda; /* hairline rule */
--accent: #cfc8bf; /* subtle accent for mark */
}
@media (prefers-color-scheme: dark){
:root{
--bg: #141414;
--ink: #f2f2f2;
--muted: #bdb7af;
--line: #2a2a2a;
--accent: #3a3a3a;
}
}
body{
background: var(--bg);
color: var(--ink);
font-family:
"Iowan Old Style","Palatino Linotype","Palatino","Book Antiqua",Georgia,serif;
letter-spacing: 0.01em;
line-height: 1.6;
display: grid;
place-items: center;
padding: 6vh 4vw;
}
/* --- Card --- */
.wrap{
max-width: 720px;
width: 100%;
background: transparent;
border: 1px solid var(--line);
border-radius: 18px;
padding: clamp(24px, 5vw, 48px);
box-shadow:
0 1px 0 rgba(0,0,0,0.03),
0 8px 24px rgba(0,0,0,0.03);
}
/* --- Wordmark / Header --- */
.mark{
display: inline-block;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid var(--line);
background: linear-gradient(180deg, #fff0, #fff0), var(--bg);
outline: 8px solid transparent; /* optical breathing room */
font-variant: small-caps;
font-size: 0.875rem;
letter-spacing: 0.12em