/* Minimal blog styling for fast rendering */
:root {
  color-scheme: dark;
  --bg: #06121f;
  --surface: #0d1f39;
  --surface-alt: #112940;
  --text: #e7edf9;
  --muted: #97a8c9;
  --accent: #63c2ff;
  --border: rgba(255,255,255,0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;}
body{margin:0;background:var(--bg);color:var(--text);line-height:1.75;}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}
img,video{max-width:100%;height:auto;}
.container{width:min(1080px,calc(100% - 2rem));margin:0 auto;padding:2rem 0;}
.site-header, .site-footer{background:rgba(6,18,31,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);}
.header-inner, .footer-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0;}
.site-title{font-weight:700;font-size:1.1rem;letter-spacing:.04em;text-transform:uppercase;}
.site-nav{display:flex;gap:1rem;flex-wrap:wrap;}
.hero{padding:4rem 0 3rem;}
.hero-inner{max-width:720px;}
.eyebrow{font-size:.85rem;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);margin-bottom:1rem;}
.hero h1{font-size:min(4rem,calc(2.75rem + 1vw));margin:.2rem 0;line-height:1.05;}
.hero p{max-width:40rem;color:var(--muted);font-size:1.05rem;}
.cta{display:inline-block;margin-top:1.5rem;padding:.9rem 1.6rem;border:1px solid var(--accent);border-radius:999px;font-weight:600;}
.project-section{margin-top:5rem;padding-top:2.5rem;}
.section-divider{display:block;height:3px;width:100%;margin:0 0 2.25rem;background:linear-gradient(90deg,rgba(99,194,255,.95),rgba(99,194,255,.45),rgba(99,194,255,.08));border-radius:999px;box-shadow:0 0 22px rgba(99,194,255,.24);}
.project-heading{font-size:clamp(1.8rem,3vw,2.4rem);letter-spacing:.12em;text-transform:uppercase;}
.post-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;}
.post-card{padding:1.5rem;border:1px solid var(--border);border-radius:18px;background:var(--surface);transition:transform .2s ease;}
.post-card:hover{transform:translateY(-3px);}
.post-card h3{margin:.2rem 0 .8rem;}
.project-card{padding:1.5rem;border:1px solid rgba(138,208,255,.2);border-radius:18px;background:linear-gradient(180deg,rgba(19,48,74,.96),rgba(12,34,56,.96));transition:transform .2s ease,border-color .2s ease;}
.project-card:hover{transform:translateY(-3px);border-color:rgba(138,208,255,.38);}
.project-card h3{margin:.2rem 0 .8rem;}
.project-card p{margin:0;color:#c4d4ee;}
.project-icon{display:inline-flex;align-items:center;justify-content:center;width:1.85rem;height:1.85rem;margin-right:.65rem;border-radius:999px;background:rgba(99,194,255,.14);color:var(--accent);font-size:1.15rem;vertical-align:middle;}
.meta{color:var(--muted);font-size:.95rem;margin:0 0 1rem;}
.tag-list{display:flex;flex-wrap:wrap;gap:.5rem;}
.tag-list span{background:rgba(99,194,255,.12);color:var(--accent);padding:.3rem .65rem;border-radius:999px;font-size:.85rem;}
.post-detail{padding:2rem 0;}
.post-meta{margin-bottom:2rem;}
.post-detail h1{font-size:2.4rem;margin:.4rem 0 1rem;line-height:1.05;}
.post-content{max-width:760px;}
.post-content h2{margin-top:2rem;}
.post-content p, .post-content li{color:var(--text);}
.post-content pre{background:rgba(255,255,255,.05);padding:1rem;overflow-x:auto;border-radius:12px;}
@media (max-width: 720px){.container{padding:1.25rem 0;}.site-nav{justify-content:flex-start;}.hero{padding:3rem 0;} .post-grid{grid-template-columns:1fr;}}
