/* ─── Apps hub & app pages ─────────────────────────────── */
:root{
  --hc-navy:#0a2849; --hc-crimson:#9b1d20; --hc-beige:#f5f0e6;
  --text:#222; --muted:#666; --radius:12px;
  font-size:16px;
}
/* BASIC RESET */
*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:Inter,Helvetica,Arial,sans-serif;color:var(--text);line-height:1.6;}
h1,h2,h3{font-family:Merriweather,Georgia,serif;margin-bottom:.5em;color:var(--hc-navy);}
a{color:var(--hc-crimson);text-decoration:none;}
a:hover{text-decoration:underline;}
.container{max-width:1100px;padding:0 1rem;margin:0 auto;}
/* NAV (optional mobile burger) */
.nav{display:flex;justify-content:space-between;align-items:center;padding:1rem 0;}
.nav ul{display:flex;gap:1rem;list-style:none;}
.burger{display:none;font-size:1.8rem;border:none;background:none;}
@media(max-width:700px){
  .nav ul{flex-direction:column;display:none;}
  .nav ul.open{display:flex;}
  .burger{display:block;}
}
/* HUB GRID */
.grid{display:grid;gap:1.5rem;}
@media(min-width:600px){.grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}}
.card{background:#fff;border-radius:var(--radius);box-shadow:0 2px 6px rgba(0,0,0,.1);overflow:hidden;transition:transform .2s;}
.card:hover{transform:translateY(-4px);}
.card img{width:100%;height:180px;object-fit:contain;background:#fafafa;padding:1rem;}
.card .padded{padding:1rem;}
.card h3{margin-bottom:.3em;}
/* DETAIL PAGE */
.hero{text-align:center;margin:3rem 0 2rem;}
.hero img{width:120px;height:120px;border-radius:28px;box-shadow:0 4px 12px rgba(0,0,0,.15);}
.cta{display:inline-block;background:var(--hc-crimson);color:#fff;padding:.75rem 1.5rem;border-radius:50px;margin-top:1rem;font-weight:600;}
.cta:hover{background:#7d1518;}
.screenshots{display:grid;gap:1rem;margin-top:2rem;}
@media(min-width:700px){.screenshots{grid-template-columns:1fr 1fr;}}
.screenshots img{width:100%;border-radius:var(--radius);box-shadow:0 2px 8px rgba(0,0,0,.12);}
footer.meta{margin-top:2rem;font-size:.9rem;color:var(--muted);text-align:center;}