
:root{
  --bg:#0b0c0f; --ink:#eef1f5; --muted:#b3bdcc;
  --card:#121623; --edge:#24293a; --gold:#d4af37; --accent:#f2c14e;
}
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--ink);font-family:system-ui,-apple-system,Segoe UI,Roboto}
img{max-width:100%;height:auto;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
/* header basics pulled from your theme */
.wil-hdr{background:#0f1114;color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4)}
.wil-hdr__wrap{max-width:1200px;margin:0 auto;padding:12px 20px;display:flex;gap:20px;align-items:center;justify-content:space-between}
.wil-hdr__brand img{height: clamp(40px, 9vw, 60px);border-radius:8px}
.wil-hdr__nav{display:flex;gap:12px;flex-wrap:wrap}
.wil-hdr__nav a{color:#cbd5e1;padding:8px 10px;border-radius:10px;font-weight:600}
.wil-hdr__nav a:hover{background:#161a20;color:#fff}
.wil-hdr__quote{background:linear-gradient(180deg,#f1d36b 0%,#d4af37 70%);color:#111;border:1px solid rgba(0,0,0,.25);border-radius:10px;font-weight:900}
.wil-hdr__blog{border:1px solid rgba(255,255,255,.12)}

.main{max-width:1100px;margin:0 auto;padding:26px 16px}
.hero{background:linear-gradient(180deg,rgba(19,22,32,.95),rgba(10,13,20,.95));border:1px solid var(--edge);border-radius:14px;padding:22px 16px;margin-bottom:20px;text-align:center}
.hero h1{margin:.2rem 0 .3rem;font-size: clamp(1.6rem, 2.6vw, 2.4rem)}
.byline{color:#9aa4b2;font-size:.92rem;margin-bottom:4px}
.lede{color:#d9dee7;max-width:840px;margin:0 auto .6rem;font-size:1.05rem}

.wrap{display:grid;grid-template-columns: 1fr;gap:22px}
@media (min-width: 980px){ .wrap{ grid-template-columns: 280px 1fr; } }

.sidebar{position:sticky;top:10px;height:max-content;background:var(--card);border:1px solid var(--edge);border-radius:14px;padding:14px}
.sidebar h3{margin:.2rem 0 .6rem;color:#f2c14e}
.sidebar a{display:block;padding:6px 4px;color:#cbd5e1;border-radius:8px}
.sidebar a:hover{background:#161a20;color:#fff}

.article{background:var(--card);border:1px solid var(--edge);border-radius:14px;padding:18px}
.article h2{color:#f2c14e;margin-top:1rem}
.article p{line-height:1.75;margin:.5rem 0;color:#e8edf6}
.article ul{padding-left:1.1rem;margin:.4rem 0 .8rem}
.article li{margin:.3rem 0}
.kicker{color:#cbd5e1;font-size:.96rem;border-left:3px solid var(--gold);padding-left:.6rem;margin:.3rem 0 .6rem}

.figure{border:1px solid var(--edge);border-radius:12px;overflow:hidden;margin:.6rem 0 1rem;background:#0e121a}
.figure figcaption{padding:8px 12px;color:#b8c2d3;font-size:.95rem}
blockquote{margin:.8rem 0;padding:10px 14px;background:#0f1621;border:1px solid #1a2535;border-radius:10px;color:#cfe0ff}
.callout{background:#121a12;border:1px solid #223322;border-radius:10px;padding:10px 14px;color:#d6ffd6}
.cta{display:inline-block;margin-top:10px;background:#f2c14e;color:#111;padding:10px 16px;border-radius:10px;font-weight:800}
/* blog index */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.card{background:var(--card);border:1px solid var(--edge);border-radius:12px;padding:16px}
.card h3{color:#f2c14e;margin:.1rem 0 .4rem}
.card p{color:#d3d8e0}
