/*! base 7c1f04 */
:root{
  --bg:#12151b;
  --bg-alt:#191d25;
  --line:#262b35;
  --text:#d7dbe2;
  --text-dim:#8891a0;
  --accent:#6ee7c8;
  --radius:8px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font:15px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
code{
  font:13px/1.4 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:4px;
  padding:1px 5px;
}

.shell{
  width:100%;
  max-width:880px;
  margin:0 auto;
  padding:0 24px;
}

header.site{
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(600px 200px at 15% -20%, rgba(110,231,200,.08), transparent),
    var(--bg-alt);
}
header.site .shell{
  padding-top:40px;
  padding-bottom:32px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  letter-spacing:.02em;
}
.brand-mark{
  width:22px;height:22px;border-radius:5px;
  background:linear-gradient(135deg,var(--accent),#3fa88a);
  flex:0 0 auto;
}
header.site h1{
  margin:20px 0 8px;
  font-size:26px;
  font-weight:600;
}
header.site p.lead{
  margin:0;
  color:var(--text-dim);
  max-width:52ch;
}

main{flex:1 0 auto}
main .shell{padding-top:36px;padding-bottom:48px}

section.block{margin-bottom:36px}
section.block h2{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text-dim);
  margin:0 0 14px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--bg-alt);
  padding:16px 18px;
}
.card h3{
  margin:0 0 6px;
  font-size:14px;
  font-weight:600;
}
.card p{
  margin:0;
  color:var(--text-dim);
  font-size:13px;
}

table.specs{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}
table.specs th,table.specs td{
  text-align:left;
  padding:9px 10px;
  border-bottom:1px solid var(--line);
}
table.specs th{
  color:var(--text-dim);
  font-weight:500;
  width:40%;
}

.status-dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
  margin-right:6px;
  box-shadow:0 0 0 3px rgba(110,231,200,.15);
}

footer.site{
  border-top:1px solid var(--line);
  color:var(--text-dim);
  font-size:12px;
}
footer.site .shell{
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

@media (max-width:520px){
  header.site h1{font-size:22px}
  footer.site .shell{flex-direction:column}
}
