Initial commit

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-11 15:55:14 -04:00
commit 290ff0bc1e
41 changed files with 7998 additions and 0 deletions
+386
View File
@@ -0,0 +1,386 @@
:root {
color-scheme: light;
--bg: #f5f1e8;
--panel: #fffaf0;
--panel-strong: #ffffff;
--text: #12212c;
--muted: #5b6570;
--brand: #11384d;
--brand-2: #8d5f2d;
--line: rgba(18, 33, 44, 0.12);
--critical: #8e1f1b;
--warning: #b36a09;
--info: #245b7d;
--shadow: 0 18px 40px rgba(18, 33, 44, 0.08);
--radius: 1.1rem;
--radius-sm: 0.8rem;
--content: 1120px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "Trebuchet MS", "Lucida Grande", "Segoe UI", sans-serif;
background:
radial-gradient(circle at top left, rgba(141, 95, 45, 0.16), transparent 35%),
radial-gradient(circle at right 20%, rgba(18, 57, 77, 0.12), transparent 30%),
var(--bg);
color: var(--text);
line-height: 1.55;
}
a {
color: inherit;
text-decoration-thickness: 0.08em;
text-underline-offset: 0.16em;
}
a:hover {
color: var(--brand);
}
img {
max-width: 100%;
display: block;
}
.container {
width: min(calc(100% - 2rem), var(--content));
margin-inline: auto;
}
.topbar,
.navshell,
.site-footer {
backdrop-filter: blur(18px);
}
.topbar {
position: sticky;
top: 0;
z-index: 20;
border-bottom: 1px solid var(--line);
background: rgba(245, 241, 232, 0.84);
}
.topbar-inner,
.nav-inner,
.footer-grid {
display: flex;
justify-content: space-between;
gap: 1rem;
}
.topbar-inner {
align-items: center;
padding: 0.85rem 0;
}
.topbar-meta {
display: flex;
flex-wrap: wrap;
gap: 0.8rem 1.2rem;
color: var(--muted);
font-size: 0.95rem;
}
.navshell {
border-bottom: 1px solid var(--line);
background: rgba(255, 250, 240, 0.88);
}
.nav-inner {
align-items: center;
padding: 1rem 0;
flex-wrap: wrap;
}
.brand {
font-family: Georgia, "Times New Roman", serif;
font-size: 1.25rem;
font-weight: 700;
letter-spacing: 0.02em;
text-decoration: none;
}
.nav-links {
display: flex;
flex-wrap: wrap;
gap: 0.9rem 1.2rem;
color: var(--muted);
font-size: 0.98rem;
}
.nav-links a {
text-decoration: none;
}
main {
padding-block: 1.5rem 4rem;
}
section {
padding-block: 1rem;
}
.hero {
padding-block: 1rem 2rem;
}
.hero-grid {
display: grid;
grid-template-columns: 1.35fr 0.95fr;
gap: 1.5rem;
align-items: start;
}
.hero-panel,
.card,
.surface,
.notice {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.94));
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.hero-panel {
padding: 1.6rem;
}
.hero-title {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(2.2rem, 5vw, 4.6rem);
line-height: 0.98;
}
.hero-copy {
max-width: 62ch;
color: var(--muted);
font-size: 1.05rem;
}
.cta-row {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-top: 1.3rem;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 2.8rem;
padding: 0.75rem 1rem;
border-radius: 999px;
text-decoration: none;
font-weight: 700;
border: 1px solid transparent;
}
.button.primary {
background: var(--brand);
color: white;
}
.button.secondary {
background: transparent;
border-color: rgba(18, 57, 77, 0.18);
}
.hero-rail {
display: grid;
gap: 1rem;
}
.stats-grid,
.panel-grid,
.cards-grid {
display: grid;
gap: 1rem;
}
.stats-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat,
.card,
.surface,
.notice {
padding: 1rem;
}
.stat strong {
display: block;
font-size: 1.6rem;
margin-bottom: 0.25rem;
}
.eyebrow {
margin: 0 0 0.35rem;
color: var(--brand-2);
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.75rem;
font-weight: 700;
}
.topline,
.muted {
color: var(--muted);
}
.section-head {
display: flex;
justify-content: space-between;
gap: 1rem;
align-items: end;
margin-bottom: 1rem;
}
.section-title {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}
.section-copy {
margin: 0.25rem 0 0;
color: var(--muted);
max-width: 68ch;
}
.notice-list,
.compact-list {
list-style: none;
margin: 0;
padding: 0;
}
.notice-list {
display: grid;
gap: 0.8rem;
}
.notice {
border-left: 0.5rem solid var(--info);
}
.notice.warning {
border-left-color: var(--warning);
}
.notice.critical {
border-left-color: var(--critical);
}
.pill,
.tag,
.meta {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.2rem 0.65rem;
border-radius: 999px;
background: rgba(18, 57, 77, 0.08);
color: var(--brand);
font-size: 0.8rem;
font-weight: 700;
}
.tag {
background: rgba(141, 95, 45, 0.1);
color: var(--brand-2);
}
.meta {
background: rgba(18, 33, 44, 0.06);
color: var(--muted);
}
.cards-grid {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card h3,
.card h4,
.surface h3,
.surface h4,
.notice h3 {
margin-top: 0;
}
.card p:last-child,
.surface p:last-child,
.notice p:last-child {
margin-bottom: 0;
}
.split-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}
.site-footer {
border-top: 1px solid var(--line);
background: rgba(18, 33, 44, 0.93);
color: rgba(255, 250, 240, 0.88);
padding: 2rem 0;
}
.site-footer a {
color: inherit;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.site-footer .eyebrow,
.site-footer .muted {
color: rgba(255, 250, 240, 0.66);
}
.prose {
max-width: 72ch;
}
.prose h2,
.prose h3 {
font-family: Georgia, "Times New Roman", serif;
}
.stack {
display: grid;
gap: 1rem;
}
@media (max-width: 860px) {
.hero-grid,
.split-grid,
.footer-grid {
grid-template-columns: 1fr;
}
.topbar-inner,
.nav-inner,
.footer-grid {
display: grid;
}
.nav-links {
gap: 0.7rem 1rem;
}
}