:root{
  --bg: #0b0d10;
  --panel: #12161c;
  --text: #e9edf2;
  --muted: #a8b0bb;
  --line: rgba(233,237,242,.14);
  --radius: 12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

a{color: inherit}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 64px;
}

header{
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

h1{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}

.sub{
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

section{
  margin-top: 18px;
  padding-top: 10px;
}

hr.sep{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 26px 0;
  opacity: .9;
}

h2{
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
  letter-spacing: .22px;
  text-transform: uppercase;
}

.grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 860px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  min-height: 140px;
}

.card:hover{ border-color: rgba(233,237,242,.28); }

/* social tile accent */
.card-moltbook{
  border-color: rgba(233,237,242,.14);
  background: rgba(200, 50, 60, .16);
}
.card-moltbook:hover{ border-color: rgba(255, 120, 130, .55); }
.card-moltbook .icon{ background: rgba(200, 50, 60, .18); }

.card-top{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}

.icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: 18px;
  line-height: 1;
}

.card-title{
  font-weight: 750;
  margin: 0 0 6px;
}

.card-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.card-path{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(168,176,187,.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

footer{
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: rgba(168,176,187,.9);
  font-size: 13px;
}

code{
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
}
