*{box-sizing:border-box}
body{
  margin:0;
  font-family: var(--sans);
  color:var(--text);
  background: var(--bg0);
}
a{color:inherit}
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.85);
  border-bottom:1px solid var(--line);
}
.topbarInner{
  max-width:1200px; margin:0 auto; padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; min-width: 220px;}
.brandLogo{width:36px; height:36px; border-radius:10px; object-fit:cover; box-shadow: var(--shadow);}
.brand strong{display:block; font-size:14px; letter-spacing:.2px}
.brand span{display:block; font-size:12px; color:var(--muted2); margin-top:2px}
.brandLink{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit;}
.topnav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;}
.topnav a{
  font-size:12px; color:var(--text);
  padding:8px 10px; border-radius:999px; border:1px solid var(--line);
  text-decoration:none; background: rgba(255,255,255,.70);
}
.topnav a:hover{border-color:rgba(211,97,53,.45); color:var(--text)}

.container{max-width:1200px; margin:0 auto; padding:20px 16px 70px;}
.hero{margin-top:12px;}
.hero h1{margin:0 0 10px; font-size:28px;}
.hero p{color:var(--muted); line-height:1.6;}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px;}
.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 6px; font-size:16px;}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.5;}
.cardActions{display:flex; gap:8px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px; border-radius:999px; border:1px solid var(--line);
  text-decoration:none; font-weight:700; font-size:12px;
  background: rgba(255,255,255,.70);
}
.btn--primary{
  border-color: rgba(211,97,53,.55);
  background: linear-gradient(135deg, #D36135, #E6AA68);
  color: #02020B;
}

.typeMeta{font-size:12px; color:var(--muted2); margin-bottom:8px;}
.typeLayout{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; margin-top:16px;}
.typeBox{background: var(--panel2); border:1px solid var(--line); border-radius: var(--radius2); padding:14px;}
.typeBox h4{margin:0 0 8px;}
.typeBox ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.5;}

footer{margin-top:40px; border-top:1px solid var(--line); padding-top:16px; color:var(--muted2); font-size:12px;}
.footerNote{margin-top:10px;}
.footerCopy{margin-top:14px;}

@media (max-width: 980px){
  .topnav{display:none}
  .cards{grid-template-columns:1fr;}
  .typeLayout{grid-template-columns:1fr;}
}

