/* Minimal, dependency-free styles for a tiny services landing page */
:root{
  --bg:#0f1720;
  --text:#e6eef6;
  --muted:rgba(230,238,246,0.6);
  --card-border:rgba(255,255,255,0.06);
  --card-bg:rgba(255,255,255,0.035);
  --accent:#06b6d4;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
}
.container{
  width:100%;
  max-width:720px;
  padding:24px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:linear-gradient(180deg,var(--card-bg), rgba(255,255,255,0.02));
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--card-border);
  box-shadow:0 6px 14px rgba(2,6,23,0.45);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.card:focus, .card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(2,6,23,0.65);outline:2px solid rgba(6,182,212,0.08);background:linear-gradient(180deg,rgba(255,255,255,0.045), rgba(255,255,255,0.02))}
.icon{width:48px;height:48px;display:block;margin-bottom:8px;filter:drop-shadow(0 4px 12px rgba(0,0,0,0.6))}
span{font-size:14px;font-weight:600;letter-spacing:0.02em}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media (min-width:700px){.grid{grid-template-columns:repeat(4,1fr)}}
