/* ════════════════════════════════════════════════
   RESUME — dark, scanlines
════════════════════════════════════════════════ */
#resume {
  background: var(--void);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

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

.r-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.r-col-lbl {
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--arc-txt);
  opacity: .75;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.r-col-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0,229,255,.35), transparent);
}

.r-entries {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.r-entry {
  padding: 16px 18px;
  border: 1px solid var(--wire);
  background: var(--void-2);
  transition: all .24s var(--ease);
  position: relative;
  overflow: hidden;
}
.r-entry::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--arc);
  transition: height .32s var(--ease);
}
.r-entry:hover {
  background: var(--void-3);
  border-color: rgba(0,229,255,.16);
}
.r-entry:hover::before {
  height: 100%;
  box-shadow: 0 0 8px var(--arc);
}

.r-cxy {
  position: absolute;
  top: 5px; right: 9px;
  font-family: var(--mono);
  font-size: .44rem;
  color: rgba(0,229,255,.15);
  letter-spacing: .06em;
}
.r-per {
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .1em;
  color: var(--arc-txt);
  margin-bottom: 4px;
  opacity: .78;
}
.r-role {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.83);
  margin-bottom: 2px;
}
.r-org {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.28);
  margin-bottom: 7px;
}
.r-pts {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
}
.r-pts li {
  padding-left: 13px;
  position: relative;
  margin-bottom: 3px;
}
.r-pts li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--arc);
}
