:root { color-scheme: light; --bg: #ffffff; --panel: #ffffff; --text: #111111; --muted: #555555; --link: #0b57d0; --border: rgba(0, 0, 0, 0.12); --shadow: 0 10px 30px rgba(0, 0, 0, 0.06); --radius: 14px; }

* { box-sizing: border-box; }

html, body { height: 100%; }

body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; }

.container { width: min(980px, calc(100% - 2rem)); margin: 0 auto; }

a { color: var(--link); text-decoration: none; }

a:hover { text-decoration: underline; }

.skip-link { position: absolute; left: -9999px; top: 0; padding: 0.75rem 1rem; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; }

.skip-link:focus { left: 1rem; top: 1rem; z-index: 1000; }

.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid var(--border); }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1rem; }

.brand-link { display: inline-flex; align-items: baseline; gap: 0.6rem; font-weight: 700; letter-spacing: 0.2px; }

.brand-full { display: inline; }

.brand-short { display: none; }

@media (max-width: 560px) { .brand-full { display: none; }
  .brand-short { display: inline; } }
.nav { display: flex; gap: 0.75rem; }

.nav-link { display: inline-flex; align-items: center; padding: 0.4rem 0.65rem; border-radius: 10px; border: 1px solid transparent; color: var(--text); }

.nav-link:hover { text-decoration: none; border-color: var(--border); background: rgba(0, 0, 0, 0.03); }

.content { padding: 2.1rem 0 3rem; }

h1, h2, h3 { line-height: 1.2; }

h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 1rem; }

h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; }

h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }

p { margin: 0 0 1rem; }

ul { margin: 0.2rem 0 1rem 1.2rem; }

.content > .full-bleed:first-child { margin-top: calc(-1 * clamp(0.75rem, 2vw, 1.25rem)); }

.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 999px; border: 1px solid var(--border); color: var(--text); background: rgba(0, 0, 0, 0.02); font-weight: 650; text-decoration: none; line-height: 1.2; }

.btn:hover { text-decoration: none; background: rgba(0, 0, 0, 0.05); }

.btn.primary { background: var(--link); border-color: rgba(0, 0, 0, 0.08); color: #fff; }

.btn.primary:hover { filter: brightness(0.95); }

.home-hero { background: linear-gradient(180deg, rgba(11, 87, 208, 0.08), rgba(163, 230, 172, 0.08)); border-bottom: 1px solid rgba(0, 0, 0, 0.06); padding: clamp(2rem, 4vw, 3.25rem) 0; }

.home-hero .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: clamp(1.4rem, 3vw, 2.2rem); }

@media (max-width: 900px) { .home-hero .hero-grid { grid-template-columns: 1fr; } }
.hero-kicker { margin: 0 0 0.6rem; color: var(--muted); font-weight: 650; letter-spacing: 0.2px; }

.hero-subhead { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.25rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0.25rem 0 1rem; }

.hero-points { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--muted); }

.hero-media picture, .hero-media img { display: block; width: 100%; }

.hero-media { aspect-ratio: 4 / 3; border-radius: calc(var(--radius) + 8px); overflow: hidden; box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12); border: 1px solid rgba(0, 0, 0, 0.06); background: rgba(255, 255, 255, 0.65); }

.hero-media img { height: 100%; object-fit: cover; }

.home-summary { padding: 1.4rem 0 0; }

.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; }

.hero { display: grid; grid-template-columns: 120px 1fr; gap: 1.2rem; align-items: center; margin: 0 0 1.25rem; }

@media (max-width: 640px) { .hero { grid-template-columns: 1fr; } }
.hero img { max-width: 120px; max-height: 120px; width: auto; height: auto; border-radius: 999px; border: 1px solid var(--border); background: rgba(0, 0, 0, 0.02); }

.post-meta { margin: 0.25rem 0 1.5rem; color: var(--muted); }

details { border: 1px solid var(--border); border-radius: 12px; background: rgba(0, 0, 0, 0.02); padding: 0.8rem 1rem; margin: 0.9rem 0; }

summary { cursor: pointer; user-select: none; font-weight: 650; }

summary > .summary { display: block; font-weight: 400; color: var(--muted); margin-top: 0.25rem; }

pre, code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

pre { background: #f6f8fa; border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem 1rem; overflow-x: auto; }

code { font-size: 0.95em; }

figure { margin: 1.2rem 0; }

figure img { width: 100%; height: auto; border: 1px solid var(--border); border-radius: 12px; background: #f6f8fa; }

figcaption { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

.site-footer { border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.85); }

.footer-inner { padding: 1.2rem 0; }

.fine-print { color: var(--muted); font-size: 0.95rem; }
