Files
44r0n7 0265afa054 chore: bootstrap lean sysadmin-chronicles repo
Import the runnable game code, content, docs, scripts, and repo guidance while leaving local agent state, dependency installs, build output, and backup copies out of the published tree.
2026-05-02 11:49:07 -04:00

378 lines
10 KiB
CSS

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy: #1b3558;
--navy-dk: #112240;
--blue: #2563a0;
--blue-lt: #3b82c4;
--bg: #f4f6f9;
--white: #ffffff;
--text: #1a1f2e;
--muted: #6b7280;
--border: #d1d9e6;
--shadow: 0 1px 4px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
--r: 6px;
--max: 1100px;
}
body {
font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--text);
background: var(--bg);
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
/* ── NAV ─────────────────────────────────────────── */
nav {
background: var(--navy-dk);
position: sticky;
top: 0;
z-index: 10;
}
.nav-inner {
max-width: var(--max);
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
align-items: center;
gap: 2.5rem;
height: 60px;
}
.nav-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
}
.nav-logo img { height: 32px; width: 32px; border-radius: 4px; }
.nav-logo span {
color: #ffffff;
font-size: 1.05rem;
font-weight: 600;
letter-spacing: 0.01em;
}
.nav-links {
display: flex;
gap: 0;
list-style: none;
margin-left: auto;
}
.nav-links a {
display: block;
color: rgba(255,255,255,.78);
font-size: 0.9rem;
padding: 0 1rem;
line-height: 60px;
letter-spacing: 0.01em;
transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
/* ── HERO ────────────────────────────────────────── */
.hero {
background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 55%, var(--blue) 100%);
color: #fff;
padding: 6rem 1.5rem 5rem;
text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 0.8rem;
color: rgba(255,255,255,.6);
margin-bottom: 1rem;
}
.hero h1 {
font-size: clamp(2.2rem, 5vw, 3.4rem);
font-weight: 700;
line-height: 1.15;
margin-bottom: 1.25rem;
}
.hero p {
font-size: 1.15rem;
color: rgba(255,255,255,.82);
margin-bottom: 2.25rem;
max-width: 520px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
padding: 0.8rem 2rem;
border-radius: var(--r);
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: filter .15s;
}
.btn:hover { filter: brightness(1.1); text-decoration: none; }
.btn-primary { background: #fff; color: var(--navy); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); margin-left: 0.75rem; }
/* ── PAGE WRAPPER ────────────────────────────────── */
.page { max-width: var(--max); margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
/* ── SECTION HEADINGS ────────────────────────────── */
.section-label {
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.75rem;
color: var(--blue);
font-weight: 600;
margin-bottom: 0.5rem;
}
h2.section-title {
font-size: 1.8rem;
font-weight: 700;
color: var(--navy-dk);
margin-bottom: 0.75rem;
}
.section-intro {
color: var(--muted);
max-width: 580px;
margin-bottom: 2.5rem;
}
/* ── CARDS ───────────────────────────────────────── */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 1.75rem;
box-shadow: var(--shadow);
}
.card-icon {
width: 42px;
height: 42px;
border-radius: 8px;
background: var(--navy);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.1rem;
font-size: 1.3rem;
}
.card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy-dk); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.card-tag {
display: inline-block;
margin-top: 1rem;
padding: 0.2rem 0.6rem;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
background: #e8f0fb;
color: var(--blue);
}
.card-tag.legacy { background: #f0f0f0; color: var(--muted); }
/* ── PEOPLE GRID ─────────────────────────────────── */
.people-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}
.person-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 1.75rem 1.5rem;
box-shadow: var(--shadow);
text-align: center;
}
.person-photo {
width: 110px;
height: 110px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 1.1rem;
border: 3px solid var(--border);
}
.person-initial {
width: 110px;
height: 110px;
border-radius: 50%;
background: var(--navy);
color: #fff;
font-size: 2rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.1rem;
}
.person-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy-dk); margin-bottom: 0.25rem; }
.person-card .title { font-size: 0.82rem; color: var(--blue); font-weight: 500; margin-bottom: 0.5rem; }
.person-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }
/* ── ABOUT SECTIONS ──────────────────────────────── */
.about-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
margin-bottom: 3.5rem;
}
@media (max-width: 720px) {
.about-block { grid-template-columns: 1fr; gap: 2rem; }
}
.about-block h2 { font-size: 1.55rem; font-weight: 700; color: var(--navy-dk); margin-bottom: 1rem; }
.about-block p { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.95rem; }
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--navy); display: block; }
.stat-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.values-list { list-style: none; }
.values-list li {
padding: 1rem 1.2rem;
border-left: 3px solid var(--blue);
margin-bottom: 1rem;
background: var(--white);
border-radius: 0 var(--r) var(--r) 0;
box-shadow: var(--shadow);
}
.values-list li strong { display: block; color: var(--navy-dk); margin-bottom: 0.2rem; font-size: 0.95rem; }
.values-list li span { font-size: 0.87rem; color: var(--muted); }
/* ── PRODUCT DETAIL ──────────────────────────────── */
.product-feature {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 2.5rem;
align-items: start;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 2rem;
margin-bottom: 1.5rem;
box-shadow: var(--shadow);
}
@media (max-width: 640px) {
.product-feature { grid-template-columns: 1fr; }
}
.product-feature.legacy { opacity: 0.7; }
.product-badge {
display: inline-block;
padding: 0.35rem 0.9rem;
border-radius: 4px;
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
background: #e8f0fb;
color: var(--blue);
margin-bottom: 0.8rem;
}
.product-badge.main { background: var(--navy); color: #fff; }
.product-badge.end-of-sale { background: #f0f0f0; color: var(--muted); }
.product-feature h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy-dk); margin-bottom: 0.5rem; }
.product-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.9rem; }
.feature-list { list-style: none; }
.feature-list li {
font-size: 0.88rem;
color: var(--muted);
padding: 0.3rem 0;
padding-left: 1.2rem;
position: relative;
}
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-lt); font-weight: 700; }
/* ── BANNER ──────────────────────────────────────── */
.cta-banner {
background: linear-gradient(135deg, var(--navy-dk), var(--blue));
color: #fff;
border-radius: var(--r);
padding: 3rem 2rem;
text-align: center;
margin-top: 3rem;
}
.cta-banner h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
/* ── FOOTER ──────────────────────────────────────── */
footer {
background: var(--navy-dk);
color: rgba(255,255,255,.5);
font-size: 0.82rem;
text-align: center;
padding: 2rem 1.5rem;
margin-top: 0;
}
footer a { color: rgba(255,255,255,.6); }
footer .footer-logo {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 0.75rem;
}
footer .footer-logo img { height: 22px; width: 22px; opacity: 0.8; }
footer .footer-logo span { color: rgba(255,255,255,.75); font-weight: 600; font-size: 0.9rem; }
/* ── PAGE HEADER (inner pages) ───────────────────── */
.page-header {
background: linear-gradient(135deg, var(--navy-dk), var(--navy));
color: #fff;
padding: 3.5rem 1.5rem;
text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 540px; margin: 0 auto; }
/* ── DIVIDER ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
hr.section-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }