/* /assets/style.css */
:root{
  --bg:#0b0d12;
  --card:#121625;
  --text:#e9eefc;
  --muted:#9aa6c3;
  --link:#7aa2ff;
  --border:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Liberation Sans",sans-serif;
  background:linear-gradient(180deg,#0b0d12 0%, #090b10 100%);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px 16px;
}

.brand{display:flex;flex-direction:column;gap:2px}
.brand__logo{font-weight:700;font-size:18px;color:var(--text)}
.brand__sub{font-size:13px;color:var(--muted)}

.h1{font-size:40px;line-height:1.1;margin:18px 0 14px}

.muted{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:12px;
  margin-top:12px;
}

.card{
  display:block;
  padding:14px 14px;
  border-radius:14px;
  background:rgba(18,22,37,.7);
  border:1px solid var(--border);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
}
.card:hover{
  transform:translateY(-1px);
  border-color:rgba(122,162,255,.35);
  background:rgba(18,22,37,.9);
}

.card__title{font-weight:650;font-size:16px}
.footer{padding-top:26px;padding-bottom:26px}
