/* ════════════════════════════════════════════════
   SERVICES — dark, dot + scan
════════════════════════════════════════════════ */
#services {
  background: var(--void);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

#services > .wrap {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--wire);
  border: 1px solid var(--wire);
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.scard {
  background: var(--void-2);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: background .24s;
}
.scard:hover { background: var(--void-3); }
.scard::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 1.5px solid var(--arc);
  border-right: 1.5px solid var(--arc);
  transition: width .32s var(--ease), height .32s var(--ease);
}
.scard:hover::after {
  width: 20px; height: 20px;
  box-shadow: 0 0 8px var(--arc);
}
.scard .cxy {
  position: absolute;
  top: 8px; right: 11px;
  font-family: var(--mono);
  font-size: .45rem;
  color: rgba(0,229,255,.18);
  letter-spacing: .08em;
}
.sn {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .14em;
  color: var(--arc-txt);
  opacity: .58;
  margin-bottom: 15px;
}
.sname {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.84);
  margin-bottom: 9px;
  line-height: 1.15;
}
.sname i { font-style: italic; }
.sdesc {
  font-size: .81rem;
  color: rgba(255,255,255,.32);
  line-height: 1.7;
  font-weight: 300;
}
